Fixed the version number in the AboutBox.
3 Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 The contents of this file are subject to the Mozilla Public License Version
6 1.1 (the "License"); you may not use this file except in compliance with
7 the License. You may obtain a copy of the License at
9 http://www.mozilla.org/MPL/
11 Software distributed under the License is distributed on an "AS IS" basis,
12 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 for the specific language governing rights and limitations under the License.
15 The Original Code is the Open Hardware Monitor code.
17 The Initial Developer of the Original Code is
18 Michael Möller <m.moeller@gmx.ch>.
19 Portions created by the Initial Developer are Copyright (C) 2009-2010
20 the Initial Developer. All Rights Reserved.
24 Alternatively, the contents of this file may be used under the terms of
25 either the GNU General Public License Version 2 or later (the "GPL"), or
26 the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 in which case the provisions of the GPL or the LGPL are applicable instead
28 of those above. If you wish to allow use of your version of this file only
29 under the terms of either the GPL or the LGPL, and not to allow others to
30 use your version of this file under the terms of the MPL, indicate your
31 decision by deleting the provisions above and replace them with the notice
32 and other provisions required by the GPL or the LGPL. If you do not delete
33 the provisions above, a recipient may use your version of this file under
34 the terms of any one of the MPL, the GPL or the LGPL.
39 using System.Collections.Generic;
40 using OpenHardwareMonitor.Utilities;
42 namespace OpenHardwareMonitor.Hardware {
44 public class Sensor : ISensor {
46 private string defaultName;
49 private SensorType sensorType;
50 private IHardware hardware;
51 private ReadOnlyArray<IParameter> parameters;
56 private float? defaultLimit;
57 private Queue<ISensorEntry> entries =
58 new Queue<ISensorEntry>(MAX_MINUTES * 15);
60 private float sum = 0;
61 private int count = 0;
63 private const int MAX_MINUTES = 120;
65 public Sensor(string name, int index, SensorType sensorType,
66 IHardware hardware) : this(name, index, null, sensorType, hardware,
67 new ParameterDescription[0]) { }
69 public Sensor(string name, int index, float? limit,
70 SensorType sensorType, IHardware hardware) : this(name, index, limit,
71 sensorType, hardware, new ParameterDescription[0]) { }
73 public Sensor(string name, int index, float? limit, SensorType sensorType,
74 IHardware hardware, ParameterDescription[] parameterDescriptions)
76 this.defaultName = name;
78 this.defaultLimit = limit;
79 this.sensorType = sensorType;
80 this.hardware = hardware;
81 Parameter[] parameters = new Parameter[parameterDescriptions.Length];
82 for (int i = 0; i < parameters.Length; i++ )
83 parameters[i] = new Parameter(parameterDescriptions[i], this);
84 this.parameters = parameters;
86 string configName = Config.Settings[Identifier + "/name"];
87 if (configName != null)
88 this.name = configName;
91 string configLimit = Config.Settings[Identifier + "/limit"];
92 if (configLimit != null && configLimit != "")
93 this.limit = float.Parse(configLimit);
98 public IHardware Hardware {
99 get { return hardware; }
102 public SensorType SensorType {
103 get { return sensorType; }
106 public string Identifier {
108 return hardware.Identifier + "/" + sensorType.ToString().ToLower() +
122 Config.Settings[Identifier + "/name"] = name;
127 get { return index; }
130 public IReadOnlyArray<IParameter> Parameters {
131 get { return parameters; }
134 public float? Value {
139 while (entries.Count > 0 &&
140 (DateTime.Now - entries.Peek().Time).TotalMinutes > MAX_MINUTES)
143 if (value.HasValue) {
147 entries.Enqueue(new Entry(sum / count, DateTime.Now));
154 if (min > value || !min.HasValue)
156 if (max < value || !max.HasValue)
161 public float? Min { get { return min; } }
162 public float? Max { get { return max; } }
164 public float? Limit {
170 if (value.HasValue) {
172 Config.Settings[Identifier + "/limit"] =
175 limit = defaultLimit;
176 Config.Settings[Identifier + "/limit"] = "";
181 public IEnumerable<ISensorEntry> Plot {
182 get { return entries; }
185 public struct Entry : ISensorEntry {
187 private DateTime time;
189 public Entry(float value, DateTime time) {
194 public float Value { get { return value; } }
195 public DateTime Time { get { return time; } }