This repository was archived by the owner on Aug 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMPWRSSParser.m
121 lines (101 loc) · 2.9 KB
/
MPWRSSParser.m
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
//
// MPWRSSParser.m
// ObjectiveXML
//
// Created by Marcel Weiher on 1/3/11.
// Copyright 2012 Marcel Weiher. All rights reserved.
//
#import "MPWRSSParser.h"
#import "MPWMAXParser.h"
#import "MPWFeedItem.h"
#import "MPWFeed.h"
#import "AccessorMacros.h"
#import "MPWXmlAttributes.h"
@implementation MPWRSSParser
#define titleKey @"title"
#define linkKey @"link"
#define descriptionKey @"description"
objectAccessor( MPWMAXParser, xmlparser, setXmlparser )
objectAccessor( NSMutableArray, items, setItems )
objectAccessor( NSDictionary, headerItems, setHeaderItems )
scalarAccessor( Class, feedClass , setFeedClass )
scalarAccessor( Class, feedItemClass , setFeedItemClass )
-(void)createParser
{
[self setXmlparser: [MPWMAXParser parser]];
[[self xmlparser] setHandler:self forElements:[NSArray arrayWithObjects:@"rss",@"item",@"channel",@"title",@"enclosure",nil] inNamespace:nil
prefix:@"" map:nil];
[[self xmlparser] setUndefinedTagAction:MAX_ACTION_PLIST];
#if 0
[[self xmlparser] handleElement:@"channel" withBlock:^(id elements, id attributes, id parser) {
// NSLog(@"got channel");
[self setHeaderItems:[elements asDictionary]];
return nil;
}];
#endif
}
-init
{
self=[super init];
return self;
}
-parsedData:(NSData*)data
{
[self createParser];
[self setItems:[NSMutableArray array]];
[self setHeaderItems:[NSMutableDictionary dictionary]];
id feed=[[self xmlparser] parsedData:data];
return feed;
}
-defaultElement:(MPWXMLAttributes*)children attributes:(MPWXMLAttributes*)attributes parser:(MPWMAXParser*)parser
{
return [parser buildPlistWithChildren:children attributes:attributes parser:parser];
}
-channelElement:(MPWXMLAttributes*)children attributes:(MPWXMLAttributes*)attributes parser:parser
{
// NSLog(@"got channel");
[self setHeaderItems:[children asDictionary]];
return nil;
}
-(NSArray*)getItemKeys
{
return [NSArray arrayWithObjects:
@"guid",@"title",@"category",@"link",
@"pubDate",nil];
}
-(NSArray*)itemKeys
{
static NSArray *keys=nil;
if ( !keys ) {
keys=[[self getItemKeys] retain];
}
return keys;
}
-(NSSet*)itemKeySet {
static NSSet *keys=nil;
if ( !keys ) {
keys=[[NSSet setWithArray:[self itemKeys]] retain];
}
return keys;
}
// -(Class)feedItemClass { return [MPWFeedItem class]; }
-itemElement:children attributes:attributes parser:parser
{
MPWFeedItem *item=[[[self feedItemClass] alloc] init];
for ( NSString *key in [self itemKeys] ) {
[item setValue:[children objectForKey:key] forKey:key];
}
[item setRemainder:[children asDictionaryExcludingKeys:[self itemKeySet]]];
[items addObject:[item autorelease]];
// NSLog(@"got an item");
return nil;
}
-rssElement:children attributes:attributes parser:parser
{
// NSLog(@"<rss> feedClass: %@",[self feedClass]);
id result=[[[self feedClass] alloc] initWithVersion:[attributes objectForKey:@"version"]
items:[self items]
header:[self headerItems]];
return result;
}
@end