]> git.sesse.net Git - casparcg/blob - common/os/windows/system_info.h
2.0.2: Updated file info headers.
[casparcg] / common / os / windows / system_info.h
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\r
5 *\r
6 * CasparCG is free software: you can redistribute it and/or modify\r
7 * it under the terms of the GNU General Public License as published by\r
8 * the Free Software Foundation, either version 3 of the License, or\r
9 * (at your option) any later version.\r
10 *\r
11 * CasparCG is distributed in the hope that it will be useful,\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 * GNU General Public License for more details.\r
15 *\r
16 * You should have received a copy of the GNU General Public License\r
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #pragma once\r
23 \r
24 #define NOMINMAX\r
25 #define WIN32_LEAN_AND_MEAN\r
26 \r
27 #include <windows.h>\r
28 \r
29 #include <string>\r
30 #include <sstream>\r
31 \r
32 namespace caspar {\r
33         \r
34 static std::wstring get_cpu_info()\r
35 {\r
36         std::wstring cpu_name = L"Unknown CPU";\r
37         HKEY hkey; \r
38         DWORD dwType, dwSize;\r
39         if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, TEXT("HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0"), 0, KEY_QUERY_VALUE, &hkey) == ERROR_SUCCESS)\r
40         {\r
41                 wchar_t p_name_str[1024];\r
42 \r
43                 dwType = REG_SZ;\r
44                 dwSize = sizeof(p_name_str);\r
45 \r
46                 if(RegQueryValueEx(hkey, TEXT("ProcessorNameString"), NULL, &dwType, (PBYTE)&p_name_str, &dwSize) == ERROR_SUCCESS)             \r
47                         cpu_name = p_name_str;          \r
48                  \r
49                 RegCloseKey(hkey);\r
50         }\r
51 \r
52 \r
53         SYSTEM_INFO sysinfo;\r
54         GetSystemInfo(&sysinfo);\r
55 \r
56         std::wstringstream s;\r
57 \r
58         s << cpu_name << L" Physical Threads: " << sysinfo.dwNumberOfProcessors;\r
59 \r
60         return s.str();\r
61 }\r
62 \r
63 static std::wstring get_system_product_name()\r
64 {\r
65         std::wstring system_product_name = L"Unknown System";\r
66         HKEY hkey; \r
67         DWORD dwType, dwSize;\r
68         if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, TEXT("HARDWARE\\DESCRIPTION\\System\\BIOS"), 0, KEY_QUERY_VALUE, &hkey) == ERROR_SUCCESS)\r
69         {\r
70                 wchar_t p_name_str[1024];\r
71 \r
72                 dwType = REG_SZ;\r
73                 dwSize = sizeof(p_name_str);\r
74 \r
75                 if(RegQueryValueEx(hkey, TEXT("SystemProductName"), NULL, &dwType, (PBYTE)&p_name_str, &dwSize) == ERROR_SUCCESS)               \r
76                         system_product_name = p_name_str;               \r
77                  \r
78                 RegCloseKey(hkey);\r
79         }\r
80 \r
81         return system_product_name;\r
82 }\r
83 \r
84 \r
85 }