Hardware/Parameter.cs
author moel.mich
Sun, 08 Aug 2010 13:57:26 +0000
changeset 165 813d8bc3192f
parent 110 411b72b73d8f
child 166 fa9dfbfc4145
permissions -rw-r--r--
Refactored the hardware monitoring code into a library (Issue 101).
moel@63
     1
/*
moel@63
     2
  
moel@63
     3
  Version: MPL 1.1/GPL 2.0/LGPL 2.1
moel@63
     4
moel@63
     5
  The contents of this file are subject to the Mozilla Public License Version
moel@63
     6
  1.1 (the "License"); you may not use this file except in compliance with
moel@63
     7
  the License. You may obtain a copy of the License at
moel@63
     8
 
moel@63
     9
  http://www.mozilla.org/MPL/
moel@63
    10
moel@63
    11
  Software distributed under the License is distributed on an "AS IS" basis,
moel@63
    12
  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
moel@63
    13
  for the specific language governing rights and limitations under the License.
moel@63
    14
moel@63
    15
  The Original Code is the Open Hardware Monitor code.
moel@63
    16
moel@63
    17
  The Initial Developer of the Original Code is 
moel@63
    18
  Michael Möller <m.moeller@gmx.ch>.
moel@63
    19
  Portions created by the Initial Developer are Copyright (C) 2009-2010
moel@63
    20
  the Initial Developer. All Rights Reserved.
moel@63
    21
moel@63
    22
  Contributor(s):
moel@63
    23
moel@63
    24
  Alternatively, the contents of this file may be used under the terms of
moel@63
    25
  either the GNU General Public License Version 2 or later (the "GPL"), or
moel@63
    26
  the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
moel@63
    27
  in which case the provisions of the GPL or the LGPL are applicable instead
moel@63
    28
  of those above. If you wish to allow use of your version of this file only
moel@63
    29
  under the terms of either the GPL or the LGPL, and not to allow others to
moel@63
    30
  use your version of this file under the terms of the MPL, indicate your
moel@63
    31
  decision by deleting the provisions above and replace them with the notice
moel@63
    32
  and other provisions required by the GPL or the LGPL. If you do not delete
moel@63
    33
  the provisions above, a recipient may use your version of this file under
moel@63
    34
  the terms of any one of the MPL, the GPL or the LGPL.
moel@63
    35
 
moel@63
    36
*/
moel@63
    37
moel@63
    38
using System;
moel@63
    39
using System.Collections.Generic;
moel@63
    40
moel@63
    41
namespace OpenHardwareMonitor.Hardware {
moel@63
    42
moel@63
    43
  public struct ParameterDescription {
moel@63
    44
    private string name;
moel@63
    45
    private string description;
moel@63
    46
    private float defaultValue;    
moel@63
    47
moel@63
    48
    public ParameterDescription(string name, string description, 
moel@63
    49
      float defaultValue) {
moel@63
    50
      this.name = name;
moel@63
    51
      this.description = description;
moel@63
    52
      this.defaultValue = defaultValue;
moel@63
    53
    }
moel@63
    54
moel@63
    55
    public string Name { get { return name; } }
moel@63
    56
moel@63
    57
    public string Description { get { return description; } }
moel@63
    58
moel@63
    59
    public float DefaultValue { get { return defaultValue; } }
moel@63
    60
  }
moel@63
    61
moel@63
    62
  public class Parameter : IParameter {
moel@63
    63
    private ISensor sensor;
moel@63
    64
    private ParameterDescription description;
moel@63
    65
    private float value;
moel@63
    66
    private bool isDefault;
moel@165
    67
    private ISettings settings;
moel@63
    68
moel@165
    69
    public Parameter(ParameterDescription description, ISensor sensor, 
moel@165
    70
      ISettings settings) 
moel@165
    71
    {
moel@63
    72
      this.sensor = sensor;
moel@63
    73
      this.description = description;
moel@165
    74
      this.settings = settings;
moel@165
    75
      this.isDefault = !settings.Contains(Identifier.ToString());
moel@165
    76
      this.value = description.DefaultValue;
moel@165
    77
      if (!this.isDefault) {
moel@165
    78
        if (!float.TryParse(settings.Get(Identifier.ToString(), "0"),
moel@165
    79
          System.Globalization.NumberStyles.Float,
moel@165
    80
          System.Globalization.CultureInfo.InvariantCulture,
moel@165
    81
          out this.value))
moel@165
    82
          this.value = description.DefaultValue;
moel@165
    83
      }
moel@63
    84
    }
moel@63
    85
moel@63
    86
    public ISensor Sensor {
moel@63
    87
      get {
moel@63
    88
        return sensor;
moel@63
    89
      }
moel@63
    90
    }
moel@63
    91
moel@109
    92
    public Identifier Identifier {
moel@63
    93
      get {
moel@109
    94
        return new Identifier(sensor.Identifier, "parameter", 
moel@109
    95
          Name.Replace(" ", "").ToLower());
moel@63
    96
      }
moel@63
    97
    }
moel@63
    98
moel@63
    99
    public string Name { get { return description.Name; } }
moel@63
   100
moel@63
   101
    public string Description { get { return description.Description; } }
moel@63
   102
moel@63
   103
    public float Value {
moel@63
   104
      get {
moel@63
   105
        return value;
moel@63
   106
      }
moel@63
   107
      set {
moel@63
   108
        this.isDefault = false;
moel@165
   109
        this.value = value;
moel@165
   110
        this.settings.Set(Identifier.ToString(), value.ToString(
moel@165
   111
          System.Globalization.CultureInfo.InvariantCulture.NumberFormat));
moel@63
   112
      }
moel@63
   113
    }
moel@63
   114
moel@63
   115
    public float DefaultValue { 
moel@63
   116
      get { return description.DefaultValue; } 
moel@63
   117
    }
moel@63
   118
moel@63
   119
    public bool IsDefault {
moel@63
   120
      get { return isDefault; }
moel@63
   121
      set {
moel@63
   122
        this.isDefault = value;
moel@63
   123
        if (value) {
moel@63
   124
          this.value = description.DefaultValue;
moel@165
   125
          this.settings.Remove(Identifier.ToString());
moel@63
   126
        }
moel@63
   127
      }
moel@110
   128
    }
moel@110
   129
moel@110
   130
    public void Accept(IVisitor visitor) {
moel@110
   131
      visitor.VisitParameter(this);
moel@110
   132
    }
moel@110
   133
moel@110
   134
    public void Traverse(IVisitor visitor) { }
moel@63
   135
  }
moel@63
   136
}