1 /* Test the Modern GNU Objective-C Runtime API.
3 This is test 'class', covering all functions starting with 'class'.
4 Tests calling the functions with a meta class as argument are covered
5 in the separate file, gnu-api-2-class-meta.m. */
8 /* { dg-skip-if "No API#2 pre-Darwin9" { *-*-darwin[5-8]* } { "-fnext-runtime" } { "" } } */
9 /* { dg-xfail-run-if "Needs OBJC2 ABI" { *-*-darwin* && { lp64 && { ! objc2 } } } { "-fnext-runtime" } { "" } } */
11 /* To get the modern GNU Objective-C Runtime API, you include
13 #include <objc/runtime.h>
18 @interface MyRootClass
25 @implementation MyRootClass
26 + alloc { return class_createInstance (self, 0); }
27 - init { return self; }
28 + initialize { return self; }
35 @protocol MySecondProtocol
36 - (id) setVariable: (id)value;
39 @interface MySubClass : MyRootClass <MyProtocol>
41 - (void) setVariable: (id)value;
45 @implementation MySubClass
46 - (void) setVariable: (id)value { variable_ivar = value; }
47 - (id) variable { return variable_ivar; }
50 @interface MyOtherSubClass : MySubClass
53 @implementation MyOtherSubClass
56 @interface DifferentClass : MyRootClass
61 @implementation DifferentClass
62 - (id) myClass { return object_getClass (self); }
63 - (id) self { return self; }
66 @interface MySubClass (MySelf)
70 /* Hack to calculate the log2 of a byte alignment. */
72 log_2_of (unsigned int x)
74 unsigned char result = 0;
76 /* We count how many times we need to divide by 2 before we reach 1.
77 This algorithm is good enough for the small numbers (such as 8,
78 16 or 64) that we have to deal with. */
88 int main(int argc, void **args)
90 /* Functions are tested in alphabetical order. */
92 printf ("Testing class_addIvar ()...\n");
94 Class new_class = objc_allocateClassPair (objc_getClass ("MySubClass"), "MySubSubClass", 0);
99 if (! class_addIvar (new_class, "variable2_ivar", sizeof (id),
100 log_2_of (__alignof__ (id)), @encode (id)))
103 if (! class_addIvar (new_class, "variable3_ivar", sizeof (unsigned char),
104 log_2_of (__alignof__ (unsigned char)), @encode (unsigned char)))
107 if (! class_addIvar (new_class, "variable4_ivar", sizeof (unsigned long),
108 log_2_of (__alignof__ (unsigned long)), @encode (unsigned long)))
111 objc_registerClassPair (new_class);
114 MySubClass *o = [[(Class)objc_getClass ("MySubSubClass") alloc] init];
115 Ivar variable2 = class_getInstanceVariable (objc_getClass ("MySubSubClass"), "variable2_ivar");
116 Ivar variable3 = class_getInstanceVariable (objc_getClass ("MySubSubClass"), "variable3_ivar");
117 Ivar variable4 = class_getInstanceVariable (objc_getClass ("MySubSubClass"), "variable4_ivar");
119 if (variable2 == NULL || variable3 == NULL || variable4 == NULL)
122 if (strcmp (ivar_getName (variable2), "variable2_ivar") != 0)
125 if (strcmp (ivar_getName (variable3), "variable3_ivar") != 0)
128 if (strcmp (ivar_getName (variable4), "variable4_ivar") != 0)
132 unsigned char *var3 = (unsigned char *)((char *)o + ivar_getOffset (variable3));
133 unsigned long *var4 = (unsigned long *)((char *)o + ivar_getOffset (variable4));
135 object_setIvar (o, variable2, new_class);
139 if (object_getIvar (o, variable2) != new_class)
151 printf ("Testing class_addMethod ()...\n");
153 Class new_class = objc_allocateClassPair (objc_getClass ("MyRootClass"), "MySubClass2", 0);
154 Method method1 = class_getInstanceMethod (objc_getClass ("MySubClass"), @selector (setVariable:));
155 Method method2 = class_getInstanceMethod (objc_getClass ("MySubClass"), @selector (variable));
157 if (new_class == Nil)
160 if (! class_addIvar (new_class, "variable_ivar", sizeof (id),
161 log_2_of (__alignof__ (id)), @encode (id)))
164 if (! class_addMethod (new_class, @selector (setVariable:), method_getImplementation (method1),
165 method_getTypeEncoding (method1)))
168 if (! class_addMethod (new_class, @selector (variable), method_getImplementation (method2),
169 method_getTypeEncoding (method2)))
172 /* Test that if the method already exists in the class,
173 class_addMethod() returns NO. */
174 if (class_addMethod (new_class, @selector (variable), method_getImplementation (method2),
175 method_getTypeEncoding (method2)))
178 objc_registerClassPair (new_class);
180 /* Now, MySubClass2 is basically the same as MySubClass! We'll
181 use the variable and setVariable: methods on it. */
183 MySubClass *o = (MySubClass *)[[(Class)objc_getClass ("MySubClass2") alloc] init];
187 if ([o variable] != o)
191 /* Now, try that if you take an existing class and try to add an
192 already existing method, class_addMethod returns NO. This is
193 subtly different from before, when 'new_class' was still in
194 construction. Now it's a real class and the libobjc internals
195 differ between the two cases. */
196 if (class_addMethod (new_class, @selector (variable), method_getImplementation (method2),
197 method_getTypeEncoding (method2)))
201 printf ("Testing class_addProtocol ()...\n");
203 if (!class_addProtocol (objc_getClass ("MySubClass"), @protocol (MySecondProtocol)))
206 if (!class_conformsToProtocol (objc_getClass ("MySubClass"), @protocol (MyProtocol)))
209 if (!class_conformsToProtocol (objc_getClass ("MySubClass"), @protocol (MySecondProtocol)))
213 printf ("Testing class_conformsToProtocol ()...\n");
215 if (class_conformsToProtocol (objc_getClass ("MyRootClass"), @protocol (MyProtocol)))
218 if (!class_conformsToProtocol (objc_getClass ("MySubClass"), @protocol (MyProtocol)))
221 /* Test that class_conformsToProtocol checks the class, but not
223 if (class_conformsToProtocol (objc_getClass ("MyOtherSubClass"), @protocol (MyProtocol)))
227 printf ("Testing class_copyIvarList ()...\n");
230 Ivar * list = class_copyIvarList (objc_getClass ("MySubClass"), &count);
235 if (strcmp (ivar_getName (list[0]), "variable_ivar") != 0)
242 printf ("Testing class_copyMethodList ()...\n");
245 Method * list = class_copyMethodList (objc_getClass ("MySubClass"), &count);
250 if (! ((strcmp (sel_getName (method_getName (list[0])), "variable") == 0
251 && strcmp (sel_getName (method_getName (list[1])), "setVariable:") == 0)
252 || (strcmp (sel_getName (method_getName (list[0])), "setVariable:") == 0
253 && strcmp (sel_getName (method_getName (list[1])), "variable") == 0)))
260 /* TODO: Test new ABI (when available). */
261 printf ("Testing class_copyPropertyList ()...\n");
264 objc_property_t * list = class_copyPropertyList (objc_getClass ("MySubClass"), &count);
266 if (count != 0 || list != NULL)
270 printf ("Testing class_copyProtocolList ()...\n");
273 Protocol ** list = class_copyProtocolList (objc_getClass ("MySubClass"), &count);
275 /* Remember that we added MySecondProtocol in the test above. */
279 if (! ((strcmp (protocol_getName (list[0]), "MyProtocol") == 0
280 && strcmp (protocol_getName (list[1]), "MySecondProtocol") == 0)
281 || (strcmp (protocol_getName (list[0]), "MySecondProtocol") == 0
282 && strcmp (protocol_getName (list[1]), "MyProtocol") == 0)))
289 printf ("Testing class_createInstance ()...\n");
291 MySubClass *object = [[MySubClass alloc] init];
293 [object setVariable: object];
294 if ([object variable] != object)
298 printf ("Testing class_getClassMethod ()...\n");
300 Method method = class_getClassMethod (objc_getClass ("MySubClass"),
306 if (strcmp (sel_getName (method_getName (method)), "alloc") != 0)
309 if (class_getClassMethod (objc_getClass ("MySubClass"),
310 @selector(variable)))
314 printf ("Testing class_getClassVariable ()...\n");
316 if (class_getClassVariable (objc_getClass ("MySubClass"), "variable_ivar"))
320 printf ("Testing class_getInstanceMethod ()...\n");
322 Method method = class_getInstanceMethod (objc_getClass ("MySubClass"),
323 @selector(variable));
328 if (strcmp (sel_getName (method_getName (method)), "variable") != 0)
331 if (class_getInstanceMethod (objc_getClass ("MySubClass"),
336 printf ("Testing class_getInstanceSize ()...\n");
338 if (class_getInstanceSize (objc_getClass ("MyRootClass")) != sizeof (struct objc_object))
342 printf ("Testing class_getInstanceVariable ()...\n");
344 Ivar variable = class_getInstanceVariable (objc_getClass ("MySubClass"), "variable_ivar");
346 if (variable == NULL)
349 if (strcmp (ivar_getName (variable), "variable_ivar") != 0)
352 if (class_getInstanceVariable (objc_getClass ("MySubClass"), "variable_ivar_no"))
356 printf ("Testing class_getIvarLayout ()...\n");
358 if (class_getIvarLayout (objc_getClass ("MyRootClass")) != NULL)
362 printf ("Testing class_getMethodImplementation ()...\n");
364 MySubClass *object = [[MySubClass alloc] init];
365 IMP imp = class_getMethodImplementation (objc_getClass ("MySubClass"),
366 @selector(variable));
371 [object setVariable: object];
373 if ((*imp)(object, @selector(variable)) != object)
377 /* This function does not exist with the GNU runtime. */
378 /* printf ("Testing class_getMethodImplementation_stret ()...\n"); */
380 printf ("Testing class_getName ()...\n");
382 if (strcmp (class_getName (objc_getClass ("MyRootClass")),
387 /* TODO: Test new ABI (when available). */
388 printf ("Testing class_getProperty ()...\n");
390 if (class_getProperty (objc_getClass ("MyRootClass"), "property") != NULL)
394 printf ("Testing class_getSuperclass ()...\n");
396 MySubClass *object = [[MySubClass alloc] init];
397 if (class_getSuperclass (object_getClass (object)) != objc_getClass ("MyRootClass"))
400 /* Test that it works on a newly created, but not registered, class. */
402 Class new_class = objc_allocateClassPair (objc_getClass ("MyRootClass"), "MySubClass3", 0);
404 if (class_getSuperclass (new_class) != objc_getClass ("MyRootClass"))
409 printf ("Testing class_getVersion ()...\n");
411 if (class_getVersion (objc_getClass ("MySubClass")) != 0)
415 printf ("Testing class_getWeakIvarLayout ()...\n");
417 if (class_getWeakIvarLayout (objc_getClass ("MyRootClass")) != NULL)
421 printf ("Testing class_isMetaClass ()...\n");
423 MySubClass *object = [[MySubClass alloc] init];
424 if (class_isMetaClass (object_getClass (object))
425 || ! class_isMetaClass (object_getClass (object_getClass (object))))
429 printf ("Testing class_replaceMethod ()...\n");
431 Method new_method = class_getInstanceMethod (objc_getClass ("DifferentClass"),
432 @selector (myClass));
433 Method old_method = class_getInstanceMethod (objc_getClass ("MySubClass"),
434 @selector (variable));
435 const char *new_types = method_getTypeEncoding (new_method);
436 IMP new_imp = method_getImplementation (new_method);
437 const char *old_types = method_getTypeEncoding (old_method);
438 IMP old_imp = class_replaceMethod (objc_getClass ("MySubClass"), @selector (variable),
439 method_getImplementation (new_method),
440 method_getTypeEncoding (new_method));
441 MySubClass *o = [[MySubClass alloc] init];
445 /* Try the new method implementation. */
446 if ([o variable] != objc_getClass ("MySubClass"))
449 /* Put the original method back. */
450 class_replaceMethod (objc_getClass ("MySubClass"), @selector (variable),
453 /* Test it's back to what it was. */
454 if ([o variable] != o)
458 DifferentClass *o = [[DifferentClass alloc] init];
460 /* Finally, try adding a new method. */
461 class_replaceMethod (objc_getClass ("DifferentClass"), @selector (mySelf),
464 if ([(MySubClass*)o mySelf] != objc_getClass ("DifferentClass"))
469 printf ("Testing class_respondsToSelector ()...\n");
471 if (! class_respondsToSelector (objc_getClass ("MySubClass"), @selector(setVariable:)))
474 if (class_respondsToSelector (objc_getClass ("MyRootClass"), @selector(setVariable:)))
478 /* This is not really implemented with the GNU runtime. */
479 /* printf ("Testing class_setIvarLayout ()...\n"); */
481 printf ("Testing class_setVersion ()...\n");
483 class_setVersion (objc_getClass ("MySubClass"), 45);
485 if (class_getVersion (objc_getClass ("MySubClass")) != 45)
488 class_setVersion (objc_getClass ("MySubClass"), 46);
490 if (class_getVersion (objc_getClass ("MySubClass")) != 46)
494 /* This is not really implemented with the GNU runtime. */
495 /* printf ("Testing class_setWeakIvarLayout ()...\n"); */