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
|
/* 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 "HBRemoteCore.h"
#import "HBRemoteCoreProtocol.h"
#import "HBPreferencesKeys.h"
@import HandBrakeKit;
@interface HBRemoteCore () <HBRemoteProgressProtocol>
@property (nonatomic, readonly) NSXPCConnection *connection;
@property (nonatomic, readonly) id<HBRemoteCoreProtocol> proxy;
@property (nonatomic, readwrite) HBState state;
@property (nonatomic, readonly) NSInteger level;
@property (nonatomic, readonly, copy) NSString *name;
@property (nonatomic, readwrite, copy) HBCoreProgressHandler progressHandler;
@property (nonatomic, readwrite, copy) HBCoreCompletionHandler completionHandler;
@end
@implementation HBRemoteCore
- (instancetype)init
{
self = [super init];
if (self)
{
_state = HBStateIdle;
_stdoutRedirect = HBRedirect.stdoutRedirect;
_stderrRedirect = HBRedirect.stderrRedirect;
[self connect];
}
return self;
}
- (void)connect
{
_connection = [[NSXPCConnection alloc] initWithServiceName:@"fr.handbrake.HandBrakeXPCService"];
_connection.remoteObjectInterface = [NSXPCInterface interfaceWithProtocol:@protocol(HBRemoteCoreProtocol)];
_connection.exportedInterface = [NSXPCInterface interfaceWithProtocol:@protocol(HBRemoteProgressProtocol)];
_connection.exportedObject = self;
__weak HBRemoteCore *weakSelf = self;
_connection.interruptionHandler = ^{
dispatch_sync(dispatch_get_main_queue(), ^{
[weakSelf handleInterruption];
});
};
_proxy = [_connection remoteObjectProxy];
[_connection resume];
}
- (void)invalidate
{
[[_connection synchronousRemoteObjectProxyWithErrorHandler:^(NSError * _Nonnull error) {}] tearDown];
[_connection invalidate];
_connection = nil;
}
- (void)handleInterruption
{
[_proxy setUpWithLogLevel:self.level name:self.name];
if (self.state != HBStateIdle)
{
[self forwardError:@"XPC Service did crash"];
HBCoreCompletionHandler handler = self.completionHandler;
self.progressHandler = nil;
self.completionHandler = nil;
self.state = HBStateIdle;
if (handler)
{
handler(HBCoreResultFailed);
}
}
}
- (instancetype)initWithLogLevel:(NSInteger)level name:(NSString *)name
{
self = [self init];
if (self)
{
_level = level;
_name = name;
[_proxy setDVDNav:[NSUserDefaults.standardUserDefaults boolForKey:HBUseDvdNav]];
[_proxy setUpWithLogLevel:level name:name];
}
return self;
}
- (void)updateState:(HBState)state {
dispatch_sync(dispatch_get_main_queue(), ^{
self.state = state;
});
}
- (void)setAutomaticallyPreventSleep:(BOOL)automaticallyPreventSleep
{
[_proxy setAutomaticallyPreventSleep:automaticallyPreventSleep];
}
- (void)allowSleep
{
[_proxy allowSleep];
}
- (void)preventSleep
{
[_proxy preventSleep];
}
- (void)scanURL:(NSURL *)url titleIndex:(NSUInteger)index previews:(NSUInteger)previewsNum minDuration:(NSUInteger)seconds progressHandler:(nonnull HBCoreProgressHandler)progressHandler completionHandler:(nonnull HBCoreCompletionHandler)completionHandler
{
#ifdef __SANDBOX_ENABLED__
__block HBSecurityAccessToken *token = [HBSecurityAccessToken tokenWithObject:url];
NSData *bookmark = [url bookmarkDataWithOptions:0 includingResourceValuesForKeys:nil relativeToURL:nil error:NULL];
if (bookmark)
{
[_proxy provideResourceAccessWithBookmarks:@[bookmark]];
}
#endif
self.progressHandler = progressHandler;
self.completionHandler = completionHandler;
self.state = HBStateScanning;
__weak HBRemoteCore *weakSelf = self;
[_proxy scanURL:url titleIndex:index previews:previewsNum minDuration:seconds withReply:^(HBCoreResult result) {
dispatch_sync(dispatch_get_main_queue(), ^{
HBCoreCompletionHandler handler = weakSelf.completionHandler;
weakSelf.completionHandler = nil;
weakSelf.progressHandler = nil;
#ifdef __SANDBOX_ENABLED__
token = nil;
#endif
handler(result);
});
}];
}
- (void)cancelScan
{
[_proxy cancelScan];
}
- (void)encodeJob:(HBJob *)job progressHandler:(HBCoreProgressHandler)progressHandler completionHandler:(HBCoreCompletionHandler)completionHandler
{
#ifdef __SANDBOX_ENABLED__
__block HBSecurityAccessToken *token = [HBSecurityAccessToken tokenWithObject:job];
NSMutableArray<NSData *> *bookmarks = [NSMutableArray array];
for (HBSubtitlesTrack *track in job.subtitles.tracks)
{
if (track.fileURL)
{
NSData *subtitlesBookmark = [track.fileURL bookmarkDataWithOptions:0 includingResourceValuesForKeys:nil relativeToURL:nil error:NULL];
if (subtitlesBookmark)
{
[bookmarks addObject:subtitlesBookmark];
}
}
}
NSData *bookmark = [job.outputURL bookmarkDataWithOptions:0 includingResourceValuesForKeys:nil relativeToURL:nil error:NULL];
if (bookmark)
{
[bookmarks addObject:bookmark];
}
[_proxy provideResourceAccessWithBookmarks:bookmarks];
#endif
self.progressHandler = progressHandler;
self.completionHandler = completionHandler;
self.state = HBStateWorking;
__weak HBRemoteCore *weakSelf = self;
[_proxy encodeJob:job withReply:^(HBCoreResult result) {
dispatch_sync(dispatch_get_main_queue(), ^{
HBCoreCompletionHandler handler = weakSelf.completionHandler;
weakSelf.completionHandler = nil;
weakSelf.progressHandler = nil;
#ifdef __SANDBOX_ENABLED__
token = nil;
#endif
handler(result);
});
}];
}
- (void)cancelEncode
{
[_proxy cancelEncode];
}
- (void)updateProgress:(double)currentProgress hours:(int)hours minutes:(int)minutes seconds:(int)seconds state:(HBState)state info:(NSString *)info {
__weak HBRemoteCore *weakSelf = self;
dispatch_sync(dispatch_get_main_queue(), ^{
HBProgress progress = {currentProgress , hours, minutes, seconds};
weakSelf.state = state;
weakSelf.progressHandler(state, progress, info);
});
}
- (void)forwardOutput:(NSString *)text
{
[_stdoutRedirect forwardOutput:text];
[HBUtilities writeToActivityLogWithNoHeader:text];
}
- (void)forwardError:(NSString *)text
{
[_stdoutRedirect forwardOutput:text];
[HBUtilities writeToActivityLogWithNoHeader:text];
}
- (void)pause
{
[_proxy pauseEncode];
}
- (void)resume
{
[_proxy resumeEncode];
}
@end
|