File: FetchingProgressManager.m

package info (click to toggle)
grr.app 0.6.2.dfsg-5
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,024 kB
  • ctags: 55
  • sloc: objc: 3,418; makefile: 62
file content (248 lines) | stat: -rw-r--r-- 5,399 bytes parent folder | download | duplicates (3)
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
/* -*-objc-*-
 *
 * Grr - Guenther's RSS Reader
 * Copyright (C) 2004-2006 Guenther Noack
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2
 * as published by the Free Software Foundation;
 * 
 * This program 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 General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#import <AppKit/AppKit.h>
#import <RSSKit/RSSKit.h>


#import "FetchingProgressManager.h"
#import "FeedManagement.h"
#import "MainController.h"
#import "RSSReaderFeed.h"
#import "FeedList.h"

#define NO_MULTITHREADING YES
#undef NO_MULTITHREADING
#define DEBUG YES


//* The number of currently fetched feeds
int currentlyFetchedFeeds = 0;

/**
 * A lock for the number of currently fetched feeds.
 * Get this lock by calling getCurrentlyFetchedFeedsLock().
 */
NSLock* currentlyFetchedFeedsLock = nil;



NSLock* getCurrentlyFetchedFeedsLock()
{
  if (currentlyFetchedFeedsLock == nil)
    {
      currentlyFetchedFeedsLock = [[NSLock alloc] init];
    }
  
  return currentlyFetchedFeedsLock;
}



FetchingProgressManager* instance;

@implementation FetchingProgressManager

+(FetchingProgressManager*) instance
{
  if (instance == nil) {
    [[FetchingProgressManager alloc] init];
  }
  
  return instance;
}

-init
{
  if (self = [super init])
    {
      [getMainController() fetchingProgressManager: self];
      instance = self;
    }
  
  return self;
}


// get an error string for an error message
+(NSString*) stringForError: (int) error
{
  switch (error)
    {
    case RSSFeedErrorNoError:
      return @"No Error";
      break;
      
    case RSSFeedErrorNoFetcherError:
      return @"Got no information on how to fetch this feed.";
      break;
      
    case RSSFeedErrorMalformedURL:
      return @"Malformed feed URL";
      break;
      
    case RSSFeedErrorDomainNotKnown:
      return @"Cannot resolve domain name";
      break;
      
    case RSSFeedErrorServerNotReachable:
      return @"Server not reachable.";
      break;
      
    case RSSFeedErrorDocumentNotPresent:
      return @"Document not present on server.";
      break;
      
    case RSSFeedErrorMalformedRSS:
      return @"Malformed RSS format";
      break;
      
    default:
      return @"Unknown error. (Update RSSKit?)";
      break;
    }
}



-(void) fetchFeedThreaded: (RSSFeed*) feed
{
#ifdef NO_MULTITHREADING
  [self fetchFeed: feed];
#else
  [NSThread detachNewThreadSelector: @selector(fetchFeed:)
	    toTarget: self
	    withObject: feed];
#endif
}

/**
 * fetch a specific feed. Used for threading
 */
-(void)fetchFeed: (RSSFeed*) feed
{
  NSAutoreleasePool* threadAutoreleasePool;
  NSLock* lock;
  enum RSSFeedError feedError;
  
  threadAutoreleasePool = [[NSAutoreleasePool alloc] init];
  
  
  lock = getCurrentlyFetchedFeedsLock();
  
  NSLog(@"thread fetching %@ just started", feed);
  
  [lock lock];
  currentlyFetchedFeeds++;
  if (currentlyFetchedFeeds == 1)
    {
      [NSApp
	performSelectorOnMainThread: @selector(setApplicationIconImage:)
	withObject: [NSImage imageNamed: @"rssreader-working.png"]
	waitUntilDone: YES];
    }
  [lock unlock];
  
  NS_DURING {
    [feed fetch];
    feedError = [feed lastError];
    
    if (feedError != RSSFeedErrorNoError)
      {
	[[ErrorLogController instance]
	  logString:
	    [NSString stringWithFormat:
			@"%@ fetching failed: %@\n", [feed description],
		      [FetchingProgressManager stringForError: feedError]]];
      }
  }
  NS_HANDLER {
    [[ErrorLogController instance]
      logString:
	[NSString stringWithFormat: @"Exception: %@ fetching failed: %@\n",
		  [feed description], [localException reason]]];
  }
  NS_ENDHANDLER;
  
  [[FeedManagement instance] refreshFeedTable];
  [getFeedList() setArticleListDirty: YES];
  
  [lock lock];
  currentlyFetchedFeeds--;
  if (currentlyFetchedFeeds == 0)
    {
      NSLog(@"icon reset");
      [NSApp
	performSelectorOnMainThread: @selector(setApplicationIconImage:)
	withObject: [NSImage imageNamed: @"NSApplicationIcon"]
	waitUntilDone: YES];
    }
  [lock unlock];
  
    
  RELEASE(threadAutoreleasePool);
  NSLog(@"tap exit release");
  
#ifdef NO_MULTITHREADING
#ifdef DEBUG
  NSLog(@"NO Multithreading");
#endif // DEBUG
#else  // NO_MULTITHREADING
#ifdef DEBUG
  NSLog(@"Multithreading: fetching %@ thread just exited", feed);
#endif // DEBUG
  [NSThread exit];
#endif // NO_MULTITHREADING
}


/**
 * Fetches all RSSFeed objects in the given array.
 * Returns <em>nothing</em>!
 */
-(void)fetchFeeds: (NSArray*) array
{
  int               feedNo;
  int               feedCount;
  
  feedCount = [array count];
  
  for (feedNo=0; feedNo<feedCount; feedNo++)
    {
      RSSFeed* feed;
      
      feed = [array objectAtIndex: feedNo];
      
      if ([feed isSubclassedFeed])
	{
	  register RSSReaderFeed* rFeed;
	  
	  rFeed = (RSSReaderFeed*) feed;
	  if ([rFeed needsRefresh])
	    {
	      [self fetchFeedThreaded: feed];
	    }
	}
      else
	{
	  [self fetchFeedThreaded: feed];
	}
    }
}
@end