-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRCSPushdownState.m
353 lines (312 loc) · 11.4 KB
/
RCSPushdownState.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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
//
// RCSPushdownState.m
// RCSFSM
//
// Created by Jim Roepcke on 2013-05-29.
// Copyright (c) 2013 Roepcke Computing Solutions. All rights reserved.
//
@import ObjectiveC.runtime;
@import ObjectiveC.message;
#import "RCSPushdownState.h"
static NSUInteger RCSNumberOfArgumentsInSelector(SEL sel);
static NSUInteger RCSNumberOfArgumentsInSelector(SEL sel)
{
NSString *selString = NSStringFromSelector(sel);
CFStringRef selfAsCFStr = (__bridge CFStringRef)selString;
CFStringInlineBuffer inlineBuffer;
CFIndex length = CFStringGetLength(selfAsCFStr);
CFStringInitInlineBuffer(selfAsCFStr, &inlineBuffer, CFRangeMake(0, length));
NSUInteger counter = 0;
for (CFIndex i = 0; i < length; i++) {
UniChar c = CFStringGetCharacterFromInlineBuffer(&inlineBuffer, i);
if (c == (UniChar)':') counter += 1;
}
return counter;
}
@implementation RCSBasePushdownState
+ (id)state
{
id<RCSPushdownState> result = objc_getAssociatedObject(self, @"sharedInstance");
if (!result)
{
result = [[[self class] alloc] init];
objc_setAssociatedObject(self, @"sharedInstance", result, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
return result;
}
- (id<RCSPushdownState>)startState
{
return nil;
}
- (NSString *)displayNameExcludedPrefix
{
return nil;
}
- (NSString *)displayName
{
NSString *className = NSStringFromClass([self class]);
return [className substringFromIndex:[[self displayNameExcludedPrefix] length]];
}
- (BOOL)shouldLogTransitions
{
return NO;
}
- (id<RCSPushdownState>)errorState
{
return nil;
}
- (void)enter:(id<RCSPushdownStateContext>)context
{
if (([self errorState] == self) && [context respondsToSelector:@selector(stateContextDidEnterErrorState)])
{
[context stateContextDidEnterErrorState];
}
}
- (void)transition:(id<RCSPushdownStateContext>)context to:(id<RCSPushdownState>)state
{
if ([self shouldLogTransitions])
{
NSLog(@"transition %@ to %@", context, [state displayName]);
}
[context setState:state];
[state enter:context];
}
- (void)logStateTransitionError:(SEL)sel forContext:(id<RCSPushdownStateContext>)context
{
NSLog(@"%@(%@): %@ is not a supported request", context, [self displayName], NSStringFromSelector(sel));
}
- (id<RCSPushdownState>)stateNamed:(NSString *)name
{
NSString *baseName = NSStringFromClass([self class]);
NSString *statechartClassName = [baseName stringByAppendingString:name];
Class statechartClass = NSClassFromString(statechartClassName);
if (!statechartClass)
{
statechartClass = objc_allocateClassPair([self class], [statechartClassName cStringUsingEncoding:NSUTF8StringEncoding], 0);
objc_registerClassPair(statechartClass);
}
return [statechartClass state];
}
- (id<RCSPushdownState>)declareErrorState:(id<RCSPushdownState>)errorState
{
if (errorState)
{
IMP imp = imp_implementationWithBlock(^(id<RCSPushdownState> _self) {
return errorState;
});
class_addMethod([self class], @selector(errorState), imp, "v@:");
}
return errorState;
}
- (id<RCSPushdownState>)declareStartState:(id<RCSPushdownState>)startState
{
if (startState)
{
IMP imp = imp_implementationWithBlock(^(id<RCSPushdownState> _self) {
return startState;
});
class_addMethod([self class], @selector(startState), imp, "v@:");
}
return startState;
}
- (void)whenEnteringPerform:(SEL)action
{
if (action && (RCSNumberOfArgumentsInSelector(action) == 0))
{
IMP imp = imp_implementationWithBlock(^(id<RCSPushdownState> _self, id<RCSPushdownStateContext> context) {
struct objc_super objcSuper = {_self, [_self superclass]};
((id (*)(struct objc_super *, SEL, id))objc_msgSendSuper)(&objcSuper, @selector(enter:), context);
((id (*)(id, SEL))objc_msgSend)(context, action);
});
class_addMethod([self class], @selector(enter:), imp, "v@:@");
}
}
- (SEL)transitionToErrorStateWhen:(SEL)selector
{
switch (RCSNumberOfArgumentsInSelector(selector))
{
case 2:
{
IMP imp = imp_implementationWithBlock(^(id<RCSPushdownState> _self, id<RCSPushdownStateContext> context, id _) {
[_self logStateTransitionError:selector forContext:context];
id<RCSPushdownState> errorState = [_self errorState];
if (errorState) [_self transition:context to:errorState];
});
class_addMethod([self class], selector, imp, "v@:@@");
break;
}
case 1:
default:
{
IMP imp = imp_implementationWithBlock(^(id<RCSPushdownState> _self, id<RCSPushdownStateContext> context) {
[_self logStateTransitionError:selector forContext:context];
id<RCSPushdownState> errorState = [_self errorState];
if (errorState) [_self transition:context to:errorState];
});
class_addMethod([self class], selector, imp, "v@:@");
break;
}
}
return selector;
}
- (SEL)doNothingWhen:(SEL)selector
{
return [self _declareTransition:selector preAction:(SEL)0 transitionTo:nil postAction:(SEL)0];
}
- (SEL)when:(SEL)selector perform:(SEL)action
{
return [self _declareTransition:selector preAction:action transitionTo:nil postAction:(SEL)0];
}
- (SEL)when:(SEL)selector transitionTo:(id<RCSPushdownState>)state
{
return [self _declareTransition:selector preAction:(SEL)0 transitionTo:state postAction:(SEL)0];
}
- (SEL)when:(SEL)selector transitionTo:(id<RCSPushdownState>)state after:(SEL)action
{
return [self _declareTransition:selector preAction:action transitionTo:state postAction:(SEL)0];
}
- (SEL)when:(SEL)selector transitionTo:(id<RCSPushdownState>)state before:(SEL)action
{
return [self _declareTransition:selector preAction:(SEL)0 transitionTo:state postAction:action];
}
- (SEL)when:(SEL)selector transitionTo:(id<RCSPushdownState>)state before:(SEL)postAction after:(SEL)preAction
{
return [self _declareTransition:selector preAction:preAction transitionTo:state postAction:postAction];
}
- (SEL)_declareTransition:(SEL)selector preAction:(SEL)preAction transitionTo:(id<RCSPushdownState>)state postAction:(SEL)postAction
{
switch (RCSNumberOfArgumentsInSelector(selector))
{
case 2:
{
IMP imp = imp_implementationWithBlock(^(id<RCSPushdownState> _self, id<RCSPushdownStateContext> context, id object) {
if (preAction) ((id (*)(id, SEL, id))objc_msgSend)(context, preAction, object);
if (state) [_self transition:context to:state];
if (postAction) ((id (*)(id, SEL, id))objc_msgSend)(context, postAction, object);
});
class_addMethod([self class], selector, imp, "v@:@@");
break;
}
case 1:
default:
{
IMP imp = imp_implementationWithBlock(^(id<RCSPushdownState> _self, id<RCSPushdownStateContext> context) {
if (preAction) ((id (*)(id, SEL))objc_msgSend)(context, preAction);
if (state) [_self transition:context to:state];
if (postAction) ((id (*)(id, SEL))objc_msgSend)(context, postAction);
});
class_addMethod([self class], selector, imp, "v@:@");
break;
}
}
return selector;
}
- (void)transition:(id<RCSPushdownStateContext>)context push:(id<RCSPushdownState>)state
{
if ([self shouldLogTransitions])
{
NSLog(@"transition %@ push %@", context, [state displayName]);
}
[context pushState];
[context setState:state];
[state enter:context];
}
- (void)pop:(id<RCSPushdownStateContext>)context
{
id<RCSPushdownState> state = [context popState];
if ([self shouldLogTransitions])
{
NSLog(@"transition %@ pop %@", context, [state displayName]);
}
[context setState:state];
[state enter:context];
}
- (SEL)when:(SEL)selector push:(id<RCSPushdownState>)state
{
return [self _declareTransition:selector preAction:(SEL)0 push:state postAction:(SEL)0];
}
- (SEL)when:(SEL)selector push:(id<RCSPushdownState>)state after:(SEL)action
{
return [self _declareTransition:selector preAction:action push:state postAction:(SEL)0];
}
- (SEL)when:(SEL)selector push:(id<RCSPushdownState>)state before:(SEL)action
{
return [self _declareTransition:selector preAction:(SEL)0 push:state postAction:action];
}
- (SEL)when:(SEL)selector push:(id<RCSPushdownState>)state before:(SEL)postAction after:(SEL)preAction
{
return [self _declareTransition:selector preAction:preAction push:state postAction:postAction];
}
- (SEL)_declareTransition:(SEL)selector preAction:(SEL)preAction push:(id<RCSPushdownState>)state postAction:(SEL)postAction
{
switch (RCSNumberOfArgumentsInSelector(selector))
{
case 2:
{
IMP imp = imp_implementationWithBlock(^(id<RCSPushdownState> _self, id<RCSPushdownStateContext> context, id object) {
if (preAction) ((id (*)(id, SEL, id))objc_msgSend)(context, preAction, object);
if (state) [_self transition:context push:state];
if (postAction) ((id (*)(id, SEL, id))objc_msgSend)(context, postAction, object);
});
class_addMethod([self class], selector, imp, "v@:@@");
break;
}
case 1:
default:
{
IMP imp = imp_implementationWithBlock(^(id<RCSPushdownState> _self, id<RCSPushdownStateContext> context) {
if (preAction) ((id (*)(id, SEL))objc_msgSend)(context, preAction);
if (state) [_self transition:context push:state];
if (postAction) ((id (*)(id, SEL))objc_msgSend)(context, postAction);
});
class_addMethod([self class], selector, imp, "v@:@");
break;
}
}
return selector;
}
- (SEL)popWhen:(SEL)selector
{
return [self _declarePop:selector preAction:(SEL)0 postAction:(SEL)0];
}
- (SEL)popWhen:(SEL)selector after:(SEL)action
{
return [self _declarePop:selector preAction:action postAction:(SEL)0];
}
- (SEL)popWhen:(SEL)selector before:(SEL)action
{
return [self _declarePop:selector preAction:(SEL)0 postAction:action];
}
- (SEL)popWhen:(SEL)selector before:(SEL)postAction after:(SEL)preAction
{
return [self _declarePop:selector preAction:preAction postAction:postAction];
}
- (SEL)_declarePop:(SEL)selector preAction:(SEL)preAction postAction:(SEL)postAction
{
switch (RCSNumberOfArgumentsInSelector(selector))
{
case 2:
{
IMP imp = imp_implementationWithBlock(^(id<RCSPushdownState> _self, id<RCSPushdownStateContext> context, id object) {
if (preAction) ((id (*)(id, SEL, id))objc_msgSend)(context, preAction, object);
[_self pop:context];
if (postAction) ((id (*)(id, SEL, id))objc_msgSend)(context, postAction, object);
});
class_addMethod([self class], selector, imp, "v@:@@");
break;
}
case 1:
default:
{
IMP imp = imp_implementationWithBlock(^(id<RCSPushdownState> _self, id<RCSPushdownStateContext> context) {
if (preAction) ((id (*)(id, SEL))objc_msgSend)(context, preAction);
[_self pop:context];
if (postAction) ((id (*)(id, SEL))objc_msgSend)(context, postAction);
});
class_addMethod([self class], selector, imp, "v@:@");
break;
}
}
return selector;
}
@end