libcpp/ChangeLog.pph
[official-gcc.git] / libobjc / Object.m
blob224c0aa66bc463b345ff7480f5aff99fb9b9f9a7
1 /* The implementation of class Object for Objective-C.
2    Copyright (C) 1993, 1994, 1995, 1997, 2002, 2009, 2010
3    Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3, or (at your option) any
10 later version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
15 License for more details.
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
24 <http://www.gnu.org/licenses/>.  */
26 #include "objc-private/common.h"
27 #include <stdarg.h>
28 #include <errno.h>
29 #include "objc/Object.h"
30 #include "objc/Protocol.h"
31 #include "objc/objc-api.h"
33 @implementation Object
35 - (Class)class
37   return object_get_class (self);
40 - (BOOL)isEqual: (id)anObject
42   return self == anObject;
45 @end
47 /* The following methods were deprecated in GCC 4.6.0 and will be
48    removed in the next GCC release.  */
49 @implementation Object (Deprecated)
51 + initialize
53   return self;
56 - init
58   return self;
61 + new
63   return [[self alloc] init];
66 + alloc
68   return class_create_instance(self);
71 - free
73   return object_dispose(self);
76 - copy
78   return [[self shallowCopy] deepen];
81 - shallowCopy
83   return object_copy(self);
86 - deepen
88   return self;
91 - deepCopy
93   return [self copy];
96 - (Class)superClass
98   return object_get_super_class(self);
101 - (MetaClass)metaClass
103   return object_get_meta_class(self);
106 - (const char *)name
108   return object_get_class_name(self);
111 - self
113   return self;
116 - (unsigned int)hash
118   return (size_t)self;
121 - (int)compare:(id)anotherObject;
123   if ([self isEqual:anotherObject])
124     return 0;
125   // Ordering objects by their address is pretty useless, 
126   // so subclasses should override this is some useful way.
127   else if ((id)self > anotherObject)
128     return 1;
129   else 
130     return -1;
133 - (BOOL)isMetaClass
135   return NO;
138 - (BOOL)isClass
140   return object_is_class(self);
143 - (BOOL)isInstance
145   return object_is_instance(self);
148 - (BOOL)isKindOf:(Class)aClassObject
150   Class class;
152   for (class = self->isa; class!=Nil; class = class_get_super_class(class))
153     if (class==aClassObject)
154       return YES;
155   return NO;
158 - (BOOL)isMemberOf:(Class)aClassObject
160   return self->isa==aClassObject;
163 - (BOOL)isKindOfClassNamed:(const char *)aClassName
165   Class class;
167   if (aClassName!=NULL)
168     for (class = self->isa; class!=Nil; class = class_get_super_class(class))
169       if (!strcmp(class_get_class_name(class), aClassName))
170         return YES;
171   return NO;
174 - (BOOL)isMemberOfClassNamed:(const char *)aClassName
176   return ((aClassName!=NULL)
177           &&!strcmp(class_get_class_name(self->isa), aClassName));
180 + (BOOL)instancesRespondTo:(SEL)aSel
182   return class_get_instance_method(self, aSel) != (Method_t)0;
185 - (BOOL)respondsTo:(SEL)aSel
187   return ((object_is_instance(self)
188            ?class_get_instance_method(self->isa, aSel)
189            :class_get_class_method(self->isa, aSel)) != (Method_t)0);
192 + (IMP)instanceMethodFor:(SEL)aSel
194   return method_get_imp(class_get_instance_method(self, aSel));
197 // Indicates if the receiving class or instance conforms to the given protocol
198 // not usually overridden by subclasses
200 // Modified 9/5/94 to always search the class object's protocol list, rather
201 // than the meta class.
203 + (BOOL) conformsTo: (Protocol*)aProtocol
205   size_t i;
206   struct objc_protocol_list* proto_list;
207   id parent;
209   for (proto_list = ((Class)self)->protocols;
210        proto_list; proto_list = proto_list->next)
211     {
212       for (i=0; i < proto_list->count; i++)
213       {
214         if ([proto_list->list[i] conformsTo: aProtocol])
215           return YES;
216       }
217     }
219   if ((parent = [self superClass]))
220     return [parent conformsTo: aProtocol];
221   else
222     return NO;
225 - (BOOL) conformsTo: (Protocol*)aProtocol
227   return [[self class] conformsTo:aProtocol];
230 - (IMP)methodFor:(SEL)aSel
232   return (method_get_imp(object_is_instance(self)
233                          ?class_get_instance_method(self->isa, aSel)
234                          :class_get_class_method(self->isa, aSel)));
237 + (struct objc_method_description *)descriptionForInstanceMethod:(SEL)aSel
239   return ((struct objc_method_description *)
240            class_get_instance_method(self, aSel));
243 - (struct objc_method_description *)descriptionForMethod:(SEL)aSel
245   return ((struct objc_method_description *)
246            (object_is_instance(self)
247             ?class_get_instance_method(self->isa, aSel)
248             :class_get_class_method(self->isa, aSel)));
251 - perform:(SEL)aSel
253   IMP msg = objc_msg_lookup(self, aSel);
254   if (!msg)
255     return [self error:"invalid selector passed to %s", sel_get_name(_cmd)];
256   return (*msg)(self, aSel);
259 - perform:(SEL)aSel with:anObject
261   IMP msg = objc_msg_lookup(self, aSel);
262   if (!msg)
263     return [self error:"invalid selector passed to %s", sel_get_name(_cmd)];
264   return (*msg)(self, aSel, anObject);
267 - perform:(SEL)aSel with:anObject1 with:anObject2
269   IMP msg = objc_msg_lookup(self, aSel);
270   if (!msg)
271     return [self error:"invalid selector passed to %s", sel_get_name(_cmd)];
272   return (*msg)(self, aSel, anObject1, anObject2);
275 - (retval_t)forward:(SEL)aSel :(arglist_t)argFrame
277   (void) argFrame; /* UNUSED */
278   return (retval_t)[self doesNotRecognize: aSel];
281 - (retval_t)performv:(SEL)aSel :(arglist_t)argFrame
283   return objc_msg_sendv(self, aSel, argFrame);
286 + poseAs:(Class)aClassObject
288   return class_pose_as(self, aClassObject);
291 - (Class)transmuteClassTo:(Class)aClassObject
293   if (object_is_instance(self))
294     if (class_is_class(aClassObject))
295       if (class_get_instance_size(aClassObject)==class_get_instance_size(isa))
296         if ([self isKindOf:aClassObject])
297           {
298             Class old_isa = isa;
299             isa = aClassObject;
300             return old_isa;
301           }
302   return nil;
305 - subclassResponsibility:(SEL)aSel
307   return [self error:"subclass should override %s", sel_get_name(aSel)];
310 - notImplemented:(SEL)aSel
312   return [self error:"method %s not implemented", sel_get_name(aSel)];
315 - shouldNotImplement:(SEL)aSel
317   return [self error:"%s should not implement %s", 
318                      object_get_class_name(self), sel_get_name(aSel)];
321 - doesNotRecognize:(SEL)aSel
323   return [self error:"%s does not recognize %s",
324                      object_get_class_name(self), sel_get_name(aSel)];
327 - error:(const char *)aString, ...
329 #define FMT "error: %s (%s)\n%s\n"
330   char fmt[(strlen((char*)FMT)+strlen((char*)object_get_class_name(self))
331             +((aString!=NULL)?strlen((char*)aString):0)+8)];
332   va_list ap;
334   sprintf(fmt, FMT, object_get_class_name(self),
335                     object_is_instance(self)?"instance":"class",
336                     (aString!=NULL)?aString:"");
337   va_start(ap, aString);
338   objc_verror(self, OBJC_ERR_UNKNOWN, fmt, ap);
339   va_end(ap);
340   return nil;
341 #undef FMT
344 + (int)version
346   return class_get_version(self);
349 + setVersion:(int)aVersion
351   class_set_version(self, aVersion);
352   return self;
355 + (int)streamVersion: (TypedStream*)aStream
357   if (aStream->mode == OBJC_READONLY)
358     return objc_get_stream_class_version (aStream, self);
359   else
360     return class_get_version (self);
363 // These are used to write or read the instance variables 
364 // declared in this particular part of the object.  Subclasses
365 // should extend these, by calling [super read/write: aStream]
366 // before doing their own archiving.  These methods are private, in
367 // the sense that they should only be called from subclasses.
369 - read: (TypedStream*)aStream
371   (void) aStream; /* UNUSED */
372   // [super read: aStream];  
373   return self;
376 - write: (TypedStream*)aStream
378   (void) aStream; /* UNUSED */
379   // [super write: aStream];
380   return self;
383 - awake
385   // [super awake];
386   return self;
389 @end