-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRssLoader.m
More file actions
79 lines (55 loc) · 1.73 KB
/
RssLoader.m
File metadata and controls
79 lines (55 loc) · 1.73 KB
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
//
// RssLoader.m
// iReader-RSS
//
// Created by Julien Sarazin on 11/09/12.
// Copyright (c) 2012 Julien Sarazin. All rights reserved.
//
#import "RssLoader.h"
@interface RssLoader ()
- (void)dispatchLoadingOperationWithURL:(NSURL *)url;
- (RssItem *)getRssItemFromXmlElement:(CXMLElement *)xmlElement;
- (void)fetchRssFromUrl:(NSURL*)url;
@end
@implementation RssLoader
@synthesize delegate;
@synthesize loaded;
- (id)init
{
if([super init] != nil)
self.loaded = NO;
return self;
}
- (void)loadWithURL:(NSURL *)url
{
[self dispatchLoadingOperationWithURL:url];
}
- (void)dispatchLoadingOperationWithURL:(NSURL *)url
{
NSOperationQueue *queue = [NSOperationQueue new];
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self
selector:@selector(fetchRssFromUrl:)
object:url];
[queue addOperation:operation];
}
- (RssItem *)getRssItemFromXmlElement:(CXMLElement *)xmlElement
{
return [[RssItem alloc]initWithXmlElement:xmlElement];
}
- (void)fetchRssFromUrl:(NSURL *)url
{
NSError *error;
CXMLDocument *parser = [[CXMLDocument alloc] initWithContentsOfURL:url options:0 error:&error];
if(!parser)
{
[self.delegate performSelectorOnMainThread:@selector(updateFailedWithError:) withObject:error waitUntilDone:YES];
return;
}
self.loaded = YES;
NSArray *xmlElements = [[parser rootElement] nodesForXPath:@"channel//item" error:nil];
NSMutableArray* rssItems = [NSMutableArray arrayWithCapacity:xmlElements.count];
for(CXMLElement *xmlElement in xmlElements)
[rssItems addObject: [self getRssItemFromXmlElement:xmlElement]];
[self.delegate performSelectorOnMainThread:@selector(rssItemsUpdated:) withObject:rssItems waitUntilDone:YES];
}
@end