[26] | 1 | //
|
---|
| 2 | // PSAlarms.m
|
---|
| 3 | // Pester
|
---|
| 4 | //
|
---|
| 5 | // Created by Nicholas Riley on Fri Oct 11 2002.
|
---|
| 6 | // Copyright (c) 2002 Nicholas Riley. All rights reserved.
|
---|
| 7 | //
|
---|
| 8 |
|
---|
| 9 | #import "PSAlarms.h"
|
---|
| 10 | #import "PSAlarm.h"
|
---|
[61] | 11 | #import "PSTimer.h"
|
---|
[53] | 12 | #import "NSDictionary-NJRExtensions.h"
|
---|
[26] | 13 |
|
---|
[53] | 14 | NSString * const PSAlarmImportException = @"PSAlarmImportException";
|
---|
| 15 |
|
---|
[26] | 16 | NSString * const PSAlarmsDidChangeNotification = @"PSAlarmsDidChangeNotification";
|
---|
[28] | 17 | NSString * const PSAlarmsNextAlarmDidChangeNotification = @"PSAlarmsNextAlarmDidChangeNotification";
|
---|
[26] | 18 |
|
---|
[53] | 19 | // NSUserDefaults key
|
---|
| 20 | static NSString * const PSPendingAlarms = @"Pester pending alarms"; // 1.0 Ð 1.1a3
|
---|
| 21 | static NSString * const PSAllAlarms = @"Pester alarms"; // 1.1a4 Ð
|
---|
[26] | 22 |
|
---|
[53] | 23 | // property list keys
|
---|
| 24 | static NSString * const PLAlarmsPending = @"pending";
|
---|
| 25 | static NSString * const PLAlarmsExpired = @"expired";
|
---|
| 26 |
|
---|
[26] | 27 | static PSAlarms *PSAlarmsAllAlarms = nil;
|
---|
| 28 |
|
---|
[28] | 29 | @interface PSAlarms (Private)
|
---|
| 30 |
|
---|
| 31 | - (void)_updateNextAlarm;
|
---|
| 32 |
|
---|
| 33 | @end
|
---|
| 34 |
|
---|
[26] | 35 | @implementation PSAlarms
|
---|
| 36 |
|
---|
[28] | 37 | + (void)setUp;
|
---|
[26] | 38 | {
|
---|
[64] | 39 | [PSTimer setUp];
|
---|
[26] | 40 | if (PSAlarmsAllAlarms == nil) {
|
---|
[53] | 41 | NSDictionary *plAlarms = [[NSUserDefaults standardUserDefaults] objectForKey: PSAllAlarms];
|
---|
| 42 | if (plAlarms == nil) {
|
---|
| 43 | PSAlarmsAllAlarms = [[self alloc] init];
|
---|
| 44 | } else {
|
---|
| 45 | PSAlarmsAllAlarms = [[self alloc] initWithPropertyList: plAlarms];
|
---|
| 46 | }
|
---|
[28] | 47 | [PSAlarmsAllAlarms _updateNextAlarm]; // only generate notifications after singleton established
|
---|
[26] | 48 | }
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 | + (PSAlarms *)allAlarms;
|
---|
| 52 | {
|
---|
[28] | 53 | NSAssert(PSAlarmsAllAlarms != nil, @"Attempt to use +[PSAlarms allAlarms] before setup complete");
|
---|
[26] | 54 | return PSAlarmsAllAlarms;
|
---|
| 55 | }
|
---|
| 56 |
|
---|
[53] | 57 | #pragma mark private
|
---|
| 58 |
|
---|
| 59 | - (void)_changed;
|
---|
| 60 | {
|
---|
| 61 | NSMutableArray *alarmsData = [[NSMutableArray alloc] init];
|
---|
| 62 | NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
|
---|
| 63 | [self _updateNextAlarm];
|
---|
| 64 | // NSLog(@"PSAlarms _changed:\n%@", alarms);
|
---|
| 65 | [defaults setObject: [self propertyListRepresentation] forKey: PSAllAlarms];
|
---|
| 66 | [defaults synchronize];
|
---|
| 67 | [alarmsData release];
|
---|
| 68 | [[NSNotificationCenter defaultCenter] postNotificationName: PSAlarmsDidChangeNotification object: self];
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | - (void)_alarmTimerExpired:(NSNotification *)notification;
|
---|
| 72 | {
|
---|
| 73 | PSAlarm *alarm = [notification object];
|
---|
[113] | 74 | NSLog(@"timer expired: %@ retainCount %d", alarm, [alarm retainCount]);
|
---|
[53] | 75 | [expiredAlarms addObject: alarm];
|
---|
[113] | 76 | NSLog(@"expired alarms: %@", [expiredAlarms description]);
|
---|
[53] | 77 | [alarms removeObject: alarm];
|
---|
| 78 | [self _changed];
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | - (void)_alarmTimerSet:(NSNotification *)notification;
|
---|
| 82 | {
|
---|
| 83 | PSAlarm *alarm = [notification object];
|
---|
[113] | 84 | NSLog(@"timer set: %@ retainCount %d", alarm, [alarm retainCount]);
|
---|
[53] | 85 | [alarms addObject: alarm];
|
---|
| 86 | [expiredAlarms removeObject: alarm];
|
---|
| 87 | [self _changed];
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | - (void)_alarmDied:(NSNotification *)notification;
|
---|
| 91 | {
|
---|
| 92 | PSAlarm *alarm = [notification object];
|
---|
[61] | 93 | // NSLog(@"alarm died: %@ retainCount %d", alarm, [alarm retainCount]);
|
---|
[53] | 94 | [alarms removeObject: alarm];
|
---|
| 95 | [expiredAlarms removeObject: alarm];
|
---|
| 96 | [self _changed];
|
---|
| 97 | }
|
---|
| 98 |
|
---|
[28] | 99 | - (void)_updateNextAlarm;
|
---|
| 100 | {
|
---|
| 101 | NSEnumerator *e;
|
---|
| 102 | PSAlarm *alarm, *oldNextAlarm = nextAlarm;
|
---|
| 103 | [nextAlarm release];
|
---|
| 104 | nextAlarm = nil;
|
---|
| 105 | // sort alarms so earliest is first
|
---|
[51] | 106 | [alarms sortUsingSelector: @selector(compareDate:)];
|
---|
[28] | 107 | // find first un-expired alarm
|
---|
| 108 | e = [alarms objectEnumerator];
|
---|
| 109 | while ( (alarm = [e nextObject]) != nil) {
|
---|
| 110 | if ([alarm isValid]) {
|
---|
| 111 | nextAlarm = [alarm retain];
|
---|
| 112 | break;
|
---|
| 113 | }
|
---|
| 114 | }
|
---|
| 115 | if (oldNextAlarm != nextAlarm)
|
---|
| 116 | [[NSNotificationCenter defaultCenter] postNotificationName: PSAlarmsNextAlarmDidChangeNotification object: nextAlarm];
|
---|
| 117 | }
|
---|
| 118 |
|
---|
[53] | 119 | - (void)_setUpNotifications;
|
---|
| 120 | {
|
---|
| 121 | [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(_alarmTimerSet:) name: PSAlarmTimerSetNotification object: nil];
|
---|
| 122 | [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(_alarmTimerExpired:) name: PSAlarmTimerExpiredNotification object: nil];
|
---|
| 123 | [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(_alarmDied:) name: PSAlarmDiedNotification object: nil];
|
---|
| 124 | }
|
---|
| 125 |
|
---|
| 126 | #pragma mark initialize-release
|
---|
| 127 |
|
---|
[26] | 128 | - (id)init;
|
---|
| 129 | {
|
---|
| 130 | if ( (self = [super init]) != nil) {
|
---|
[28] | 131 | alarms = [[NSMutableArray alloc] init];
|
---|
[53] | 132 | expiredAlarms = [[NSMutableSet alloc] init];
|
---|
| 133 | [self _setUpNotifications];
|
---|
[26] | 134 | }
|
---|
| 135 | return self;
|
---|
| 136 | }
|
---|
| 137 |
|
---|
| 138 | - (void)dealloc;
|
---|
| 139 | {
|
---|
[28] | 140 | [alarms release];
|
---|
[53] | 141 | [expiredAlarms release];
|
---|
[26] | 142 | [[NSNotificationCenter defaultCenter] removeObserver: self];
|
---|
| 143 | [super dealloc];
|
---|
| 144 | }
|
---|
| 145 |
|
---|
[53] | 146 | #pragma mark accessing
|
---|
[26] | 147 |
|
---|
[53] | 148 | - (NSArray *)alarms;
|
---|
[26] | 149 | {
|
---|
[53] | 150 | return alarms;
|
---|
[26] | 151 | }
|
---|
| 152 |
|
---|
[28] | 153 | - (PSAlarm *)nextAlarm;
|
---|
| 154 | {
|
---|
| 155 | return nextAlarm;
|
---|
| 156 | }
|
---|
| 157 |
|
---|
[26] | 158 | - (int)alarmCount;
|
---|
| 159 | {
|
---|
| 160 | return [alarms count];
|
---|
| 161 | }
|
---|
| 162 |
|
---|
| 163 | - (PSAlarm *)alarmAtIndex:(int)index;
|
---|
| 164 | {
|
---|
| 165 | return [alarms objectAtIndex: index];
|
---|
| 166 | }
|
---|
| 167 |
|
---|
| 168 | - (void)removeAlarmAtIndex:(int)index;
|
---|
| 169 | {
|
---|
[51] | 170 | [(PSAlarm *)[alarms objectAtIndex: index] cancelTimer];
|
---|
[26] | 171 | [alarms removeObjectAtIndex: index];
|
---|
| 172 | }
|
---|
| 173 |
|
---|
| 174 | - (void)removeAlarmsAtIndices:(NSArray *)indices;
|
---|
| 175 | {
|
---|
| 176 | NSEnumerator *e = [indices objectEnumerator];
|
---|
| 177 | NSNumber *n;
|
---|
[28] | 178 | int indexCount = [indices count], i = 0, alarmIndex;
|
---|
[26] | 179 | int *indexArray = (int *)malloc(indexCount * sizeof(int));
|
---|
| 180 | NS_DURING
|
---|
| 181 | while ( (n = [e nextObject]) != nil) {
|
---|
[28] | 182 | alarmIndex = [n intValue];
|
---|
[51] | 183 | [(PSAlarm *)[alarms objectAtIndex: alarmIndex] cancelTimer];
|
---|
[28] | 184 | indexArray[i] = alarmIndex;
|
---|
[26] | 185 | i++;
|
---|
| 186 | }
|
---|
| 187 | [alarms removeObjectsFromIndices: indexArray numIndices: indexCount];
|
---|
[51] | 188 | free(indexArray); indexArray = NULL;
|
---|
[26] | 189 | [self _changed];
|
---|
| 190 | NS_HANDLER
|
---|
| 191 | free(indexArray);
|
---|
| 192 | [self _changed];
|
---|
| 193 | [localException raise];
|
---|
| 194 | NS_ENDHANDLER
|
---|
| 195 | }
|
---|
| 196 |
|
---|
[51] | 197 | - (void)removeAlarms:(NSSet *)alarmsToRemove;
|
---|
| 198 | {
|
---|
| 199 | NSEnumerator *e = [alarms objectEnumerator];
|
---|
| 200 | PSAlarm *alarm;
|
---|
| 201 | NSMutableArray *indices = [NSMutableArray arrayWithCapacity: [alarmsToRemove count]];
|
---|
| 202 | int alarmIndex = 0;
|
---|
| 203 |
|
---|
| 204 | while ( (alarm = [e nextObject]) != nil) {
|
---|
| 205 | if ([alarmsToRemove containsObject: alarm])
|
---|
| 206 | [indices addObject: [NSNumber numberWithInt: alarmIndex]];
|
---|
| 207 | alarmIndex++;
|
---|
| 208 | }
|
---|
| 209 | [self removeAlarmsAtIndices: indices];
|
---|
| 210 | }
|
---|
| 211 |
|
---|
[113] | 212 | - (void)restoreAlarms:(NSSet *)alarmsToRestore;
|
---|
| 213 | {
|
---|
| 214 | [alarmsToRestore makeObjectsPerformSelector: @selector(resetTimer)];
|
---|
| 215 | }
|
---|
| 216 |
|
---|
[60] | 217 | - (BOOL)alarmsExpiring;
|
---|
| 218 | {
|
---|
| 219 | return [expiredAlarms count] != 0;
|
---|
| 220 | }
|
---|
| 221 |
|
---|
[105] | 222 | #pragma mark printing
|
---|
| 223 |
|
---|
| 224 | - (NSString *)description;
|
---|
| 225 | {
|
---|
| 226 | return [NSString stringWithFormat: @"%@ pending %@\n%@\n",
|
---|
| 227 | [super description], alarms,
|
---|
| 228 | [expiredAlarms count] > 0 ? [NSString stringWithFormat: @"expired %@\n", expiredAlarms]
|
---|
| 229 | : @""];
|
---|
| 230 | }
|
---|
| 231 |
|
---|
[53] | 232 | #pragma mark property list serialization (Pester 1.1)
|
---|
| 233 |
|
---|
| 234 | - (NSDictionary *)propertyListRepresentation;
|
---|
| 235 | {
|
---|
| 236 | NSMutableArray *plPendingAlarms = [[NSMutableArray alloc] initWithCapacity: [alarms count]];
|
---|
| 237 | NSMutableArray *plExpiredAlarms = [[NSMutableArray alloc] initWithCapacity: [expiredAlarms count]];
|
---|
| 238 | NSDictionary *plAllAlarms, *plAlarm;
|
---|
| 239 | NSEnumerator *e;
|
---|
| 240 | PSAlarm *alarm;
|
---|
| 241 |
|
---|
| 242 | e = [alarms objectEnumerator];
|
---|
| 243 | while ( (alarm = [e nextObject]) != nil) {
|
---|
| 244 | plAlarm = [alarm propertyListRepresentation];
|
---|
| 245 | if (plAlarm != nil)
|
---|
| 246 | [plPendingAlarms addObject: plAlarm];
|
---|
| 247 | }
|
---|
| 248 |
|
---|
| 249 | e = [expiredAlarms objectEnumerator];
|
---|
| 250 | while ( (alarm = [e nextObject]) != nil) {
|
---|
| 251 | plAlarm = [alarm propertyListRepresentation];
|
---|
| 252 | if (plAlarm != nil)
|
---|
| 253 | [plExpiredAlarms addObject: plAlarm];
|
---|
| 254 | }
|
---|
| 255 |
|
---|
| 256 | plAllAlarms = [NSDictionary dictionaryWithObjectsAndKeys:
|
---|
| 257 | plPendingAlarms, PLAlarmsPending, plExpiredAlarms, PLAlarmsExpired, nil];
|
---|
| 258 | [plPendingAlarms release];
|
---|
| 259 | [plExpiredAlarms release];
|
---|
[105] | 260 |
|
---|
[53] | 261 | return plAllAlarms;
|
---|
| 262 | }
|
---|
| 263 |
|
---|
| 264 | - (id)initWithPropertyList:(NSDictionary *)dict;
|
---|
| 265 | {
|
---|
| 266 | if ( (self = [super init]) != nil) {
|
---|
| 267 | NSArray *plPendingAlarms = [dict objectForRequiredKey: PLAlarmsPending];
|
---|
| 268 | NSArray *plExpiredAlarms = [dict objectForRequiredKey: PLAlarmsExpired];
|
---|
| 269 | NSEnumerator *e;
|
---|
| 270 | NSDictionary *plAlarm;
|
---|
| 271 | PSAlarm *alarm;
|
---|
| 272 |
|
---|
| 273 | alarms = [[NSMutableArray alloc] initWithCapacity: [plPendingAlarms count]];
|
---|
| 274 | e = [plPendingAlarms objectEnumerator];
|
---|
| 275 | while ( (plAlarm = [e nextObject]) != nil) {
|
---|
| 276 | [alarms addObject: [[PSAlarm alloc] initWithPropertyList: plAlarm]];
|
---|
| 277 | }
|
---|
| 278 |
|
---|
| 279 | e = [plExpiredAlarms objectEnumerator];
|
---|
| 280 | while ( (plAlarm = [e nextObject]) != nil) {
|
---|
[113] | 281 | // expired alarms may be ready for deletion, or may repeat - if the latter, PSAlarm will reschedule the alarm so the repeat interval begins at restoration time.
|
---|
[53] | 282 | if ( (alarm = [[PSAlarm alloc] initWithPropertyList: plAlarm]) != nil)
|
---|
| 283 | [alarms addObject: alarm];
|
---|
| 284 | }
|
---|
| 285 | expiredAlarms = [[NSMutableSet alloc] init];
|
---|
| 286 |
|
---|
| 287 | [self _setUpNotifications];
|
---|
| 288 | }
|
---|
| 289 | return self;
|
---|
| 290 | }
|
---|
| 291 |
|
---|
| 292 | #pragma mark archiving (Pester 1.0)
|
---|
| 293 |
|
---|
| 294 | - (unsigned)countOfVersion1Alarms;
|
---|
| 295 | {
|
---|
| 296 | return [[[NSUserDefaults standardUserDefaults] objectForKey: PSPendingAlarms] count];
|
---|
| 297 | }
|
---|
| 298 |
|
---|
| 299 | - (void)discardVersion1Alarms;
|
---|
| 300 | {
|
---|
| 301 | NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
|
---|
| 302 | [defaults removeObjectForKey: PSPendingAlarms];
|
---|
| 303 | [defaults synchronize];
|
---|
| 304 | }
|
---|
| 305 |
|
---|
| 306 | - (void)importVersion1Alarms;
|
---|
| 307 | {
|
---|
| 308 | NSArray *alarmsData = [[NSUserDefaults standardUserDefaults] arrayForKey: PSPendingAlarms];
|
---|
| 309 | NSEnumerator *e = [alarmsData objectEnumerator];
|
---|
| 310 | NSData *alarmData;
|
---|
| 311 | PSAlarm *alarm;
|
---|
| 312 | while ( (alarmData = [e nextObject]) != nil) {
|
---|
| 313 | NS_DURING
|
---|
| 314 | alarm = [NSUnarchiver unarchiveObjectWithData: alarmData];
|
---|
| 315 | NS_HANDLER
|
---|
| 316 | alarm = nil;
|
---|
| 317 | // XXX
|
---|
| 318 | NS_ENDHANDLER
|
---|
| 319 | if (alarm != nil)
|
---|
| 320 | [alarms addObject: alarm];
|
---|
| 321 | }
|
---|
| 322 | }
|
---|
| 323 |
|
---|
[26] | 324 | @end
|
---|