blob: 21128a38c405cd19ef2af4130cb1f6fb4882bbea (
plain)
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
|
/* HBSummaryViewController.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 "HBSummaryViewController.h"
#import "HBPreviewViewController.h"
#import "HBPreviewGenerator.h"
@import HandBrakeKit;
static void *HBSummaryViewControllerContainerContext = &HBSummaryViewControllerContainerContext;
static void *HBSummaryViewControllerVideoContext = &HBSummaryViewControllerVideoContext;
static void *HBSummaryViewControllerPictureContext = &HBSummaryViewControllerPictureContext;
static void *HBSummaryViewControllerFiltersContext = &HBSummaryViewControllerFiltersContext;
static void *HBSummaryViewControllerAudioContext = &HBSummaryViewControllerAudioContext;
static void *HBSummaryViewControllerSubsContext = &HBSummaryViewControllerSubsContext;
@interface HBSummaryViewController ()
@property (nonatomic, strong) IBOutlet NSLayoutConstraint *bottomOptionsConstrain;
@property (nonatomic, strong) IBOutlet NSTextField *tracksLabel;
@property (nonatomic, strong) IBOutlet NSTextField *filtersLabel;
@property (nonatomic, strong) IBOutlet NSTextField *dimensionLabel;
@property (nonatomic, strong) IBOutlet NSView *previewView;
@property (nonatomic, strong) HBPreviewViewController *previewViewController;
@property (nonatomic) BOOL tracksReloadInQueue;
@property (nonatomic) BOOL filtersReloadInQueue;
@property (nonatomic) BOOL pictureReloadInQueue;
@property (nonatomic, readwrite) NSColor *labelColor;
@end
@implementation HBSummaryViewController
- (instancetype)init
{
self = [super initWithNibName:@"HBSummaryViewController" bundle:nil];
if (self)
{
_labelColor = [NSColor disabledControlTextColor];
_previewViewController = [[HBPreviewViewController alloc] init];
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
self.previewViewController.view.autoresizingMask = NSViewWidthSizable | NSViewHeightSizable;
self.previewViewController.view.frame = NSMakeRect(0, 0, self.previewView.frame.size.width, self.previewView.frame.size.height);
[self.previewView addSubview:self.previewViewController.view];
[self resetLabels];
}
- (void)setGenerator:(HBPreviewGenerator *)generator
{
self.previewViewController.generator = generator;
}
- (void)setJob:(HBJob *)job
{
if (job)
{
self.labelColor = [NSColor controlTextColor];
[self removeJobObservers];
_job = job;
[self addJobObservers];
[self updateTracksLabel];
[self updateFiltersLabel];
[self updatePictureLabel];
}
else
{
self.labelColor = [NSColor disabledControlTextColor];
[self removeJobObservers];
[self resetLabels];
_job = job;
}
}
#pragma mark - KVO
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
if (context == HBSummaryViewControllerAudioContext)
{
if ([change[NSKeyValueChangeKindKey] integerValue] == NSKeyValueChangeInsertion)
{
[self addAudioTracksObservers:change[NSKeyValueChangeNewKey]];
}
else if ([change[NSKeyValueChangeKindKey] integerValue]== NSKeyValueChangeRemoval)
{
[self removeAudioTracksObservers:change[NSKeyValueChangeOldKey]];
}
[self updateTracks:nil];
}
else if (context == HBSummaryViewControllerSubsContext)
{
if ([change[NSKeyValueChangeKindKey] integerValue] == NSKeyValueChangeInsertion)
{
[self addSubtitlesTracksObservers:change[NSKeyValueChangeNewKey]];
}
else if ([change[NSKeyValueChangeKindKey] integerValue]== NSKeyValueChangeRemoval)
{
[self removeSubtitlesTracksObservers:change[NSKeyValueChangeOldKey]];
}
[self updateTracks:nil];
}
else if (context == HBSummaryViewControllerContainerContext)
{
if ([change[NSKeyValueChangeNewKey] integerValue] & 0x030000)
{
self.bottomOptionsConstrain.active = YES;
}
else
{
self.bottomOptionsConstrain.active = NO;
}
[self updateTracks:nil];
}
else if (context == HBSummaryViewControllerVideoContext)
{
[self updateTracks:nil];
}
else if (context == HBSummaryViewControllerFiltersContext)
{
[self updatePicture:nil];
}
else
{
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
}
}
- (void)addAudioTracksObservers:(NSArray<HBAudioTrack *> *)tracks
{
for (HBAudioTrack *track in tracks)
{
[track addObserver:self forKeyPath:@"encoder" options:0 context:HBSummaryViewControllerAudioContext];
[track addObserver:self forKeyPath:@"mixdown" options:0 context:HBSummaryViewControllerAudioContext];
}
}
- (void)removeAudioTracksObservers:(NSArray<HBAudioTrack *> *)tracks
{
for (HBAudioTrack *track in tracks)
{
[track removeObserver:self forKeyPath:@"encoder" context:HBSummaryViewControllerAudioContext];
[track removeObserver:self forKeyPath:@"mixdown" context:HBSummaryViewControllerAudioContext];
}
}
- (void)addSubtitlesTracksObservers:(NSArray<HBSubtitlesTrack *> *)tracks
{
for (HBSubtitlesTrack *track in tracks)
{
[track addObserver:self forKeyPath:@"burnedIn" options:0 context:HBSummaryViewControllerSubsContext];
}
}
- (void)removeSubtitlesTracksObservers:(NSArray<HBSubtitlesTrack *> *)tracks
{
for (HBSubtitlesTrack *track in tracks)
{
[track removeObserver:self forKeyPath:@"burnedIn" context:HBSummaryViewControllerSubsContext];
}
}
- (void)addJobObservers
{
if (_job)
{
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(updatePicture:) name:HBPictureChangedNotification object:_job.picture];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(updateFilters:) name:HBFiltersChangedNotification object:_job.filters];
[_job addObserver:self forKeyPath:@"container" options:NSKeyValueObservingOptionInitial | NSKeyValueObservingOptionNew context:HBSummaryViewControllerContainerContext];
[_job addObserver:self forKeyPath:@"chaptersEnabled" options:0 context:HBSummaryViewControllerVideoContext];
[_job addObserver:self forKeyPath:@"video.encoder" options:0 context:HBSummaryViewControllerVideoContext];
[_job addObserver:self forKeyPath:@"video.frameRate" options:0 context:HBSummaryViewControllerVideoContext];
[_job addObserver:self forKeyPath:@"video.frameRateMode" options:0 context:HBSummaryViewControllerVideoContext];
[_job addObserver:self forKeyPath:@"filters.deinterlace" options:0 context:HBSummaryViewControllerFiltersContext];
[_job addObserver:self forKeyPath:@"filters.rotate" options:0 context:HBSummaryViewControllerFiltersContext];
[_job addObserver:self forKeyPath:@"filters.flip" options:0 context:HBSummaryViewControllerFiltersContext];
[_job addObserver:self forKeyPath:@"audio.tracks" options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld context:HBSummaryViewControllerAudioContext];
[_job addObserver:self forKeyPath:@"subtitles.tracks" options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld context:HBSummaryViewControllerSubsContext];
[self addAudioTracksObservers:_job.audio.tracks];
[self addSubtitlesTracksObservers:_job.subtitles.tracks];
}
}
- (void)removeJobObservers
{
if (_job)
{
[[NSNotificationCenter defaultCenter] removeObserver:self name:HBPictureChangedNotification object:_job.picture];
[[NSNotificationCenter defaultCenter] removeObserver:self name:HBFiltersChangedNotification object:_job.filters];
[_job removeObserver:self forKeyPath:@"container" context:HBSummaryViewControllerContainerContext];
[_job removeObserver:self forKeyPath:@"chaptersEnabled" context:HBSummaryViewControllerVideoContext];
[_job removeObserver:self forKeyPath:@"video.encoder" context:HBSummaryViewControllerVideoContext];
[_job removeObserver:self forKeyPath:@"video.frameRate" context:HBSummaryViewControllerVideoContext];
[_job removeObserver:self forKeyPath:@"video.frameRateMode" context:HBSummaryViewControllerVideoContext];
[_job removeObserver:self forKeyPath:@"filters.deinterlace" context:HBSummaryViewControllerFiltersContext];
[_job removeObserver:self forKeyPath:@"filters.rotate" context:HBSummaryViewControllerFiltersContext];
[_job removeObserver:self forKeyPath:@"filters.flip" context:HBSummaryViewControllerFiltersContext];
[_job removeObserver:self forKeyPath:@"audio.tracks" context:HBSummaryViewControllerAudioContext];
[_job removeObserver:self forKeyPath:@"subtitles.tracks" context:HBSummaryViewControllerSubsContext];
[self removeAudioTracksObservers:_job.audio.tracks];
[self removeSubtitlesTracksObservers:_job.subtitles.tracks];
}
}
- (void)updateTracks:(NSNotification *)notification
{
if (self.tracksReloadInQueue == NO)
{
[[NSRunLoop mainRunLoop] performSelector:@selector(updateTracksLabel) target:self argument:nil order:0 modes:@[NSDefaultRunLoopMode]];
self.tracksReloadInQueue = YES;
}
}
- (void)updateFilters:(NSNotification *)notification
{
if (self.filtersReloadInQueue == NO)
{
[[NSRunLoop mainRunLoop] performSelector:@selector(updateFiltersLabel) target:self argument:nil order:0 modes:@[NSDefaultRunLoopMode]];
self.filtersReloadInQueue = YES;
}
}
- (void)updatePicture:(NSNotification *)notification
{
// Enquee the reload call on the main runloop
// to avoid reloading the same image multiple times.
if (self.pictureReloadInQueue == NO)
{
[[NSRunLoop mainRunLoop] performSelector:@selector(updatePictureLabel) target:self argument:nil order:0 modes:@[NSDefaultRunLoopMode]];
self.pictureReloadInQueue = YES;
}
}
- (void)resetLabels
{
self.tracksLabel.stringValue = @"";
self.filtersLabel.stringValue = @"";
self.dimensionLabel.stringValue = @"";
self.tracksReloadInQueue = NO;
self.filtersReloadInQueue = NO;
self.pictureReloadInQueue = NO;
}
- (void)updateTracksLabel
{
self.tracksLabel.stringValue = self.job.shortDescription;
self.tracksReloadInQueue = NO;
}
- (void)updateFiltersLabel
{
self.filtersLabel.stringValue = self.job.filtersShortDescription;
self.filtersReloadInQueue = NO;
}
- (void)updatePictureLabel
{
self.pictureReloadInQueue = NO;
self.dimensionLabel.stringValue = self.job.picture.shortInfo;
[self.previewViewController update];
}
@end
|