(find_barrier): Set si_limit to 1018 instead of 1020, and
[official-gcc.git] / gcc / objc / Object.m
blob518d02a3a67ca9803c48f88fb87395f9d4d5af57
1 /* The implementation of class Object for Objective-C.
2    Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
9 later version.
11 GNU CC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
14 License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
21 /* As a special exception, if you link this library with files compiled
22    with GCC to produce an executable, this does not cause the resulting
23    executable to be covered by the GNU General Public License.  This
24    exception does not however invalidate any other reasons why the
25    executable file might be covered by the GNU General Public License. */
27 #include <stdarg.h>
28 #include "objc/Object.h"
29 #include "objc/Protocol.h"
30 #include "objc/objc-api.h"
32 extern void (*_objc_error)(id object, const char *format, va_list);
34 extern int errno;
36 #define MAX_CLASS_NAME_LEN 256
38 @implementation Object
40 + initialize
42   return self;
45 - init
47   return self;
50 + new
52   return [[self alloc] init];
55 + alloc
57   return class_create_instance(self);
60 - free
62   return object_dispose(self);
65 - copy
67   return [[self shallowCopy] deepen];
70 - shallowCopy
72   return object_copy(self);
75 - deepen
77   return self;
80 - deepCopy
82   return [self copy];
85 - (Class)class
87   return object_get_class(self);
90 - (Class)superClass
92   return object_get_super_class(self);
95 - (MetaClass)metaClass
97   return object_get_meta_class(self);
100 - (const char *)name
102   return object_get_class_name(self);
105 - self
107   return self;
110 - (unsigned int)hash
112   return (size_t)self;
115 - (BOOL)isEqual:anObject
117   return self==anObject;
120 - (int)compare:anotherObject;
122   if ([self isEqual:anotherObject])
123     return 0;
124   // Ordering objects by their address is pretty useless, 
125   // so subclasses should override this is some useful way.
126   else if (self > anotherObject)
127     return 1;
128   else 
129     return -1;
132 - (BOOL)isMetaClass
134   return NO;
137 - (BOOL)isClass
139   return object_is_class(self);
142 - (BOOL)isInstance
144   return object_is_instance(self);
147 - (BOOL)isKindOf:(Class)aClassObject
149   Class class;
151   for (class = self->isa; class!=Nil; class = class_get_super_class(class))
152     if (class==aClassObject)
153       return YES;
154   return NO;
157 - (BOOL)isMemberOf:(Class)aClassObject
159   return self->isa==aClassObject;
162 - (BOOL)isKindOfClassNamed:(const char *)aClassName
164   Class class;
166   if (aClassName!=NULL)
167     for (class = self->isa; class!=Nil; class = class_get_super_class(class))
168       if (!strcmp(class_get_class_name(class), aClassName))
169         return YES;
170   return NO;
173 - (BOOL)isMemberOfClassNamed:(const char *)aClassName
175   return ((aClassName!=NULL)
176           &&!strcmp(class_get_class_name(self->isa), aClassName));
179 + (BOOL)instancesRespondTo:(SEL)aSel
181   return class_get_instance_method(self, aSel)!=METHOD_NULL;
184 - (BOOL)respondsTo:(SEL)aSel
186   return ((object_is_instance(self)
187            ?class_get_instance_method(self->isa, aSel)
188            :class_get_class_method(self->isa, aSel))!=METHOD_NULL);
191 + (IMP)instanceMethodFor:(SEL)aSel
193   return method_get_imp(class_get_instance_method(self, aSel));
196 // Indicates if the receiving class or instance conforms to the given protocol
197 // not usually overridden by subclasses
199 // Modified 9/5/94 to always search the class object's protocol list, rather
200 // than the meta class.
202 + (BOOL) conformsTo: (Protocol*)aProtocol
204   int i;
205   struct objc_protocol_list* proto_list;
206   id parent;
208   for (proto_list = ((Class)self)->protocols;
209        proto_list; proto_list = proto_list->next)
210     {
211       for (i=0; i < proto_list->count; i++)
212       {
213         if ([proto_list->list[i] conformsTo: aProtocol])
214           return YES;
215       }
216     }
218   if (parent = [self superClass])
219     return [parent conformsTo: aProtocol];
220   else
221     return NO;
224 - (BOOL) conformsTo: (Protocol*)aProtocol
226   return [[self class] conformsTo:aProtocol];
229 - (IMP)methodFor:(SEL)aSel
231   return (method_get_imp(object_is_instance(self)
232                          ?class_get_instance_method(self->isa, aSel)
233                          :class_get_class_method(self->isa, aSel)));
236 + (struct objc_method_description *)descriptionForInstanceMethod:(SEL)aSel
238   return ((struct objc_method_description *)
239            class_get_instance_method(self, aSel));
242 - (struct objc_method_description *)descriptionForMethod:(SEL)aSel
244   return ((struct objc_method_description *)
245            (object_is_instance(self)
246             ?class_get_instance_method(self->isa, aSel)
247             :class_get_class_method(self->isa, aSel)));
250 - perform:(SEL)aSel
252   IMP msg = objc_msg_lookup(self, aSel);
253   if (!msg)
254     return [self error:"invalid selector passed to %s", sel_get_name(_cmd)];
255   return (*msg)(self, aSel);
258 - perform:(SEL)aSel with:anObject
260   IMP msg = objc_msg_lookup(self, aSel);
261   if (!msg)
262     return [self error:"invalid selector passed to %s", sel_get_name(_cmd)];
263   return (*msg)(self, aSel, anObject);
266 - perform:(SEL)aSel with:anObject1 with:anObject2
268   IMP msg = objc_msg_lookup(self, aSel);
269   if (!msg)
270     return [self error:"invalid selector passed to %s", sel_get_name(_cmd)];
271   return (*msg)(self, aSel, anObject1, anObject2);
274 - (retval_t)forward:(SEL)aSel :(arglist_t)argFrame
276   return (retval_t)[self doesNotRecognize: aSel];
279 - (retval_t)performv:(SEL)aSel :(arglist_t)argFrame
281   return objc_msg_sendv(self, aSel, argFrame);
284 + poseAs:(Class)aClassObject
286   return class_pose_as(self, aClassObject);
289 - (Class)transmuteClassTo:(Class)aClassObject
291   if (object_is_instance(self))
292     if (class_is_class(aClassObject))
293       if (class_get_instance_size(aClassObject)==class_get_instance_size(isa))
294         if ([self isKindOf:aClassObject])
295           {
296             Class old_isa = isa;
297             isa = aClassObject;
298             return old_isa;
299           }
300   return nil;
303 - subclassResponsibility:(SEL)aSel
305   return [self error:"subclass should override %s", sel_get_name(aSel)];
308 - notImplemented:(SEL)aSel
310   return [self error:"method %s not implemented", sel_get_name(aSel)];
313 - shouldNotImplement:(SEL)aSel
315   return [self error:"%s should not implement %s", 
316                      object_get_class_name(self), sel_get_name(aSel)];
319 - doesNotRecognize:(SEL)aSel
321   return [self error:"%s does not recognize %s",
322                      object_get_class_name(self), sel_get_name(aSel)];
325 #ifdef __alpha__
326 extern size_t strlen(const char*);
327 #endif
329 - error:(const char *)aString, ...
331 #define FMT "error: %s (%s)\n%s\n"
332   char fmt[(strlen((char*)FMT)+strlen((char*)object_get_class_name(self))
333             +((aString!=NULL)?strlen((char*)aString):0)+8)];
334   va_list ap;
336   sprintf(fmt, FMT, object_get_class_name(self),
337                     object_is_instance(self)?"instance":"class",
338                     (aString!=NULL)?aString:"");
339   va_start(ap, aString);
340   (*_objc_error)(self, fmt, ap);
341   va_end(ap);
342   return nil;
343 #undef FMT
346 + (int)version
348   return class_get_version(self);
351 + setVersion:(int)aVersion
353   class_set_version(self, aVersion);
354   return self;
357 + (int)streamVersion: (TypedStream*)aStream
359   if (aStream->mode == OBJC_READONLY)
360     return objc_get_stream_class_version (aStream, self);
361   else
362     return class_get_version (self);
365 // These are used to write or read the instance variables 
366 // declared in this particular part of the object.  Subclasses
367 // should extend these, by calling [super read/write: aStream]
368 // before doing their own archiving.  These methods are private, in
369 // the sense that they should only be called from subclasses.
371 - read: (TypedStream*)aStream
373   // [super read: aStream];  
374   return self;
377 - write: (TypedStream*)aStream
379   // [super write: aStream];
380   return self;
383 - awake
385   // [super awake];
386   return self;
389 @end