-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKKObjects.m
223 lines (188 loc) · 3.18 KB
/
KKObjects.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
#include "kernobjc/runtime.h"
#include "os.h"
#include "private.h"
#include "types.h"
#include "init.h"
#include "utils.h"
#pragma mark KKObject
@implementation KKObject
+(id)alloc
{
return class_createInstance((Class)self, 0);
}
+(id)new
{
return [[self alloc] init];
}
+(Class)class
{
return self;
}
+(BOOL)respondsToSelector:(SEL)selector
{
return class_respondsToSelector(self->isa, selector);
}
+(void)load
{
/* Must fix up the blocks. */
objc_blocks_init();
}
+(void)initialize
{
if (self == [KKObject class]){
/*
* This is a relatively ugly hack that prevents the -autorelease message
* from becoming recursive.
*/
objc_debug_log("Updating %s's custom ARR flag to NO\n",
class_getName(self));
self->flags.has_custom_arr = NO;
}
}
+(void)dealloc
{
// No-op
}
+(id)autorelease
{
return self;
}
+(id)retain
{
return self;
}
+(void)release
{
// No-op
}
+(id)copy
{
return self;
}
-(id)autorelease
{
return objc_autorelease(self);
}
-(void)dealloc
{
object_dispose((id)self);
}
-(id)description{
return @"KKObject<>";
}
-(Class)class
{
return object_getClass(self);
}
-(BOOL)isMemberOfClass:(Class)cls{
return [self class] == cls;
}
-(BOOL)isKindOfClass:(Class)cls{
Class self_cl = [self class];
while (self_cl != Nil) {
if (self_cl == cls){
return YES;
}
self_cl = class_getSuperclass(self_cl);
}
return NO;
}
-(id)init
{
return self;
}
-(unsigned long long)hash{
return objc_hash_pointer(self);
}
-(BOOL)isEqual:(id)otherObj{
return self == otherObj;
}
-(id)copy
{
return object_copy(self, class_getInstanceSize([self class]));
}
-(void)release
{
objc_debug_log("Releasing object %p[%i]\n", self, self->__retain_count);
int retain_cnt = __sync_fetch_and_sub(&self->__retain_count, 1);
if (retain_cnt == 0){
/* Dealloc */
[self dealloc];
}else if (retain_cnt < 0){
objc_abort("Over-releasing an object %p (%i)!", self, retain_cnt);
}
}
-(id)retain
{
objc_debug_log("Retaining an object %p\n", self);
__sync_add_and_fetch(&self->__retain_count, 1);
return self;
}
-(BOOL)respondsToSelector:(SEL)selector
{
return class_respondsToSelector([self class], selector);
}
@end
#pragma mark -
#pragma mark _KKConstString
@implementation _KKConstString
-(const char*)cString
{
return self->_cString;
}
-(id)copy
{
return [self retain];
}
-(void)dealloc
{
// No-op
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wobjc-missing-super-calls"
}
#pragma clang diagnostic pop
-(unsigned long long)hash{
return objc_hash_string(self->_cString);
}
-(unsigned long long)length
{
return self->_length;
}
-(id)autorelease
{
return self;
}
-(void)release
{
// No-op
}
-(id)retain
{
return self;
}
@end
@implementation __KKUnloadedModuleException
+(void)raiseUnloadedModuleException:(id)obj selector:(SEL)selector{
__KKUnloadedModuleException *exc = [[[self alloc] init] autorelease];
[exc setObject:obj];
[exc setSelector:selector];
@throw exc;
}
-(void)dealloc{
[self setObject:nil];
[super dealloc];
}
@end
@implementation Protocol
- (BOOL)conformsTo:(Protocol*)p
{
return protocol_conformsToProtocol(self, p);
}
- (id)retain
{
return self;
}
- (void)release {}
+ (Class)class { return self; }
- (id)self { return self; }
@end