Hardware/Parameter.cs
author moel.mich
Tue, 09 Mar 2010 22:27:10 +0000
changeset 79 9cdbe1d8d12a
child 109 70d0c3102424
permissions -rw-r--r--
Changed the CPU clock calculation. If no invariant TSC is available, then the max CPU clock is estimated at startup under load, otherwise an average over one second is used.
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@63
    67
moel@63
    68
    public Parameter(ParameterDescription description, ISensor sensor) {
moel@63
    69
      this.sensor = sensor;
moel@63
    70
      this.description = description;
moel@63
    71
      this.value = Utilities.Config.Get(Identifier, description.DefaultValue);
moel@63
    72
      this.isDefault = !Utilities.Config.Contains(Identifier);
moel@63
    73
    }
moel@63
    74
moel@63
    75
    public ISensor Sensor {
moel@63
    76
      get {
moel@63
    77
        return sensor;
moel@63
    78
      }
moel@63
    79
    }
moel@63
    80
moel@63
    81
    public string Identifier {
moel@63
    82
      get {
moel@63
    83
        return sensor.Identifier + "/parameter/" + 
moel@63
    84
          Name.Replace(" ", "").ToLower();
moel@63
    85
      }
moel@63
    86
    }
moel@63
    87
moel@63
    88
    public string Name { get { return description.Name; } }
moel@63
    89
moel@63
    90
    public string Description { get { return description.Description; } }
moel@63
    91
moel@63
    92
    public float Value {
moel@63
    93
      get {
moel@63
    94
        return value;
moel@63
    95
      }
moel@63
    96
      set {
moel@63
    97
        this.isDefault = false;
moel@63
    98
        this.value = value;        
moel@63
    99
        Utilities.Config.Set(Identifier, value);
moel@63
   100
      }
moel@63
   101
    }
moel@63
   102
moel@63
   103
    public float DefaultValue { 
moel@63
   104
      get { return description.DefaultValue; } 
moel@63
   105
    }
moel@63
   106
moel@63
   107
    public bool IsDefault {
moel@63
   108
      get { return isDefault; }
moel@63
   109
      set {
moel@63
   110
        this.isDefault = value;
moel@63
   111
        if (value) {
moel@63
   112
          this.value = description.DefaultValue;
moel@63
   113
          Utilities.Config.Remove(Identifier);
moel@63
   114
        }
moel@63
   115
      }
moel@63
   116
    }   
moel@63
   117
  }
moel@63
   118
}