2014-07-19 11:04:19 +00:00
|
|
|
|
#region CPL License
|
|
|
|
|
/*
|
|
|
|
|
Nuclex Framework
|
2017-01-21 21:33:55 +00:00
|
|
|
|
Copyright (C) 2002-2017 Nuclex Development Labs
|
2014-07-19 11:04:19 +00:00
|
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the IBM Common Public License as
|
|
|
|
|
published by the IBM Corporation; either version 1.0 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This library 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
|
|
|
|
|
IBM Common Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the IBM Common Public
|
|
|
|
|
License along with this library
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
2014-07-22 08:50:05 +00:00
|
|
|
|
#if WINDOWS
|
|
|
|
|
|
2014-07-19 11:04:19 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2014-07-22 11:10:14 +00:00
|
|
|
|
using System.Globalization;
|
2014-07-19 11:04:19 +00:00
|
|
|
|
|
2014-07-22 10:43:23 +00:00
|
|
|
|
using Microsoft.Win32;
|
2014-07-22 11:10:14 +00:00
|
|
|
|
|
2014-07-19 22:16:41 +00:00
|
|
|
|
namespace Nuclex.Support.Settings {
|
2014-07-19 11:04:19 +00:00
|
|
|
|
|
2014-07-19 22:16:41 +00:00
|
|
|
|
/// <summary>Stores settings in the registry on Windows operating systems</summary>
|
2014-07-24 16:04:09 +00:00
|
|
|
|
/// <remarks>
|
|
|
|
|
/// <para>
|
|
|
|
|
/// For the cases when you must use the Windows registry, the windows registry store
|
|
|
|
|
/// lets you map a registry key as a settings store. Its direct subkeys will become
|
|
|
|
|
/// categories and all registry values are made available as options.
|
|
|
|
|
/// </para>
|
|
|
|
|
/// <para>
|
|
|
|
|
/// Use of the registry is strongly discouraged. It binds you to Microsoft's silly
|
|
|
|
|
/// technology stack and fragments your application by storing some of its data in
|
|
|
|
|
/// the file system while storing other data in an opaque, globally-shared settings
|
|
|
|
|
/// manager that is filled with megabytes on unrelated things. Xcopy deployment
|
|
|
|
|
/// and portability will be out of the question when relying on the registry.
|
|
|
|
|
/// </para>
|
|
|
|
|
/// <para>
|
|
|
|
|
/// Instead of using this, consider querying for the platform's appropriate location
|
|
|
|
|
/// to store settings in.
|
|
|
|
|
/// </para>
|
|
|
|
|
/// </remarks>
|
2014-07-19 22:16:41 +00:00
|
|
|
|
public class WindowsRegistryStore : ISettingsStore, IDisposable {
|
|
|
|
|
|
2014-07-22 10:43:23 +00:00
|
|
|
|
/// <summary>Initializes a new settings store on the specified registry path</summary>
|
|
|
|
|
/// <param name="hive">Hive in which to look</param>
|
|
|
|
|
/// <param name="directory">Base path of the settings in the specified hive</param>
|
|
|
|
|
/// <param name="writable">Whether to open the registry in writable mode</param>
|
|
|
|
|
public WindowsRegistryStore(RegistryHive hive, string directory, bool writable = true) {
|
|
|
|
|
using(RegistryKey hiveKey = RegistryKey.OpenBaseKey(hive, RegistryView.Default)) {
|
|
|
|
|
this.rootKey = hiveKey.OpenSubKey(directory, writable);
|
|
|
|
|
}
|
|
|
|
|
this.writable = writable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>Initializes a new settings store on the specified registry key</summary>
|
|
|
|
|
/// <param name="rootKey">Registry key the settings are stored under</param>
|
|
|
|
|
/// <param name="writable">Whether the registry was opened in writable mode</param>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// This constructor takes ownership of the registry key. It will be disposed when
|
|
|
|
|
/// the settings store is disposed.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
public WindowsRegistryStore(RegistryKey rootKey, bool writable = true) {
|
|
|
|
|
this.rootKey = rootKey;
|
|
|
|
|
this.writable = writable;
|
|
|
|
|
}
|
2014-07-22 08:50:05 +00:00
|
|
|
|
|
2014-07-19 22:16:41 +00:00
|
|
|
|
/// <summary>Immediately releases all resources owned by the instance</summary>
|
|
|
|
|
public void Dispose() {
|
2014-07-22 10:43:23 +00:00
|
|
|
|
if(this.rootKey != null) {
|
|
|
|
|
this.rootKey.Dispose();
|
|
|
|
|
this.rootKey = null;
|
|
|
|
|
}
|
2014-07-19 22:16:41 +00:00
|
|
|
|
}
|
2014-07-19 11:04:19 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>Enumerates the categories defined in the configuration</summary>
|
|
|
|
|
/// <returns>An enumerable list of all used categories</returns>
|
2014-07-19 22:16:41 +00:00
|
|
|
|
public IEnumerable<string> EnumerateCategories() {
|
2014-07-22 10:43:23 +00:00
|
|
|
|
return this.rootKey.GetSubKeyNames();
|
2014-07-19 22:16:41 +00:00
|
|
|
|
}
|
2014-07-19 11:04:19 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>Enumerates the options stored under the specified category</summary>
|
|
|
|
|
/// <param name="category">Category whose options will be enumerated</param>
|
|
|
|
|
/// <returns>An enumerable list of all options in the category</returns>
|
2014-07-19 22:16:41 +00:00
|
|
|
|
public IEnumerable<OptionInfo> EnumerateOptions(string category = null) {
|
2014-07-22 10:43:23 +00:00
|
|
|
|
if(string.IsNullOrEmpty(category)) {
|
|
|
|
|
string[] valueNames = this.rootKey.GetValueNames();
|
|
|
|
|
for(int index = 0; index < valueNames.Length; ++index) {
|
|
|
|
|
yield return new OptionInfo() {
|
|
|
|
|
Name = valueNames[index],
|
|
|
|
|
OptionType = getBestMatchingType(this.rootKey, valueNames[index])
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
using(RegistryKey categoryKey = this.rootKey.OpenSubKey(category, this.writable)) {
|
2014-07-22 22:04:16 +00:00
|
|
|
|
if(categoryKey == null) {
|
|
|
|
|
yield break;
|
|
|
|
|
}
|
2014-07-22 10:43:23 +00:00
|
|
|
|
string[] valueNames = categoryKey.GetValueNames();
|
|
|
|
|
for(int index = 0; index < valueNames.Length; ++index) {
|
|
|
|
|
yield return new OptionInfo() {
|
|
|
|
|
Name = valueNames[index],
|
|
|
|
|
OptionType = getBestMatchingType(categoryKey, valueNames[index])
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-07-19 22:16:41 +00:00
|
|
|
|
}
|
2014-07-19 11:04:19 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>Retrieves the value of the specified option</summary>
|
|
|
|
|
/// <typeparam name="TValue">Type the option will be converted to</typeparam>
|
|
|
|
|
/// <param name="category">Category the option can be found in. Can be null.</param>
|
|
|
|
|
/// <param name="optionName">Name of the option that will be looked up</param>
|
|
|
|
|
/// <returns>The value of the option with the specified name</returns>
|
2014-07-19 22:16:41 +00:00
|
|
|
|
public TValue Get<TValue>(string category, string optionName) {
|
|
|
|
|
TValue value;
|
|
|
|
|
if(TryGet<TValue>(category, optionName, out value)) {
|
|
|
|
|
return value;
|
|
|
|
|
} else {
|
|
|
|
|
if(string.IsNullOrEmpty(category)) {
|
|
|
|
|
throw new KeyNotFoundException(
|
|
|
|
|
"There is no option named '" + optionName + "' in the registry"
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
throw new KeyNotFoundException(
|
|
|
|
|
"There is no option named '" + optionName + "' under the category '" +
|
|
|
|
|
category + "' in the registry"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-07-19 11:04:19 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>Tries to retrieve the value of the specified option</summary>
|
|
|
|
|
/// <typeparam name="TValue">Type the option will be converted to</typeparam>
|
|
|
|
|
/// <param name="category">Category the option can be found in. Can be null.</param>
|
|
|
|
|
/// <param name="optionName">Name of the option that will be looked up</param>
|
|
|
|
|
/// <param name="value">Will receive the value of the option, if found</param>
|
|
|
|
|
/// <returns>
|
|
|
|
|
/// True if the option existed and its value was written into the <paramref name="value" />
|
|
|
|
|
/// parameter, false otherwise
|
|
|
|
|
/// </returns>
|
2014-07-19 22:16:41 +00:00
|
|
|
|
public bool TryGet<TValue>(string category, string optionName, out TValue value) {
|
2014-07-22 10:43:23 +00:00
|
|
|
|
if(string.IsNullOrEmpty(category)) {
|
2014-07-22 11:10:14 +00:00
|
|
|
|
return tryGetValueFromKey(this.rootKey, optionName, out value);
|
2014-07-22 10:43:23 +00:00
|
|
|
|
} else {
|
2014-07-22 16:24:08 +00:00
|
|
|
|
RegistryKey categoryKey = this.rootKey.OpenSubKey(category, this.writable);
|
|
|
|
|
if(categoryKey == null) {
|
|
|
|
|
value = default(TValue);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2014-07-22 15:58:07 +00:00
|
|
|
|
using(categoryKey) {
|
|
|
|
|
return tryGetValueFromKey(categoryKey, optionName, out value);
|
2014-07-22 10:43:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-07-19 22:16:41 +00:00
|
|
|
|
}
|
2014-07-19 11:04:19 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>Saves an option in the settings store</summary>
|
|
|
|
|
/// <typeparam name="TValue">Type of value that will be saved</typeparam>
|
|
|
|
|
/// <param name="category">Category the option will be placed in. Can be null.</param>
|
|
|
|
|
/// <param name="optionName">Name of the option that will be saved</param>
|
|
|
|
|
/// <param name="value">The value under which the option will be saved</param>
|
2014-07-19 22:16:41 +00:00
|
|
|
|
public void Set<TValue>(string category, string optionName, TValue value) {
|
2014-07-22 15:58:07 +00:00
|
|
|
|
if(string.IsNullOrEmpty(category)) {
|
|
|
|
|
setValue(this.rootKey, optionName, value);
|
|
|
|
|
} else {
|
2014-07-22 16:24:08 +00:00
|
|
|
|
RegistryKey categoryKey = this.rootKey.OpenSubKey(category, this.writable);
|
|
|
|
|
if(categoryKey == null) {
|
|
|
|
|
categoryKey = this.rootKey.CreateSubKey(category);
|
|
|
|
|
}
|
2014-07-22 15:58:07 +00:00
|
|
|
|
using(categoryKey) {
|
|
|
|
|
setValue(categoryKey, optionName, value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-22 16:24:08 +00:00
|
|
|
|
/// <summary>Removes the option with the specified name</summary>
|
|
|
|
|
/// <param name="category">Category the option is found in. Can be null.</param>
|
|
|
|
|
/// <param name="optionName">Name of the option that will be removed</param>
|
|
|
|
|
/// <returns>True if the option was found and removed</returns>
|
|
|
|
|
public bool Remove(string category, string optionName) {
|
|
|
|
|
if(string.IsNullOrEmpty(category)) {
|
|
|
|
|
object value = this.rootKey.GetValue(optionName);
|
|
|
|
|
this.rootKey.DeleteValue(optionName, throwOnMissingValue: false);
|
|
|
|
|
return (value != null);
|
|
|
|
|
} else {
|
|
|
|
|
RegistryKey categoryKey = this.rootKey.OpenSubKey(category, this.writable);
|
|
|
|
|
if(categoryKey == null) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
using(categoryKey) {
|
|
|
|
|
object value = categoryKey.GetValue(optionName);
|
|
|
|
|
categoryKey.DeleteValue(optionName, throwOnMissingValue: false);
|
|
|
|
|
return (value != null);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-22 15:58:07 +00:00
|
|
|
|
/// <summary>Writes a setting to the registry</summary>
|
|
|
|
|
/// <typeparam name="TValue"></typeparam>
|
|
|
|
|
/// <param name="registryKey"></param>
|
|
|
|
|
/// <param name="optionName"></param>
|
|
|
|
|
/// <param name="value"></param>
|
|
|
|
|
private void setValue<TValue>(RegistryKey registryKey, string optionName, TValue value) {
|
|
|
|
|
if(typeof(TValue) == typeof(int)) {
|
|
|
|
|
registryKey.SetValue(optionName, value, RegistryValueKind.DWord);
|
|
|
|
|
} else if(typeof(TValue) == typeof(long)) {
|
|
|
|
|
registryKey.SetValue(optionName, value, RegistryValueKind.QWord);
|
|
|
|
|
} else if(typeof(TValue) == typeof(bool)) {
|
|
|
|
|
registryKey.SetValue(optionName, value, RegistryValueKind.DWord);
|
|
|
|
|
} else if(typeof(TValue) == typeof(string)) {
|
|
|
|
|
registryKey.SetValue(optionName, value, RegistryValueKind.String);
|
|
|
|
|
} else if(typeof(TValue) == typeof(string[])) {
|
|
|
|
|
registryKey.SetValue(optionName, value, RegistryValueKind.MultiString);
|
|
|
|
|
} else if(typeof(TValue) == typeof(byte[])) {
|
|
|
|
|
registryKey.SetValue(optionName, value, RegistryValueKind.Binary);
|
|
|
|
|
} else {
|
|
|
|
|
string valueAsString = (string)Convert.ChangeType(
|
|
|
|
|
value, typeof(string), CultureInfo.InvariantCulture
|
|
|
|
|
);
|
|
|
|
|
registryKey.SetValue(optionName, valueAsString, RegistryValueKind.String);
|
|
|
|
|
}
|
2014-07-19 22:16:41 +00:00
|
|
|
|
}
|
2014-07-19 11:04:19 +00:00
|
|
|
|
|
2014-07-22 11:10:14 +00:00
|
|
|
|
/// <summary>Tries to retrieve the value of a registry key if it exists</summary>
|
|
|
|
|
/// <typeparam name="TValue">Type of value the registry key is expected to have</typeparam>
|
|
|
|
|
/// <param name="categoryKey">Registry key the value is stored under</param>
|
|
|
|
|
/// <param name="optionName">Name of the option in the registry</param>
|
|
|
|
|
/// <param name="value">Will receive the value read from the registry</param>
|
|
|
|
|
/// <returns>True if the value was found, false otherwise</returns>
|
|
|
|
|
private bool tryGetValueFromKey<TValue>(
|
|
|
|
|
RegistryKey categoryKey, string optionName, out TValue value
|
|
|
|
|
) {
|
|
|
|
|
object valueAsObject = categoryKey.GetValue(optionName);
|
|
|
|
|
if(valueAsObject == null) {
|
|
|
|
|
value = default(TValue);
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
value = (TValue)Convert.ChangeType(
|
|
|
|
|
valueAsObject, typeof(TValue), CultureInfo.InvariantCulture
|
|
|
|
|
);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-22 10:43:23 +00:00
|
|
|
|
/// <summary>Figures out which .NET type best matches the registry value</summary>
|
|
|
|
|
/// <param name="categoryKey">Registry key the key is stored in</param>
|
|
|
|
|
/// <param name="optionName">Name of the option that will be retrieved</param>
|
|
|
|
|
/// <returns>The best matching .NET type for the registry key's value</returns>
|
|
|
|
|
private static Type getBestMatchingType(RegistryKey categoryKey, string optionName) {
|
|
|
|
|
RegistryValueKind valueKind = categoryKey.GetValueKind(optionName);
|
|
|
|
|
switch(valueKind) {
|
|
|
|
|
case RegistryValueKind.Binary: { return typeof(byte[]); }
|
|
|
|
|
case RegistryValueKind.DWord: { return typeof(int); }
|
|
|
|
|
case RegistryValueKind.QWord: { return typeof(long); }
|
|
|
|
|
case RegistryValueKind.MultiString: { return typeof(string[]); }
|
|
|
|
|
case RegistryValueKind.ExpandString:
|
2014-07-22 20:02:33 +00:00
|
|
|
|
case RegistryValueKind.String:
|
2014-07-22 10:43:23 +00:00
|
|
|
|
case RegistryValueKind.Unknown:
|
|
|
|
|
case RegistryValueKind.None:
|
|
|
|
|
default: { return typeof(string); }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>Key on which the registry store is operating</summary>
|
|
|
|
|
private RegistryKey rootKey;
|
|
|
|
|
/// <summary>Whether the user can write to the registry key</summary>
|
|
|
|
|
private bool writable;
|
|
|
|
|
|
2014-07-19 11:04:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-19 22:16:41 +00:00
|
|
|
|
} // namespace Nuclex.Support.Settings
|
2014-07-22 08:50:05 +00:00
|
|
|
|
|
|
|
|
|
#endif // WINDOWS
|