public
Description: An XMPP Framework in Objective-C for the Cocoa development community. The framework can be used for desktop applications or iPhone applications.
Homepage: http://code.google.com/p/xmppframework/
Clone URL: git://github.com/tinycode/xmppframework.git
xmppframework / XMPPElement.m
100644 80 lines (64 sloc) 1.72 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
80
#import "XMPPElement.h"
#import "XMPPJID.h"
 
 
@implementation XMPPElement
 
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#pragma mark Encoding, Decoding
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
#if ! TARGET_OS_IPHONE
- (id)replacementObjectForPortCoder:(NSPortCoder *)encoder
{
if([encoder isBycopy])
return self;
else
return [NSDistantObject proxyWithLocal:self connection:[encoder connection]];
}
#endif
 
- (id)initWithCoder:(NSCoder *)coder
{
NSString *xmlString;
if([coder allowsKeyedCoding])
{
xmlString = [coder decodeObjectForKey:@"xmlString"];
}
else
{
xmlString = [coder decodeObject];
}
 
return [super initWithXMLString:xmlString error:nil];
}
 
- (void)encodeWithCoder:(NSCoder *)coder
{
NSString *xmlString = [self XMLString];
 
if([coder allowsKeyedCoding])
{
[coder encodeObject:xmlString forKey:@"xmlString"];
}
else
{
[coder encodeObject:xmlString];
}
}
 
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#pragma mark Common Jabber Methods
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
- (NSString *)elementID
{
return [[self attributeForName:@"id"] stringValue];
}
 
- (NSString *)toStr
{
return [[self attributeForName:@"to"] stringValue];
}
 
- (NSString *)fromStr
{
return [[self attributeForName:@"from"] stringValue];;
}
 
- (XMPPJID *)to
{
return [XMPPJID jidWithString:[self toStr]];
}
 
- (XMPPJID *)from
{
return [XMPPJID jidWithString:[self fromStr]];
}
 
@end