Fixed ADL dll loading. The name of the dll is always atiadlxx, except when running as 32-bit app on 64-bit systems (atiadlxy in that case).
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 System.Management;
43 namespace OpenHardwareMonitor.Hardware.SMBIOS {
45 public class SMBIOSGroup : IGroup {
47 private Structure[] table;
49 private BIOSInformation biosInformation = null;
51 private BaseBoardInformation baseBoardInformation = null;
53 public SMBIOSGroup() {
54 int p = (int)System.Environment.OSVersion.Platform;
55 if ((p == 4) || (p == 128))
58 List<Structure> structureList = new List<Structure>();
61 ManagementObjectCollection collection = new ManagementObjectSearcher(
62 "root\\WMI", "SELECT SMBiosData FROM MSSMBios_RawSMBiosTables").Get();
65 foreach (ManagementObject mo in collection) {
66 raw = (byte[])mo["SMBiosData"];
70 if (raw != null && raw.Length > 0) {
72 byte type = raw[offset];
73 while (offset < raw.Length && type != 127) {
75 type = raw[offset]; offset++;
76 int length = raw[offset]; offset++;
77 ushort handle = (ushort)((raw[offset] << 8) | raw[offset + 1]);
80 byte[] data = new byte[length];
81 Array.Copy(raw, offset - 4, data, 0, length); offset += length - 4;
83 List<string> stringsList = new List<string>();
86 while (raw[offset] != 0) {
87 StringBuilder sb = new StringBuilder();
88 while (raw[offset] != 0) {
89 sb.Append((char)raw[offset]); offset++;
92 stringsList.Add(sb.ToString());
97 this.biosInformation = new BIOSInformation(
98 type, handle, data, stringsList.ToArray());
99 structureList.Add(this.biosInformation); break;
100 case 0x02: this.baseBoardInformation = new BaseBoardInformation(
101 type, handle, data, stringsList.ToArray());
102 structureList.Add(this.baseBoardInformation); break;
103 default: structureList.Add(new Structure(
104 type, handle, data, stringsList.ToArray())); break;
108 } catch (NotImplementedException) { }
110 table = structureList.ToArray();
113 public IHardware[] Hardware { get { return new IHardware[0]; } }
115 public string GetReport() {
116 StringBuilder r = new StringBuilder();
118 r.AppendLine("SMBIOS");
121 if (biosInformation != null) {
122 r.Append("BIOS Vendor: "); r.AppendLine(biosInformation.Vendor);
123 r.Append("BIOS Version: "); r.AppendLine(biosInformation.Version);
127 if (baseBoardInformation != null) {
128 r.Append("Mainboard Manufacturer: ");
129 r.AppendLine(baseBoardInformation.Manufacturer);
130 r.Append("Mainboard Name: ");
131 r.AppendLine(baseBoardInformation.ProductName);
138 public void Close() { }
140 public class Structure {
142 private ushort handle;
145 private string[] strings;
147 public Structure(byte type, ushort handle, byte[] data, string[] strings)
150 this.handle = handle;
152 this.strings = strings;
155 public byte Type { get { return type; } }
157 public ushort Handle { get { return handle; } }
160 public class BIOSInformation : Structure {
162 private string vendor = "";
163 private string version = "";
165 public BIOSInformation(byte type, ushort handle, byte[] data,
167 : base(type, handle, data, strings) {
169 if (data[0x04] > 0 && data[0x04] <= strings.Length)
170 vendor = strings[data[0x04] - 1];
172 if (data[0x05] > 0 && data[0x05] <= strings.Length)
173 version = strings[data[0x05] - 1];
176 public string Vendor { get { return vendor; } }
178 public string Version { get { return version; } }
181 public class BaseBoardInformation : Structure {
183 private string manufacturer = "";
184 private string productName = "";
186 public BaseBoardInformation(byte type, ushort handle, byte[] data,
188 : base(type, handle, data, strings) {
190 if (data[0x04] > 0 && data[0x04] <= strings.Length)
191 manufacturer = strings[data[0x04] - 1];
193 if (data[0x05] > 0 && data[0x05] <= strings.Length)
194 productName = strings[data[0x05] - 1];
197 public string Manufacturer { get { return manufacturer; } }
199 public string ProductName { get { return productName; } }