forked from RetVal/objc-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
association.m
145 lines (117 loc) · 2.17 KB
/
association.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// TEST_CONFIG
#include "test.h"
#include <Foundation/NSObject.h>
#include <objc/runtime.h>
static int values;
static int supers;
static int subs;
static const char *key = "key";
@interface Value : NSObject @end
@interface Super : NSObject @end
@interface Sub : NSObject @end
@interface Super2 : NSObject @end
@interface Sub2 : NSObject @end
@implementation Super
-(id) init
{
// rdar://8270243 don't lose associations after isa swizzling
id value = [Value new];
objc_setAssociatedObject(self, &key, value, OBJC_ASSOCIATION_RETAIN);
RELEASE_VAR(value);
object_setClass(self, [Sub class]);
return self;
}
-(void) dealloc
{
supers++;
SUPER_DEALLOC();
}
-(void) finalize
{
supers++;
[super finalize];
}
@end
@implementation Sub
-(void) dealloc
{
subs++;
SUPER_DEALLOC();
}
-(void) finalize
{
subs++;
[super finalize];
}
@end
@implementation Super2
-(id) init
{
// rdar://9617109 don't lose associations after isa swizzling
id value = [Value new];
object_setClass(self, [Sub2 class]);
objc_setAssociatedObject(self, &key, value, OBJC_ASSOCIATION_RETAIN);
RELEASE_VAR(value);
object_setClass(self, [Super2 class]);
return self;
}
-(void) dealloc
{
supers++;
SUPER_DEALLOC();
}
-(void) finalize
{
supers++;
[super finalize];
}
@end
@implementation Sub2
-(void) dealloc
{
subs++;
SUPER_DEALLOC();
}
-(void) finalize
{
subs++;
[super finalize];
}
@end
@implementation Value
-(void) dealloc {
values++;
SUPER_DEALLOC();
}
-(void) finalize {
values++;
[super finalize];
}
@end
int main()
{
testonthread(^{
int i;
for (i = 0; i < 100; i++) {
RELEASE_VALUE([[Super alloc] init]);
}
});
testcollect();
testassert(supers == 0);
testassert(subs > 0);
testassert(subs == values);
supers = 0;
subs = 0;
values = 0;
testonthread(^{
int i;
for (i = 0; i < 100; i++) {
RELEASE_VALUE([[Super2 alloc] init]);
}
});
testcollect();
testassert(supers > 0);
testassert(subs == 0);
testassert(supers == values);
succeed(__FILE__);
}