File: XmlRpcDecoder.m

package info (click to toggle)
sope 5.12.7-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 16,592 kB
  • sloc: objc: 169,229; sh: 3,823; ansic: 3,409; javascript: 446; python: 318; makefile: 185
file content (656 lines) | stat: -rw-r--r-- 17,907 bytes parent folder | download | duplicates (9)
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
/*
  Copyright (C) 2000-2007 SKYRIX Software AG
  Copyright (C) 2007      Helge Hess

  This file is part of SOPE.

  SOPE is free software; you can redistribute it and/or modify it under
  the terms of the GNU Lesser General Public License as published by the
  Free Software Foundation; either version 2, or (at your option) any
  later version.

  SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
  WARRANTY; without even the implied warranty of MERCHANTABILITY or
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with SOPE; see the file COPYING.  If not, write to the
  Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  02111-1307, USA.
*/

#include "XmlRpcCoder.h"
#include "XmlRpcValue.h"
#include "XmlRpcSaxHandler.h"
#include <SaxObjC/SaxXMLReaderFactory.h>
#include "XmlRpcMethodCall.h"
#include "XmlRpcMethodResponse.h"
#include "common.h"

/* self->unarchivedObjects does *not* store objects with xmlrpc base type! */

@interface XmlRpcDecoder(PrivateMethodes)
- (id)_decodeObject:(XmlRpcValue *)_value;
@end

@interface NSData(NGExtensions)
- (NSData *)dataByDecodingBase64;
@end

@implementation XmlRpcDecoder

- (BOOL)profileXmlRpcCoding {
  return [[NSUserDefaults standardUserDefaults]
                          boolForKey:@"ProfileXmlRpcCoding"];
}

#if HAVE_NSXMLPARSER && 0
#warning using NSXMLParser!
static BOOL useNSXMLParser = YES;
#else
static BOOL useNSXMLParser = NO;
#endif
static id saxHandler   = nil;
static id xmlRpcParser = nil;

static Class ArrayClass      = Nil;
static Class DictionaryClass = Nil;
static Class DataClass       = Nil;
static Class NumberClass     = Nil;
static Class StringClass     = Nil;
static Class DateClass       = Nil;
static BOOL  doDebug         = NO;

+ (void)initialize {
  if (ArrayClass      == Nil) ArrayClass      = [NSArray        class];
  if (DictionaryClass == Nil) DictionaryClass = [NSDictionary   class];
  if (DataClass       == Nil) DataClass       = [NSData         class];
  if (NumberClass     == Nil) NumberClass     = [NSNumber       class];
  if (StringClass     == Nil) StringClass     = [NSString       class];
  if (DateClass       == Nil) DateClass       = [NSCalendarDate class];
}

- (id)init {
  if ((self = [super init])) {
    self->unarchivedObjects = [[NSMutableArray alloc] init];
    self->awakeObjects      = [[NSMutableSet alloc] init];
    self->valueStack        = [[NSMutableArray alloc] initWithCapacity:4];
    self->timeZone = [[NSTimeZone timeZoneWithAbbreviation:@"GMT"] retain];
  }
  return self;
}

- (NSStringEncoding)encodingForXMLEncodingString:(NSString *)_enc {
  _enc = [_enc lowercaseString];
  if ([_enc isEqualToString:@"utf-8"])
    return NSUTF8StringEncoding;
  else if ([_enc isEqualToString:@"iso-8859-1"])
    return NSISOLatin1StringEncoding;
#if !(NeXT_Foundation_LIBRARY || APPLE_Foundation_LIBRARY)
  else if ([_enc isEqualToString:@"iso-8859-9"])
    return NSISOLatin9StringEncoding;
#endif
  else if ([_enc isEqualToString:@"ascii"])
    return NSASCIIStringEncoding;
  else
    NSLog(@"%s: UNKNOWN XML ENCODING '%@'", __PRETTY_FUNCTION__, _enc);
  return 0;
}

- (id)initForReadingWithString:(NSString *)_string {
  if ((self = [self init])) {
    NSRange r;
    
    r = [_string rangeOfString:@"?>"];
    if ([_string hasPrefix:@"<?xml "] && r.length != 0) {
      NSString *xmlDecl;
      
      xmlDecl = [_string substringToIndex:r.location];

      r = [xmlDecl rangeOfString:@"encoding='"];
      if (r.length != 0) {
        xmlDecl = [_string substringFromIndex:(r.location + 10)];
        r = [xmlDecl rangeOfString:@"'"];
        xmlDecl = r.length == 0
          ? (NSString *)nil
          : [xmlDecl substringToIndex:r.location];
      }
      else {
        r = [xmlDecl rangeOfString:@"encoding=\""];
        if (r.length != 0) {
          xmlDecl = [_string substringFromIndex:(r.location + 10)];
          r = [xmlDecl rangeOfString:@"\""];
          xmlDecl = r.length == 0
            ? (NSString *)nil
            : [xmlDecl substringToIndex:r.location];
        }
        else
          xmlDecl = nil;
      }
      
      if ([xmlDecl length] > 0) {
        NSStringEncoding enc;
        
        if ((enc = [self encodingForXMLEncodingString:xmlDecl]) != 0) {
          self->data = [[_string dataUsingEncoding:enc] retain];
          if (self->data == nil) {
            NSLog(@"WARNING(%s): couldn't get data for string '%@', "
                  @"encoding %i !", __PRETTY_FUNCTION__, _string, enc);
            [self release];
            return nil;
          }
        }
      }
    }
    
    if (self->data == nil)
      self->data = [[_string dataUsingEncoding:NSUTF8StringEncoding] retain];
  }
  return self;
}
- (id)initForReadingWithData:(NSData *)_data {
  if ((self = [self init])) {
    self->data = [_data retain];
  }
  return self;
}

- (void)dealloc {
  [self->data         release];
  [self->valueStack   release];
  [self->unarchivedObjects release];
  [self->awakeObjects release];
  
  [self->timeZone release];
  [super dealloc];
}

/* accessors */

- (void)setDefaultTimeZone:(NSTimeZone *)_timeZone {
  [self->timeZone autorelease];
  self->timeZone = [_timeZone retain];
}

- (NSTimeZone *)defaultTimeZone {
  return self->timeZone;
}

/* *** */

- (void)_ensureSaxAndParser {
  if (saxHandler == nil) {
    if ((saxHandler = [[XmlRpcSaxHandler alloc] init]) == nil) {
      NSLog(@"%s: did not find sax handler ...", __PRETTY_FUNCTION__);
      return;
    }
  }

  if (useNSXMLParser)      return;
  if (xmlRpcParser != nil) return;
  
  xmlRpcParser =
    [[SaxXMLReaderFactory standardXMLReaderFactory] 
                          createXMLReaderForMimeType:@"text/xml"];
  if (xmlRpcParser == nil) {
    NSLog(@"%s: did not find an XML parser ...", __PRETTY_FUNCTION__);
    return;
  }

  [xmlRpcParser setContentHandler:saxHandler];
  [xmlRpcParser setDTDHandler:saxHandler];
  [xmlRpcParser setErrorHandler:saxHandler];
  [xmlRpcParser retain];
}

- (id)_decodeValueOfClass:(Class)_class {
  id obj;
  
  obj = [(XmlRpcValue *)[self->valueStack lastObject] value];

  if ([obj isKindOfClass:_class])
    return obj;
  
  NSLog(@"WARNING(%s): obj (%@) is not of proper class ('%@'<-->'%@'",
        __PRETTY_FUNCTION__,
        obj,
        NSStringFromClass(_class),
        NSStringFromClass([obj class]),
        nil);
  return nil;
}

- (XmlRpcMethodCall *)_decodeMethodCall:(XmlRpcMethodCall *)_baseCall {
  NSArray          *params;
  NSEnumerator     *paramEnum;
  XmlRpcMethodCall *result    = nil;
  XmlRpcValue    *param       = nil;
  NSMutableArray *decParams   = nil;  // decoded parameters

  params    = [_baseCall parameters]; // XmlRpcValues!!
  decParams = [[NSMutableArray alloc] initWithCapacity:[params count]];
  
  paramEnum = [params objectEnumerator];
  while ((param = [paramEnum nextObject])) {
    id obj;

    if ((obj = [self _decodeObject:param]) != nil)
      [decParams addObject:obj];
  }

  result = [[XmlRpcMethodCall alloc] initWithMethodName:[_baseCall methodName]
                                     parameters:decParams];

  [decParams release];

  return [result autorelease];
}

- (XmlRpcMethodResponse *)_decodeMethodResponse:(XmlRpcMethodResponse *)_resp {
  static Class ExceptionClass = Nil;
  XmlRpcMethodResponse *response = nil;
  id                   result    = [_resp result];
  
  if (ExceptionClass == Nil)
    ExceptionClass = [NSException class];

  if (![result isKindOfClass:ExceptionClass]) {

    result = [self _decodeObject:result]; // => XmlRpcValue
  }
  response = [[XmlRpcMethodResponse alloc] initWithResult:result];
  
  return [response autorelease];
}

- (NSStringEncoding)logEncoding {
  return NSUTF8StringEncoding;
}
- (id)decodeRootObject {
  id tmp = nil;
  
  if (doDebug) {
    NSLog(@"%s: begin (data: %"PRIuPTR" bytes, nesting: %i)", __PRETTY_FUNCTION__, 
          [self->data length], self->nesting);
  }
  if ([self->data length] == 0) return nil;
  
  self->nesting++;
  
  [self _ensureSaxAndParser];
  NSAssert(saxHandler,   @"missing sax handler ...");
  NSAssert(xmlRpcParser || useNSXMLParser, @"missing parser handler ...");
  
  [saxHandler reset];
  if (doDebug) NSLog(@"%s:  SAX handler: %@", __PRETTY_FUNCTION__, saxHandler);
#if HAVE_NSXMLPARSER
  if (useNSXMLParser) {
    NSXMLParser *parser;
    
    parser = [[NSXMLParser alloc] initWithData:self->data];
    if (doDebug) 
      NSLog(@"%s:  using NSXMLParser: %@", __PRETTY_FUNCTION__, parser);
    [parser setDelegate:saxHandler];
    [parser setShouldProcessNamespaces:NO];
    [parser setShouldReportNamespacePrefixes:NO];
    [parser setShouldResolveExternalEntities:NO];
    [parser parse];
    [parser release];
  }
  else
#endif
    [xmlRpcParser parseFromSource:self->data systemId:@"<xmlrpc-data>"];
  
  if ((tmp = [saxHandler methodCall]) != nil) {
    tmp = [self _decodeMethodCall:tmp];
  }
  else if ((tmp = [saxHandler methodResponse]) != nil) {
    tmp = [self _decodeMethodResponse:tmp];
  }
  else if (tmp == nil) {
    NSString *s;
    
    s = [[NSString alloc] initWithData:self->data encoding:[self logEncoding]];
    NSLog(@"%s: couldn't parse source\n"
          @"  parser:  %@\n"
          @"  handler: %@\n"
          @"  data:    %@"
          @"  string:  '%@'",
          __PRETTY_FUNCTION__, xmlRpcParser, saxHandler, self->data, s);
    [s release];
  }
  else {
    NSLog(@"%s: neither call nor response (handler=%@): %@ ..",
          __PRETTY_FUNCTION__,
          saxHandler, tmp);
  }
  
  self->nesting--;

  // [saxHandler reset]; // hh asks: why is that commented out?
  if (doDebug) NSLog(@"%s: end: %@", __PRETTY_FUNCTION__, tmp);
  return tmp;  
}

- (XmlRpcMethodCall *)decodeMethodCall {
  XmlRpcMethodCall *result;
  NSTimeInterval st     = 0.0;
    
  if ([self profileXmlRpcCoding])
    st = [[NSDate date] timeIntervalSince1970];  

  result = [self decodeRootObject];

  if ([self profileXmlRpcCoding]) {
    NSTimeInterval diff;
    diff = [[NSDate date] timeIntervalSince1970] - st;
    
    printf("+++     decodeMethodCall: %0.5fs\n", diff);
  }
  
  return ([result isKindOfClass:[XmlRpcMethodCall class]])
    ? result
    : (XmlRpcMethodCall *)nil;
}

- (XmlRpcMethodResponse *)decodeMethodResponse {
  XmlRpcMethodResponse *result;
  NSTimeInterval st    = 0.0;

  if ([self profileXmlRpcCoding])
    st = [[NSDate date] timeIntervalSince1970];

  result = [self decodeRootObject];

  if ([self profileXmlRpcCoding]) {
    NSTimeInterval diff;
    diff = [[NSDate date] timeIntervalSince1970] - st;
    
    printf("+++ decodeMethodResponse: %0.5fs\n", diff);
  }
  
  return [result isKindOfClass:[XmlRpcMethodResponse class]]
    ? result
    : (XmlRpcMethodResponse *)nil;
}

- (id)_decodeObject:(XmlRpcValue *)_value {
  id result;
  
  if (_value == nil) return nil;
  
  [self->valueStack addObject:_value];
  result = [self decodeObject];
  [self->valueStack removeLastObject];
  return result;
}

- (id)decodeObject {
  Class objClass = Nil;
  id    object   = nil;
  
  self->nesting++;

  if ((self->nesting == 1) && ([self->valueStack count] == 0)) {
    object = [self decodeRootObject];
  }
  else {
    NSString *className;
    id value = [self->valueStack lastObject];
    
    className = [value className];

    if ([className length] == 0) {
      object = [(XmlRpcValue *)value value];
    }
    else if ((objClass = NSClassFromString(className)) != Nil) {
      object = [objClass decodeObjectWithXmlRpcCoder:self];
    }
    else {
      NSLog(@"%s: class (%@) specified by value (%@) wasn't found.",
            __PRETTY_FUNCTION__, className, value);
      object = [(XmlRpcValue *)value value];
    }

    if (object) [self->unarchivedObjects addObject:object];
  }
 
  self->nesting--;
  
  return object;
}

- (NSDictionary *)decodeStruct {
  NSDictionary *dict;
  id           result = nil;
  NSMutableDictionary *tmp;
  NSEnumerator        *keyEnum;
  NSString            *key;
  
  dict  = (NSDictionary *)[(XmlRpcValue *)[self->valueStack lastObject] value];
  
  if (!([dict respondsToSelector:@selector(keyEnumerator)] &&
        [dict respondsToSelector:@selector(objectForKey:)]))
    return nil;
  
  keyEnum  = [dict keyEnumerator];
  tmp = [[NSMutableDictionary alloc] initWithCapacity:8];
    
  while ((key = [keyEnum nextObject])) {
    XmlRpcValue *v;
    id          obj;

    v = [dict objectForKey:key];
    if ((obj = [self _decodeObject:v]) != nil)
        [tmp setObject:obj forKey:key];
  }
  result = [NSDictionary dictionaryWithDictionary:tmp];
  [tmp release];
  return result;
}

- (NSArray *)decodeArray {
  NSArray        *array;
  id             result = nil;
  NSMutableArray *tmp      = nil;
  NSEnumerator   *valEnum;
  XmlRpcValue    *val      = nil;
  
  array = (NSArray *)[(XmlRpcValue *)[self->valueStack lastObject] value];
  if (![array respondsToSelector:@selector(objectEnumerator)])
    return nil;

  valEnum = [array objectEnumerator];
  tmp = [[NSMutableArray alloc] initWithCapacity:8];
    
  while ((val = [valEnum nextObject])) {
    id obj;

    if ((obj = [self _decodeObject:val]) != nil)
        [tmp addObject:obj];
  }
  result = [NSArray arrayWithArray:tmp];
  [tmp release];
  return result;
}

- (NSData *)decodeBase64 {
#if 0 /* data is already decoded in the XmlRpcValue */
  tmp = [tmp dataByDecodingBase64];
#endif
  return [self _decodeValueOfClass:DataClass];
}

- (BOOL)decodeBoolean {
  return [[self _decodeValueOfClass:NumberClass] boolValue];
}

- (int)decodeInt {
  return [[self _decodeValueOfClass:NumberClass] intValue];
}

- (double)decodeDouble {
  return [[self _decodeValueOfClass:NumberClass] doubleValue];
}

- (NSString *)decodeString {
  return [self _decodeValueOfClass:StringClass];
}

- (NSCalendarDate *)decodeDateTime {
  NSCalendarDate *date;
  NSTimeZone     *tz;
  int            secFromGMT;
  
  if ((date = [self _decodeValueOfClass:DateClass]) == nil)
    return nil;
  
  if ((tz = [date timeZone]))
    return date;
  
  if (![date respondsToSelector:@selector(setTimeZone:)]) {
    /* a plain date ... */
    NSLog(@"cannot set timezone on date: %@", date);
    return date;
  }
  
  /* apply timezone correction */
  secFromGMT = [self->timeZone secondsFromGMT];
  [date setTimeZone:self->timeZone];
  date = [date dateByAddingYears:0 months:0 days:0
               hours:0 minutes:0 seconds:-secFromGMT];
  return date;
}

- (XmlRpcValue *)beginDecodingKey:(NSString *)_key {
  XmlRpcValue  *newValue;
  NSDictionary *obj;
  
  obj = (NSDictionary *)[(XmlRpcValue *)[self->valueStack lastObject] value];
  NSAssert(_key != nil, @"_key is not allowed to be nil");
  
  if (![obj isKindOfClass:DictionaryClass]) {
    NSLog(@"WARNING(%s): obj (%@) is not kind of class NSDictionary !!",
          __PRETTY_FUNCTION__, obj, nil);
    return nil;
  }
  
  if ((newValue = [obj objectForKey:_key]) == nil)
    /* got no value for key ... */
    return nil;
  
  [self->valueStack addObject:newValue];
  return newValue;
}
- (void)finishedDecodingKey {
  [self->valueStack removeLastObject];
}

- (id)_decodeValueForKey:(NSString *)_key selector:(SEL)_selector {
  XmlRpcValue *newValue;
  id result;
  
  if ((newValue = [self beginDecodingKey:_key]) == nil)
    return nil;
  
  result = [[self performSelector:_selector] retain];
  [self finishedDecodingKey];
  return [result autorelease];
}

- (NSDictionary *)decodeStructForKey:(NSString *)_key {
  return [self _decodeValueForKey:_key selector:@selector(decodeStruct)];
}

- (NSArray *)decodeArrayForKey:(NSString *)_key {
  return [self _decodeValueForKey:_key selector:@selector(decodeArray)];
}

- (NSData *)decodeBase64ForKey:(NSString *)_key {
  return [self _decodeValueForKey:_key selector:@selector(decodeBase64)];
}

- (BOOL)decodeBooleanForKey:(NSString *)_key {
  XmlRpcValue *newValue;
  BOOL result;
  
  if ((newValue = [self beginDecodingKey:_key]) == nil)
    /* any useful alternatives ? */
    return NO;
  
  result = [self decodeBoolean];
  [self finishedDecodingKey];
  return result;
}

- (int)decodeIntForKey:(NSString *)_key {
  XmlRpcValue *newValue;
  int result;
  
  if ((newValue = [self beginDecodingKey:_key]) == nil)
    /* NSKeyedArchiver returns 0, we too */
    return 0;
  
  result = [self decodeInt];
  [self finishedDecodingKey];
  return result;
}

- (double)decodeDoubleForKey:(NSString *)_key {
  XmlRpcValue *newValue;
  double result;
  
  if ((newValue = [self beginDecodingKey:_key]) == nil)
    /* any useful alternatives ? */
    return 0.0;
  
  result = [self decodeDouble];
  [self finishedDecodingKey];
  return result;
}

- (NSString *)decodeStringForKey:(NSString *)_key {
  return [self _decodeValueForKey:_key selector:@selector(decodeString)];
}

- (NSCalendarDate *)decodeDateTimeForKey:(NSString *)_key {
  return [self _decodeValueForKey:_key selector:@selector(decodeDateTime)];
}

- (id)decodeObjectForKey:(NSString *)_key {
 return [self _decodeValueForKey:_key selector:@selector(decodeObject)];
}

/* operations */

- (void)ensureObjectAwake:(id)_object {
  if ([self->awakeObjects containsObject:_object])
    return;
  
  if ([_object respondsToSelector:@selector(awakeFromXmlRpcDecoder:)])
    [_object awakeFromXmlRpcDecoder:self];
  [self->awakeObjects addObject:_object];
}
- (void)awakeObjects {
  NSEnumerator *e;
  id obj;

  e = [self->unarchivedObjects objectEnumerator];
  while ((obj = [e nextObject]))
    [self ensureObjectAwake:obj];
}

- (void)finishInitializationOfObjects {
  NSEnumerator *e;
  id obj;

  e = [self->unarchivedObjects objectEnumerator];
  while ((obj = [e nextObject])) {
    if ([obj respondsToSelector:
               @selector(finishInitializationWithXmlRpcDecoder:)])
      [obj finishInitializationWithXmlRpcDecoder:self];
  }
}

@end /* XmlRpcDecoder */