-
Notifications
You must be signed in to change notification settings - Fork 55
/
PGDocument.m
398 lines (360 loc) · 13.7 KB
/
PGDocument.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
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
/* Copyright © 2007-2009, The Sequential Project
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the the Sequential Project nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE SEQUENTIAL PROJECT ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE SEQUENTIAL PROJECT BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
#import "PGDocument.h"
// Models
#import "PGNode.h"
#import "PGGenericImageAdapter.h"
#import "PGResourceIdentifier.h"
#import "PGSubscription.h"
#import "PGBookmark.h"
// Views
#import "PGImageView.h"
// Controllers
#import "PGDocumentController.h"
#import "PGBookmarkController.h"
#import "PGDisplayController.h"
// Other Sources
#import "PGFoundationAdditions.h"
#import "PGGeometry.h"
NSString *const PGDocumentWillRemoveNodesNotification = @"PGDocumentWillRemoveNodes";
NSString *const PGDocumentSortedNodesDidChangeNotification = @"PGDocumentSortedNodesDidChange";
NSString *const PGDocumentNodeIsViewableDidChangeNotification = @"PGDocumentNodeIsViewableDidChange";
NSString *const PGDocumentNodeThumbnailDidChangeNotification = @"PGDocumentNodeThumbnailDidChange";
NSString *const PGDocumentNodeDisplayNameDidChangeNotification = @"PGDocumentNodeDisplayNameDidChange";
NSString *const PGDocumentNodeKey = @"PGDocumentNode";
NSString *const PGDocumentRemovedChildrenKey = @"PGDocumentRemovedChildren";
NSString *const PGDocumentUpdateRecursivelyKey = @"PGDocumentUpdateRecursively";
#define PGDocumentMaxCachedNodes 3
@interface PGDocument(Private)
- (PGNode *)_initialNode;
- (void)_setInitialIdentifier:(PGResourceIdentifier *)ident;
@end
@implementation PGDocument
#pragma mark -PGDocument
- (id)initWithIdentifier:(PGDisplayableIdentifier *)ident
{
if((self = [self init])) {
_rootIdentifier = [ident retain];
_node = [[PGNode alloc] initWithParent:self identifier:ident];
[_node setDataProvider:[PGDataProvider providerWithResourceIdentifier:ident]];
[_rootIdentifier PG_addObserver:self selector:@selector(identifierIconDidChange:) name:PGDisplayableIdentifierIconDidChangeNotification];
_subscription = [[_rootIdentifier subscriptionWithDescendents:YES] retain];
[_subscription PG_addObserver:self selector:@selector(subscriptionEventDidOccur:) name:PGSubscriptionEventDidOccurNotification];
[self noteSortedChildrenDidChange];
}
return self;
}
- (id)initWithURL:(NSURL *)aURL
{
return [self initWithIdentifier:[aURL PG_displayableIdentifier]];
}
- (id)initWithBookmark:(PGBookmark *)aBookmark
{
if((self = [self initWithIdentifier:[aBookmark documentIdentifier]])) {
[self openBookmark:aBookmark];
}
return self;
}
#pragma mark -
@synthesize rootIdentifier = _rootIdentifier;
@synthesize node = _node;
- (PGDisplayController *)displayController
{
return [[_displayController retain] autorelease];
}
- (void)setDisplayController:(PGDisplayController *)controller
{
if(controller == _displayController) return;
if([_displayController activeDocument] == self) [_displayController setActiveDocument:nil closeIfAppropriate:YES];
[_displayController release];
_displayController = [controller retain];
[_displayController setActiveDocument:self closeIfAppropriate:NO];
[_displayController synchronizeWindowTitleWithDocumentName];
}
- (BOOL)isOnline
{
return ![[self rootIdentifier] isFileIdentifier];
}
- (NSMenu *)pageMenu
{
return _pageMenu;
}
- (BOOL)isProcessingNodes
{
return _processingNodeCount > 0;
}
- (void)setProcessingNodes:(BOOL)flag
{
NSParameterAssert(flag || _processingNodeCount);
_processingNodeCount += flag ? 1 : -1;
if(!_processingNodeCount && _sortedChildrenChanged) [self noteSortedChildrenDidChange];
}
#pragma mark -
- (void)getStoredNode:(out PGNode **)outNode imageView:(out PGImageView **)outImageView offset:(out NSSize *)outOffset query:(out NSString **)outQuery
{
if(_storedNode) {
*outNode = [_storedNode autorelease];
_storedNode = nil;
*outImageView = [_storedImageView autorelease];
_storedImageView = nil;
*outOffset = _storedOffset;
*outQuery = [_storedQuery autorelease];
_storedQuery = nil;
} else {
*outNode = [self _initialNode];
*outImageView = [[[PGImageView alloc] init] autorelease];
*outQuery = @"";
}
}
- (void)storeNode:(PGNode *)node imageView:(PGImageView *)imageView offset:(NSSize)offset query:(NSString *)query
{
[_storedNode autorelease];
_storedNode = [node retain];
[_storedImageView autorelease];
_storedImageView = [imageView retain];
_storedOffset = offset;
[_storedQuery autorelease];
_storedQuery = [query copy];
}
- (BOOL)getStoredWindowFrame:(out NSRect *)outFrame
{
if(NSEqualRects(_storedFrame, NSZeroRect)) return NO;
if(outFrame) *outFrame = _storedFrame;
_storedFrame = NSZeroRect;
return YES;
}
- (void)storeWindowFrame:(NSRect)frame
{
NSParameterAssert(!NSEqualRects(frame, NSZeroRect));
_storedFrame = frame;
}
#pragma mark -
- (void)createUI
{
BOOL const new = ![self displayController];
if(new) [self setDisplayController:[[PGDocumentController sharedDocumentController] displayControllerForNewDocument]];
else [[self displayController] setActiveDocument:self closeIfAppropriate:NO];
[[PGDocumentController sharedDocumentController] noteNewRecentDocument:self];
[[self displayController] showWindow:self];
if(new && !_openedBookmark) {
PGBookmark *const bookmark = [[PGBookmarkController sharedBookmarkController] bookmarkForIdentifier:[self rootIdentifier]];
if(bookmark && [[[self node] resourceAdapter] nodeForIdentifier:[bookmark fileIdentifier]]) [[self displayController] offerToOpenBookmark:bookmark];
}
}
- (void)close
{
[[PGDocumentController sharedDocumentController] noteNewRecentDocument:self];
[self setDisplayController:nil];
[[PGDocumentController sharedDocumentController] removeDocument:self];
}
- (void)openBookmark:(PGBookmark *)aBookmark
{
[self _setInitialIdentifier:[aBookmark fileIdentifier]];
PGNode *const initialNode = [self _initialNode];
if(PGEqualObjects([initialNode identifier], [aBookmark fileIdentifier])) {
_openedBookmark = YES;
[[self displayController] activateNode:initialNode];
[[PGBookmarkController sharedBookmarkController] removeBookmark:aBookmark];
} else NSBeep();
}
#pragma mark -
- (void)noteNode:(PGNode *)node willRemoveNodes:(NSArray *)anArray
{
PGNode *newStoredNode = [[_storedNode resourceAdapter] sortedViewableNodeNext:YES afterRemovalOfChildren:anArray fromNode:node];
if(!newStoredNode) newStoredNode = [[_storedNode resourceAdapter] sortedViewableNodeNext:NO afterRemovalOfChildren:anArray fromNode:node];
if(_storedNode != newStoredNode) {
[_storedNode release];
_storedNode = [newStoredNode retain];
_storedOffset = PGRectEdgeMaskToSizeWithMagnitude(PGReadingDirectionAndLocationToRectEdgeMask([self readingDirection], PGHomeLocation), CGFLOAT_MAX);
}
[self PG_postNotificationName:PGDocumentWillRemoveNodesNotification userInfo:[NSDictionary dictionaryWithObjectsAndKeys:node, PGDocumentNodeKey, anArray, PGDocumentRemovedChildrenKey, nil]];
}
- (void)noteSortedChildrenDidChange
{
if([self isProcessingNodes]) {
_sortedChildrenChanged = YES;
return;
}
NSInteger const numberOfOtherItems = [[[PGDocumentController sharedDocumentController] defaultPageMenu] numberOfItems];
while([_pageMenu numberOfItems] > numberOfOtherItems) [_pageMenu removeItemAtIndex:numberOfOtherItems];
[[self node] addToMenu:_pageMenu flatten:YES];
if([_pageMenu numberOfItems] > numberOfOtherItems) [_pageMenu insertItem:[NSMenuItem separatorItem] atIndex:numberOfOtherItems];
[self PG_postNotificationName:PGDocumentSortedNodesDidChangeNotification];
}
- (void)noteNodeIsViewableDidChange:(PGNode *)node
{
if(_node) [self PG_postNotificationName:PGDocumentNodeIsViewableDidChangeNotification userInfo:[NSDictionary dictionaryWithObject:node forKey:PGDocumentNodeKey]];
}
- (void)noteNodeThumbnailDidChange:(PGNode *)node recursively:(BOOL)flag
{
if(node) [self PG_postNotificationName:PGDocumentNodeThumbnailDidChangeNotification userInfo:[NSDictionary dictionaryWithObjectsAndKeys:node, PGDocumentNodeKey, [NSNumber numberWithBool:flag], PGDocumentUpdateRecursivelyKey, nil]];
}
- (void)noteNodeDisplayNameDidChange:(PGNode *)node
{
if(!_node) return;
if([self node] == node) [[self displayController] synchronizeWindowTitleWithDocumentName];
[self PG_postNotificationName:PGDocumentNodeDisplayNameDidChangeNotification userInfo:[NSDictionary dictionaryWithObject:node forKey:PGDocumentNodeKey]];
}
- (void)noteNodeDidCache:(PGNode *)node
{
if(!_node) return;
[_cachedNodes removeObjectIdenticalTo:node];
[_cachedNodes insertObject:node atIndex:0];
while([_cachedNodes count] > PGDocumentMaxCachedNodes) {
[[[_cachedNodes lastObject] resourceAdapter] clearCache];
[_cachedNodes removeLastObject];
}
}
- (void)addOperation:(NSOperation *)operation
{
[_operationQueue addOperation:operation];
}
#pragma mark -
- (void)identifierIconDidChange:(NSNotification *)aNotif
{
[[self displayController] synchronizeWindowTitleWithDocumentName];
}
- (void)subscriptionEventDidOccur:(NSNotification *)aNotif
{
NSParameterAssert(aNotif);
NSUInteger const flags = [[[aNotif userInfo] objectForKey:PGSubscriptionRootFlagsKey] unsignedIntegerValue];
if(flags & (NOTE_DELETE | NOTE_REVOKE)) return [self close];
PGResourceIdentifier *const ident = [[[[aNotif userInfo] objectForKey:PGSubscriptionPathKey] PG_fileURL] PG_resourceIdentifier];
[[[[self node] resourceAdapter] nodeForIdentifier:ident] noteFileEventDidOccurDirect:YES];
}
#pragma mark -PGDocument(Private)
- (PGNode *)_initialNode
{
PGNode *const node = [[[self node] resourceAdapter] nodeForIdentifier:_initialIdentifier];
return node ? node : [[[self node] resourceAdapter] sortedViewableNodeFirst:YES];
}
- (void)_setInitialIdentifier:(PGResourceIdentifier *)ident
{
if(ident == _initialIdentifier) return;
[_initialIdentifier release];
_initialIdentifier = (PGDisplayableIdentifier *)[ident retain];
}
#pragma mark -PGPrefObject
- (void)setShowsInfo:(BOOL)flag
{
[super setShowsInfo:flag];
[[PGPrefObject globalPrefObject] setShowsInfo:flag];
}
- (void)setShowsThumbnails:(BOOL)flag
{
[super setShowsThumbnails:flag];
[[PGPrefObject globalPrefObject] setShowsThumbnails:flag];
}
- (void)setReadingDirection:(PGReadingDirection)aDirection
{
[super setReadingDirection:aDirection];
[[PGPrefObject globalPrefObject] setReadingDirection:aDirection];
}
- (void)setImageScaleMode:(PGImageScaleMode)aMode
{
[super setImageScaleMode:aMode];
[[PGPrefObject globalPrefObject] setImageScaleMode:aMode];
}
- (void)setImageScaleFactor:(CGFloat)factor animate:(BOOL)flag
{
[super setImageScaleFactor:factor animate:flag];
[[PGPrefObject globalPrefObject] setImageScaleFactor:factor animate:flag];
}
- (void)setAnimatesImages:(BOOL)flag
{
[super setAnimatesImages:flag];
[[PGPrefObject globalPrefObject] setAnimatesImages:flag];
}
- (void)setSortOrder:(PGSortOrder)anOrder
{
if([self sortOrder] != anOrder) {
[super setSortOrder:anOrder];
[[self node] noteSortOrderDidChange];
[self noteSortedChildrenDidChange];
}
[[PGPrefObject globalPrefObject] setSortOrder:anOrder];
}
- (void)setTimerInterval:(NSTimeInterval)interval
{
[super setTimerInterval:interval];
[[PGPrefObject globalPrefObject] setTimerInterval:interval];
}
- (void)setBaseOrientation:(PGOrientation)anOrientation
{
[super setBaseOrientation:anOrientation];
[[PGPrefObject globalPrefObject] setBaseOrientation:anOrientation];
}
#pragma mark -NSObject
- (id)init
{
if((self = [super init])) {
_pageMenu = [[[PGDocumentController sharedDocumentController] defaultPageMenu] copy];
[_pageMenu addItem:[NSMenuItem separatorItem]];
_cachedNodes = [[NSMutableArray alloc] init];
_operationQueue = [[NSOperationQueue alloc] init];
[_operationQueue setMaxConcurrentOperationCount:2]; // Our operations (thumbnail generation) are usually IO-bound, so too much concurrency is detrimental to performance.
_activity = [[PGActivity alloc] initWithOwner:self];
[_activity setParentActivity:[PGActivity applicationActivity]];
}
return self;
}
- (void)dealloc
{
[self PG_removeObserver];
[[[_node resourceAdapter] activity] cancel:self];
[_node detachFromTree];
[_operationQueue cancelAllOperations];
[_activity invalidate];
[_rootIdentifier release];
[_node release];
[_subscription release];
[_cachedNodes release];
[_operationQueue release];
[_storedNode release];
[_storedImageView release];
[_storedQuery release];
[_initialIdentifier release];
[_displayController release];
[_pageMenu release];
[_activity release];
[super dealloc];
}
#pragma mark -<PGActivityOwner>
- (PGActivity *)activity
{
return [[_activity retain] autorelease];
}
- (NSString *)descriptionForActivity:(PGActivity *)activity
{
return [[[self node] identifier] displayName];
}
#pragma mark -<PGNodeParent>
- (PGDocument *)document
{
return self;
}
- (PGContainerAdapter *)containerAdapter
{
return nil;
}
@end