blob: f975f60d747621c799a2d1dc236fe472ef7aab73 (
plain)
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
|
//
// Group.m
// Liaison
//
// Created by Brian Cully on Tue Feb 04 2003.
// Copyright (c) 2003 Brian Cully. All rights reserved.
//
#import "Group.h"
@implementation Group (Copying)
- (id)copyWithZone: (NSZone *)aZone
{
Group *tmpGroup;
tmpGroup = [[Group alloc] initWithName: [self name] andType: [self type]];
[tmpGroup setIcon: [self icon]];
[tmpGroup setFileStore: [self fileStore]];
tmpGroup->parent = parent; // XXX
tmpGroup->children = children; // XXX
return tmpGroup;
}
- (unsigned)hash
{
unsigned nameHash, storeHash;
storeHash = (unsigned)[[[self fileStore] storeID] performSelector: @selector(hash)];
nameHash = [[self name] hash];
return (storeHash ^ nameHash);
}
- (BOOL)isEqual: (id)anObject
{
if ([anObject isKindOfClass: [self class]]) {
Group *otherGroup;
id myStoreID, otherStoreID;
myStoreID = [[self fileStore] storeID];
otherGroup = anObject;
otherStoreID = [[otherGroup fileStore] storeID];
if ([myStoreID performSelector: @selector(compare:) withObject: otherStoreID] &&
[[self name] isEqualToString: [otherGroup name]])
return YES;
else
return NO;
}
return NO;
}
@end
@implementation Group
+ (Group *)groupWithName: (NSString *)aName
{
return [[[self alloc] initWithName: aName] autorelease];
}
+ (Group *)groupWithName: (NSString *)aName andType: (GroupType)aType
{
return [[[self alloc] initWithName: aName andType: aType] autorelease];
}
- (Group *)initWithName: (NSString *)aName
{
return [self initWithName: aName andType: BRANCH];
}
- (Group *)initWithName: (NSString *)aName andType: (GroupType)aType;
{
self = [super init];
[self setName: aName];
[self setType: aType];
icon = [[NSImage imageNamed: LiNormalGroupIcon] retain];
children = [[NSMutableArray alloc] init];
return self;
}
- (id)init
{
NSException *myException;
[self autorelease];
myException = [NSException exceptionWithName: @"GroupInitFailure"
reason: @"[[Group alloc] init] isn't supported."
userInfo: nil];
[myException raise];
return nil;
}
- (void)dealloc
{
[self setName: nil];
[icon release];
[children release];
[self setFileStore: nil];
[super dealloc];
}
- (id)initWithContentsOfFile: (NSString *)aFilename
{
NSArray *groupArray;
NSDictionary *groupDict;
NSString *groupname;
groupDict = [NSDictionary dictionaryWithContentsOfFile: aFilename];
self = [self initWithName: [groupDict objectForKey: @"name"]];
groupArray = [groupDict objectForKey: @"children"];
for (groupname in groupArray) {
Group *newGroup;
// XXX - should encode type
newGroup = [[[Group alloc] initWithName: groupname
andType: LEAF] autorelease];
[newGroup setIcon: [NSImage imageNamed: LiNormalGroupIcon]];
[self addChild: newGroup];
}
return self;
}
- (BOOL)writeToFile: (NSString *)aFilename
{
Group *group;
NSMutableArray *groupArray;
NSMutableDictionary *groupDict;
groupDict = [NSMutableDictionary dictionary];
groupArray = [NSMutableArray array];
for (group in children) {
[groupArray addObject: [group name]];
}
[groupDict setObject: name forKey: @"name"];
[groupDict setObject: groupArray forKey: @"children"];
return [groupDict writeToFile: aFilename atomically: NO];
}
- (LiFileStore *)fileStore
{
return theFileStore;
}
- (void)setFileStore: (LiFileStore *)aFileStore
{
[aFileStore retain];
[theFileStore release];
theFileStore = aFileStore;
}
- (id)initWithCoder: (NSCoder *)coder
{
NSString *typeString;
self = [super init];
if ([coder allowsKeyedCoding]) {
[self setName: [coder decodeObjectForKey: @"name"]];
typeString = [coder decodeObjectForKey: @"type"];
children = [[coder decodeObjectForKey: @"children"] retain];
} else {
[self setName: [coder decodeObject]];
typeString = [coder decodeObject];
children = [[coder decodeObject] retain];
}
if ([typeString isEqualToString: @"LEAF"])
[self setType: LEAF];
else
[self setType: BRANCH];
icon = [[NSImage imageNamed: LiNormalGroupIcon] retain];
return self;
}
- (void)encodeWithCoder: (NSCoder *)coder
{
NSString *typeString;
if ([self type] == LEAF)
typeString = @"LEAF";
else
typeString = @"BRANCH";
if ([coder allowsKeyedCoding]) {
[coder encodeObject: [self name] forKey: @"name"];
[coder encodeObject: typeString forKey: @"type"];
[coder encodeObject: children forKey: @"children"];
} else {
[coder encodeObject: [self name]];
[coder encodeObject: typeString];
[coder encodeObject: children];
}
}
- (NSString *)name
{
return name;
}
- (GroupType)type
{
return type;
}
- (void)setName: (NSString *)aName
{
[aName retain];
[name release];
name = aName;
}
- (void)setType: (GroupType)aType
{
type = aType;
}
- (NSImage *)icon
{
return icon;
}
- (void)setIcon: (NSImage *)anIcon
{
[anIcon retain];
[icon release];
icon = anIcon;
}
- (Group *)parent
{
return parent;
}
- (void)setParent: (Group *)aParent
{
[aParent retain];
[parent release];
parent = aParent;
}
- (int)numberOfChildren
{
return [children count];
}
- (BOOL)hasChild: (id)aChild
{
return [children containsObject: aChild];
}
- (NSEnumerator *)childEnumerator
{
return [children objectEnumerator];
}
- (void)addChild: (id)aChild
{
[children addObject: aChild];
[aChild setParent: self];
}
- (void)removeChild: (id)aChild
{
[aChild setParent: nil];
[children removeObject: aChild];
}
- (Group *)childNamed: (NSString *)aName
{
Group *child;
int i, numberOfChildren;
child = nil;
numberOfChildren = [children count];
for (i = 0; i < numberOfChildren; i++) {
child = [children objectAtIndex: i];
if ([[child name] isEqualToString: aName])
break;
}
if (i < numberOfChildren)
return child;
return nil;
}
- (void)removeChildNamed: (NSString *)aName
{
int i, numberOfChildren;
numberOfChildren = [children count];
for (i = 0; i < numberOfChildren; i++) {
Group *child;
child = [children objectAtIndex: i];
if ([[child name] isEqualToString: aName])
break;
}
if (i < numberOfChildren)
[children removeObjectAtIndex: i];
}
- (id)childAtIndex: (int)index
{
return [children objectAtIndex: index];
}
- (void)removeChildAtIndex: (int)index
{
[children removeObjectAtIndex: index];
}
@synthesize children;
@synthesize theFileStore;
@end
|