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
|
/* HBDistributedArray.m $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License. */
#import "HBDistributedArray.h"
#import "HBUtilities.h"
#include <semaphore.h>
/**
* HBProxyArrayObject wraps an object inside a proxy
* to make it possible to keep a reference to an array
* object even if the underlying has been swapped
*/
@interface HBProxyArrayObject : NSProxy
- (instancetype)initWithObject:(id)object;
@property (nonatomic, strong) id representedObject;
@property (unsafe_unretained, nonatomic, readonly) NSString *uuid;
@end
@implementation HBProxyArrayObject
- (instancetype)initWithObject:(id)object
{
_representedObject = object;
return self;
}
- (NSMethodSignature *)methodSignatureForSelector:(SEL)selector
{
return [self.representedObject methodSignatureForSelector:selector];
}
- (void)forwardInvocation:(NSInvocation *)invocation
{
[invocation invokeWithTarget:self.representedObject];
}
- (NSString *)uuid
{
return [self.representedObject uuid];
}
@end
NSString *HBDistributedArrayChanged = @"HBDistributedArrayChanged";
NSString *HBDistributedArraWrittenToDisk = @"HBDistributedArraWrittenToDisk";
@interface HBDistributedArray<ObjectType> ()
@property (nonatomic, readonly) NSMutableArray<ObjectType> *array;
@property (nonatomic, readonly) NSURL *fileURL;
@property (nonatomic, readwrite) NSTimeInterval modifiedTime;
@property (nonatomic, readonly) NSSet *objectClasses;
@property (nonatomic, readonly) BOOL requiresSecureCoding;
@property (nonatomic, readonly) sem_t *mutex;
@property (nonatomic, readwrite) uint32_t mutexCount;
@end
@implementation HBDistributedArray
- (instancetype)initWithURL:(NSURL *)fileURL class:(Class)objectClass
{
self = [super init];
if (self)
{
_fileURL = [fileURL copy];
_array = [[NSMutableArray alloc] init];
_objectClasses = [NSSet setWithObjects:[NSMutableArray class], objectClass, nil];
// Enable secure coding only on 10.9 and later
if ([NSURL instancesRespondToSelector:@selector(fileSystemRepresentation)])
{
_requiresSecureCoding = YES;
}
NSString *identifier = [[NSBundle mainBundle] bundleIdentifier];
NSArray *runningInstances = [NSRunningApplication runningApplicationsWithBundleIdentifier:identifier];
const char *name = [NSString stringWithFormat:@"%@/%@", identifier, _fileURL.lastPathComponent.stringByDeletingPathExtension].UTF8String;
// Unlink the semaphore if we are the only
// instance running, this fixes the case where
// HB crashed while the sem is locked.
if (runningInstances.count == 1)
{
sem_unlink(name);
}
// Use a named semaphore as a mutex for now
// it can cause a deadlock if an instance
// crashed while it has the lock on the semaphore.
_mutex = sem_open(name, O_CREAT, 0777, 1);
if (_mutex == SEM_FAILED)
{
[HBUtilities writeToActivityLog:"%s: %d", "Error in creating semaphore: ", errno];
}
[[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:HBDistributedArraWrittenToDisk object:nil];
if ([[NSFileManager defaultManager] fileExistsAtPath:_fileURL.path])
{
// Load the array from disk
[self lock];
[self reload];
[self unlock];
}
}
return self;
}
- (void)dealloc
{
[[NSDistributedNotificationCenter defaultCenter] removeObserver:self];
[self lock];
[self synchronize];
[self unlock];
sem_close(_mutex);
}
- (void)lock
{
if (self.mutexCount == 0)
{
sem_wait(self.mutex);
}
self.mutexCount++;
}
- (void)unlock
{
if (self.mutexCount == 1)
{
sem_post(self.mutex);
}
self.mutexCount--;
}
- (HBDistributedArrayContent)beginTransaction
{
[self lock];
// We got the lock, need to check if
// someone else modified the file
// while we were locked, because we
// could have not received the notification yet
NSDate *date = nil;
[self.fileURL getResourceValue:&date forKey:NSURLAttributeModificationDateKey error:nil];
if (date.timeIntervalSinceReferenceDate > ceil(self.modifiedTime))
{
// File was modified while we waited on the lock
// reload it
[self reload];
return HBDistributedArrayContentReload;
}
return HBDistributedArrayContentAcquired;
}
- (void)commit
{
// Save changes to disk
// and unlock
[self synchronize];
[self unlock];
}
- (void)postNotification
{
[[NSNotificationCenter defaultCenter] postNotificationName:HBDistributedArrayChanged object:self];
}
/**
* Handle the distributed notification
*/
- (void)handleNotification:(NSNotification *)notification
{
if (!([notification.object integerValue] == getpid()))
{
[self lock];
[self reload];
[self unlock];
}
}
/**
* Reload the array from disk
*/
- (void)reload
{
NSMutableArray *jobsArray = nil;
@try
{
if (self.requiresSecureCoding)
{
NSData *queue = [NSData dataWithContentsOfURL:self.fileURL];
NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:queue];
unarchiver.requiresSecureCoding = YES;
jobsArray = [unarchiver decodeObjectOfClasses:self.objectClasses forKey:NSKeyedArchiveRootObjectKey];
[unarchiver finishDecoding];
}
else
{
jobsArray = [NSKeyedUnarchiver unarchiveObjectWithFile:self.fileURL.path];
}
}
@catch (NSException *exception)
{
jobsArray = nil;
}
// Swap the proxy objects representation with the new
// one read from disk
NSMutableArray *proxyArray = [NSMutableArray array];
for (id anObject in jobsArray)
{
NSString *uuid = [anObject uuid];
HBProxyArrayObject *proxy = nil;
for (HBProxyArrayObject *temp in self.array)
{
if ([[temp uuid] isEqualToString:uuid])
{
temp.representedObject = anObject;
proxy = temp;
break;
}
}
if (proxy)
{
[proxyArray addObject:proxy];
}
else
{
[proxyArray addObject:[self wrapObjectIfNeeded:anObject]];
}
}
[self setArray:proxyArray];
[self postNotification];
// Update the time, so we can avoid reloaded the file from disk later.
self.modifiedTime = [NSDate timeIntervalSinceReferenceDate];
}
/**
* Writes the changes to disk
*/
- (void)synchronize
{
NSMutableArray *temp = [NSMutableArray array];
// Unwrap the array objects and save them to disk
for (HBProxyArrayObject *proxy in self)
{
[temp addObject:proxy.representedObject];
}
if (![NSKeyedArchiver archiveRootObject:temp toFile:self.fileURL.path])
{
[HBUtilities writeToActivityLog:"Failed to write the queue to disk"];
}
// Send a distributed notification.
[[NSDistributedNotificationCenter defaultCenter] postNotificationName:HBDistributedArraWrittenToDisk
object:[NSString stringWithFormat:@"%d", getpid()]
userInfo:nil
deliverImmediately:YES];
// Update the time, so we can avoid reloaded the file from disk later.
self.modifiedTime = [NSDate timeIntervalSinceReferenceDate];
}
/**
* Wraps an object inside a HBObjectProxy instance
* if it's not already wrapped.
*
* @param anObject the object to wrap
*
* @return a wrapped object
*/
- (id)wrapObjectIfNeeded:(id)anObject
{
if ([[anObject class] isEqual:[HBProxyArrayObject class]])
{
return anObject;
}
else
{
return [[HBProxyArrayObject alloc] initWithObject:anObject];
}
}
#pragma mark - Methods needed to subclass NSMutableArray
- (void)insertObject:(id)anObject atIndex:(NSUInteger)index
{
[self.array insertObject:[self wrapObjectIfNeeded:anObject] atIndex:index];
}
- (void)removeObjectAtIndex:(NSUInteger)index
{
[self.array removeObjectAtIndex:index];
}
- (void)addObject:(id)anObject
{
[self.array addObject:[self wrapObjectIfNeeded:anObject]];
}
- (void)removeLastObject
{
[self.array removeLastObject];
}
- (void)replaceObjectAtIndex:(NSUInteger)index withObject:(id)anObject
{
(self.array)[index] = [self wrapObjectIfNeeded:anObject];
}
- (NSUInteger)count
{
return [self.array count];
}
- (id)objectAtIndex:(NSUInteger)index
{
return (self.array)[index];
}
@end
|