1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/Utilities/Configuration.cs Tue Jan 26 22:37:48 2010 +0000
1.3 @@ -0,0 +1,133 @@
1.4 +/*
1.5 +
1.6 + Version: MPL 1.1/GPL 2.0/LGPL 2.1
1.7 +
1.8 + The contents of this file are subject to the Mozilla Public License Version
1.9 + 1.1 (the "License"); you may not use this file except in compliance with
1.10 + the License. You may obtain a copy of the License at
1.11 +
1.12 + http://www.mozilla.org/MPL/
1.13 +
1.14 + Software distributed under the License is distributed on an "AS IS" basis,
1.15 + WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
1.16 + for the specific language governing rights and limitations under the License.
1.17 +
1.18 + The Original Code is the Open Hardware Monitor code.
1.19 +
1.20 + The Initial Developer of the Original Code is
1.21 + Michael Möller <m.moeller@gmx.ch>.
1.22 + Portions created by the Initial Developer are Copyright (C) 2009-2010
1.23 + the Initial Developer. All Rights Reserved.
1.24 +
1.25 + Contributor(s):
1.26 +
1.27 + Alternatively, the contents of this file may be used under the terms of
1.28 + either the GNU General Public License Version 2 or later (the "GPL"), or
1.29 + the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
1.30 + in which case the provisions of the GPL or the LGPL are applicable instead
1.31 + of those above. If you wish to allow use of your version of this file only
1.32 + under the terms of either the GPL or the LGPL, and not to allow others to
1.33 + use your version of this file under the terms of the MPL, indicate your
1.34 + decision by deleting the provisions above and replace them with the notice
1.35 + and other provisions required by the GPL or the LGPL. If you do not delete
1.36 + the provisions above, a recipient may use your version of this file under
1.37 + the terms of any one of the MPL, the GPL or the LGPL.
1.38 +
1.39 +*/
1.40 +
1.41 +using System;
1.42 +using System.Collections.Generic;
1.43 +using System.IO;
1.44 +
1.45 +namespace OpenHardwareMonitor.Utilities {
1.46 +
1.47 + public sealed class Config {
1.48 + private static readonly Config instance = new Config();
1.49 +
1.50 + private string fileName;
1.51 +
1.52 + private System.Configuration.Configuration config;
1.53 +
1.54 + private Config() {
1.55 + this.fileName = Path.ChangeExtension(
1.56 + System.Windows.Forms.Application.ExecutablePath, ".config");
1.57 + System.Configuration.ExeConfigurationFileMap fileMap =
1.58 + new System.Configuration.ExeConfigurationFileMap();
1.59 + fileMap.ExeConfigFilename = fileName;
1.60 + config = System.Configuration.ConfigurationManager.
1.61 + OpenMappedExeConfiguration(fileMap,
1.62 + System.Configuration.ConfigurationUserLevel.None);
1.63 + }
1.64 +
1.65 + ~Config() {
1.66 + string tempName = Path.ChangeExtension(fileName, ".tmp");
1.67 +
1.68 + if (File.Exists(tempName))
1.69 + File.Delete(tempName);
1.70 + try {
1.71 + config.SaveAs(tempName);
1.72 + if (File.Exists(fileName) && File.Exists(tempName))
1.73 + File.Delete(fileName);
1.74 + File.Move(tempName, fileName);
1.75 + } catch (System.Configuration.ConfigurationErrorsException) { }
1.76 + }
1.77 +
1.78 + public static Config Settings {
1.79 + get {
1.80 + return instance;
1.81 + }
1.82 + }
1.83 +
1.84 + public string this[string name] {
1.85 + get {
1.86 + System.Configuration.KeyValueConfigurationElement element =
1.87 + config.AppSettings.Settings[name];
1.88 + if (element != null)
1.89 + return element.Value;
1.90 + else
1.91 + return null;
1.92 + }
1.93 + set {
1.94 + config.AppSettings.Settings.Remove(name);
1.95 + config.AppSettings.Settings.Add(name, value);
1.96 + }
1.97 + }
1.98 +
1.99 + public static bool Contains(string name) {
1.100 + System.Configuration.KeyValueConfigurationElement element =
1.101 + instance.config.AppSettings.Settings[name];
1.102 + return element != null;
1.103 + }
1.104 +
1.105 + public static void Set(string name, bool value) {
1.106 + instance[name] = value ? "true" : "false";
1.107 + }
1.108 +
1.109 + public static bool Get(string name, bool value) {
1.110 + System.Configuration.KeyValueConfigurationElement element =
1.111 + instance.config.AppSettings.Settings[name];
1.112 + if (element == null)
1.113 + return value;
1.114 + else
1.115 + return element.Value == "true";
1.116 + }
1.117 +
1.118 + public static void Set(string name, int value) {
1.119 + instance[name] = value.ToString();
1.120 + }
1.121 +
1.122 + public static int Get(string name, int value) {
1.123 + System.Configuration.KeyValueConfigurationElement element =
1.124 + instance.config.AppSettings.Settings[name];
1.125 + if (element == null)
1.126 + return value;
1.127 + else {
1.128 + int parsedValue;
1.129 + if (int.TryParse(element.Value, out parsedValue))
1.130 + return parsedValue;
1.131 + else
1.132 + return value;
1.133 + }
1.134 + }
1.135 + }
1.136 +}