Hardware/HDD/HDD.cs
author moel.mich
Tue, 21 Sep 2010 20:32:36 +0000
changeset 195 0ee888c485d5
parent 176 c16fd81b520a
child 218 194186efdde9
permissions -rw-r--r--
Refactored some of the hardware monitoring code and fixed a few code inspection warnings.
     1 /*
     2   
     3   Version: MPL 1.1/GPL 2.0/LGPL 2.1
     4 
     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
     8  
     9   http://www.mozilla.org/MPL/
    10 
    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.
    14 
    15   The Original Code is the Open Hardware Monitor code.
    16 
    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.
    21 
    22   Contributor(s):
    23 
    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.
    35  
    36 */
    37 
    38 using System;
    39 using System.Globalization;
    40 
    41 namespace OpenHardwareMonitor.Hardware.HDD {
    42   internal class HDD : IHardware {
    43 
    44     private const int UPDATE_DIVIDER = 30; // update only every 30s
    45 
    46     private readonly string name;
    47     private readonly IntPtr handle;
    48     private readonly int drive;
    49     private readonly int attribute;    
    50     private readonly Sensor temperature;
    51     private int count;
    52     
    53 
    54     public HDD(string name, IntPtr handle, int drive, int attribute, 
    55       ISettings settings) 
    56     {
    57       this.name = name;
    58       this.handle = handle;
    59       this.drive = drive;
    60       this.attribute = attribute;
    61       this.count = 0;
    62       this.temperature = new Sensor("HDD", 0, SensorType.Temperature, this, 
    63         settings);
    64       Update();
    65     }
    66 
    67 
    68     public string Name {
    69       get { return name; }
    70     }
    71 
    72     public Identifier Identifier {
    73       get { 
    74         return new Identifier("hdd", 
    75           drive.ToString(CultureInfo.InvariantCulture)); 
    76       }
    77     }
    78 
    79     public HardwareType HardwareType {
    80       get { return HardwareType.HDD; }
    81     }
    82 
    83     public IHardware[] SubHardware {
    84       get { return new IHardware[0]; }
    85     }
    86 
    87     public virtual IHardware Parent {
    88       get { return null; }
    89     }
    90 
    91     public ISensor[] Sensors {
    92       get {
    93         return new ISensor[] { temperature };
    94       }
    95     }
    96 
    97     public string GetReport() {
    98       return null;
    99     }
   100 
   101     public void Update() {
   102       if (count == 0) {
   103         SMART.DriveAttribute[] attributes = SMART.ReadSmart(handle, drive);
   104         if (attributes != null && attribute < attributes.Length) 
   105           temperature.Value = attributes[attribute].RawValue[0];
   106       } else {
   107         temperature.Value = temperature.Value;
   108       }
   109 
   110       count++; count %= UPDATE_DIVIDER; 
   111     }
   112 
   113     public void Close() {
   114       SMART.CloseHandle(handle);
   115     }
   116 
   117     #pragma warning disable 67
   118     public event SensorEventHandler SensorAdded;
   119     public event SensorEventHandler SensorRemoved;
   120     #pragma warning restore 67    
   121 
   122     public void Accept(IVisitor visitor) {
   123       if (visitor == null)
   124         throw new ArgumentNullException("visitor");
   125       visitor.VisitHardware(this);
   126     }
   127 
   128     public void Traverse(IVisitor visitor) { }
   129   }
   130 }