summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2015-10-10 12:19:22 +0200
committerDamiano Galassi <[email protected]>2015-10-10 21:50:26 +0200
commit656c08b79b68553b721dc07fe7856e78f4086c7c (patch)
tree9f649893ac4deea085df6ce3bec802e7fa03ba4d
parentf5fb3073f913110139fb28491af0807c7dab60af (diff)
MacGui: show better error message to the user if a preset fails to import
-rw-r--r--macosx/HBPreset.h2
-rw-r--r--macosx/HBPreset.m80
-rw-r--r--macosx/HBPresetsManager.m3
-rw-r--r--macosx/HBPresetsViewController.m9
4 files changed, 76 insertions, 18 deletions
diff --git a/macosx/HBPreset.h b/macosx/HBPreset.h
index 1c5375edb..bf5b51e8b 100644
--- a/macosx/HBPreset.h
+++ b/macosx/HBPreset.h
@@ -35,7 +35,7 @@ typedef NS_ENUM(NSUInteger, HBPresetFormat) {
* @return An initialized preset—which might be different than the original receiver—that contains the preset at URL,
* or nil if there is an error or if the contents of the resource are not and HandBrake preset.
*/
-- (nullable instancetype)initWithContentsOfURL:(NSURL *)url;
+- (nullable instancetype)initWithContentsOfURL:(NSURL *)url error:(NSError **)outError;
/**
* Writes a property list or json representation of the contents of the preset to a given URL.
diff --git a/macosx/HBPreset.m b/macosx/HBPreset.m
index 8b3d5c6ba..58fe6a36d 100644
--- a/macosx/HBPreset.m
+++ b/macosx/HBPreset.m
@@ -55,9 +55,13 @@
{
NSParameterAssert(dict);
+ NSString *name = dict[@"PresetName"] ? dict[@"PresetName"] : @"Unnamed preset";
+ BOOL builtIn = [dict[@"Type"] boolValue] ? NO : YES;
+ BOOL defaultPreset = [dict[@"Default"] boolValue];
+
if ([dict[@"Folder"] boolValue])
{
- self = [self initWithFolderName:dict[@"PresetName"] builtIn:![dict[@"Type"] boolValue]];
+ self = [self initWithFolderName:name builtIn:builtIn];
for (NSDictionary *childDict in [dict[@"ChildrenArray"] reverseObjectEnumerator])
{
@@ -67,59 +71,79 @@
}
else
{
- self = [self initWithName:dict[@"PresetName"]
+ self = [self initWithName:name
content:dict
- builtIn:![dict[@"Type"] boolValue]];
- self.isDefault = [dict[@"Default"] boolValue];
+ builtIn:builtIn];
+ self.isDefault = defaultPreset;
}
return self;
}
-- (nullable instancetype)initWithContentsOfURL:(NSURL *)url
+- (nullable instancetype)initWithContentsOfURL:(NSURL *)url error:(NSError **)outError
{
+ NSParameterAssert(url);
+
NSArray *presetsArray;
- NSString *presetsJson;
+ NSString *presetsString;
+ // Read a json file or the old plists format
if ([url.pathExtension isEqualToString:@"json"])
{
NSData *data = [[NSData alloc] initWithContentsOfURL:url];
- presetsJson = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
+ presetsString = [[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];
+ presetsString = [NSJSONSerialization HB_StringWithJSONObject:array options:0 error:NULL];
}
}
// Run the json through the libhb import function
// to avoid importing unknowns keys.
- if (presetsJson.length) {
+ if (presetsString.length)
+ {
char *importedJson;
- int result;
-
- result = hb_presets_import_json(presetsJson.UTF8String, &importedJson);
+ hb_presets_import_json(presetsString.UTF8String, &importedJson);
if (importedJson)
{
id importedPresets = [NSJSONSerialization HB_JSONObjectWithUTF8String:importedJson options:0 error:NULL];
+ free(importedJson);
if ([importedPresets isKindOfClass:[NSDictionary class]])
{
- presetsArray = importedPresets[@"PresetList"];
+ int hb_major, hb_minor, hb_micro;
+ int major;
+
+ hb_presets_current_version(&hb_major, &hb_minor, &hb_micro);
+ major = [importedPresets[@"VersionMajor"] intValue];
+
+ if (major <= hb_major)
+ {
+ presetsArray = importedPresets[@"PresetList"];
+ }
+ else
+ {
+ // Change in major indicates non-backward compatible preset changes.
+ if (outError)
+ {
+ *outError = [self newerPresetErrorForUrl:url];
+ }
+ return nil;
+ }
}
else if ([importedPresets isKindOfClass:[NSArray class]])
{
presetsArray = importedPresets;
}
}
-
- free(importedJson);
}
+ // Convert the array to a HBPreset tree.
if (presetsArray.count)
{
self = [self initWithFolderName:@"Imported Presets" builtIn:NO];
@@ -134,10 +158,36 @@
}
return self;
}
+ else if (outError)
+ {
+ *outError = [self invalidPresetErrorForUrl:url];
+ }
return nil;
}
+- (NSError *)invalidPresetErrorForUrl:(NSURL *)url
+{
+ NSString *description = [NSString stringWithFormat:NSLocalizedString(@"The preset \"%@\" could not be imported.", nil),
+ url.lastPathComponent];
+ NSString *reason = NSLocalizedString(@"The selected preset is invalid.", nil);
+
+ return [NSError errorWithDomain:@"HBPresetDomain" code:1 userInfo:@{NSLocalizedDescriptionKey: description,
+ NSLocalizedRecoverySuggestionErrorKey: reason}];
+
+}
+
+- (NSError *)newerPresetErrorForUrl:(NSURL *)url
+{
+ NSString *description = [NSString stringWithFormat:NSLocalizedString(@"The preset \"%@\" could not be imported.", nil),
+ url.lastPathComponent];
+ NSString *reason = NSLocalizedString(@"The selected preset was created with a newer version of HandBrake.", nil);
+
+ return [NSError errorWithDomain:@"HBPresetDomain" code:2 userInfo:@{NSLocalizedDescriptionKey: description,
+ NSLocalizedRecoverySuggestionErrorKey: reason}];
+
+}
+
- (NSDictionary *)dictionary
{
NSMutableDictionary *output = [[NSMutableDictionary alloc] init];
diff --git a/macosx/HBPresetsManager.m b/macosx/HBPresetsManager.m
index a98269298..f19709044 100644
--- a/macosx/HBPresetsManager.m
+++ b/macosx/HBPresetsManager.m
@@ -70,7 +70,8 @@ NSString *HBPresetsChangedNotification = @"HBPresetsChangedNotification";
*/
- (void)loadOldPresetsFromURL:(NSURL *)url
{
- HBPreset *oldPresets = [[HBPreset alloc] initWithContentsOfURL:url];
+ NSError *error;
+ HBPreset *oldPresets = [[HBPreset alloc] initWithContentsOfURL:url error:&error];
for (HBPreset *preset in oldPresets.children)
{
diff --git a/macosx/HBPresetsViewController.m b/macosx/HBPresetsViewController.m
index d58cb6715..fd8bc9677 100644
--- a/macosx/HBPresetsViewController.m
+++ b/macosx/HBPresetsViewController.m
@@ -135,7 +135,14 @@
for (NSURL *url in panel.URLs)
{
- HBPreset *import = [[HBPreset alloc] initWithContentsOfURL:url];
+ NSError *error;
+ HBPreset *import = [[HBPreset alloc] initWithContentsOfURL:url error:&error];
+
+ if (import == nil)
+ {
+ [self presentError:error];
+ }
+
for (HBPreset *child in import.children)
{
[self.presets addPreset:child];