File: CocoaAdditions.m

package info (click to toggle)
gridlock.app 1.10-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,556 kB
  • sloc: objc: 10,334; ansic: 669; makefile: 12
file content (209 lines) | stat: -rw-r--r-- 6,238 bytes parent folder | download | duplicates (3)
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
/* Gridlock
Copyright (c) 2002-2003 by Brian Nenninger. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#import "CocoaAdditions.h"

static NSComparisonResult keyCompareFunc(id obj1, id obj2, void *context) {
  NSString *key = (NSString *)context;
  return [[obj1 valueForKey:key] compare:[obj2 valueForKey:key]];
}

static NSComparisonResult countCompareFunc(id obj1, id obj2, void *context) {
  int c1 = [obj1 count];
  int c2 = [obj2 count];
  if (c1==c2) return NSOrderedSame;
  return (c1>c2) ? NSOrderedDescending : NSOrderedAscending;
}

@implementation NSObject (DCArchivingAdditions)

-(NSData *)archivedData_ {
  return [NSArchiver archivedDataWithRootObject:self];
}

+(id)objectWithArchivedData_:(NSData *)data {
  return [NSUnarchiver unarchiveObjectWithData:data];
}

@end

@implementation NSUserDefaults (DCArchivingAdditions)

-(id)archivedObjectForKey:(id)key {
  return [NSUnarchiver unarchiveObjectWithData:[self objectForKey:key]];
}

-(void)setArchivedObject:(id)obj forKey:(id)key {
  [self setObject:[obj archivedData_] forKey:key];
  
}
@end

@implementation NSArray (DCMiscAdditions)

-(id)objectWithValue:(id)searchValue forSelector:(SEL)selector withArgument:(id)arg {
  NSEnumerator *e = [self objectEnumerator];
  id obj;
  while ((obj=[e nextObject])) {
    id value = [obj performSelector:selector withObject:arg];
    if (value==nil && searchValue==nil) return obj;
    if ([value isEqual:searchValue]) return obj;
  }
  return nil;
}

-(NSArray *)arrayByIntersectingArray_:(NSArray *)array {
  NSEnumerator *e = [self objectEnumerator];
  NSMutableArray *intersection = [NSMutableArray array];
  id obj;
  while ((obj=[e nextObject])) {
    if ([array containsObject:obj]) {
      [intersection addObject:obj];
    }
  }
  return intersection;
}

-(NSArray *)arrayByRemovingObjectsFromArray_:(NSArray *)array {
  NSMutableArray *result = [NSMutableArray array];
  NSEnumerator *e = [self objectEnumerator];
  id obj;
  while ((obj=[e nextObject])) {
    if (![array containsObject:obj]) {
      [result addObject:obj];
    }
  }
  return result;
}

-(NSArray *)valuesByObjectsPerformingSelector:(SEL)sel {
  NSMutableArray *result = [NSMutableArray array];
  NSEnumerator *e = [self objectEnumerator];
  id obj;
  while ((obj=[e nextObject])) {
    [result addObject:[obj performSelector:sel]];
  }
  return result;
}

-(NSArray *)valuesByObjectsPerformingSelector:(SEL)sel withObject_:(id)arg {
  NSMutableArray *result = [NSMutableArray array];
  NSEnumerator *e = [self objectEnumerator];
  id obj;
  while ((obj=[e nextObject])) {
    [result addObject:[obj performSelector:sel withObject:arg]];
  }
  return result;  
}

-(NSArray *)arrayWithPrefix_:(NSArray *)prefix {
  if ([prefix count]==0) return NO;
  NSEnumerator *e = [self objectEnumerator];
  id obj;
  while ((obj=[e nextObject])) {
    if ([obj isKindOfClass:[NSArray class]]) {
      if ([prefix count]<[obj count] &&
          [prefix isEqual:[obj subarrayWithRange:NSMakeRange(0,[prefix count])]]) {
        return obj;
      }
    }
  }
  return nil;
}

-(NSArray *)arrayWithObjectsInRandomOrder_ {
  NSMutableArray *array = [NSMutableArray arrayWithArray:self];
  [array randomizeObjects_];
  return array;
}

-(NSArray *)sortedArrayUsingKey_:(NSString *)key {
  return [self sortedArrayUsingFunction:keyCompareFunc context:key];
}

-(NSArray *)sortedArrayByCount_ {
  return [self sortedArrayUsingFunction:countCompareFunc context:NULL];
}

@end

@implementation NSMutableArray (DCMiscAdditions)

-(void)randomizeObjects_ {
  int count = [self count];
  int i;
  for(i=0; i<count-1; i++) {
    int incr = random() % (count-i);
    if (incr>0) [self exchangeObjectAtIndex:i withObjectAtIndex:i+incr];
  }
}

-(void)sortArrayUsingKey_:(NSString *)key {
  [self sortUsingFunction:keyCompareFunc context:key];
}

-(void)sortArrayByCount_ {
  [self sortUsingFunction:countCompareFunc context:NULL];
}

@end


@implementation NSPopUpButton (DCAppKitAdditions)
-(void)setItemTitles:(NSArray *)titles representedObjects_:(NSArray *)objects {
  int i,len=[titles count];
  [self removeAllItems];
  for(i=0; i<len; i++) {
    [self addItemWithTitle:[titles objectAtIndex:i]];
    [[self lastItem] setRepresentedObject:[objects objectAtIndex:i]];
  }
}

-(BOOL)selectItemWithRepresentedObject_:(id)obj {
  int len = [self numberOfItems];
  int i;
  for(i=0; i<len; i++) {
    if ([obj isEqual:[[self itemAtIndex:i] representedObject]]) {
      [self selectItemAtIndex:i];
      return YES;
    }
  }
  return NO;
}

@end

@implementation NSTextView (DCAppKitAdditions)
-(void)appendText:(NSString *)text scrollToEnd_:(BOOL)scroll {
  [self replaceCharactersInRange:NSMakeRange([[self string] length],0)
                      withString:text];
  if (scroll) [self scrollRangeToVisible:NSMakeRange([[self string] length], 0)];
}
@end

@implementation NSWindow (DCAppKitAdditions)
-(float)userSpaceScaleFactor_ {
  // Linux compiler doesn't like cast to float
#ifndef GNUSTEP
  if ([self respondsToSelector:@selector(userSpaceScaleFactor)]) {
    return (float)[self userSpaceScaleFactor];
  }
#endif
  return 1.0f;
}
@end


@implementation NSObject (DCMiscAdditions)
-(NSArray *)arrayWithSelf_ {
  return [NSArray arrayWithObject:self];
}
@end