Hardware/CPU/CPUGroup.cs
author moel.mich
Thu, 12 Aug 2010 20:53:27 +0000
changeset 166 fa9dfbfc4145
parent 165 813d8bc3192f
child 167 b7cc9d09aefe
permissions -rw-r--r--
Changed the project files to Visual Studio 2010. Fixed some Code Analysis 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.Collections.Generic;
    40 using System.Globalization;
    41 using System.Diagnostics;
    42 using System.Text;
    43 
    44 namespace OpenHardwareMonitor.Hardware.CPU {
    45 
    46   internal class CPUGroup : IGroup { 
    47     private List<IHardware> hardware = new List<IHardware>();
    48 
    49     private CPUID[][][] threads;
    50 
    51     private CPUID[][] GetProcessorThreads() {
    52 
    53       List<CPUID> threads = new List<CPUID>();
    54       for (int i = 0; i < 32; i++) {
    55         try {
    56           threads.Add(new CPUID(i));
    57         } catch (ArgumentException) { }
    58       }
    59 
    60       SortedDictionary<uint, List<CPUID>> processors =
    61         new SortedDictionary<uint, List<CPUID>>();
    62       foreach (CPUID thread in threads) {
    63         List<CPUID> list;
    64         processors.TryGetValue(thread.ProcessorId, out list);
    65         if (list == null) {
    66           list = new List<CPUID>();
    67           processors.Add(thread.ProcessorId, list);
    68         }
    69         list.Add(thread);
    70       }
    71 
    72       CPUID[][] processorThreads = new CPUID[processors.Count][];
    73       int index = 0;
    74       foreach (List<CPUID> list in processors.Values) {
    75         processorThreads[index] = list.ToArray();
    76         index++;
    77       }
    78       return processorThreads;
    79     }
    80 
    81     private CPUID[][] GroupThreadsByCore(CPUID[] threads) {
    82 
    83       SortedDictionary<uint, List<CPUID>> cores = 
    84         new SortedDictionary<uint, List<CPUID>>();
    85       foreach (CPUID thread in threads) {
    86         List<CPUID> coreList;
    87         cores.TryGetValue(thread.CoreId, out coreList);
    88         if (coreList == null) {
    89           coreList = new List<CPUID>();
    90           cores.Add(thread.CoreId, coreList);
    91         }
    92         coreList.Add(thread);
    93       }
    94 
    95       CPUID[][] coreThreads = new CPUID[cores.Count][];
    96       int index = 0;
    97       foreach (List<CPUID> list in cores.Values) {
    98         coreThreads[index] = list.ToArray();
    99         index++;
   100       }
   101       return coreThreads;
   102     }
   103 
   104     public CPUGroup(ISettings settings) {
   105       // No implementation for cpuid on Unix systems
   106       int p = (int)System.Environment.OSVersion.Platform;
   107       if ((p == 4) || (p == 128)) 
   108         return;
   109       
   110       if (!WinRing0.IsCpuid())
   111         return;
   112 
   113       CPUID[][] processorThreads = GetProcessorThreads();
   114       this.threads = new CPUID[processorThreads.Length][][];
   115 
   116       int index = 0;
   117       foreach (CPUID[] threads in processorThreads) {
   118         if (threads.Length == 0)
   119           continue;
   120             
   121         CPUID[][] coreThreads = GroupThreadsByCore(threads);
   122 
   123         this.threads[index] = coreThreads;        
   124 
   125         switch (threads[0].Vendor) {
   126           case Vendor.Intel:
   127             hardware.Add(new IntelCPU(index, coreThreads, settings));
   128             break;
   129           case Vendor.AMD:
   130             switch (threads[0].Family) {
   131               case 0x0F:
   132                 hardware.Add(new AMD0FCPU(index, coreThreads, settings));
   133                 break;
   134               case 0x10:
   135                 hardware.Add(new AMD10CPU(index, coreThreads, settings));
   136                 break;
   137               default:
   138                 break;
   139             } break;
   140           default:
   141             break;
   142         }
   143 
   144         index++;
   145       }
   146     }
   147     
   148     public IHardware[] Hardware {
   149       get {
   150         return hardware.ToArray();
   151       }
   152     }
   153 
   154     private void AppendCpuidData(StringBuilder r, uint[,] data, uint offset) {
   155       for (int i = 0; i < data.GetLength(0); i++) {
   156         r.Append(" ");
   157         r.Append((i + offset).ToString("X8", CultureInfo.InvariantCulture));
   158         for (int j = 0; j < 4; j++) {
   159           r.Append("  ");
   160           r.Append(data[i, j].ToString("X8", CultureInfo.InvariantCulture));
   161         }
   162         r.AppendLine();
   163       }
   164     }
   165 
   166     public string GetReport() {
   167       if (threads == null)
   168         return null;
   169       
   170       StringBuilder r = new StringBuilder();
   171       
   172       r.AppendLine("CPUID");
   173       r.AppendLine();
   174 
   175       for (int i = 0; i < threads.Length; i++) {
   176 
   177         r.AppendLine("Processor " + i);
   178         r.AppendLine();
   179         r.AppendFormat("Processor Vendor: {0}{1}", threads[i][0][0].Vendor,
   180           Environment.NewLine);
   181         r.AppendFormat("Processor Brand: {0}{1}", threads[i][0][0].BrandString,
   182           Environment.NewLine);
   183         r.AppendFormat("Family: 0x{0}{1}", 
   184           threads[i][0][0].Family.ToString("X", CultureInfo.InvariantCulture), 
   185           Environment.NewLine);
   186         r.AppendFormat("Model: 0x{0}{1}",
   187           threads[i][0][0].Model.ToString("X", CultureInfo.InvariantCulture), 
   188           Environment.NewLine);
   189         r.AppendFormat("Stepping: 0x{0}{1}",
   190           threads[i][0][0].Stepping.ToString("X", CultureInfo.InvariantCulture), 
   191           Environment.NewLine);
   192         r.AppendLine();
   193 
   194         r.AppendLine("CPUID Return Values");
   195         r.AppendLine();
   196         for (int j = 0; j < threads[i].Length; j++)
   197           for (int k = 0; k < threads[i][j].Length; k++) {
   198             r.AppendLine(" CPU Thread: " + threads[i][j][k].Thread);
   199             r.AppendLine(" APIC ID: " + threads[i][j][k].ApicId);
   200             r.AppendLine(" Processor ID: " + threads[i][j][k].ProcessorId);
   201             r.AppendLine(" Core ID: " + threads[i][j][k].CoreId);
   202             r.AppendLine(" Thread ID: " + threads[i][j][k].ThreadId);
   203             r.AppendLine();
   204             r.AppendLine(" Function  EAX       EBX       ECX       EDX");
   205             AppendCpuidData(r, threads[i][j][k].Data, CPUID.CPUID_0);
   206             AppendCpuidData(r, threads[i][j][k].ExtData, CPUID.CPUID_EXT);
   207             r.AppendLine();
   208           }
   209       }
   210       return r.ToString(); 
   211     }
   212 
   213     public void Close() { }
   214   }
   215 }