-
Notifications
You must be signed in to change notification settings - Fork 2
/
XMPPDiscoInfo.m
59 lines (55 loc) · 1.33 KB
/
XMPPDiscoInfo.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
//
// XMPPDiscoInfo.m
// Jabber
//
// Created by David Chisnall on 14/11/2007.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import "XMPPDiscoInfo.h"
#import <EtoileFoundation/EtoileFoundation.h>
#define ATTRIBUTE(x) [attributes objectForKey:x], x
@implementation XMPPDiscoInfo
- (id) initWithXMLParser: (ETXMLParser*)aParser
key: (id) aKey
{
self = [super initWithXMLParser: aParser
key: aKey];
if (nil == self)
{
return nil;
}
identities = [[NSMutableArray alloc] init];
features = [[NSMutableArray alloc] init];
value = self;
return self;
}
- (void)startElement:(NSString *)aName
attributes:(NSDictionary*)attributes
{
if([aName isEqualToString:@"identity"])
{
[identities addObject:attributes];
}
else if([aName isEqualToString:@"feature"])
{
[features addObject:[attributes objectForKey:@"var"]];
}
else if([aName isEqualToString:@"query"])
{
node = [attributes objectForKey:@"node"];
}
depth++;
}
- (NSArray*) identities
{
return identities;
}
- (NSArray*) features
{
return features;
}
- (NSString*) node
{
return node;
}
@end