blob: 4f057c17707b4e05dde1e01f53378fdc324e82ea (
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
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
|
//
// LiFileHandle.m
// Liaison
//
// Created by Brian Cully on Sat May 24 2003.
// Copyright (c) 2003 Brian Cully. All rights reserved.
//
#import "LiFileHandle.h"
@implementation LiFileHandle (Copying)
- (id)copyWithZone: (NSZone *)aZone
{
LiFileHandle *tmpHandle;
tmpHandle = [[LiFileHandle allocWithZone: aZone] init];
[tmpHandle setStoreID: [self storeID]];
[tmpHandle setFileID: [self fileID]];
return tmpHandle;
}
- (unsigned)hash
{
unsigned long storeID, fileID;
storeID = [[self storeID] unsignedLongValue];
fileID = [[self fileID] unsignedLongValue];
// Fold the store ID down to 4 bits.
storeID = (storeID & 0xf) ^ (storeID >> 4 & 0xf) ^
(storeID >> 8 & 0xf) ^ (storeID >> 12 & 0xf) ^
(storeID >> 16 & 0xf) ^ (storeID >> 20 & 0xf) ^
(storeID >> 24 & 0xf) ^ (storeID >> 28 & 0xf);
// Fold the handle to 12 bits.
fileID = (fileID & 0xfff) ^ (fileID >> 12 & 0xfff) ^
(fileID >> 24 & 0xfff);
return (storeID << 12) | fileID;
}
- (BOOL)isEqual: (id)anObject
{
if ([anObject isKindOfClass: [self class]]) {
IMP compareMethod;
id myID;
myID = [self fileID];
compareMethod = [myID methodForSelector: @selector(compare:)];
if (compareMethod != nil &&
compareMethod(myID, @selector(compare:), [anObject fileID]) == 0) {
myID = [self storeID];
compareMethod = [myID methodForSelector: @selector(compare:)];
if (compareMethod != nil &&
compareMethod(myID, @selector(compare:), [anObject storeID]) == 0)
return YES;
}
}
return NO;
}
@end
@implementation LiFileHandle
+ (LiFileHandle *)fileHandleWithID: (id)aFileID
storeID: (id)aStoreID
{
LiFileHandle *tmpHandle;
tmpHandle = [[[LiFileHandle alloc] init] autorelease];
[tmpHandle setFileID: aFileID];
[tmpHandle setStoreID: aStoreID];
return tmpHandle;
}
- (id)init
{
return [super init];
}
- (void)dealloc
{
[self setStoreID: nil];
[self setFileID: nil];
[super dealloc];
}
- (id)initWithCoder: (NSCoder *)aCoder
{
id storeID, fileID;
self = [self init];
if ([aCoder allowsKeyedCoding]) {
storeID = [aCoder decodeObjectForKey: @"LiStoreID"];
fileID = [aCoder decodeObjectForKey: @"LiFileID"];
} else {
storeID = [aCoder decodeObject];
fileID = [aCoder decodeObject];
}
[self setStoreID: storeID];
[self setFileID: fileID];
return self;
}
- (void)encodeWithCoder: (NSCoder *)aCoder
{
if ([aCoder allowsKeyedCoding]) {
[aCoder encodeObject: [self storeID]
forKey: @"LiStoreID"];
[aCoder encodeObject: [self fileID]
forKey: @"LiFileID"];
} else {
[aCoder encodeObject: [self storeID]];
[aCoder encodeObject: [self fileID]];
}
}
- (BOOL)shouldUpdate
{
return NO;
}
- (id)valueForAttribute: (NSString *)anAttribute
{
NSDictionary *attrDict;
attrDict = [self dictionary];
return [attrDict objectForKey: anAttribute];
}
- (void)setValue: (id)aValue forAttribute: (NSString *)anAttribute
{
if (aValue != nil)
[self setValues: [NSArray arrayWithObject: aValue]
forAttributes: [NSArray arrayWithObject: anAttribute]];
}
- (NSArray *)valuesForAttributes: (NSArray *)someAttributes
{
NSDictionary *attributes;
NSMutableArray *someValues;
NSString *attribute;
attributes = [self dictionary];
someValues = [NSMutableArray array];
for (attribute in someAttributes) {
[someValues addObject: [attributes objectForKey: attribute]];
}
return someValues;
}
- (void)setValues: (NSArray *)someValues forAttributes: (NSArray *)someAttributes
{
NSDictionary *newAttributes;
newAttributes = [NSDictionary dictionaryWithObjects: someValues
forKeys: someAttributes];
[[self fileStore] updateFileHandle: self withAttributes: newAttributes];
}
@synthesize theStoreID;
@synthesize theFileID;
@end
@implementation LiFileHandle (Accessors)
- (id)storeID
{
return theStoreID;
}
- (void)setStoreID: (id)aStoreID
{
[aStoreID retain];
[theStoreID release];
theStoreID = aStoreID;
}
- (id)fileID
{
return theFileID;
}
- (void)setFileID: (id)aFileID
{
[aFileID retain];
[theFileID release];
theFileID = aFileID;
}
@end
@implementation LiFileHandle (CommonAccessors)
- (LiFileStore *)fileStore
{
return [LiFileStore fileStoreWithID: [self storeID]];
}
- (void)setFileStore: (LiFileStore *)aFileStore
{
[self setStoreID: [aFileStore storeID]];
}
- (BOOL)isEditable
{
return [[self valueForAttribute: LiIsEditableAttribute] boolValue];
}
- (void)setIsEditable: (BOOL)editable
{
[self setValue: [NSNumber numberWithBool: editable]
forAttribute: LiIsEditableAttribute];
}
- (NSString *)filename
{
return [self valueForAttribute: LiFilenameAttribute];
}
- (void)setFilename: (NSString *)aFilename
{
[self setValue: aFilename forAttribute: LiFilenameAttribute];
}
- (NSString *)type
{
return [self valueForAttribute: LiTypeAttribute];
}
- (void)setType: (NSString *)aType
{
[self setValue: aType forAttribute: LiTypeAttribute];
}
- (NSNumber *)hfsCreator
{
return [self valueForAttribute: LiHFSCreatorAttribute];
}
- (void)setHFSCreator: (NSNumber *)aTypeCode
{
[self setValue: aTypeCode forAttribute: LiHFSCreatorAttribute];
}
- (NSNumber *)hfsType
{
return [self valueForAttribute: LiHFSTypeAttribute];
}
- (void)setHFSType: (NSNumber *)aTypeCode
{
[self setValue: aTypeCode forAttribute: LiHFSTypeAttribute];
}
- (NSString *)application
{
return [self valueForAttribute: LiApplicationAttribute];
}
- (void)setApplication: (NSString *)pathToApp
{
[self setValue: pathToApp forAttribute: LiApplicationAttribute];
}
- (NSDate *)lastModifiedTime
{
return [self valueForAttribute: LiLastModifiedDateAttribute];
}
- (void)setLastModifiedTime: (NSDate *)aTime
{
[self setValue: aTime forAttribute: LiLastModifiedDateAttribute];
}
- (NSDate *)creationTime
{
return [self valueForAttribute: LiCreationDateAttribute];
}
- (void)setCreationTime: (NSDate *)aTime
{
[self setValue: aTime forAttribute: LiCreationDateAttribute];
}
- (NSNumber *)fileSize
{
return [self valueForAttribute: LiFileSizeAttribute];
}
- (NSMutableArray *)groups
{
return [self valueForAttribute: LiGroupsAttribute];
}
- (void)addToGroup: (NSString *)aGroup
{
NSMutableArray *myGroups, *newGroups;
myGroups = [self groups];
if (myGroups != nil) {
if ([myGroups containsObject: aGroup]) {
return;
}
newGroups = [NSMutableArray arrayWithArray: myGroups];
} else
newGroups = [NSMutableArray array];
[newGroups addObject: aGroup];
[self setValue: newGroups forAttribute: LiGroupsAttribute];
}
- (BOOL)isMemberOfGroup: (NSString *)aGroup
{
return [[self groups] containsObject: aGroup];
}
- (void)removeFromGroup: (NSString *)aGroup
{
NSMutableArray *myGroups, *newGroups;
myGroups = [self groups];
if (myGroups != nil) {
newGroups = [NSMutableArray arrayWithArray: myGroups];
[newGroups removeObject: aGroup];
[self setValue: newGroups forAttribute: LiGroupsAttribute];
}
}
- (void)renameGroup: (NSString *)oldName toGroup: (NSString *)newName
{
NSMutableArray *myGroups, *newGroups;
myGroups = [self groups];
if (myGroups != nil) {
newGroups = [NSMutableArray arrayWithArray: myGroups];
[newGroups removeObject: oldName];
[newGroups addObject: newName];
[self setValue: newGroups forAttribute: LiGroupsAttribute];
}
}
- (BOOL)matchesFilter: (LiFilter *)aFilter
{
return [[self fileStore] attributes: [self dictionary] matchFilter: aFilter];
}
@end
@implementation LiFileHandle (CommonUtilities)
- (NSString *)description
{
return [[self dictionary] description];
}
- (NSDictionary *)dictionary
{
return [[self fileStore] attributesForFileID: [self fileID]];
}
- (void)update
{
[[[self fileStore] delegate] updateFileHandle: self];
}
- (void)open
{
[[[self fileStore] delegate] openFileHandle: self];
}
- (NSURL *)url
{
return [[[self fileStore] delegate] urlForFileHandle: self];
}
@end
@implementation LiFileHandle (Scripting)
- (NSScriptObjectSpecifier *)objectSpecifier
{
NSScriptClassDescription *containerDescription;
NSScriptObjectSpecifier *containerRef;
unsigned index;
[LiLog logAsDebug: @"[LiFileHandle objectSpecifier]"];
index = [[[self fileStore] allFileHandles] indexOfObject: self];
if (index != NSNotFound) {
[LiLog logAsDebug: @"index: %@", [NSNumber numberWithUnsignedInt: index]];
containerRef = [LiFileStore objectSpecifier];
containerDescription = (NSScriptClassDescription *)[NSScriptClassDescription classDescriptionForClass:[LiFileStore class]];
return [[[NSIndexSpecifier alloc] initWithContainerClassDescription:containerDescription containerSpecifier:containerRef key:@"allFileHandles" index:index] autorelease];
} else
return nil;
}
- (NSString *)urlString
{
return [[self url] absoluteString];
}
@end
@implementation LiFileStore (LiFileHandleMethods)
- (LiFileHandle *)addFileWithAttributes: (NSDictionary *)someAttributes
{
LiFileHandle *tmpHandle;
id fileID;
tmpHandle = nil;
fileID = [self fileIDWithAttributes: someAttributes];
if (fileID != nil)
tmpHandle = [LiFileHandle fileHandleWithID: fileID storeID: [self storeID]];
return tmpHandle;
}
- (NSDictionary *)attributesForFileHandle: (LiFileHandle *)aFileHandle
{
return [self attributesForFileID: [aFileHandle fileID]];
}
- (void)updateFileHandle: (LiFileHandle *)aFileHandle
withAttributes: (NSDictionary *)someAttributes
{
[self updateFileID: [aFileHandle fileID] withAttributes: someAttributes];
}
- (void)removeFileHandle: (LiFileHandle *)aFileHandle
{
[self removeFileID: [aFileHandle fileID]];
}
- (NSArray *)allFileHandles
{
NSEnumerator *idEnum;
NSMutableArray *fileHandles;
id fileID;
fileHandles = [NSMutableArray array];
idEnum = [[self allFileIDs] objectEnumerator];
while ((fileID = [idEnum nextObject]) != nil) {
LiFileHandle *tmpHandle;
tmpHandle = [[LiFileHandle alloc] init];
[tmpHandle setStoreID: [self storeID]];
[tmpHandle setFileID: fileID];
[fileHandles addObject: tmpHandle];
[tmpHandle release];
}
return fileHandles;
}
- (NSArray *)filesMatchingFilter: (LiFilter *)aFilter
{
NSArray *fileIDs;
NSMutableArray *fileHandles;
fileHandles = nil;
fileIDs = [self fileIDsMatchingFilter: aFilter];
if ([fileIDs count] > 0) {
id fileID;
fileHandles = [NSMutableArray array];
for (fileID in fileIDs) {
LiFileHandle *tmpHandle;
tmpHandle = [[LiFileHandle alloc] init];
[tmpHandle setStoreID: [self storeID]];
[tmpHandle setFileID: fileID];
[fileHandles addObject: tmpHandle];
[tmpHandle release];
}
}
return fileHandles;
}
@end
|