-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathEncoderController.m
409 lines (320 loc) · 13.7 KB
/
EncoderController.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
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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
/*
* Copyright (C) 2005 - 2020 Stephen F. Booth <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#import "EncoderController.h"
#import "SecondsFormatter.h"
#import "RipperTask.h"
#import "CoreAudioEncoderTask.h"
#import "FLACEncoderTask.h"
#import "MonkeysAudioEncoderTask.h"
#import "MP3EncoderTask.h"
#import "OggFLACEncoderTask.h"
#import "OggSpeexEncoderTask.h"
#import "OggVorbisEncoderTask.h"
#import "LibsndfileEncoderTask.h"
#import "WavPackEncoderTask.h"
#import "LogController.h"
#import "RipperController.h"
#include <AudioToolbox/AudioFile.h>
#include <sndfile/sndfile.h>
#include <sys/param.h> // statfs
#include <sys/mount.h>
static EncoderController *sharedController = nil;
@interface EncoderController (Private)
- (void) runEncoder:(Class)encoderClass taskInfo:(TaskInfo *)taskInfo encoderSettings:(NSDictionary *)encoderSettings;
- (void) addTask:(EncoderTask *)task;
- (void) removeTask:(EncoderTask *)task;
- (void) spawnThreads;
@end
@implementation EncoderController
+ (EncoderController *) sharedController
{
@synchronized(self) {
if(nil == sharedController)
[[self alloc] init];
}
return sharedController;
}
+ (id) allocWithZone:(NSZone *)zone
{
@synchronized(self) {
if(nil == sharedController) {
sharedController = [super allocWithZone:zone];
return sharedController;
}
}
return nil;
}
- (id) copyWithZone:(NSZone *)zone { return self; }
- (id) retain { return self; }
- (NSUInteger) retainCount { return UINT_MAX; /* denotes an object that cannot be released */ }
- (oneway void) release { /* do nothing */ }
- (id) autorelease { return self; }
- (id) init
{
if((self = [super initWithWindowNibName:@"Encoder"])) {
_tasks = [[NSMutableArray alloc] init];
}
return self;
}
- (void) dealloc
{
[_tasks release];
_tasks = nil;
[super dealloc];
}
- (void) awakeFromNib
{
[_taskTable setAutosaveTableColumns:YES];
[[[_taskTable tableColumnWithIdentifier:@"remaining"] dataCell] setFormatter:[[[SecondsFormatter alloc] init] autorelease]];
}
- (void) windowDidLoad
{
[self setShouldCascadeWindows:NO];
[self setWindowFrameAutosaveName:@"Encoder"];
[[self window] setExcludedFromWindowsMenu:YES];
}
#pragma mark Functionality
- (void) encodeFile:(NSString *)filename metadata:(AudioMetadata *)metadata settings:(NSDictionary *)settings
{
[self encodeFiles:[NSArray arrayWithObject:filename] metadata:metadata settings:settings inputTracks:nil];
}
- (void) encodeFile:(NSString *)filename metadata:(AudioMetadata *)metadata settings:(NSDictionary *)settings inputTracks:(NSArray *)inputTracks
{
[self encodeFiles:[NSArray arrayWithObject:filename] metadata:metadata settings:settings inputTracks:inputTracks];
}
- (void) encodeFiles:(NSArray *)filenames metadata:(AudioMetadata *)metadata settings:(NSDictionary *)settings
{
[self encodeFiles:filenames metadata:metadata settings:settings inputTracks:nil];
}
- (void) encodeFiles:(NSArray *)filenames metadata:(AudioMetadata *)metadata settings:(NSDictionary *)settings inputTracks:(NSArray *)inputTracks
{
TaskInfo *taskInfo = [TaskInfo taskInfoWithSettings:settings metadata:metadata];
NSArray *outputFormats = [settings objectForKey:@"encoders"];
NSDictionary *format = nil;
NSUInteger i = 0;
[taskInfo setInputFilenames:filenames];
[taskInfo setInputTracks:inputTracks];
for(i = 0; i < [outputFormats count]; ++i) {
format = [outputFormats objectAtIndex:i];
switch([[format objectForKey:@"component"] intValue]) {
case kComponentFLAC:
[self runEncoder:[FLACEncoderTask class] taskInfo:taskInfo encoderSettings:[format objectForKey:@"settings"]];
break;
case kComponentOggFLAC:
[self runEncoder:[OggFLACEncoderTask class] taskInfo:taskInfo encoderSettings:[format objectForKey:@"settings"]];
break;
case kComponentWavPack:
[self runEncoder:[WavPackEncoderTask class] taskInfo:taskInfo encoderSettings:[format objectForKey:@"settings"]];
break;
case kComponentMonkeysAudio:
[self runEncoder:[MonkeysAudioEncoderTask class] taskInfo:taskInfo encoderSettings:[format objectForKey:@"settings"]];
break;
case kComponentOggVorbis:
[self runEncoder:[OggVorbisEncoderTask class] taskInfo:taskInfo encoderSettings:[format objectForKey:@"settings"]];
break;
case kComponentMP3:
[self runEncoder:[MP3EncoderTask class] taskInfo:taskInfo encoderSettings:[format objectForKey:@"settings"]];
break;
case kComponentOggSpeex:
[self runEncoder:[OggSpeexEncoderTask class] taskInfo:taskInfo encoderSettings:[format objectForKey:@"settings"]];
break;
case kComponentCoreAudio:
[self runEncoder:[CoreAudioEncoderTask class] taskInfo:taskInfo encoderSettings:[format objectForKey:@"settings"]];
break;
case kComponentLibsndfile:
[self runEncoder:[LibsndfileEncoderTask class] taskInfo:taskInfo encoderSettings:[format objectForKey:@"settings"]];
break;
default:
NSLog(@"Unknown component: %@", [format objectForKey:@"component"]);
break;
}
}
}
- (BOOL) documentHasEncoderTasks:(CompactDiscDocument *)document
{
EncoderTask *current;
for(current in _tasks) {
if([document isEqual:[[[[current taskInfo] inputTracks] objectAtIndex:0] document]])
return YES;
}
return NO;
}
- (void) stopEncoderTasksForDocument:(CompactDiscDocument *)document
{
NSEnumerator *enumerator;
EncoderTask *current;
_freeze = YES;
enumerator = [_tasks reverseObjectEnumerator];
while((current = [enumerator nextObject])) {
if([document isEqual:[[[[current taskInfo] inputTracks] objectAtIndex:0] document]])
[current stop];
}
_freeze = NO;
}
#pragma mark mark Action Methods
- (IBAction) stopSelectedTasks:(id)sender
{
NSEnumerator *enumerator;
EncoderTask *current;
_freeze = YES;
enumerator = [[_tasksController selectedObjects] reverseObjectEnumerator];
while((current = [enumerator nextObject]))
[current stop];
_freeze = NO;
}
- (IBAction) stopAllTasks:(id)sender
{
NSEnumerator *enumerator;
EncoderTask *current;
_freeze = YES;
enumerator = [[_tasksController arrangedObjects] reverseObjectEnumerator];
while((current = [enumerator nextObject]))
[current stop];
_freeze = NO;
}
#pragma mark Callbacks
- (void) encoderTaskDidStart:(EncoderTask *)task
{
[self encoderTaskDidStart:task notify:YES];
}
- (void) encoderTaskDidStop:(EncoderTask *)task
{
[self encoderTaskDidStop:task notify:YES];
}
- (void) encoderTaskDidComplete:(EncoderTask *)task
{
[self encoderTaskDidComplete:task notify:YES];
}
- (void) encoderTaskDidStart:(EncoderTask *)task notify:(BOOL)notify
{
if(NO == notify)
return;
NSString *trackName = [task description];
NSString *type = [task outputFormatName];
NSString *settings = [task encoderSettingsString];
[LogController logMessage:[NSString stringWithFormat:NSLocalizedStringFromTable(@"Encode started for %@ [%@]", @"Log", @""), trackName, type]];
if(nil != settings)
[LogController logMessage:settings];
NSUserNotification *notification = [[[NSUserNotification alloc] init] autorelease];
notification.title = NSLocalizedStringFromTable(@"Encode started", @"Log", @"");
notification.informativeText = [NSString stringWithFormat:@"%@\n%@", trackName, [NSString stringWithFormat:NSLocalizedStringFromTable(@"File format: %@", @"Log", @""), type]];
[[NSUserNotificationCenter defaultUserNotificationCenter] deliverNotification:notification];
}
- (void) encoderTaskDidStop:(EncoderTask *)task notify:(BOOL)notify
{
if(notify) {
NSString *trackName = [task description];
NSString *type = [task outputFormatName];
[LogController logMessage:[NSString stringWithFormat:NSLocalizedStringFromTable(@"Encode stopped for %@ [%@]", @"Log", @""), trackName, type]];
NSUserNotification *notification = [[[NSUserNotification alloc] init] autorelease];
notification.title = NSLocalizedStringFromTable(@"Encode stopped", @"Log", @"");
notification.informativeText = [NSString stringWithFormat:@"%@\n%@", trackName, [NSString stringWithFormat:NSLocalizedStringFromTable(@"File format: %@", @"Log", @""), type]];
[[NSUserNotificationCenter defaultUserNotificationCenter] deliverNotification:notification];
}
[self removeTask:task];
[self spawnThreads];
}
- (void) encoderTaskDidComplete:(EncoderTask *)task notify:(BOOL)notify
{
BOOL justNotified = NO;
if(notify) {
NSDate *startTime = [task startTime];
NSDate *endTime = [task endTime];
unsigned int timeInSeconds = (unsigned int) [endTime timeIntervalSinceDate:startTime];
NSString *duration = [NSString stringWithFormat:@"%i:%02i", timeInSeconds / 60, timeInSeconds % 60];
NSString *trackName = [task description];
NSString *type = [task outputFormatName];
[LogController logMessage:[NSString stringWithFormat:NSLocalizedStringFromTable(@"Encode completed for %@ [%@]", @"Log", @""), trackName, type]];
NSUserNotification *notification = [[[NSUserNotification alloc] init] autorelease];
notification.title = NSLocalizedStringFromTable(@"Encode completed", @"Log", @"");
notification.informativeText = [NSString stringWithFormat:@"%@\n%@\n%@", trackName, [NSString stringWithFormat:NSLocalizedStringFromTable(@"File format: %@", @"Log", @""), type], [NSString stringWithFormat:NSLocalizedStringFromTable(@"Duration: %@", @"Log", @""), duration]];
[[NSUserNotificationCenter defaultUserNotificationCenter] deliverNotification:notification];
}
[task retain];
[self removeTask:task];
[self spawnThreads];
if(notify && 0 != [[[task taskInfo] inputTracks] count] && NO == [[[[[task taskInfo] inputTracks] objectAtIndex:0] document] ripInProgress] && NO == [[[[[task taskInfo] inputTracks] objectAtIndex:0] document] encodeInProgress]) {
NSUserNotification *notification = [[[NSUserNotification alloc] init] autorelease];
notification.title = NSLocalizedStringFromTable(@"Disc encoding completed", @"Log", @"");
notification.informativeText = [NSString stringWithFormat:NSLocalizedStringFromTable(@"All encoding tasks completed for %@", @"Log", @""), [[[task taskInfo] metadata] albumTitle]];
[[NSUserNotificationCenter defaultUserNotificationCenter] deliverNotification:notification];
justNotified = YES;
}
// No more tasks in any queues
if(notify && NO == [self hasTasks] && NO == [[RipperController sharedController] hasTasks]) {
// Bounce dock icon if we're not the active application
if(NO == [[NSApplication sharedApplication] isActive])
[[NSApplication sharedApplication] requestUserAttention:NSInformationalRequest];
// Try to avoid notification floods
if(NO == justNotified) {
NSUserNotification *notification = [[[NSUserNotification alloc] init] autorelease];
notification.title = NSLocalizedStringFromTable(@"Disc encoding completed", @"Log", @"");
notification.informativeText = NSLocalizedStringFromTable(@"All encoding tasks completed", @"Log", @"");
[[NSUserNotificationCenter defaultUserNotificationCenter] deliverNotification:notification];
}
}
if([[NSUserDefaults standardUserDefaults] boolForKey:@"closeWindowAfterEncoding"] && 0 != [[[task taskInfo] inputTracks] count] && NO == [[[[[task taskInfo] inputTracks] objectAtIndex:0] document] ripInProgress] && NO == [[[[[task taskInfo] inputTracks] objectAtIndex:0] document] encodeInProgress]) {
CompactDiscDocument *doc = [[[[task taskInfo] inputTracks] objectAtIndex:0] document];
[doc saveDocument:self];
[[doc windowForSheet] performClose:self];
}
[task release];
}
#pragma mark Task Management
- (NSUInteger) countOfTasks { return [_tasks count]; }
- (BOOL) hasTasks { return (0 != [_tasks count]); }
@end
@implementation EncoderController (Private)
- (void) runEncoder:(Class)encoderClass taskInfo:(TaskInfo *)taskInfo encoderSettings:(NSDictionary *)encoderSettings
{
// Create the task
EncoderTask *encoderTask = [[encoderClass alloc] init];
// Set the task info
[encoderTask setTaskInfo:taskInfo];
// Pass the encoding configuration parameters
[encoderTask setEncoderSettings:encoderSettings];
// Show the encoder window if it is hidden
if(NO == [[NSApplication sharedApplication] isHidden] && [[NSUserDefaults standardUserDefaults] boolForKey:@"useDynamicWindows"])
[[self window] orderFront:self];
// Add the encoder to our list of encoding tasks
[self addTask:[encoderTask autorelease]];
[self spawnThreads];
}
- (void) addTask:(EncoderTask *)task { [[self mutableArrayValueForKey:@"tasks"] addObject:task]; }
- (void) removeTask:(EncoderTask *)task
{
[[self mutableArrayValueForKey:@"tasks"] removeObject:task];
// Hide the window if no more tasks
if(NO == [self hasTasks] && [[NSUserDefaults standardUserDefaults] boolForKey:@"useDynamicWindows"])
[[self window] performClose:self];
}
- (void) spawnThreads
{
NSUInteger maxThreads = (NSUInteger) [[NSUserDefaults standardUserDefaults] integerForKey:@"maximumEncoderThreads"];
NSUInteger i;
NSUInteger limit;
if(0 == [_tasks count] || _freeze)
return;
limit = (maxThreads < [_tasks count] ? maxThreads : [_tasks count]);
// Start encoding the next track(s)
for(i = 0; i < limit; ++i) {
if(NO == [[_tasks objectAtIndex:i] started])
[[_tasks objectAtIndex:i] run];
}
}
@end