Changed minimizing to system tray on Windows systems.
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;
41 namespace OpenHardwareMonitor.Hardware {
43 public class Sensor : ISensor {
45 private string defaultName;
48 private SensorType sensorType;
49 private IHardware hardware;
54 private float? defaultLimit;
55 private Queue<ISensorEntry> entries =
56 new Queue<ISensorEntry>(MAX_MINUTES * 15);
58 private float sum = 0;
59 private int count = 0;
61 private const int MAX_MINUTES = 120;
63 private string GetIdentifier() {
64 return hardware.Identifier + "/" + sensorType.ToString().ToLower() +
68 public Sensor(string name, int index, SensorType sensorType,
70 : this(name, index, null, sensorType, hardware) { }
72 public Sensor(string name, int index, float? limit,
73 SensorType sensorType, IHardware hardware)
75 this.defaultName = name;
77 this.defaultLimit = limit;
78 this.sensorType = sensorType;
79 this.hardware = hardware;
81 Utilities.Config.Settings[GetIdentifier() + "/name"];
82 if (configName != null)
83 this.name = configName;
87 Utilities.Config.Settings[GetIdentifier() + "/limit"];
88 if (configLimit != null && configLimit != "")
89 this.limit = float.Parse(configLimit);
94 public SensorType SensorType {
95 get { return sensorType; }
107 Utilities.Config.Settings[GetIdentifier() + "/name"] = name;
112 get { return index; }
115 public float? Value {
120 while (entries.Count > 0 &&
121 (DateTime.Now - entries.Peek().Time).TotalMinutes > MAX_MINUTES)
124 if (value.HasValue) {
128 entries.Enqueue(new Entry(sum / count, DateTime.Now));
135 if (min > value || !min.HasValue)
137 if (max < value || !max.HasValue)
142 public float? Min { get { return min; } }
143 public float? Max { get { return max; } }
145 public float? Limit {
151 if (value.HasValue) {
153 Utilities.Config.Settings[GetIdentifier() + "/limit"] =
156 limit = defaultLimit;
157 Utilities.Config.Settings[GetIdentifier() + "/limit"] = "";
162 public IEnumerable<ISensorEntry> Plot {
163 get { return entries; }
166 public struct Entry : ISensorEntry {
168 private DateTime time;
170 public Entry(float value, DateTime time) {
175 public float Value { get { return value; } }
176 public DateTime Time { get { return time; } }