Hardware/Heatmaster/HeatmasterGroup.cs
author moel.mich
Mon, 23 Aug 2010 20:00:06 +0000
changeset 172 c9d8de472546
parent 171 81ab5e53122e
child 173 fb96c0ca3c2d
permissions -rw-r--r--
Fixed a few problems with the Heatmaster.
     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) 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.Collections.Generic;
    40 using System.IO.Ports;
    41 using System.Security;
    42 using System.Text;
    43 using System.Threading;
    44 using Microsoft.Win32;
    45 
    46 namespace OpenHardwareMonitor.Hardware.Heatmaster {
    47   internal class HeatmasterGroup : IGroup {
    48 
    49     private List<Heatmaster> hardware = new List<Heatmaster>();
    50     private StringBuilder report = new StringBuilder();
    51 
    52     private static string ReadLine(SerialPort port, int timeout) {
    53       int i = 0;
    54       StringBuilder builder = new StringBuilder();
    55       while (i < timeout) {
    56         while (port.BytesToRead > 0) {
    57           byte b = (byte)port.ReadByte();
    58           switch (b) {
    59             case 0xAA: return ((char)b).ToString();
    60             case 0x0D: return builder.ToString();
    61             default: builder.Append((char)b); break;
    62           }
    63         }
    64         i++;
    65         Thread.Sleep(1);
    66       }
    67       throw new TimeoutException();
    68     }
    69 
    70     private static string[] GetRegistryPortNames() {
    71       List<string> result = new List<string>();
    72       try {
    73         RegistryKey key = Registry.LocalMachine.OpenSubKey(
    74           @"SYSTEM\CurrentControlSet\Enum\USB\Vid_10c4&Pid_ea60&Mi_00");
    75         if (key != null) {
    76           foreach (string subKeyName in key.GetSubKeyNames()) {
    77             RegistryKey subKey =
    78               key.OpenSubKey(subKeyName + "\\" + "Device Parameters");
    79             if (subKey != null) {
    80               string name = subKey.GetValue("PortName") as string;
    81               if (name != null)
    82                 result.Add((string)name);
    83             }
    84           }
    85         }
    86       } catch (SecurityException) { }
    87       return result.ToArray();
    88     }
    89 
    90     public HeatmasterGroup(ISettings settings) {
    91       
    92       // No implementation for Heatmaster on Unix systems
    93       int p = (int)System.Environment.OSVersion.Platform;
    94       if ((p == 4) || (p == 128))
    95         return;
    96 
    97       string[] portNames = GetRegistryPortNames();      
    98       for (int i = portNames.Length - 1; i >= 0; i--) {
    99         try {
   100 
   101           SerialPort serialPort =
   102             new SerialPort(portNames[i], 38400, Parity.None, 8, StopBits.One);
   103           serialPort.NewLine = ((char)0x0D).ToString();
   104 
   105           bool isValid = false;
   106           report.Append("Port Name: "); report.AppendLine(portNames[i]);
   107 
   108           try {
   109             serialPort.Open();
   110           } catch (UnauthorizedAccessException) {
   111             report.AppendLine("Exception: Access Denied");
   112           }
   113 
   114           if (serialPort.IsOpen) {
   115             serialPort.DiscardInBuffer();
   116             serialPort.DiscardOutBuffer(); 
   117             serialPort.Write(new byte[] { 0xAA }, 0, 1);
   118 
   119             int j = 0;
   120             while (serialPort.BytesToRead == 0 && j < 10) {
   121               Thread.Sleep(20);
   122               j++;
   123             }
   124             if (serialPort.BytesToRead > 0) {
   125               bool flag = false;
   126               while (serialPort.BytesToRead > 0 && !flag) {
   127                 flag |= (serialPort.ReadByte() == 0xAA);
   128               }
   129               if (flag) {
   130                 serialPort.WriteLine("[0:0]RH");
   131                 try {
   132                   int k = 0;
   133                   int revision = 0;
   134                   while (k < 5) {
   135                     string line = ReadLine(serialPort, 100);
   136                     if (line.StartsWith("-[0:0]RH:")) {
   137                       int.TryParse(line.Substring(9), out revision);
   138                       break;
   139                     }
   140                     k++;
   141                   }
   142                   isValid = (revision == 770); 
   143                   if (!isValid) {
   144                     report.Append("Status: Wrong Hardware Revision " + 
   145                       revision.ToString());
   146                   }                 
   147                 } catch (TimeoutException) {
   148                   report.AppendLine("Status: Timeout Reading Revision");
   149                 }
   150               } else {
   151                 report.AppendLine("Status: Wrong Startflag");
   152               }
   153             } else {
   154               report.AppendLine("Status: No Response");
   155             }
   156             serialPort.DiscardInBuffer();
   157             serialPort.Close();
   158             serialPort.Dispose();
   159           } else {
   160             report.AppendLine("Status: Port not Open");
   161           }                          
   162           if (isValid) {
   163             report.AppendLine("Status: OK");
   164             hardware.Add(new Heatmaster(portNames[i], settings));
   165             return;
   166           }
   167         } catch (Exception e) {
   168           report.AppendLine(e.ToString());
   169         } 
   170         report.AppendLine();
   171       }
   172     }
   173 
   174     public IHardware[] Hardware {
   175       get {
   176         return hardware.ToArray();
   177       }
   178     }
   179 
   180     public string GetReport() {
   181       if (report.Length > 0) {
   182         report.Insert(0, "Serial Port Heatmaster" + Environment.NewLine +
   183           Environment.NewLine);
   184         report.AppendLine();
   185         return report.ToString();
   186       } else
   187         return null;
   188     }
   189 
   190     public void Close() {
   191       foreach (Heatmaster heatmaster in hardware)
   192         heatmaster.Close();
   193     }
   194   }
   195 }