blob: 26edbba6cd8ef370c9e4862cc471d8030226a5da (
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
|
/* HBPreset.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 "HBPreset.h"
#include "preset.h"
#import "NSJSONSerialization+HBAdditions.h"
@implementation HBPreset
- (instancetype)init
{
self = [super init];
if (self)
{
_name = @"New Preset";
_presetDescription = @"";
self.isLeaf = YES;
}
return self;
}
- (instancetype)initWithName:(NSString *)title content:(NSDictionary *)content builtIn:(BOOL)builtIn;
{
self = [self init];
if (self)
{
_name = [title copy];
_isBuiltIn = builtIn;
_content = [content copy];
if ([content[@"PresetDescription"] isKindOfClass:[NSString class]])
{
_presetDescription = [content[@"PresetDescription"] copy];
}
}
return self;
}
- (instancetype)initWithFolderName:(NSString *)title builtIn:(BOOL)builtIn;
{
self = [self init];
if (self)
{
_name = [title copy];
_isBuiltIn = builtIn;
self.isLeaf = NO;
}
return self;
}
- (instancetype)initWithDictionary:(NSDictionary *)dict
{
NSParameterAssert(dict);
if ([dict[@"Folder"] boolValue])
{
self = [self initWithFolderName:dict[@"PresetName"] builtIn:![dict[@"Type"] boolValue]];
for (NSDictionary *childDict in [dict[@"ChildrenArray"] reverseObjectEnumerator])
{
HBPreset *childPreset = [[HBPreset alloc] initWithDictionary:childDict];
[self insertObject:childPreset inChildrenAtIndex:0];
}
}
else
{
self = [self initWithName:dict[@"PresetName"]
content:dict
builtIn:![dict[@"Type"] boolValue]];
self.isDefault = [dict[@"Default"] boolValue];
}
return self;
}
- (nullable instancetype)initWithContentsOfURL:(NSURL *)url
{
NSArray *presetsArray;
NSString *presetsJson;
if ([url.pathExtension isEqualToString:@"json"])
{
NSData *data = [[NSData alloc] initWithContentsOfURL:url];
presetsJson = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
}
else
{
NSArray *array = [[NSArray alloc] initWithContentsOfURL:url];
if ([NSJSONSerialization isValidJSONObject:array])
{
presetsJson = [NSJSONSerialization HB_StringWithJSONObject:array options:0 error:NULL];
}
}
// Run the json through the libhb import function
// to avoid importing unknowns keys.
if (presetsJson.length) {
char *importedJson = hb_presets_import_json(presetsJson.UTF8String);
if (importedJson)
{
id importedPresets = [NSJSONSerialization HB_JSONObjectWithUTF8String:importedJson options:0 error:NULL];
if ([importedPresets isKindOfClass:[NSDictionary class]])
{
presetsArray = importedPresets[@"PresetList"];
}
else if ([importedPresets isKindOfClass:[NSArray class]])
{
presetsArray = importedPresets;
}
}
free(importedJson);
}
if (presetsArray.count)
{
self = [self initWithFolderName:@"Imported Presets" builtIn:NO];
if (self)
{
for (NSDictionary *dict in presetsArray)
{
HBPreset *preset = [[HBPreset alloc] initWithDictionary:dict];
[self.children addObject:preset];
}
}
return self;
}
return nil;
}
- (NSDictionary *)dictionary
{
NSMutableDictionary *output = [[NSMutableDictionary alloc] init];
[output addEntriesFromDictionary:self.content];
output[@"PresetName"] = self.name;
output[@"PresetDescription"] = self.presetDescription;
output[@"Folder"] = [NSNumber numberWithBool:!self.isLeaf];
output[@"Type"] = @(!self.isBuiltIn);
output[@"Default"] = @(self.isDefault);
if (!self.isLeaf)
{
NSMutableArray *childArray = [[NSMutableArray alloc] init];
for (HBPreset *child in self.children)
{
[childArray addObject:[child dictionary]];
}
output[@"ChildrenArray"] = childArray;
}
return output;
}
- (BOOL)writeToURL:(NSURL *)url atomically:(BOOL)atomically format:(HBPresetFormat)format removeRoot:(BOOL)removeRoot;
{
BOOL success = NO;
NSArray *presetList;
if (removeRoot)
{
presetList = self.dictionary[@"ChildrenArray"];
}
else
{
presetList = @[self.dictionary];
}
int major, minor, micro;
hb_presets_current_version(&major, &minor, µ);
NSDictionary *dict = @{ @"PresetList": presetList,
@"VersionMajor": @(major),
@"VersionMicro": @(minor),
@"VersionMinor": @(micro) };
if (format == HBPresetFormatPlist)
{
success = [dict writeToURL:url atomically:atomically];
}
else
{
NSData *jsonPreset = [NSJSONSerialization dataWithJSONObject:dict options:NSJSONWritingPrettyPrinted error:NULL];
success = [jsonPreset writeToURL:url atomically:atomically];
}
return success;
}
- (id)copyWithZone:(NSZone *)zone
{
HBPreset *node = [super copyWithZone:zone];
node->_name = [self.name copy];
node->_content = [self.content copy];
node->_presetDescription = [self.presetDescription copy];
return node;
}
- (NSUInteger)hash
{
return self.name.hash + self.isBuiltIn + self.isLeaf;
}
- (void)cleanUp
{
// Run the libhb clean function
NSString *presetJson = [NSJSONSerialization HB_StringWithJSONObject:self.dictionary options:0 error:NULL];
if (presetJson.length)
{
char *cleanedJson = hb_presets_clean_json(presetJson.UTF8String);
NSDictionary *cleanedDict = [NSJSONSerialization HB_JSONObjectWithUTF8String:cleanedJson options:0 error:NULL];
free(cleanedJson);
if ([cleanedDict isKindOfClass:[NSDictionary class]])
{
self.content = cleanedDict;
}
}
}
- (void)setName:(NSString *)name
{
_name = [name copy];
[self.delegate nodeDidChange:self];
}
- (void)setIsDefault:(BOOL)isDefault
{
_isDefault = isDefault;
[self.delegate nodeDidChange:self];
}
#pragma mark - KVC
- (BOOL)validateName:(id *)ioValue error:(NSError * __autoreleasing *)outError
{
// Return an error is the name is empty
if (![*ioValue length])
{
if (outError)
{
*outError = [[NSError alloc] initWithDomain:@"HBErrorDomain"
code:0
userInfo:@{NSLocalizedDescriptionKey:@"The preset title cannot be empty.",
NSLocalizedRecoverySuggestionErrorKey:@"Please enter a title."}];
}
return NO;
}
return YES;
}
@end
|