2002-11-27 12:52:29 +00:00
|
|
|
|
/** Implementation of ObjC runtime additions for GNUStep
|
|
|
|
|
Copyright (C) 1995-2002 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
|
|
Written by: Andrew Kachites McCallum <mccallum@gnu.ai.mit.edu>
|
|
|
|
|
Date: Aug 1995
|
|
|
|
|
Written by: Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
Date: Nov 2002
|
|
|
|
|
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
|
|
|
|
Date: Nov 2002
|
|
|
|
|
|
|
|
|
|
This file is part of the GNUstep Base Library.
|
|
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
|
License along with this library; if not, write to the Free
|
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|
|
|
|
|
|
|
|
|
<title>GSObjCRuntime function and macro reference</title>
|
|
|
|
|
$Date$ $Revision$
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#include <base/preface.h>
|
|
|
|
|
#include <Foundation/NSException.h>
|
|
|
|
|
#include <Foundation/NSObjCRuntime.h>
|
|
|
|
|
#include <Foundation/NSString.h>
|
|
|
|
|
#include <Foundation/NSValue.h>
|
|
|
|
|
#include <base/GSObjCRuntime.h>
|
|
|
|
|
#include <mframe.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2002-11-29 14:21:09 +00:00
|
|
|
|
/** Deprecated ... use GSObjCFindVariable() */
|
2002-11-27 18:52:53 +00:00
|
|
|
|
BOOL
|
|
|
|
|
GSFindInstanceVariable(id obj, const char *name,
|
|
|
|
|
const char **type, unsigned int *size, int *offset)
|
|
|
|
|
{
|
2002-11-29 14:21:09 +00:00
|
|
|
|
return GSObjCFindVariable(obj, name, type, size, offset);
|
2002-11-27 18:52:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-27 12:52:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* This function is used to locate information about the instance
|
|
|
|
|
* variable of obj called name. It returns YES if the variable
|
|
|
|
|
* was found, NO otherwise. If it returns YES, then the values
|
|
|
|
|
* pointed to by type, size, and offset will be set (except where
|
|
|
|
|
* they are null pointers).
|
|
|
|
|
*/
|
|
|
|
|
BOOL
|
2002-11-29 14:21:09 +00:00
|
|
|
|
GSObjCFindVariable(id obj, const char *name,
|
2002-11-27 12:52:29 +00:00
|
|
|
|
const char **type, unsigned int *size, int *offset)
|
|
|
|
|
{
|
|
|
|
|
Class class;
|
|
|
|
|
struct objc_ivar_list *ivars;
|
|
|
|
|
struct objc_ivar *ivar = 0;
|
|
|
|
|
|
|
|
|
|
class = [obj class];
|
|
|
|
|
while (class != nil && ivar == 0)
|
|
|
|
|
{
|
|
|
|
|
ivars = class->ivars;
|
|
|
|
|
class = class->super_class;
|
|
|
|
|
if (ivars != 0)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < ivars->ivar_count; i++)
|
|
|
|
|
{
|
|
|
|
|
if (strcmp(ivars->ivar_list[i].ivar_name, name) == 0)
|
|
|
|
|
{
|
|
|
|
|
ivar = &ivars->ivar_list[i];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (ivar == 0)
|
|
|
|
|
{
|
|
|
|
|
return NO;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (type)
|
|
|
|
|
*type = ivar->ivar_type;
|
|
|
|
|
if (size)
|
|
|
|
|
*size = objc_sizeof_type(ivar->ivar_type);
|
|
|
|
|
if (offset)
|
|
|
|
|
*offset = ivar->ivar_offset;
|
|
|
|
|
return YES;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-28 09:35:36 +00:00
|
|
|
|
/** Deprecated ... use GSObjCGetVariable() */
|
2002-11-27 12:52:29 +00:00
|
|
|
|
void
|
2002-11-29 14:31:23 +00:00
|
|
|
|
GSGetVariable(id obj, int offset, unsigned int size, void *data)
|
2002-11-27 18:52:53 +00:00
|
|
|
|
{
|
|
|
|
|
GSObjCGetVariable(obj, offset, size, data);
|
|
|
|
|
}
|
2002-11-28 09:35:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* Gets the value from an instance variable in obj<br />
|
|
|
|
|
* This function performs no checking ... you should use it only where
|
2002-11-29 14:21:09 +00:00
|
|
|
|
* you are providing information from a call to GSFindVariable()
|
2002-11-28 09:35:36 +00:00
|
|
|
|
* and you know that the data area provided is the correct size.
|
|
|
|
|
*/
|
2002-11-27 18:52:53 +00:00
|
|
|
|
void
|
|
|
|
|
GSObjCGetVariable(id obj, int offset, unsigned int size, void *data)
|
2002-11-27 12:52:29 +00:00
|
|
|
|
{
|
|
|
|
|
memcpy(data, ((void*)obj) + offset, size);
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-28 09:35:36 +00:00
|
|
|
|
/** Deprecated ... use GSObjCSetVariable() */
|
2002-11-27 12:52:29 +00:00
|
|
|
|
void
|
2002-11-29 14:31:23 +00:00
|
|
|
|
GSSetVariable(id obj, int offset, unsigned int size, const void *data)
|
2002-11-27 18:52:53 +00:00
|
|
|
|
{
|
|
|
|
|
GSObjCSetVariable(obj, offset, size, data);
|
|
|
|
|
}
|
2002-11-28 09:35:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* Sets the value in an instance variable in obj<br />
|
|
|
|
|
* This function performs no checking ... you should use it only where
|
2002-11-29 14:21:09 +00:00
|
|
|
|
* you are providing information from a call to GSObjCFindVariable()
|
2002-11-28 09:35:36 +00:00
|
|
|
|
* and you know that the data area provided is the correct size.
|
|
|
|
|
*/
|
2002-11-27 18:52:53 +00:00
|
|
|
|
void
|
|
|
|
|
GSObjCSetVariable(id obj, int offset, unsigned int size, const void *data)
|
2002-11-27 12:52:29 +00:00
|
|
|
|
{
|
|
|
|
|
memcpy(((void*)obj) + offset, data, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* NOTE - OBJC_VERSION needs to be defined to be the version of the
|
|
|
|
|
* Objective-C runtime you are using. You can find this in the file
|
|
|
|
|
* 'init.c' in the GNU objective-C runtime source.
|
|
|
|
|
*/
|
|
|
|
|
#define OBJC_VERSION 8
|
|
|
|
|
|
|
|
|
|
/** references:
|
|
|
|
|
http://www.macdevcenter.com/pub/a/mac/2002/05/31/runtime_parttwo.html?page=1
|
|
|
|
|
http://developer.apple.com/techpubs/macosx/Cocoa/ObjectiveC/9objc_runtime_reference/_Adding_Classes.html
|
|
|
|
|
http://developer.apple.com/techpubs/macosx/Cocoa/ObjectiveC/9objc_runtime_reference/_Class_Defi__Structures.html
|
|
|
|
|
ObjcRuntimeUtilities.m by Nicola Pero
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* <p>Create a Class structure for use by the ObjectiveC runtime and return
|
|
|
|
|
* an NSValue object pointing to it. The class will not be added to the
|
|
|
|
|
* runtime (you must do that later using the GSObjCAddClasses() function).
|
|
|
|
|
* </p>
|
|
|
|
|
* <p>The iVars dictionary lists the instance variable names and their types.
|
|
|
|
|
* </p>
|
|
|
|
|
*/
|
|
|
|
|
NSValue*
|
|
|
|
|
GSObjCMakeClass(NSString *name, NSString *superName, NSDictionary *iVars)
|
|
|
|
|
{
|
|
|
|
|
Class newClass;
|
|
|
|
|
Class classSuperClass;
|
|
|
|
|
const char *classNameCString;
|
|
|
|
|
const char *superClassNameCString;
|
|
|
|
|
Class newMetaClass;
|
|
|
|
|
Class rootClass;
|
|
|
|
|
unsigned int iVarSize;
|
|
|
|
|
char *tmp;
|
|
|
|
|
|
|
|
|
|
NSCAssert(name, @"no name");
|
|
|
|
|
NSCAssert(superName, @"no superName");
|
|
|
|
|
|
|
|
|
|
classSuperClass = NSClassFromString(superName);
|
|
|
|
|
|
|
|
|
|
NSCAssert1(classSuperClass, @"No class named %@",superName);
|
|
|
|
|
NSCAssert1(!NSClassFromString(name), @"A class %@ already exists", name);
|
|
|
|
|
|
|
|
|
|
classNameCString = [name cString];
|
|
|
|
|
tmp = objc_malloc(strlen(classNameCString) + 1);
|
|
|
|
|
strcpy(tmp, classNameCString);
|
|
|
|
|
classNameCString = tmp;
|
|
|
|
|
|
|
|
|
|
superClassNameCString = [superName cString];
|
|
|
|
|
tmp = objc_malloc(strlen(superClassNameCString) + 1);
|
|
|
|
|
strcpy(tmp, superClassNameCString);
|
|
|
|
|
superClassNameCString = tmp;
|
|
|
|
|
|
|
|
|
|
rootClass = classSuperClass;
|
|
|
|
|
while (rootClass->super_class != 0)
|
|
|
|
|
{
|
|
|
|
|
rootClass = rootClass->super_class;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Create new class and meta class structure storage
|
|
|
|
|
*
|
|
|
|
|
* From Nicola: NB: There is a trick here.
|
|
|
|
|
* The runtime system will look up the name in the following string,
|
|
|
|
|
* and replace it with a pointer to the actual superclass structure.
|
|
|
|
|
* This also means the type of pointer will change, that's why we
|
|
|
|
|
* need to cast it.
|
|
|
|
|
*/
|
|
|
|
|
newMetaClass = objc_malloc(sizeof(struct objc_class));
|
|
|
|
|
memset(newMetaClass, 0, sizeof(struct objc_class));
|
|
|
|
|
newMetaClass->class_pointer = rootClass->class_pointer; // Points to root
|
|
|
|
|
newMetaClass->super_class = (Class)superClassNameCString;
|
|
|
|
|
newMetaClass->name = classNameCString;
|
|
|
|
|
newMetaClass->version = 0;
|
|
|
|
|
newMetaClass->info = _CLS_META; // this is a Meta Class
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
newClass = objc_malloc(sizeof(struct objc_class));
|
|
|
|
|
memset(newClass, 0, sizeof(struct objc_class));
|
|
|
|
|
newClass->class_pointer = newMetaClass; // Points to the class's meta class.
|
|
|
|
|
newClass->super_class = (Class)superClassNameCString;
|
|
|
|
|
newClass->name = classNameCString;
|
|
|
|
|
newClass->version = 0;
|
|
|
|
|
newClass->info = _CLS_CLASS; // this is a Class
|
|
|
|
|
|
|
|
|
|
// work on instances variables
|
|
|
|
|
iVarSize = classSuperClass->instance_size; // super class ivar size
|
|
|
|
|
if ([iVars count] > 0)
|
|
|
|
|
{
|
|
|
|
|
unsigned int iVarsStructsSize;
|
|
|
|
|
struct objc_ivar *ivar = NULL;
|
|
|
|
|
unsigned int iVarsCount = [iVars count];
|
|
|
|
|
NSEnumerator *enumerator = [iVars keyEnumerator];
|
|
|
|
|
NSString *key;
|
|
|
|
|
|
|
|
|
|
// ivars list is 1 objc_ivar_list followed by (iVarsCount-1) ivar_list
|
|
|
|
|
iVarsStructsSize = sizeof(struct objc_ivar_list)
|
|
|
|
|
+ (iVarsCount-1)*sizeof(struct objc_ivar);
|
|
|
|
|
|
|
|
|
|
// Allocate for all ivars
|
|
|
|
|
newClass->ivars = (struct objc_ivar_list*)objc_malloc(iVarsStructsSize);
|
|
|
|
|
memset(newClass->ivars, 0, iVarsStructsSize);
|
|
|
|
|
|
|
|
|
|
// Set ivars count
|
|
|
|
|
newClass->ivars->ivar_count = iVarsCount;
|
|
|
|
|
|
|
|
|
|
// initialize each ivar
|
|
|
|
|
ivar = newClass->ivars->ivar_list; // 1st one
|
|
|
|
|
while ((key = [enumerator nextObject]) != nil)
|
|
|
|
|
{
|
|
|
|
|
const char *iVarName = [key cString];
|
|
|
|
|
const char *iVarType = [[iVars objectForKey: key] cString];
|
|
|
|
|
|
|
|
|
|
tmp = objc_malloc(strlen(iVarName) + 1);
|
|
|
|
|
strcpy(tmp, iVarName);
|
|
|
|
|
ivar->ivar_name = tmp;
|
|
|
|
|
tmp = objc_malloc(strlen(iVarType) + 1);
|
|
|
|
|
strcpy(tmp, iVarType);
|
|
|
|
|
ivar->ivar_type = tmp;
|
|
|
|
|
|
|
|
|
|
// align the ivar (i.e. put it on the first aligned address
|
|
|
|
|
iVarSize = objc_aligned_size(ivar->ivar_type);
|
|
|
|
|
ivar->ivar_offset = iVarSize;
|
|
|
|
|
iVarSize += objc_sizeof_type(ivar->ivar_type); // add the ivar size
|
|
|
|
|
ivar = ivar + 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Size in bytes of the class. The sum of the class definition
|
|
|
|
|
* and all super class definitions.
|
|
|
|
|
*/
|
|
|
|
|
newClass->instance_size = iVarSize;
|
|
|
|
|
|
|
|
|
|
// Meta Class instance size is superclass instance size.
|
|
|
|
|
newMetaClass->instance_size = classSuperClass->class_pointer->instance_size;
|
|
|
|
|
|
|
|
|
|
return [NSValue valueWithPointer: newClass];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The classes argument is an array of NSValue objects containing pointers
|
|
|
|
|
* to classes previously created by the GSObjCMakeClass() function.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
GSObjCAddClasses(NSArray *classes)
|
|
|
|
|
{
|
|
|
|
|
void __objc_exec_class (Module_t module);
|
|
|
|
|
void __objc_resolve_class_links ();
|
|
|
|
|
Module_t module;
|
|
|
|
|
Symtab_t symtab;
|
|
|
|
|
unsigned int numClasses = [classes count];
|
|
|
|
|
unsigned int i;
|
|
|
|
|
Class c;
|
|
|
|
|
|
|
|
|
|
NSCAssert(numClasses > 0, @"No classes (array is NULL)");
|
|
|
|
|
|
|
|
|
|
c = (Class)[[classes objectAtIndex: 0] pointerValue];
|
|
|
|
|
|
|
|
|
|
// Prepare a fake module containing only the new classes
|
|
|
|
|
module = objc_calloc (1, sizeof (Module));
|
|
|
|
|
module->version = OBJC_VERSION;
|
|
|
|
|
module->size = sizeof (Module);
|
|
|
|
|
module->name = objc_malloc (strlen(c->name) + 15);
|
|
|
|
|
strcpy ((char*)module->name, "GNUstep-Proxy-");
|
|
|
|
|
strcat ((char*)module->name, c->name);
|
|
|
|
|
module->symtab = objc_malloc(sizeof(Symtab) + numClasses * sizeof(void *));
|
|
|
|
|
|
|
|
|
|
symtab = module->symtab;
|
|
|
|
|
symtab->sel_ref_cnt = 0;
|
|
|
|
|
symtab->refs = 0;
|
|
|
|
|
symtab->cls_def_cnt = numClasses; // We are defining numClasses classes.
|
|
|
|
|
symtab->cat_def_cnt = 0; // But no categories
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < numClasses; i++)
|
|
|
|
|
{
|
|
|
|
|
symtab->defs[i] = (Class)[[classes objectAtIndex: i] pointerValue];
|
|
|
|
|
}
|
|
|
|
|
symtab->defs[numClasses] = NULL; //null terminated list
|
|
|
|
|
|
|
|
|
|
// Insert our new class into the runtime.
|
|
|
|
|
__objc_exec_class (module);
|
|
|
|
|
__objc_resolve_class_links();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int behavior_debug = 0;
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
GSObjCBehaviorDebug(int i)
|
|
|
|
|
{
|
|
|
|
|
behavior_debug = i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if NeXT_RUNTIME
|
|
|
|
|
|
|
|
|
|
static struct objc_method *search_for_method_in_list (Class class, SEL op);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
GSObjCAddMethods (Class class, struct objc_method_list *methods)
|
|
|
|
|
{
|
|
|
|
|
static SEL initialize_sel = 0;
|
|
|
|
|
struct objc_method_list *mlist;
|
|
|
|
|
|
|
|
|
|
if (!initialize_sel)
|
|
|
|
|
initialize_sel = sel_register_name ("initialize");
|
|
|
|
|
|
|
|
|
|
/* Add methods to class->dtable and class->methods */
|
|
|
|
|
mlist = methods;
|
|
|
|
|
{
|
|
|
|
|
int counter;
|
|
|
|
|
struct objc_method_list *new_list;
|
|
|
|
|
|
|
|
|
|
counter = mlist->method_count ? mlist->method_count - 1 : 1;
|
|
|
|
|
|
|
|
|
|
/* This is a little wasteful of memory, since not necessarily
|
|
|
|
|
all methods will go in here. */
|
|
|
|
|
new_list = (struct objc_method_list *)
|
|
|
|
|
objc_malloc (sizeof(struct objc_method_list) +
|
|
|
|
|
sizeof(struct objc_method[counter+1]));
|
|
|
|
|
new_list->method_count = 0;
|
|
|
|
|
|
|
|
|
|
while (counter >= 0)
|
|
|
|
|
{
|
|
|
|
|
struct objc_method *method = &(mlist->method_list[counter]);
|
|
|
|
|
|
|
|
|
|
if (behavior_debug)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, " processing method [%s] ... ",
|
|
|
|
|
sel_get_name(method->method_name));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!search_for_method_in_list(class,method->method_name)
|
|
|
|
|
&& !sel_eq(method->method_name, initialize_sel))
|
|
|
|
|
{
|
|
|
|
|
/* As long as the method isn't defined in the CLASS,
|
|
|
|
|
put the BEHAVIOR method in there. Thus, behavior
|
|
|
|
|
methods override the superclasses' methods. */
|
|
|
|
|
new_list->method_list[new_list->method_count] = *method;
|
|
|
|
|
(new_list->method_count)++;
|
|
|
|
|
if (behavior_debug)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, "added.\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (behavior_debug)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, "ignored.\n");
|
|
|
|
|
}
|
|
|
|
|
counter -= 1;
|
|
|
|
|
}
|
|
|
|
|
if (new_list->method_count)
|
|
|
|
|
{
|
|
|
|
|
class_add_method_list(class, new_list);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
OBJC_FREE(new_list);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Search for the named method's method structure. Return a pointer
|
|
|
|
|
to the method's method structure if found. NULL otherwise. */
|
|
|
|
|
static struct objc_method *
|
|
|
|
|
search_for_method_in_list (Class class, SEL op)
|
|
|
|
|
{
|
|
|
|
|
void *iterator = 0;
|
|
|
|
|
struct objc_method_list *method_list;
|
|
|
|
|
|
|
|
|
|
if (! sel_is_mapped (op))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
/* If not found then we'll search the list. */
|
|
|
|
|
while ( (method_list = class_nextMethodList(class, &iterator)) )
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
/* Search the method list. */
|
|
|
|
|
for (i = 0; i < method_list->method_count; ++i)
|
|
|
|
|
{
|
|
|
|
|
struct objc_method *method = &method_list->method_list[i];
|
|
|
|
|
|
|
|
|
|
if (method->method_name)
|
|
|
|
|
{
|
|
|
|
|
if (sel_eq(method->method_name, op))
|
|
|
|
|
return method;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else /* GNU runtime */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The following two functions are implemented in the GNU objc runtime
|
|
|
|
|
*/
|
|
|
|
|
extern Method_t search_for_method_in_list(MethodList_t list, SEL op);
|
|
|
|
|
extern void class_add_method_list(Class, MethodList_t);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
GSObjCAddMethods (Class class, struct objc_method_list *methods)
|
|
|
|
|
{
|
|
|
|
|
static SEL initialize_sel = 0;
|
|
|
|
|
struct objc_method_list *mlist;
|
|
|
|
|
|
|
|
|
|
if (initialize_sel == 0)
|
|
|
|
|
{
|
|
|
|
|
initialize_sel = sel_register_name ("initialize");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add methods to class->dtable and class->methods */
|
|
|
|
|
for (mlist = methods; mlist; mlist = mlist->method_next)
|
|
|
|
|
{
|
|
|
|
|
int counter;
|
|
|
|
|
struct objc_method_list *new_list;
|
|
|
|
|
|
|
|
|
|
counter = mlist->method_count ? mlist->method_count - 1 : 1;
|
|
|
|
|
|
|
|
|
|
/* This is a little wasteful of memory, since not necessarily
|
|
|
|
|
all methods will go in here. */
|
|
|
|
|
new_list = (struct objc_method_list *)
|
|
|
|
|
objc_malloc (sizeof(struct objc_method_list) +
|
|
|
|
|
sizeof(struct objc_method[counter+1]));
|
|
|
|
|
new_list->method_count = 0;
|
|
|
|
|
new_list->method_next = NULL;
|
|
|
|
|
|
|
|
|
|
while (counter >= 0)
|
|
|
|
|
{
|
|
|
|
|
struct objc_method *method = &(mlist->method_list[counter]);
|
|
|
|
|
const char *name = sel_get_name(method->method_name);
|
|
|
|
|
|
|
|
|
|
if (behavior_debug)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, " processing method [%s] ... ", name);
|
|
|
|
|
}
|
|
|
|
|
if (!search_for_method_in_list(class->methods, method->method_name)
|
|
|
|
|
&& !sel_eq(method->method_name, initialize_sel))
|
|
|
|
|
{
|
|
|
|
|
/* As long as the method isn't defined in the CLASS,
|
|
|
|
|
put the BEHAVIOR method in there. Thus, behavior
|
|
|
|
|
methods override the superclasses' methods. */
|
|
|
|
|
new_list->method_list[new_list->method_count] = *method;
|
|
|
|
|
/*
|
|
|
|
|
* HACK ... the GNU runtime implementation of
|
|
|
|
|
* class_add_method_list() expects the method names to be
|
|
|
|
|
* C-strings rather than selectors ... so we must allow
|
|
|
|
|
* for that.
|
|
|
|
|
*/
|
|
|
|
|
new_list->method_list[new_list->method_count].method_name
|
|
|
|
|
= (SEL)name;
|
|
|
|
|
(new_list->method_count)++;
|
|
|
|
|
if (behavior_debug)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, "added.\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (behavior_debug)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, "ignored.\n");
|
|
|
|
|
}
|
|
|
|
|
counter -= 1;
|
|
|
|
|
}
|
|
|
|
|
if (new_list->method_count)
|
|
|
|
|
{
|
|
|
|
|
class_add_method_list(class, new_list);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
OBJC_FREE(new_list);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* NeXT runtime */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* <p>A Behavior can be seen as a "Protocol with an implementation" or a
|
|
|
|
|
* "Class without any instance variables". A key feature of behaviors
|
|
|
|
|
* is that they give a degree of multiple inheritance.
|
|
|
|
|
* </p>
|
|
|
|
|
* <p>Behavior methods, when added to a class, override the class's
|
|
|
|
|
* superclass methods, but not the class's methods.
|
|
|
|
|
* </p>
|
|
|
|
|
* <p>It's not the case that a class adding behaviors from another class
|
|
|
|
|
* must have "no instance vars". The receiver class just has to have the
|
|
|
|
|
* same layout as the behavior class (optionally with some additional
|
|
|
|
|
* ivars after those of the behavior class).
|
|
|
|
|
* </p>
|
|
|
|
|
* <p>This function provides Behaviors without adding any new syntax to
|
|
|
|
|
* the Objective C language. Simply define a class with the methods you
|
|
|
|
|
* want to add, then call this function with that class as the behavior
|
|
|
|
|
* argument.
|
|
|
|
|
* </p>
|
|
|
|
|
* <p>This function should be called in the +initialize method of the receiver.
|
|
|
|
|
* </p>
|
|
|
|
|
* <p>If you add several behaviors to a class, be aware that the order of
|
|
|
|
|
* the additions is significant.
|
|
|
|
|
* </p>
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
GSObjCAddClassBehavior(Class receiver, Class behavior)
|
|
|
|
|
{
|
|
|
|
|
Class behavior_super_class = GSObjCSuper(behavior);
|
|
|
|
|
|
|
|
|
|
NSCAssert(CLS_ISCLASS(receiver), NSInvalidArgumentException);
|
|
|
|
|
NSCAssert(CLS_ISCLASS(behavior), NSInvalidArgumentException);
|
|
|
|
|
|
|
|
|
|
#if NeXT_RUNTIME
|
|
|
|
|
if (receiver->instance_size < behavior->instance_size)
|
|
|
|
|
{
|
|
|
|
|
/* We can allow this since we're pretty sure NXConstantString is
|
|
|
|
|
not subclassed. */
|
|
|
|
|
if (receiver == [NXConstantString class])
|
|
|
|
|
{
|
|
|
|
|
receiver->instance_size = behavior->instance_size;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
NSCAssert2(receiver->instance_size >= behavior->instance_size,
|
|
|
|
|
@"Trying to add behavior (%s) with instance size larger than class (%s)",
|
|
|
|
|
class_get_class_name(behavior), class_get_class_name(receiver));
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
/* If necessary, increase instance_size of CLASS. */
|
|
|
|
|
if (receiver->instance_size < behavior->instance_size)
|
|
|
|
|
{
|
|
|
|
|
NSCAssert(!receiver->subclass_list,
|
|
|
|
|
@"The behavior-addition code wants to increase the\n"
|
|
|
|
|
@"instance size of a class, but it cannot because you\n"
|
|
|
|
|
@"have subclassed the class. There are two solutions:\n"
|
|
|
|
|
@"(1) Don't subclass it; (2) Add placeholder instance\n"
|
|
|
|
|
@"variables to the class, so the behavior-addition code\n"
|
|
|
|
|
@"will not have to increase the instance size\n");
|
|
|
|
|
receiver->instance_size = behavior->instance_size;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (behavior_debug)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, "Adding behavior to class %s\n", receiver->name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add instance methods */
|
|
|
|
|
if (behavior_debug)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, "Adding instance methods from %s\n", behavior->name);
|
|
|
|
|
}
|
|
|
|
|
#if NeXT_RUNTIME
|
|
|
|
|
{
|
|
|
|
|
void *iterator = 0;
|
|
|
|
|
struct objc_method_list *method_list;
|
|
|
|
|
|
|
|
|
|
method_list = class_nextMethodList(behavior, &iterator);
|
|
|
|
|
while (method_list != 0)
|
|
|
|
|
{
|
|
|
|
|
GSObjCAddMethods (receiver, method_list);
|
|
|
|
|
method_list = class_nextMethodList(behavior, &iterator);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
GSObjCAddMethods (receiver, behavior->methods);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Add class methods */
|
|
|
|
|
if (behavior_debug)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, "Adding class methods from %s\n",
|
|
|
|
|
behavior->class_pointer->name);
|
|
|
|
|
}
|
|
|
|
|
#if NeXT_RUNTIME
|
|
|
|
|
{
|
|
|
|
|
void *iterator = 0;
|
|
|
|
|
struct objc_method_list *method_list;
|
|
|
|
|
|
|
|
|
|
method_list = class_nextMethodList(behavior->class_pointer, &iterator);
|
|
|
|
|
while (method_list != 0)
|
|
|
|
|
{
|
|
|
|
|
GSObjCAddMethods (class->class_pointer, method_list);
|
|
|
|
|
method_list = class_nextMethodList(behavior->class_pointer, &iterator);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
GSObjCAddMethods (receiver->class_pointer, behavior->class_pointer->methods);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Add behavior's superclass, if not already there. */
|
|
|
|
|
if (!GSObjCIsKindOf(receiver, behavior_super_class))
|
|
|
|
|
{
|
|
|
|
|
GSObjCAddClassBehavior (receiver, behavior_super_class);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <Foundation/NSValue.h>
|
|
|
|
|
#include <Foundation/NSKeyValueCoding.h>
|
2002-11-28 09:35:36 +00:00
|
|
|
|
|
|
|
|
|
/** Deprecated ... use GSObjCGetValue() */
|
|
|
|
|
id
|
|
|
|
|
GSGetValue(NSObject *self, NSString *key, SEL sel,
|
|
|
|
|
const char *type, unsigned size, int offset)
|
|
|
|
|
{
|
|
|
|
|
return GSObjCGetValue(self, key, sel, type, size, offset);
|
|
|
|
|
}
|
2002-11-27 12:52:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* This is used internally by the key-value coding methods, to get a
|
|
|
|
|
* value from an object either via an accessor method (if sel is
|
|
|
|
|
* supplied), or via direct access (if type, size, and offset are
|
|
|
|
|
* supplied).<br />
|
|
|
|
|
* Automatic conversion between NSNumber and C scalar types is performed.<br />
|
|
|
|
|
* If type is null and can't be determined from the selector, the
|
|
|
|
|
* [NSObject-handleQueryWithUnboundKey:] method is called to try
|
|
|
|
|
* to get a value.
|
|
|
|
|
*/
|
|
|
|
|
id
|
2002-11-28 09:35:36 +00:00
|
|
|
|
GSObjCGetValue(NSObject *self, NSString *key, SEL sel,
|
2002-11-27 12:52:29 +00:00
|
|
|
|
const char *type, unsigned size, int offset)
|
|
|
|
|
{
|
|
|
|
|
if (sel != 0)
|
|
|
|
|
{
|
|
|
|
|
NSMethodSignature *sig = [self methodSignatureForSelector: sel];
|
|
|
|
|
|
|
|
|
|
if ([sig numberOfArguments] != 2)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInvalidArgumentException
|
|
|
|
|
format: @"key-value get method has wrong number of args"];
|
|
|
|
|
}
|
|
|
|
|
type = [sig methodReturnType];
|
|
|
|
|
}
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
{
|
|
|
|
|
return [self handleQueryWithUnboundKey: key];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
id val = nil;
|
|
|
|
|
|
|
|
|
|
switch (*type)
|
|
|
|
|
{
|
|
|
|
|
case _C_ID:
|
|
|
|
|
case _C_CLASS:
|
|
|
|
|
{
|
|
|
|
|
id v;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
v = *(id *)((char *)self + offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
id (*imp)(id, SEL) =
|
|
|
|
|
(id (*)(id, SEL))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
v = (*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = v;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_CHR:
|
|
|
|
|
{
|
|
|
|
|
signed char v;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
v = *(char *)((char *)self + offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
signed char (*imp)(id, SEL) =
|
|
|
|
|
(signed char (*)(id, SEL))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
v = (*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = [NSNumber numberWithChar: v];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_UCHR:
|
|
|
|
|
{
|
|
|
|
|
unsigned char v;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
v = *(unsigned char *)((char *)self + offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
unsigned char (*imp)(id, SEL) =
|
|
|
|
|
(unsigned char (*)(id, SEL))[self methodForSelector:
|
|
|
|
|
sel];
|
|
|
|
|
|
|
|
|
|
v = (*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = [NSNumber numberWithUnsignedChar: v];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_SHT:
|
|
|
|
|
{
|
|
|
|
|
short v;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
v = *(short *)((char *)self + offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
short (*imp)(id, SEL) =
|
|
|
|
|
(short (*)(id, SEL))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
v = (*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = [NSNumber numberWithShort: v];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_USHT:
|
|
|
|
|
{
|
|
|
|
|
unsigned short v;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
v = *(unsigned short *)((char *)self + offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
unsigned short (*imp)(id, SEL) =
|
|
|
|
|
(unsigned short (*)(id, SEL))[self methodForSelector:
|
|
|
|
|
sel];
|
|
|
|
|
|
|
|
|
|
v = (*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = [NSNumber numberWithUnsignedShort: v];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_INT:
|
|
|
|
|
{
|
|
|
|
|
int v;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
v = *(int *)((char *)self + offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int (*imp)(id, SEL) =
|
|
|
|
|
(int (*)(id, SEL))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
v = (*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = [NSNumber numberWithInt: v];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_UINT:
|
|
|
|
|
{
|
|
|
|
|
unsigned int v;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
v = *(unsigned int *)((char *)self + offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
unsigned int (*imp)(id, SEL) =
|
|
|
|
|
(unsigned int (*)(id, SEL))[self methodForSelector:
|
|
|
|
|
sel];
|
|
|
|
|
|
|
|
|
|
v = (*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = [NSNumber numberWithUnsignedInt: v];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_LNG:
|
|
|
|
|
{
|
|
|
|
|
long v;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
v = *(long *)((char *)self + offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
long (*imp)(id, SEL) =
|
|
|
|
|
(long (*)(id, SEL))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
v = (*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = [NSNumber numberWithLong: v];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_ULNG:
|
|
|
|
|
{
|
|
|
|
|
unsigned long v;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
v = *(unsigned long *)((char *)self + offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
unsigned long (*imp)(id, SEL) =
|
|
|
|
|
(unsigned long (*)(id, SEL))[self methodForSelector:
|
|
|
|
|
sel];
|
|
|
|
|
|
|
|
|
|
v = (*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = [NSNumber numberWithUnsignedLong: v];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#ifdef _C_LNG_LNG
|
|
|
|
|
case _C_LNG_LNG:
|
|
|
|
|
{
|
|
|
|
|
long long v;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
v = *(long long *)((char *)self + offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
long long (*imp)(id, SEL) =
|
|
|
|
|
(long long (*)(id, SEL))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
v = (*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = [NSNumber numberWithLongLong: v];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef _C_ULNG_LNG
|
|
|
|
|
case _C_ULNG_LNG:
|
|
|
|
|
{
|
|
|
|
|
unsigned long long v;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
v = *(unsigned long long *)((char *)self + offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
unsigned long long (*imp)(id, SEL) =
|
|
|
|
|
(unsigned long long (*)(id, SEL))[self
|
|
|
|
|
methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
v = (*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = [NSNumber numberWithUnsignedLongLong: v];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
case _C_FLT:
|
|
|
|
|
{
|
|
|
|
|
float v;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
v = *(float *)((char *)self + offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
float (*imp)(id, SEL) =
|
|
|
|
|
(float (*)(id, SEL))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
v = (*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = [NSNumber numberWithFloat: v];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_DBL:
|
|
|
|
|
{
|
|
|
|
|
double v;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
v = *(double *)((char *)self + offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
double (*imp)(id, SEL) =
|
|
|
|
|
(double (*)(id, SEL))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
v = (*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = [NSNumber numberWithDouble: v];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_VOID:
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL) =
|
|
|
|
|
(void (*)(id, SEL))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel);
|
|
|
|
|
}
|
|
|
|
|
val = nil;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
[NSException raise: NSInvalidArgumentException
|
|
|
|
|
format: @"key-value get method has unsupported type"];
|
|
|
|
|
}
|
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-28 09:35:36 +00:00
|
|
|
|
/** Deprecated ... use GSObjCSetValue() */
|
|
|
|
|
void
|
|
|
|
|
GSSetValue(NSObject *self, NSString *key, id val, SEL sel,
|
|
|
|
|
const char *type, unsigned size, int offset)
|
|
|
|
|
{
|
|
|
|
|
GSObjCSetValue(self, key, val, sel, type, size, offset);
|
|
|
|
|
}
|
2002-11-27 12:52:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* This is used internally by the key-value coding methods, to set a
|
|
|
|
|
* value in an object either via an accessor method (if sel is
|
|
|
|
|
* supplied), or via direct access (if type, size, and offset are
|
|
|
|
|
* supplied).<br />
|
|
|
|
|
* Automatic conversion between NSNumber and C scalar types is performed.<br />
|
|
|
|
|
* If type is null and can't be determined from the selector, the
|
|
|
|
|
* [NSObject-handleTakeValue:forUnboundKey:] method is called to try
|
|
|
|
|
* to set a value.
|
|
|
|
|
*/
|
|
|
|
|
void
|
2002-11-28 09:35:36 +00:00
|
|
|
|
GSObjCSetValue(NSObject *self, NSString *key, id val, SEL sel,
|
2002-11-27 12:52:29 +00:00
|
|
|
|
const char *type, unsigned size, int offset)
|
|
|
|
|
{
|
|
|
|
|
if (sel != 0)
|
|
|
|
|
{
|
|
|
|
|
NSMethodSignature *sig = [self methodSignatureForSelector: sel];
|
|
|
|
|
|
|
|
|
|
if ([sig numberOfArguments] != 3)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInvalidArgumentException
|
|
|
|
|
format: @"key-value set method has wrong number of args"];
|
|
|
|
|
}
|
|
|
|
|
type = [sig getArgumentTypeAtIndex: 2];
|
|
|
|
|
}
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
{
|
|
|
|
|
[self handleTakeValue: val forUnboundKey: key];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
switch (*type)
|
|
|
|
|
{
|
|
|
|
|
case _C_ID:
|
|
|
|
|
case _C_CLASS:
|
|
|
|
|
{
|
|
|
|
|
id v = val;
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
id *ptr = (id *)((char *)self + offset);
|
|
|
|
|
|
|
|
|
|
[*ptr autorelease];
|
|
|
|
|
*ptr = [v retain];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL, id) =
|
|
|
|
|
(void (*)(id, SEL, id))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel, val);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_CHR:
|
|
|
|
|
{
|
|
|
|
|
char v = [val charValue];
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
char *ptr = (char *)((char *)self + offset);
|
|
|
|
|
|
|
|
|
|
*ptr = v;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL, char) =
|
|
|
|
|
(void (*)(id, SEL, char))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel, v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_UCHR:
|
|
|
|
|
{
|
|
|
|
|
unsigned char v = [val unsignedCharValue];
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
unsigned char *ptr = (unsigned char*)((char *)self + offset);
|
|
|
|
|
|
|
|
|
|
*ptr = v;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL, unsigned char) =
|
|
|
|
|
(void (*)(id, SEL, unsigned char))[self methodForSelector:
|
|
|
|
|
sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel, v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_SHT:
|
|
|
|
|
{
|
|
|
|
|
short v = [val shortValue];
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
short *ptr = (short*)((char *)self + offset);
|
|
|
|
|
|
|
|
|
|
*ptr = v;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL, short) =
|
|
|
|
|
(void (*)(id, SEL, short))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel, v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_USHT:
|
|
|
|
|
{
|
|
|
|
|
unsigned short v = [val unsignedShortValue];
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
unsigned short *ptr;
|
|
|
|
|
|
|
|
|
|
ptr = (unsigned short*)((char *)self + offset);
|
|
|
|
|
*ptr = v;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL, unsigned short) =
|
|
|
|
|
(void (*)(id, SEL, unsigned short))[self methodForSelector:
|
|
|
|
|
sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel, v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_INT:
|
|
|
|
|
{
|
|
|
|
|
int v = [val intValue];
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
int *ptr = (int*)((char *)self + offset);
|
|
|
|
|
|
|
|
|
|
*ptr = v;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL, int) =
|
|
|
|
|
(void (*)(id, SEL, int))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel, v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_UINT:
|
|
|
|
|
{
|
|
|
|
|
unsigned int v = [val unsignedIntValue];
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
unsigned int *ptr = (unsigned int*)((char *)self + offset);
|
|
|
|
|
|
|
|
|
|
*ptr = v;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL, unsigned int) =
|
|
|
|
|
(void (*)(id, SEL, unsigned int))[self methodForSelector:
|
|
|
|
|
sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel, v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_LNG:
|
|
|
|
|
{
|
|
|
|
|
long v = [val longValue];
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
long *ptr = (long*)((char *)self + offset);
|
|
|
|
|
|
|
|
|
|
*ptr = v;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL, long) =
|
|
|
|
|
(void (*)(id, SEL, long))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel, v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_ULNG:
|
|
|
|
|
{
|
|
|
|
|
unsigned long v = [val unsignedLongValue];
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
unsigned long *ptr = (unsigned long*)((char *)self + offset);
|
|
|
|
|
|
|
|
|
|
*ptr = v;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL, unsigned long) =
|
|
|
|
|
(void (*)(id, SEL, unsigned long))[self methodForSelector:
|
|
|
|
|
sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel, v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#ifdef _C_LNG_LNG
|
|
|
|
|
case _C_LNG_LNG:
|
|
|
|
|
{
|
|
|
|
|
long long v = [val longLongValue];
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
long long *ptr = (long long*)((char *)self + offset);
|
|
|
|
|
|
|
|
|
|
*ptr = v;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL, long long) =
|
|
|
|
|
(void (*)(id, SEL, long long))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel, v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef _C_ULNG_LNG
|
|
|
|
|
case _C_ULNG_LNG:
|
|
|
|
|
{
|
|
|
|
|
unsigned long long v = [val unsignedLongLongValue];
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
unsigned long long *ptr = (unsigned long long*)((char*)self +
|
|
|
|
|
offset);
|
|
|
|
|
|
|
|
|
|
*ptr = v;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL, unsigned long long) =
|
|
|
|
|
(void (*)(id, SEL, unsigned long long))[self
|
|
|
|
|
methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel, v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
case _C_FLT:
|
|
|
|
|
{
|
|
|
|
|
float v = [val floatValue];
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
float *ptr = (float*)((char *)self + offset);
|
|
|
|
|
|
|
|
|
|
*ptr = v;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL, float) =
|
|
|
|
|
(void (*)(id, SEL, float))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel, v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _C_DBL:
|
|
|
|
|
{
|
|
|
|
|
double v = [val doubleValue];
|
|
|
|
|
|
|
|
|
|
if (sel == 0)
|
|
|
|
|
{
|
|
|
|
|
double *ptr = (double*)((char *)self + offset);
|
|
|
|
|
|
|
|
|
|
*ptr = v;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
void (*imp)(id, SEL, double) =
|
|
|
|
|
(void (*)(id, SEL, double))[self methodForSelector: sel];
|
|
|
|
|
|
|
|
|
|
(*imp)(self, sel, v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
[NSException raise: NSInvalidArgumentException
|
|
|
|
|
format: @"key-value set method has unsupported type"];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Getting a system error message on a variety of systems */
|
|
|
|
|
#ifdef __MINGW__
|
|
|
|
|
LPTSTR GetErrorMsg(DWORD msgId)
|
|
|
|
|
{
|
|
|
|
|
LPVOID lpMsgBuf;
|
|
|
|
|
|
|
|
|
|
FormatMessage(
|
|
|
|
|
FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
|
|
|
|
FORMAT_MESSAGE_FROM_SYSTEM |
|
|
|
|
|
FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
|
NULL, msgId,
|
|
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
|
|
|
|
|
(LPTSTR)&lpMsgBuf, 0, NULL);
|
|
|
|
|
|
|
|
|
|
return (LPTSTR)lpMsgBuf;
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
#ifndef HAVE_STRERROR
|
|
|
|
|
const char*
|
|
|
|
|
strerror(int eno)
|
|
|
|
|
{
|
|
|
|
|
extern char* sys_errlist[];
|
|
|
|
|
extern int sys_nerr;
|
|
|
|
|
|
|
|
|
|
if (eno < 0 || eno >= sys_nerr)
|
|
|
|
|
{
|
|
|
|
|
return("unknown error number");
|
|
|
|
|
}
|
|
|
|
|
return(sys_errlist[eno]);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#endif /* __MINGW__ */
|
|
|
|
|
|
|
|
|
|
const char *
|
|
|
|
|
GSLastErrorStr(long error_id)
|
|
|
|
|
{
|
|
|
|
|
#ifdef __MINGW__
|
|
|
|
|
return GetErrorMsg(GetLastError());
|
|
|
|
|
#else
|
|
|
|
|
return strerror(error_id);
|
|
|
|
|
#endif
|
|
|
|
|
}
|