Hardware/HDD/SSDIntel.cs
author moel.mich
Tue, 30 Dec 2014 22:47:39 +0000
changeset 431 0e46e3ca812a
parent 344 3145aadca3d2
permissions -rw-r--r--
Fixed the following issue (present only on 32-bit systems):

Version: 0.7.0.0

System.NullReferenceException: Object reference not set to an instance of an object.
at OpenHardwareMonitor.GUI.MainForm.timer_Tick(Object sender, EventArgs e)
at System.Windows.Forms.Timer.OnTick(EventArgs e)
at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

Common Language Runtime: 4.0.30319.18444
Operating System: Microsoft Windows NT 6.1.7601 Service Pack 1
Process Type: 32-Bit
     1 /*
     2  
     3   This Source Code Form is subject to the terms of the Mozilla Public
     4   License, v. 2.0. If a copy of the MPL was not distributed with this
     5   file, You can obtain one at http://mozilla.org/MPL/2.0/.
     6  
     7   Copyright (C) 2009-2012 Michael Möller <mmoeller@openhardwaremonitor.org>
     8 	Copyright (C) 2010 Paul Werelds
     9   Copyright (C) 2011 Roland Reinl <roland-reinl@gmx.de>
    10 	
    11 */
    12 
    13 using System.Collections.Generic;
    14 using OpenHardwareMonitor.Collections;
    15 
    16 namespace OpenHardwareMonitor.Hardware.HDD {
    17    
    18   [NamePrefix("INTEL SSD"), 
    19    RequireSmart(0xE1), RequireSmart(0xE8), RequireSmart(0xE9)]
    20   internal class SSDIntel : AbstractHarddrive {
    21 
    22     private static readonly IEnumerable<SmartAttribute> smartAttributes =
    23       new List<SmartAttribute> {
    24 
    25       new SmartAttribute(0x01, SmartNames.ReadErrorRate),
    26       new SmartAttribute(0x03, SmartNames.SpinUpTime),
    27       new SmartAttribute(0x04, SmartNames.StartStopCount, RawToInt),
    28       new SmartAttribute(0x05, SmartNames.ReallocatedSectorsCount),
    29       new SmartAttribute(0x09, SmartNames.PowerOnHours, RawToInt),
    30       new SmartAttribute(0x0C, SmartNames.PowerCycleCount, RawToInt),
    31       new SmartAttribute(0xAA, SmartNames.AvailableReservedSpace),
    32       new SmartAttribute(0xAB, SmartNames.ProgramFailCount),
    33       new SmartAttribute(0xAC, SmartNames.EraseFailCount),
    34       new SmartAttribute(0xB8, SmartNames.EndToEndError),
    35       new SmartAttribute(0xC0, SmartNames.UnsafeShutdownCount), 
    36       new SmartAttribute(0xE1, SmartNames.HostWrites, 
    37         (byte[] r, byte v, IReadOnlyArray<IParameter> p) 
    38           => { return RawToInt(r, v, p) / 0x20; }, 
    39         SensorType.Data, 0),
    40       new SmartAttribute(0xE8, SmartNames.RemainingLife, 
    41         null, SensorType.Level, 0),
    42       new SmartAttribute(0xE9, SmartNames.MediaWearOutIndicator),
    43       new SmartAttribute(0xF1, SmartNames.HostWrites,
    44         (byte[] r, byte v, IReadOnlyArray<IParameter> p) 
    45           => { return RawToInt(r, v, p) / 0x20; }, 
    46         SensorType.Data, 0),
    47       new SmartAttribute(0xF2, SmartNames.HostReads, 
    48         (byte[] r, byte v, IReadOnlyArray<IParameter> p) 
    49           => { return RawToInt(r, v, p) / 0x20; }, 
    50         SensorType.Data, 1),      
    51     };
    52 
    53     public SSDIntel(ISmart smart, string name, string firmwareRevision, 
    54       int index, ISettings settings)
    55       : base(smart, name, firmwareRevision, index, smartAttributes, settings) {}
    56   }
    57 }