File: DatabaseOperations.m

package info (click to toggle)
grr.app 1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,024 kB
  • sloc: objc: 4,019; sh: 54; makefile: 23
file content (298 lines) | stat: -rw-r--r-- 10,388 bytes parent folder | download | duplicates (2)
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
/*
   Grr RSS Reader
   
   Copyright (C) 2006-2007 Guenther Noack <guenther@unix-ag.uni-kl.de>
   Copyright (C) 2009-2012 GNUstep Application Team
                           Riccardo Mottola

   This application is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public
   License as published by the Free Software Foundation; either
   version 3 of the License, or (at your option) any later version.
 
   This application is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.
 
   You should have received a copy of the GNU General Public
   License along with this library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA. 
*/

#import "DatabaseOperations.h"

#import "Feed.h"
#import "Database.h"
#import "NSBundle+Extensions.h"

#ifdef __APPLE__
#import "GNUstep.h"
#endif


#define DELETE_IDENTIFIER @"DB.Ops.Delete"
#define SUBSCRIBE_IDENTIFIER @"Feed.Ops.Subscribe"
#define ADD_CATEGORY_IDENTIFIER @"DB.Ops.AddCategory"
#define FETCH_IDENTIFIER @"Feed.Ops.Fetch"
#define FETCH_ALL_IDENTIFIER @"Feed.Ops.FetchAll"

@implementation DatabaseOperationsComponent

- (id) init
{
    if ((self = [super init]) != nil) {
        NSMenu* feedMenu;
        NSArray* identifiers;

        // ------------------------------
        // Toolbar items
        // ------------------------------
        
        // Feed fetching items
        fetchItem = [[NSToolbarItem alloc] initWithItemIdentifier: FETCH_IDENTIFIER];
        [fetchItem setLabel: _(@"Fetch feed")];
        [fetchItem setImage: [NSImage imageNamed: @"FetchFeed"]];
        [fetchItem setAction: @selector(fetchSelectedFeeds)];
        [fetchItem setTarget: self];
        
        fetchAllItem = [[NSToolbarItem alloc] initWithItemIdentifier: FETCH_ALL_IDENTIFIER];
        [fetchAllItem setLabel: _(@"Fetch all")];
        [fetchAllItem setImage: [NSImage imageNamed: @"FetchFeeds"]];
        [fetchAllItem setAction: @selector(fetchAllFeeds)];
        [fetchAllItem setTarget: self];
        
        // "Add feed" item
        subscribeItem = [[NSToolbarItem alloc] initWithItemIdentifier: DELETE_IDENTIFIER];
        [subscribeItem setLabel: _(@"Subscribe")];
        [subscribeItem setImage: [NSImage imageNamed: @"AddFeed"]];
        [subscribeItem setAction: @selector(subscribeFeed)];
        [subscribeItem setTarget: self];
        
        // "Add category" item
        addCategoryItem = [[NSToolbarItem alloc] initWithItemIdentifier: ADD_CATEGORY_IDENTIFIER];
        [addCategoryItem setLabel: _(@"New category")];
        [addCategoryItem setImage: [NSImage imageNamed: @"AddCategory"]];
        [addCategoryItem setAction: @selector(addCategory)];
        [addCategoryItem setTarget: self];
        
        // Feed deletion item
        deleteItem = [[NSToolbarItem alloc] initWithItemIdentifier: DELETE_IDENTIFIER];
        [deleteItem setLabel: _(@"Delete")];
        [deleteItem setImage: [NSImage imageNamed: @"DeleteFeed"]];
        [deleteItem setAction: @selector(deleteSelectedElements)];
        [deleteItem setTarget: self];
        
        
        // ----------------------------
        // Menu items
        // ----------------------------
        
        feedMenu = [[[NSApp mainMenu] itemWithTag:1] submenu];
        
        // Feed fetching menu items
        fetchMenuItem = [[NSMenuItem alloc] initWithTitle: _(@"Fetch feed")
                                                   action: @selector(fetchSelectedFeeds)
                                            keyEquivalent: @""];
        [fetchMenuItem setTarget: self];
        [feedMenu addItem: fetchMenuItem];
        
        fetchAllMenuItem = [[NSMenuItem alloc] initWithTitle: _(@"Fetch all")
                                                      action: @selector(fetchAllFeeds)
                                               keyEquivalent: @""];
        [fetchAllMenuItem setTarget: self];
        [feedMenu addItem: fetchAllMenuItem];
        
        // "Subscribe to feed" menu item
        subscribeMenuItem = [[NSMenuItem alloc] initWithTitle: _(@"Subscribe to URL...")
                                                 action: @selector(subscribeFeed)
                                          keyEquivalent: @""];
        [subscribeMenuItem setTarget: self];
        [feedMenu addItem: subscribeMenuItem];
        
        // "Delete feed" menu item
        deleteMenuItem = [[NSMenuItem alloc] initWithTitle: _(@"Delete feed")
                                                    action: @selector(deleteSelectedFeeds)
                                             keyEquivalent: @"r"];
        [deleteMenuItem setTarget: self];
        [feedMenu addItem: deleteMenuItem];
                
                
        // -------------------------------------
        // Prepare toolbar delegation
        // -------------------------------------
        identifiers = [NSArray arrayWithObjects:
            FETCH_ALL_IDENTIFIER,
            FETCH_IDENTIFIER,
            SUBSCRIBE_IDENTIFIER,
            ADD_CATEGORY_IDENTIFIER,
            DELETE_IDENTIFIER,
            nil
        ];
        ASSIGN(allowedIdentifiers, identifiers);
        ASSIGN(defaultIdentifiers, allowedIdentifiers);
        
        // Init selected feeds with empty set
        ASSIGN(selectedFeeds, [NSSet new]);
    }
    
    return self;
}

// input accepting component protocol

-(void)componentDidUpdateSet: (NSNotification*) aNotification
{
    id<OutputProvidingComponent> component = [aNotification object];
    BOOL isEnabled;
    
    ASSIGN(selectedFeeds, [component objectsForPipeType: [PipeType feedType]]);
    ASSIGN(selectedElements, [component objectsForPipeType: [PipeType databaseElementType]]);
    
    // Using anyObject is appropriate, as there can only be one selected element.
    ASSIGN(
        subscriptionReferenceElement,
        [selectedElements anyObject]
    );
    
    // set the new insertion reference element for the subscription panel
    if (subscriptionPanel != nil) {
        [subscriptionPanel setReferenceElement: subscriptionReferenceElement];
    }
    
    // update the image for the delete item
    if ([selectedFeeds count] > 0) {
        [deleteItem setImage: [NSImage imageNamed: @"DeleteFeed"]];
    } else {
        [deleteItem setImage: [NSImage imageNamed: @"DeleteCategory"]];
    }
    
    // change the enabled state for the feed operation items
    isEnabled = ([selectedFeeds count] > 0) ? YES : NO;
    [fetchItem setEnabled: isEnabled];
    [deleteMenuItem setEnabled: isEnabled];
    [fetchMenuItem setEnabled: isEnabled];
    
    isEnabled = ([selectedElements count] > 0) ? YES : NO;
    [deleteItem setEnabled: isEnabled];
}

// toolbar delegate protocol

- (NSToolbarItem*)toolbar: (NSToolbar*)toolbar
    itemForItemIdentifier: (NSString*)itemIdentifier
willBeInsertedIntoToolbar: (BOOL)flag
{
    if ([itemIdentifier isEqualToString: DELETE_IDENTIFIER]) {
        return deleteItem;
    } else if ([itemIdentifier isEqualToString: FETCH_IDENTIFIER]) {
        return fetchItem;
    } else if ([itemIdentifier isEqualToString: SUBSCRIBE_IDENTIFIER]) {
        return subscribeItem;
    } else if ([itemIdentifier isEqualToString: ADD_CATEGORY_IDENTIFIER]) {
        return addCategoryItem;
    } else if ([itemIdentifier isEqualToString: FETCH_ALL_IDENTIFIER]) {
        return fetchAllItem;
    }
    
    return nil; // identifier not found, possibly fall back on other toolbar delegates
}

- (NSArray*) toolbarAllowedItemIdentifiers: (NSToolbar*)toolbar
{
    return allowedIdentifiers;
}

- (NSArray*) toolbarDefaultItemIdentifiers: (NSToolbar*)toolbar
{
    return defaultIdentifiers;
}

// own methods

- (void) deleteSelectedElements
{
    NSEnumerator* enumerator = [selectedElements objectEnumerator];
    id <DatabaseElement> elem;
    
    while ((elem = [enumerator nextObject]) != nil) {
        [[Database shared] removeElement: elem];
    }
}

- (void) fetchSelectedFeeds
{
    NSEnumerator* enumerator = [selectedFeeds objectEnumerator];
    id <Feed> feed;
    
    while ((feed = [enumerator nextObject]) != nil) {
        [feed fetchInBackground];
    }
}

- (void) fetchAllFeeds
{
    [[Database shared] fetchAllFeeds];
}

- (void) subscribeFeed
{
    if (subscriptionPanel == nil) {
        ASSIGN(
            subscriptionPanel,
            [NSBundle instanceForBundleWithName: @"SubscriptionPanel"]
        );
    }
    
    [subscriptionPanel setReferenceElement: subscriptionReferenceElement];
    [subscriptionPanel show];
}

-(void) addCategory
{
    NSString* name = @"New category";
    BOOL result;
    id<Database> db = [Database shared];
    
    if (subscriptionReferenceElement == nil) {
        result = [db addCategoryNamed: name
                           inCategory: nil];
    } else {
        if ([subscriptionReferenceElement conformsToProtocol: @protocol(Category)]) {
	  id<Category> cat = (id<Category>)subscriptionReferenceElement;
            result = [db addCategoryNamed: name
                               inCategory: cat
                                 position: [[cat elements] count]];
        } else {
            id<Category> cat;
            NSUInteger index;
            NSAssert(
                [subscriptionReferenceElement conformsToProtocol: @protocol(DatabaseElement)],
                @"Bad subscription reference element"
            );
            
            cat = [subscriptionReferenceElement superElement];
            
            if (cat == nil) {
                index = [[db topLevelElements] indexOfObject: subscriptionReferenceElement];
            } else {
                index = [[cat elements] indexOfObject: subscriptionReferenceElement];
            }
            
            NSAssert1(
                index != NSNotFound,
                @"%@ db element is badly linked (bad super element)",
                subscriptionReferenceElement
            );
            
            result = [db addCategoryNamed: name
                               inCategory: cat
                                 position: index];
        }
    }
    
    NSAssert(result == YES, @"Category creation failed!");
}

@end