]> err.no Git - sope/blob - sope-xml/XmlRpc/NSArray+XmlRpcCoding.m
fixed a header file
[sope] / sope-xml / XmlRpc / NSArray+XmlRpcCoding.m
1 /*
2   Copyright (C) 2000-2004 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21 // $Id$
22
23 #include "XmlRpcMethodResponse.h"
24 #include "XmlRpcCoder.h"
25 #include "NSObject+XmlRpc.h"
26 #include "common.h"
27
28 @implementation NSEnumerator(XmlRpcCoding)
29
30 - (NSString *)xmlRpcType {
31   return @"array";
32 }
33
34 - (void)encodeWithXmlRpcCoder:(XmlRpcEncoder *)_coder {
35   NSMutableArray *objs;
36   id obj;
37   
38   /* make a copy to keep the enum state */
39   self = [self copy];
40   
41   objs = [[NSMutableArray alloc] initWithCapacity:16];
42   
43   while ((obj = [self nextObject]))
44     [objs addObject:obj];
45   
46   [_coder encodeArray:objs];
47   [objs release];
48   [self release];
49 }
50
51 + (id)decodeObjectWithXmlRpcCoder:(XmlRpcDecoder *)_coder {
52   return [[_coder decodeArray] objectEnumerator];
53 }
54
55 @end /* NSEnumerator(XmlRpc) */
56
57 @implementation NSArray(XmlRpcCoding)
58
59 - (NSString *)xmlRpcType {
60   return @"array";
61 }
62 - (NSArray *)xmlRpcElementSignature {
63   unsigned i, count;
64   NSMutableArray *ma;
65   
66   if ((count = [self count]) == 0)
67     return [NSArray array];
68   
69   ma = [NSMutableArray arrayWithCapacity:count];
70   for (i = 0; i < count; i++)
71     [ma addObject:[[self objectAtIndex:i] xmlRpcType]];
72   return ma;
73 }
74
75 - (void)encodeWithXmlRpcCoder:(XmlRpcEncoder *)_coder {
76   [_coder encodeArray:self];
77 }
78
79 + (id)decodeObjectWithXmlRpcCoder:(XmlRpcDecoder *)_coder {
80   return [_coder decodeArray];
81 }
82
83 @end /* NSArray(XmlRpc) */
84
85 @implementation NSSet(XmlRpcCoding)
86
87 - (NSString *)xmlRpcType {
88   return @"array";
89 }
90
91 - (void)encodeWithXmlRpcCoder:(XmlRpcEncoder *)_coder {
92   [_coder encodeArray:[self allObjects]];
93 }
94
95 + (id)decodeObjectWithXmlRpcCoder:(XmlRpcDecoder *)_coder {
96   return [NSSet setWithArray:[_coder decodeArray]];
97 }
98
99 @end /* NSSet(XmlRpcCoding) */