-
Notifications
You must be signed in to change notification settings - Fork 2
/
XMPPRosterGroup.m
128 lines (110 loc) · 2.82 KB
/
XMPPRosterGroup.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
//
// XMPPRosterGroup.m
// Jabber
//
// Created by David Chisnall on Sun Jul 25 2004.
// Copyright (c) 2004 __MyCompanyName__. All rights reserved.
//
#import "XMPPRosterGroup.h"
#import "XMPPPresence.h"
#import "CompareHack.h"
#import <EtoileFoundation/EtoileFoundation.h>
@implementation XMPPRosterGroup
+ (id) groupWithRoster:(id)_roster
{
return [[XMPPRosterGroup alloc] initWithRoster:_roster];
}
- (id) initWithRoster:(id)_roster
{
SUPERINIT;
if (roster == nil)
roster = nil;
else
roster = _roster;
peopleByName = [[NSMutableDictionary alloc] init];
people = [[NSMutableArray alloc] init];
return self;
}
- (id) init
{
return [self initWithRoster:nil];
}
- (NSString*) groupName
{
return name;
}
- (void) groupName:(NSString*)_name
{
name = _name;
}
- (void) addIdentity:(XMPPIdentity*)_identity
{
XMPPPerson * person = [peopleByName objectForKey:[_identity name]];
if(person == nil)
{
person = [XMPPPerson personWithIdentity:_identity forRoster:roster];
[peopleByName setObject:person forKey:[person name]];
#ifndef DNDEBUG
ETLog(@"Adding new person %@", [person name]);
#endif
[people addObject:person];
[people sortUsingFunction:compareTest context:nil];
}
else
{
[person addIdentity:_identity];
}
}
- (void) removeIdentity:(XMPPIdentity*)_identity
{
XMPPPerson * person = [peopleByName objectForKey:[_identity name]];
[person removeIdentity:_identity];
if([person identities] == 0)
{
#ifndef DNDEBUG
ETLog(@"Removing person %@", [person name]);
#endif
[people removeObject:person];
[peopleByName removeObjectForKey:[person name]];
}
}
- (XMPPPerson*) personNamed:(NSString*)_name
{
return [peopleByName objectForKey:_name];
}
- (unsigned int) numberOfPeopleInGroupMoreOnlineThan:(unsigned int)hide
{
//Sort every time a UI tries to inspect us to make sure we are in a consistent order.
if ([people count] > 1)
{
// [people sortUsingSelector:@selector(compare:)];
//Ugly hack. No idea why this works and the other version doesn't...
[people sortUsingFunction:compareTest context:nil];
}
/* if(hide > PRESENCE_UNKNOWN)
{
return [people count];
}*/
int count = 0;
for(unsigned int i=0 ; i<[people count] ; i++)
{
XMPPPerson* person = [people objectAtIndex:i];
//ETLog(@"Person in group %@[%d]: %@ (%d)", name, i, [person name], (int)[[[person defaultIdentity] presence] show]); I tried to decomment putting it in a preprocessor statement, but it takes forever in the executon; FIXME
if([[[person defaultIdentity] presence] show] < hide)
{
count++;
}
}
return count;
}
- (NSComparisonResult) compare:(XMPPRosterGroup*)otherGroup
{
return [name caseInsensitiveCompare:[otherGroup groupName]];
}
- (XMPPPerson*) personAtIndex:(unsigned int)_index
{
if (_index < [people count])
return [people objectAtIndex:_index];
return nil;
}
@end