File: Container.m

package info (click to toggle)
pantomime 1.1.2-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,224 kB
  • ctags: 389
  • sloc: objc: 15,433; ansic: 2,843; makefile: 75; sh: 4
file content (587 lines) | stat: -rw-r--r-- 10,657 bytes parent folder | download | duplicates (2)
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
/*
**  Container.m
**
**  Copyright (c) 2002
**
**  Author: Ludovic Marcotte <ludovic@Sophos.ca>
**
**  This library 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.1 of the License, or (at your option) any later version.
**  
**  This library 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 this library; if not, write to the Free Software
**  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#include <Pantomime/Container.h>

#include <Pantomime/Constants.h>
#include <Pantomime/InternetAddress.h>
#include <Pantomime/Message.h>

#include <Foundation/NSDebug.h>

@implementation Container

//
//
//
- (id) init
{
  self = [super init];

  message = nil;
  parent = nil;
  child = nil;
  next = nil;
  visible = YES;

  return self;
}


//
//
//
- (void) dealloc
{
  NSDebugLog(@"Container: -dealloc");

  TEST_RELEASE(parent);
  TEST_RELEASE(child);
  TEST_RELEASE(next);

  [super dealloc];
}


//
// access / mutation methods
//
- (void) setParent: (Container *) theParent
{
  if ( theParent )
    {
      RETAIN(theParent);
      RELEASE(parent);
      parent = theParent;
    }
  else
    {
      DESTROY(parent);
    }
}


// 
// FIXME: Fix mem leaks
//
- (void) setChild: (Container *) theChild
{
  if ( !theChild || theChild == self || theChild->next == self || theChild == child )
    {
      NSDebugLog(@"Attempted to set self as a child!");
      return;
    }
  
  if ( theChild )
    {
      Container *aChild;

      // We search down in the children of theChild to be sure that
      // self IS NOT reachable
      // FIXME - we should use childrenEnumerator since we are NOT looping
      // in all children with this code
      aChild = theChild->child;

      while ( aChild )
      	{
      	  if ( aChild == self )
      	    {
      	      NSDebugLog(@"Trying to add a loop, breaking it.");
      	      return;
      	    }
	  
	  aChild = aChild->next;
      	}


      RETAIN(theChild);
      //RELEASE(child);
      //child = theChild;
      
      // We finally add it!
      NSDebugLog(@"Adding child |%d, %@| to %d", theChild->message, [theChild->message subject], message);

      if ( !child )
	{
	  child = theChild;
	}
      else
	{	  
	  aChild = child;

	  // We go at the end of our list of children
	  //while ( aChild->next != nil && aChild->next != aChild )
	  while ( aChild->next != nil )
	    {
	      NSDebugLog(@"Looping, child |%d, %@| %d and %d", 
			 aChild->message, 
			 [aChild->message subject],
			 [aChild->message messageNumber]);
	      
	      if ( aChild->next == aChild )
		{
		  aChild->next = theChild;
		  return;
		}

	      // We don't add the child if it's already there
	      if ( aChild == theChild )
		{
		  NSDebugLog(@"Trying to add a child already there");
		  return;
		}

	      aChild = aChild->next;
	    }

	  aChild->next = theChild;
	}
   
    }
  else
    {
      DESTROY(child);
    }
}


//
//
//
- (Container *) childAtIndex: (int) theIndex
{
  Container *aChild;
  int i;

  aChild = child;

  for (i = 0; i < theIndex; i++)
    {
      // If the child isn't visible, we skip it
      if ( !aChild->visible )
	{
	  NSLog(@"Not visible in childAtIndex, we skip it");
	  aChild = aChild->next;
	}
      
      aChild = aChild->next;
    }

  return aChild;
}


//
//
//
- (int) count
{
  if ( child )
    {
      Container *aChild;
      int count;

      aChild = child;
      count = 0;

      while ( aChild )
	{
	  NSDebugLog(@"counting, count = %d", count);
	  
	  //if ( aChild == self || aChild->next == aChild )
	  if ( aChild == self )
	    {
	      count = 1;
	      break;
	    }

	  if ( aChild->visible )
	    {
	      count++;
	    }
	  else
	    {
	      NSLog(@"Not visible in count, we skip it");
	    }

	  aChild = aChild->next;
	}

      return count;
    }
  
  return 0;
}


//
//
//
- (void) setNext: (Container *) theNext
{
  if ( theNext )
    {
      RETAIN(theNext);
      RELEASE(next);
      next = theNext;
    }
  else
    {
      DESTROY(next);
    }
}


//
//
//
- (NSEnumerator *) childrenEnumerator
{
  NSMutableArray *aMutableArray;
  Container *aContainer;

  aMutableArray = [[NSMutableArray alloc] init];
  AUTORELEASE(aMutableArray);

  aContainer = child;
  
  while ( aContainer )
    {
      [aMutableArray addObject: aContainer];
      
      // We add, recursively, all its children
      [aMutableArray addObjectsFromArray: [[aContainer childrenEnumerator] allObjects]];

      // We get our next container
      aContainer = aContainer->next;
    }

  return [aMutableArray objectEnumerator];
}

@end


//
// Container's sorting category
//
@implementation Container (Comparing)

// 
// FIXME - Also sort children
//
- (int) compareAccordingToNumber: (Container *) aContainer
{
  int num1, num2;
  
  num1 = [message messageNumber];
  num2 = [aContainer->message messageNumber];
  
  if (num1 < num2)
    {
      return NSOrderedAscending;
    }
  else if (num1 > num2)
    {
      return NSOrderedDescending;
    }
  else
    {
      return NSOrderedSame;
    }
}

- (int) reverseCompareAccordingToNumber: (Container *) aContainer
{
  int num1, num2;

  num2 = [message messageNumber];
  num1 = [aContainer->message messageNumber];
  
  if (num1 < num2)
    {
      return NSOrderedAscending;
    }
  else if (num1 > num2)
    {
      return NSOrderedDescending;
    }
  else
    {
      return NSOrderedSame;
    }
}

- (int) compareAccordingToDate: (Container *) aContainer
{
  NSTimeInterval timeInterval;
  NSDate *date1, *date2;

  date1 = [message receivedDate];
  date2 = [aContainer->message receivedDate];
  
  if (date1 == nil || date2 == nil)
    {
      return [self compareAccordingToNumber: aContainer]; 
    }

  timeInterval = [date1 timeIntervalSinceDate: date2];

  if (timeInterval < 0)
    {
      return NSOrderedAscending;
    }
  else if (timeInterval > 0)
    {
      return NSOrderedDescending;
    }
  else
    {
      return [self compareAccordingToNumber: aContainer];      
    }
}

- (int) reverseCompareAccordingToDate: (Container *) aContainer
{
  NSTimeInterval timeInterval;
  NSDate *date1, *date2;

  date1 = [aContainer->message receivedDate];
  date2 = [message receivedDate];
 
  if (date1 == nil || date2 == nil)
    {
      return [self reverseCompareAccordingToNumber: aContainer]; 
    }

  timeInterval = [date1 timeIntervalSinceDate: date2];

  if (timeInterval < 0)
    {
      return NSOrderedAscending;
    }
  else if (timeInterval > 0)
    {
      return NSOrderedDescending;
    }
  else
    {
      return [self reverseCompareAccordingToNumber: aContainer];      
    }
}

- (int) compareAccordingToSender: (Container *) aContainer
{
  NSString *fromString1, *fromString2, *tempString;
  InternetAddress *from1, *from2;
  int result;

  from1 = [message from];
  from2 = [aContainer->message from];

  tempString = [from1 personal];
  if (tempString == nil || [tempString length] == 0)
    {
      fromString1 = [from1 address];
      if (fromString1 == nil)
	fromString1 = @"";
    }
  else
    {
      fromString1 = tempString;
    }


  tempString = [from2 personal];
  if (tempString == nil || [tempString length] == 0)
    {
      fromString2 = [from2 address];
      if (fromString2 == nil)
	fromString2 = @"";
    }
  else
    {
      fromString2 = tempString;
    }

  result = [fromString1 caseInsensitiveCompare: fromString2];
  
  if (result == NSOrderedSame)
    {
      return [self compareAccordingToNumber: aContainer];
    }
  else
    {
      return result;
    }
}

- (int) reverseCompareAccordingToSender: (Container *) aContainer
{
  NSString *fromString1, *fromString2, *tempString;
  InternetAddress *from1, *from2;
  int result;

  from2 = [message from];
  from1 = [aContainer->message from];

  tempString = [from1 personal];
  if (tempString == nil || [tempString length] == 0)
    {
      fromString1 = [from1 address];
      if (fromString1 == nil)
	fromString1 = @"";
    }
  else
    {
      fromString1 = tempString;
    }


  tempString = [from2 personal];
  if (tempString == nil || [tempString length] == 0)
    {
      fromString2 = [from2 address];
      if (fromString2 == nil)
	fromString2 = @"";
    }
  else
    {
      fromString2 = tempString;
    }


  result = [fromString1 caseInsensitiveCompare: fromString2];
  
  if (result == NSOrderedSame)
    {
      return [self reverseCompareAccordingToNumber: aContainer];
    }
  else
    {
      return result;
    }
}

- (int) compareAccordingToSubject: (Container *) aContainer
{
  NSString *subject1, *subject2;
  int result;
  
  subject1 = [message baseSubject];
  subject2 = [aContainer->message baseSubject];
  
  if (subject1 == nil)
    {
      subject1 = @"";
    }
  
  if (subject2 == nil)
    {
      subject2 = @"";
    }
  
  result = [subject1 caseInsensitiveCompare: subject2];

  if (result == NSOrderedSame)
    {
      return [self compareAccordingToNumber: aContainer];      
    }
  else
    {
      return result;
    }
}

- (int) reverseCompareAccordingToSubject: (Container *) aContainer
{
  NSString *subject1, *subject2;
  int result;
  
  subject2 = [message baseSubject];
  subject1 = [aContainer->message baseSubject];

  if (subject1 == nil)
    {
      subject1 = @"";
    }

  if (subject2 == nil)
    {
      subject2 = @"";
    }
  
  result = [subject1 caseInsensitiveCompare: subject2];
  
  if (result == NSOrderedSame)
    {
      return [self compareAccordingToNumber: aContainer];      
    }
  else
    {
      return result;
    }
}

- (int) compareAccordingToSize: (Container *) aContainer
{
  int size1, size2;

  size1 = [message size];
  size2 = [aContainer->message size];

  if (size1 < size2)
    {
      return NSOrderedAscending;
    }
  else if (size1 > size2)
    {
      return NSOrderedDescending;
    }
  else
    {
      return [self compareAccordingToNumber: aContainer];
    }
}

- (int) reverseCompareAccordingToSize: (Container *) aContainer
{
  int size1, size2;

  size2 = [message size];
  size1 = [aContainer->message size];

  if (size1 < size2)
    {
      return NSOrderedAscending;
    }
  else if (size1 > size2)
    {
      return NSOrderedDescending;
    }
  else
    {
      return [self reverseCompareAccordingToNumber: aContainer];      
    }
}

@end