Hardware/Parameter.cs
author moel.mich
Tue, 25 May 2010 18:57:28 +0000
changeset 127 76aaf45a01c7
parent 109 70d0c3102424
child 165 813d8bc3192f
permissions -rw-r--r--
Added a workaround for the "You must keep the stream open for the lifetime of the Image." problem of the Image.FromStream method. This also reduced the overall memory usage (private working set).
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@109
    71
      this.value = Utilities.Config.Get(Identifier.ToString(), 
moel@109
    72
        description.DefaultValue);
moel@109
    73
      this.isDefault = !Utilities.Config.Contains(Identifier.ToString());
moel@63
    74
    }
moel@63
    75
moel@63
    76
    public ISensor Sensor {
moel@63
    77
      get {
moel@63
    78
        return sensor;
moel@63
    79
      }
moel@63
    80
    }
moel@63
    81
moel@109
    82
    public Identifier Identifier {
moel@63
    83
      get {
moel@109
    84
        return new Identifier(sensor.Identifier, "parameter", 
moel@109
    85
          Name.Replace(" ", "").ToLower());
moel@63
    86
      }
moel@63
    87
    }
moel@63
    88
moel@63
    89
    public string Name { get { return description.Name; } }
moel@63
    90
moel@63
    91
    public string Description { get { return description.Description; } }
moel@63
    92
moel@63
    93
    public float Value {
moel@63
    94
      get {
moel@63
    95
        return value;
moel@63
    96
      }
moel@63
    97
      set {
moel@63
    98
        this.isDefault = false;
moel@63
    99
        this.value = value;        
moel@109
   100
        Utilities.Config.Set(Identifier.ToString(), value);
moel@63
   101
      }
moel@63
   102
    }
moel@63
   103
moel@63
   104
    public float DefaultValue { 
moel@63
   105
      get { return description.DefaultValue; } 
moel@63
   106
    }
moel@63
   107
moel@63
   108
    public bool IsDefault {
moel@63
   109
      get { return isDefault; }
moel@63
   110
      set {
moel@63
   111
        this.isDefault = value;
moel@63
   112
        if (value) {
moel@63
   113
          this.value = description.DefaultValue;
moel@109
   114
          Utilities.Config.Remove(Identifier.ToString());
moel@63
   115
        }
moel@63
   116
      }
moel@110
   117
    }
moel@110
   118
moel@110
   119
    public void Accept(IVisitor visitor) {
moel@110
   120
      visitor.VisitParameter(this);
moel@110
   121
    }
moel@110
   122
moel@110
   123
    public void Traverse(IVisitor visitor) { }
moel@63
   124
  }
moel@63
   125
}