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
|
/* UserSettingService.cs $
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. */
namespace HandBrake.ApplicationServices.Services
{
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.IO;
using System.Xml.Serialization;
using HandBrake.ApplicationServices.Collections;
using HandBrake.ApplicationServices.Exceptions;
using HandBrake.ApplicationServices.Services.Interfaces;
/// <summary>
/// The User Setting Serivce
/// </summary>
public class UserSettingService : IUserSettingService
{
/// <summary>
/// The Settings File
/// </summary>
private readonly string settingsFile = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\HandBrake\\settings.xml";
/// <summary>
/// The XML Serializer
/// </summary>
readonly XmlSerializer serializer = new XmlSerializer(typeof(SerializableDictionary<string, object>));
/// <summary>
/// The User Settings
/// </summary>
private SerializableDictionary<string, object> userSettings;
/// <summary>
/// Initializes a new instance of the <see cref="UserSettingService"/> class.
/// </summary>
public UserSettingService()
{
this.Load();
if (userSettings == null || userSettings.Count == 0)
{
this.LoadDefaults();
}
}
/// <summary>
/// Set the specified user setting.
/// </summary>
/// <param name="name">
/// Name of the property
/// </param>
/// <param name="value">
/// The value to store.
/// </param>
public void SetUserSetting(string name, object value)
{
this.userSettings[name] = value;
this.Save();
}
/// <summary>
/// Get user setting for a given key.
/// </summary>
/// <param name="name">
/// The name.
/// </param>
/// <typeparam name="T">
/// The Type of the setting
/// </typeparam>
/// <returns>
/// The user setting
/// </returns>
public T GetUserSetting<T>(string name)
{
if (this.userSettings.ContainsKey(name))
{
return (T)this.userSettings[name];
}
return default(T);
}
/// <summary>
/// Get an StringCollection type user setting
/// </summary>
/// <param name="name">
/// The setting name
/// </param>
/// <returns>
/// The settings value
/// </returns>
public StringCollection GetUserSettingStringCollection(string name)
{
return (StringCollection)this.userSettings[name];
}
/// <summary>
/// Save the User Settings
/// </summary>
private void Save()
{
using (FileStream strm = new FileStream(this.settingsFile, FileMode.Create, FileAccess.Write))
{
serializer.Serialize(strm, this.userSettings);
}
}
/// <summary>
/// Load the User Settings
/// </summary>
private void Load()
{
try
{
if (File.Exists(this.settingsFile))
{
using (StreamReader reader = new StreamReader(this.settingsFile))
{
SerializableDictionary<string, object> data = (SerializableDictionary<string, object>)serializer.Deserialize(reader);
this.userSettings = data;
}
}
}
catch (Exception exc)
{
throw new GeneralApplicationException(
"HandBrake has detected corruption in the settings file. User settings will now be reset to defaults.",
"Please restart HandBrake before continuing.",
exc);
}
}
/// <summary>
/// Load Default Settings
/// </summary>
private void LoadDefaults()
{
// TODO, maybe extract this out to a file.
userSettings = new SerializableDictionary<string, object>();
userSettings[UserSettingConstants.X264Step] = 0.25;
userSettings[UserSettingConstants.Verbosity] = 1;
userSettings[UserSettingConstants.WhenCompleteAction] = "Do Nothing";
userSettings[UserSettingConstants.GrowlEncode] = false;
userSettings[UserSettingConstants.GrowlQueue] = false;
userSettings[UserSettingConstants.ProcessPriority] = "Below Normal";
userSettings[UserSettingConstants.PreventSleep] = true;
userSettings[UserSettingConstants.ShowCLI] = false;
userSettings[UserSettingConstants.SaveLogToCopyDirectory] = false;
userSettings[UserSettingConstants.SaveLogWithVideo] = false;
userSettings[UserSettingConstants.DisableLibDvdNav] = false;
userSettings[UserSettingConstants.SendFile] = false;
userSettings[UserSettingConstants.MinScanDuration] = 10;
userSettings[UserSettingConstants.HandBrakeBuild] = 0;
userSettings[UserSettingConstants.HandBrakeVersion] = string.Empty;
}
}
}
|