forked from robbiehanson/XMPPFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXMPPResultSet.m
230 lines (195 loc) · 5.99 KB
/
XMPPResultSet.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
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
#import "XMPPResultSet.h"
#import "NSXMLElement+XMPP.h"
#import <objc/runtime.h>
#if ! __has_feature(objc_arc)
#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC).
#endif
#define XMLNS_XMPP_RESULT_SET @"http://jabber.org/protocol/rsm"
#define NAME_XMPP_RESULT_SET @"set"
@implementation XMPPResultSet
+ (void)initialize
{
// We use the object_setClass method below to dynamically change the class from a standard NSXMLElement.
// The size of the two classes is expected to be the same.
//
// If a developer adds instance methods to this class, bad things happen at runtime that are very hard to debug.
// This check is here to aid future developers who may make this mistake.
//
// For Fearless And Experienced Objective-C Developers:
// It may be possible to support adding instance variables to this class if you seriously need it.
// To do so, try realloc'ing self after altering the class, and then initialize your variables.
size_t superSize = class_getInstanceSize([NSXMLElement class]);
size_t ourSize = class_getInstanceSize([XMPPResultSet class]);
if (superSize != ourSize)
{
NSLog(@"Adding instance variables to XMPPResultSet is not currently supported!");
exit(15);
}
}
+ (XMPPResultSet *)resultSetFromElement:(NSXMLElement *)element
{
object_setClass(element, [XMPPResultSet class]);
return (XMPPResultSet *)element;
}
+ (XMPPResultSet *)resultSet
{
return [[XMPPResultSet alloc] init];
}
+ (XMPPResultSet *)resultSetWithMax:(NSInteger)max
{
return [[XMPPResultSet alloc] initWithMax:max];
}
+ (XMPPResultSet *)resultSetWithMax:(NSInteger)max
firstIndex:(NSInteger)firstIndex
{
return [[XMPPResultSet alloc] initWithMax:max firstIndex:firstIndex];
}
+ (XMPPResultSet *)resultSetWithMax:(NSInteger)max
after:(NSString *)after
{
return [[XMPPResultSet alloc] initWithMax:max after:after];
}
+ (XMPPResultSet *)resultSetWithMax:(NSInteger)max
before:(NSString *)before
{
return [[XMPPResultSet alloc] initWithMax:max before:before];
}
+ (XMPPResultSet *)resultSetWithMax:(NSInteger)max
firstIndex:(NSInteger)firstIndex
after:(NSString *)after
before:(NSString *)before
{
return [[XMPPResultSet alloc] initWithMax:max
firstIndex:firstIndex
after:after
before:before];
}
- (id)init
{
return [self initWithMax:NSNotFound firstIndex:NSNotFound after:nil before:nil];
}
- (id)initWithMax:(NSInteger)max
{
return [self initWithMax:max firstIndex:NSNotFound after:nil before:nil];
}
- (id)initWithMax:(NSInteger)max
firstIndex:(NSInteger)firstIndex
{
return [self initWithMax:max firstIndex:firstIndex after:nil before:nil];
}
- (id)initWithMax:(NSInteger)max
after:(NSString *)after
{
return [self initWithMax:max firstIndex:NSNotFound after:after before:nil];
}
- (id)initWithMax:(NSInteger)max
before:(NSString *)before
{
return [self initWithMax:max firstIndex:NSNotFound after:nil before:before];
}
- (id)initWithMax:(NSInteger)max
firstIndex:(NSInteger)firstIndex
after:(NSString *)after
before:(NSString *)before
{
if ((self = [super initWithName:NAME_XMPP_RESULT_SET xmlns:XMLNS_XMPP_RESULT_SET]))
{
if(max != NSNotFound)
{
NSXMLElement *maxElement = [NSXMLElement elementWithName:@"max" stringValue:[@(max) stringValue]];
[self addChild:maxElement];
}
if(firstIndex != NSNotFound)
{
NSXMLElement *maxElement = [NSXMLElement elementWithName:@"index" stringValue:[@(firstIndex) stringValue]];
[self addChild:maxElement];
}
if(after != nil)
{
if([after length])
{
NSXMLElement *afterElement = [NSXMLElement elementWithName:@"after" stringValue:after];
[self addChild:afterElement];
}
else
{
NSXMLElement *afterElement = [NSXMLElement elementWithName:@"after"];
[self addChild:afterElement];
}
}
if(before != nil)
{
if([before length])
{
NSXMLElement *beforeElement = [NSXMLElement elementWithName:@"before" stringValue:before];
[self addChild:beforeElement];
}
else
{
NSXMLElement *beforeElement = [NSXMLElement elementWithName:@"before"];
[self addChild:beforeElement];
}
}
}
return self;
}
- (id)initWithXMLString:(NSString *)string error:(NSError *__autoreleasing *)error
{
if((self = [super initWithXMLString:string error:error]))
{
self = [XMPPResultSet resultSetFromElement:self];
}
return self;
}
- (NSInteger)max
{
if([self elementForName:@"max"])
{
return [[[self elementForName:@"max"] stringValue] intValue];
}else{
return NSNotFound;
}
}
- (NSInteger)firstIndex
{
if([[self elementForName:@"first"] attributeForName:@"index"])
{
return [[self elementForName:@"first"] attributeIntegerValueForName:@"index"];
}
else if([self elementForName:@"index"])
{
return [[[self elementForName:@"index"] stringValue] intValue];
}
else
{
return NSNotFound;
}
}
- (NSString *)after
{
return [[self elementForName:@"after"] stringValue];
}
- (NSString *)before
{
return [[self elementForName:@"before"] stringValue];
}
- (NSInteger)count
{
if([self elementForName:@"count"])
{
return [[[self elementForName:@"count"] stringValue] intValue];
}
else
{
return NSNotFound;
}
}
- (NSString *)first
{
return [[self elementForName:@"first"] stringValue];
}
- (NSString *)last
{
return [[self elementForName:@"last"] stringValue];
}
@end