-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIFHistoryEvent.m
122 lines (86 loc) · 2.05 KB
/
IFHistoryEvent.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
//
// IFHistoryEvent.m
// Inform-xc2
//
// Created by Andrew Hunter on 23/04/2007.
// Copyright 2007 Andrew Hunter. All rights reserved.
//
#import "IFHistoryEvent.h"
//
// Internal class used to create history events by proxy
//
@interface IFHistoryEventProxy : NSProxy {
IFHistoryEvent* event;
}
- (id) initWithEvent: (IFHistoryEvent*) event;
@end
@implementation IFHistoryEvent
// = Initialisation =
- (id) initWithInvocation: (NSInvocation*) newInvocation {
self = [super init];
if (self) {
invocations = [[NSMutableArray alloc] initWithObjects: newInvocation, nil];
target = nil;
}
return self;
}
- (id) initWithObject: (id) newTarget {
self = [super init];
if (self) {
invocations = [[NSMutableArray alloc] init];
target = [newTarget retain];
}
return self;
}
- (void) dealloc {
[target release];
[invocations release];
[super dealloc];
}
// = Building the invocation =
- (void) setTarget: (id) newTarget {
[target release];
target = [newTarget retain];
}
- (id) proxy {
return [[[IFHistoryEventProxy alloc] initWithEvent: self] autorelease];
}
- (id) target {
return target;
}
- (void) addInvocation: (NSInvocation*) newInvocation {
[newInvocation retainArguments];
[invocations addObject: newInvocation];
[target release]; target = nil;
}
// = Replaying =
- (void) replay {
[invocations makeObjectsPerformSelector: @selector(invoke)];
}
@end
// = IFHistoryEventProxy =
@implementation IFHistoryEventProxy
- (id) initWithEvent: (IFHistoryEvent*) newEvent {
// self = [super init];
if (self) {
event = [newEvent retain];
}
return self;
}
- (void) dealloc {
[event release];
[super dealloc];
}
+ (BOOL)respondsToSelector:(SEL)aSelector {
return YES;
}
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector {
return [[event target] methodSignatureForSelector: aSelector];
}
- (void)forwardInvocation:(NSInvocation *)anInvocation {
NSInvocation* invoke = [[anInvocation retain] autorelease];
[invoke setTarget: [event target]];
[invoke retainArguments];
[event addInvocation: invoke];
}
@end