Add directory exclusion support for a syncing container.
[pithos-macos] / pithos-macos / PithosNode.m
1 //
2 //  PithosNode.m
3 //  pithos-macos
4 //
5 // Copyright 2011 GRNET S.A. All rights reserved.
6 //
7 // Redistribution and use in source and binary forms, with or
8 // without modification, are permitted provided that the following
9 // conditions are met:
10 // 
11 //   1. Redistributions of source code must retain the above
12 //      copyright notice, this list of conditions and the following
13 //      disclaimer.
14 // 
15 //   2. Redistributions in binary form must reproduce the above
16 //      copyright notice, this list of conditions and the following
17 //      disclaimer in the documentation and/or other materials
18 //      provided with the distribution.
19 // 
20 // THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
21 // OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
24 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
27 // USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28 // AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 // POSSIBILITY OF SUCH DAMAGE.
32 // 
33 // The views and conclusions contained in the software and
34 // documentation are those of the authors and should not be
35 // interpreted as representing official policies, either expressed
36 // or implied, of GRNET S.A.
37
38 #import "PithosNode.h"
39 #import "PithosNodeInfoController.h"
40 #import "ASIDownloadCache.h"
41 #import "ASIPithosRequest.h"
42
43 @implementation PithosNode
44 @synthesize forcedRefresh, parent, shared, sharingAccount, displayName, isLeafItem, icon;
45 @dynamic url, children, pithosContainer, pithosObject;
46
47 #pragma mark -
48 #pragma mark Object Lifecycle
49
50 - (id)init {
51     if ((self = [super init])) {
52         freshness = PithosNodeStateRefreshNeeded;
53         forcedRefresh = NO;
54         shared = NO;
55         isLeafItem = NO;
56     }
57     return self;
58 }
59
60 - (void)dealloc {
61     [pithosNodeInfoController release];
62     [sharingAccount release];
63     [icon release];
64     [displayName release];
65     [newChildren release];
66     [children release];
67     [url release];
68     [super dealloc];
69 }
70
71 - (BOOL)isEqual:(id)anObject {
72     return ([anObject isKindOfClass:[self class]] && [((PithosNode *)anObject).url isEqual:self.url]);
73 }
74
75 - (NSUInteger)hash {
76     return self.url.hash;
77 }
78
79 #pragma mark -
80 #pragma mark Properties
81
82 - (void)setShared:(BOOL)aShared {
83     if (shared != aShared) {
84         shared = aShared;
85         [url release];
86         url = nil;
87     }
88 }
89
90 - (void)setSharingAccount:(NSString *)aSharingAccount {
91     if (![sharingAccount isEqualToString:aSharingAccount]) {
92         [sharingAccount release];
93         sharingAccount = [aSharingAccount retain];
94         [url release];
95         url = nil;
96     }
97 }
98
99 #pragma mark -
100 #pragma mark Actions
101
102 - (void)invalidateChildren {
103     if (freshness == PithosNodeStateFresh)
104         freshness = PithosNodeStateRefreshNeeded;
105 }
106
107 - (void)invalidateChildrenRecursive {    
108     if (freshness == PithosNodeStateFresh) {
109         for (PithosNode *child in children) {
110             [child invalidateChildrenRecursive];
111         }
112         freshness = PithosNodeStateRefreshNeeded;
113     }
114 }
115
116 - (void)refresh {
117     [self invalidateChildren];
118     self.children;
119 }
120
121 - (void)forceRefresh {
122     forcedRefresh = YES;
123     [self refresh];
124 }
125
126 - (void)showPithosNodeInfo:(id)sender {
127     // Abstract method
128 }
129
130 - (void)pithosNodeInfoWillClose:(id)sender {
131     if (pithosNodeInfoController) {
132         [pithosNodeInfoController release];
133         pithosNodeInfoController = nil;
134     }
135 }
136
137 - (void)pithosNodeWillBeRemoved {
138     if (pithosNodeInfoController) {
139         pithosNodeInfoController.node = nil;
140         [[pithosNodeInfoController window] close];
141     }
142     for (PithosNode *child in children) {
143         [child pithosNodeWillBeRemoved];
144     }
145 }
146
147 #pragma mark -
148 #pragma mark ASIHTTPRequestDelegate
149
150 - (void)performRequestFinishedDelegateInBackground:(ASIPithosRequest *)request {
151     dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
152         [self performSelector:NSSelectorFromString([request.userInfo objectForKey:@"didFinishSelector"]) withObject:request];
153     });
154 }
155
156 - (void)performRequestFailedDelegateInBackground:(ASIPithosRequest *)request {
157     dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
158         [self performSelector:NSSelectorFromString([request.userInfo objectForKey:@"didFailSelector"]) withObject:request];
159     });
160 }
161
162 @end