-
Notifications
You must be signed in to change notification settings - Fork 269
/
Copy pathTyphoonComponentFactory.m
254 lines (222 loc) · 7.67 KB
/
TyphoonComponentFactory.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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
////////////////////////////////////////////////////////////////////////////////
//
// JASPER BLUES
// Copyright 2012 - 2013 Jasper Blues
// All Rights Reserved.
//
// NOTICE: Jasper Blues permits you to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////
#import <objc/runtime.h>
#import <objc/message.h>
#import "TyphoonComponentFactory.h"
#import "TyphoonDefinition.h"
#import "TyphoonComponentFactory+InstanceBuilder.h"
#import "TyphoonIntrospectionUtils.h"
@interface TyphoonDefinition (TyphoonComponentFactory)
@property(nonatomic, strong) NSString* key;
@end
@implementation TyphoonComponentFactory
static TyphoonComponentFactory* defaultFactory;
/* =========================================================== Class Methods ============================================================ */
+ (id)defaultFactory
{
return defaultFactory;
}
/* ============================================================ Initializers ============================================================ */
- (id)init
{
self = [super init];
if (self)
{
_registry = [[NSMutableArray alloc] init];
_singletons = [[NSMutableDictionary alloc] init];
_currentlyResolvingReferences = [[NSMutableSet alloc] init];
_mutators = [[NSMutableArray alloc] init];
_hasPerformedMutations = NO;
}
return self;
}
/* ========================================================== Interface Methods ========================================================= */
- (void)register:(TyphoonDefinition*)definition
{
if ([definition.key length] == 0)
{
NSString* uuidStr = [[NSProcessInfo processInfo] globallyUniqueString];
definition.key = [NSString stringWithFormat:@"%@_%@", NSStringFromClass(definition.type), uuidStr];
}
if ([self definitionForKey:definition.key])
{
[NSException raise:NSInvalidArgumentException format:@"Key '%@' is already registered.", definition.key];
}
if ([definition.type respondsToSelector:@selector(typhoonAutoInjectedProperties)])
{
for (NSString* autoWired in objc_msgSend(definition.type, @selector(typhoonAutoInjectedProperties)))
{
[definition injectProperty:NSSelectorFromString(autoWired)];
}
}
NSLog(@"Registering: %@ with key: %@", NSStringFromClass(definition.type), definition.key);
[_registry addObject:definition];
}
- (id)componentForType:(id)classOrProtocol
{
NSArray* candidates = [self allComponentsForType:classOrProtocol];
if ([candidates count] == 0)
{
if (class_isMetaClass(object_getClass(classOrProtocol)) &&
[classOrProtocol respondsToSelector:@selector(typhoonAutoInjectedProperties)])
{
NSLog(@"Class %@ wants auto-wiring. . . registering.", NSStringFromClass(classOrProtocol));
[self register:[TyphoonDefinition withClass:classOrProtocol]];
return [self componentForType:classOrProtocol];
}
[NSException raise:NSInvalidArgumentException format:@"No components defined which satisify type: '%@'",
TyphoonTypeStringFor(classOrProtocol)];
}
if ([candidates count] > 1)
{
[NSException raise:NSInvalidArgumentException format:@"More than one component is defined satisfying type: '%@'", classOrProtocol];
}
return [candidates objectAtIndex:0];
}
- (NSArray*)allComponentsForType:(id)classOrProtocol
{
[self performMutationsIfRequired];
NSMutableArray* results = [[NSMutableArray alloc] init];
BOOL isClass = class_isMetaClass(object_getClass(classOrProtocol));
for (TyphoonDefinition* definition in _registry)
{
if (isClass)
{
if (definition.type == classOrProtocol || [definition.type isSubclassOfClass:classOrProtocol])
{
[self assertNotCircularDependency:definition.key];
[results addObject:[self objectForDefinition:definition]];
}
}
else
{
if ([definition.type conformsToProtocol:classOrProtocol])
{
[self assertNotCircularDependency:definition.key];
[results addObject:[self objectForDefinition:definition]];
}
}
}
[_currentlyResolvingReferences removeAllObjects];
return [results copy];
}
- (id)componentForKey:(NSString*)key
{
if (key)
{
[self performMutationsIfRequired];
[self assertNotCircularDependency:key];
TyphoonDefinition* definition = [self definitionForKey:key];
if (!definition)
{
[NSException raise:NSInvalidArgumentException format:@"No component matching id '%@'.", key];
}
__autoreleasing id returnValue = [self objectForDefinition:definition];
[_currentlyResolvingReferences removeAllObjects];
return returnValue;
}
return nil;
}
- (void)makeDefault
{
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^
{
defaultFactory = self;
});
}
- (NSArray*)registry
{
return [_registry copy];
}
- (void)attachMutator:(id)mutator
{
NSLog(@"Attaching mutator: %@", mutator);
[_mutators addObject:mutator];
}
- (void)injectProperties:(id)instance {
Class class = [instance class];
for (TyphoonDefinition* definition in _registry)
{
if(definition.type == class)
{
[self injectPropertyDependenciesOn:instance withDefinition:definition];
}
}
}
/* ============================================================ Utility Methods ========================================================= */
- (NSString*)description
{
NSMutableString* description = [NSMutableString stringWithFormat:@"<%@: ", NSStringFromClass([self class])];
[description appendFormat:@"_registry=%@", _registry];
[description appendString:@">"];
return description;
}
/* ============================================================ Private Methods ========================================================= */
- (id)objectForDefinition:(TyphoonDefinition*)definition
{
if (definition.scope == TyphoonScopeDefault)
{
return [self buildInstanceWithDefinition:definition];
}
else
{
return [self singletonForDefinition:definition];
}
}
- (id)singletonForDefinition:(TyphoonDefinition*)definition
{
@synchronized (self)
{
id instance = [_singletons objectForKey:definition.key];
if (instance == nil)
{
instance = [self buildInstanceWithDefinition:definition];
[_singletons setObject:instance forKey:definition.key];
}
return instance;
}
}
- (TyphoonDefinition*)definitionForKey:(NSString*)key
{
for (TyphoonDefinition* definition in _registry)
{
if ([definition.key isEqualToString:key])
{
return definition;
}
}
return nil;
}
- (void)assertNotCircularDependency:(NSString*)key
{
if ([_currentlyResolvingReferences containsObject:key])
{
[NSException raise:NSInvalidArgumentException format:@"Circular dependency detected: %@", _currentlyResolvingReferences];
}
[_currentlyResolvingReferences addObject:key];
}
- (void)performMutationsIfRequired
{
@synchronized (self)
{
if (!_hasPerformedMutations)
{
NSLog(@"Running mutators. . . %@", _mutators);
for (id <TyphoonComponentFactoryMutator> mutator in _mutators)
{
[mutator mutateComponentDefinitionsIfRequired:_registry];
}
_hasPerformedMutations = YES;
}
}
}
@end