Added menu for outlineView items.
[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
42 @implementation PithosNode
43 @synthesize forcedRefresh, parent, shared, sharingAccount, displayName, isLeafItem, icon;
44 @dynamic url, children, pithosContainer, pithosObject;
45
46 #pragma mark -
47 #pragma mark Object Lifecycle
48
49 - (id)init {
50     if ((self == [super init])) {
51         freshness = PithosNodeStateRefreshNeeded;
52         forcedRefresh = NO;
53         shared = NO;
54         isLeafItem = NO;
55     }
56     return self;
57 }
58
59 - (void)dealloc {
60     [pithosNodeInfoController release];
61     [sharingAccount release];
62     [icon release];
63     [displayName release];
64     [newChildren release];
65     [children release];
66     [url release];
67     [super dealloc];
68 }
69
70 - (BOOL)isEqual:(id)anObject {
71     return ([anObject isKindOfClass:[self class]] && [((PithosNode *)anObject).url isEqual:self.url]);
72 }
73
74 - (NSUInteger)hash {
75     return self.url.hash;
76 }
77
78 #pragma mark -
79 #pragma mark Properties
80
81 - (void)setShared:(BOOL)aShared {
82     if (shared != aShared) {
83         shared = aShared;
84         [url release];
85         url = nil;
86     }
87 }
88
89 - (void)setSharingAccount:(NSString *)aSharingAccount {
90     if (![sharingAccount isEqualToString:aSharingAccount]) {
91         [sharingAccount release];
92         sharingAccount = [aSharingAccount retain];
93         [url release];
94         url = nil;
95     }
96 }
97
98 #pragma mark -
99 #pragma mark Actions
100
101 - (void)invalidateChildren {
102     if (freshness == PithosNodeStateFresh)
103         freshness = PithosNodeStateRefreshNeeded;
104 }
105
106 - (void)invalidateChildrenRecursive {    
107     if (freshness == PithosNodeStateFresh) {
108         for (PithosNode *child in children) {
109             [child invalidateChildrenRecursive];
110         }
111         freshness = PithosNodeStateRefreshNeeded;
112     }
113 }
114
115 - (void)refresh {
116     [self invalidateChildren];
117     self.children;
118 }
119
120 - (void)forceRefresh {
121     forcedRefresh = YES;
122     [self refresh];
123 }
124
125 - (void)showPithosNodeInfo:(id)sender {
126     // Abstract method
127 }
128
129 - (void)pithosNodeInfoWillClose:(id)sender {
130     if (pithosNodeInfoController) {
131         [pithosNodeInfoController release];
132         pithosNodeInfoController = nil;
133     }
134 }
135
136 - (void)pithosNodeWillBeRemoved {
137     if (pithosNodeInfoController) {
138         pithosNodeInfoController.node = nil;
139         [[pithosNodeInfoController window] close];
140     }
141     for (PithosNode *child in children) {
142         [child pithosNodeWillBeRemoved];
143     }
144 }
145
146 @end