OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright 2008 The WebRTC Project Authors. All rights reserved. | |
3 * | |
4 * Use of this source code is governed by a BSD-style license | |
5 * that can be found in the LICENSE file in the root of the source | |
6 * tree. An additional intellectual property rights grant can be found | |
7 * in the file PATENTS. All contributing project authors may | |
8 * be found in the AUTHORS file in the root of the source tree. | |
9 */ | |
10 | |
11 #include "webrtc/base/systeminfo.h" | |
12 | |
13 #if defined(WEBRTC_WIN) | |
14 #include <winsock2.h> | |
15 #include <windows.h> | |
16 #ifndef EXCLUDE_D3D9 | |
17 #include <d3d9.h> | |
18 #endif | |
19 #include <intrin.h> // for __cpuid() | |
20 #elif defined(WEBRTC_MAC) && !defined(WEBRTC_IOS) | |
21 #include <ApplicationServices/ApplicationServices.h> | |
22 #include <CoreServices/CoreServices.h> | |
23 #elif defined(WEBRTC_LINUX) | |
24 #include <unistd.h> | |
25 #endif | |
26 #if defined(WEBRTC_MAC) | |
27 #include <sys/sysctl.h> | |
28 #endif | |
29 | |
30 #include "webrtc/base/basictypes.h" | |
31 #include "webrtc/base/common.h" | |
32 #include "webrtc/base/logging.h" | |
33 #include "webrtc/base/stringutils.h" | |
34 | |
35 namespace rtc { | |
36 | |
37 // See Also: http://msdn.microsoft.com/en-us/library/ms683194(v=vs.85).aspx | |
38 #if !defined(WEBRTC_WIN) | |
39 // TODO(fbarchard): Use gcc 4.4 provided cpuid intrinsic | |
40 // 32 bit fpic requires ebx be preserved | |
41 #if (defined(__pic__) || defined(__APPLE__)) && defined(__i386__) | |
42 static inline void __cpuid(int cpu_info[4], int info_type) { | |
43 __asm__ volatile ( // NOLINT | |
44 "mov %%ebx, %%edi\n" | |
45 "cpuid\n" | |
46 "xchg %%edi, %%ebx\n" | |
47 : "=a"(cpu_info[0]), "=D"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3]) | |
48 : "a"(info_type) | |
49 ); // NOLINT | |
50 } | |
51 #elif defined(__i386__) || defined(__x86_64__) | |
52 static inline void __cpuid(int cpu_info[4], int info_type) { | |
53 __asm__ volatile ( // NOLINT | |
54 "cpuid\n" | |
55 : "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3]) | |
56 : "a"(info_type) | |
57 ); // NOLINT | |
58 } | |
59 #endif | |
60 #endif // WEBRTC_WIN | |
61 | |
62 static int DetectNumberOfCores() { | |
63 // We fall back on assuming a single core in case of errors. | |
64 int number_of_cores = 1; | |
65 | |
66 #if defined(WEBRTC_WIN) | |
67 SYSTEM_INFO si; | |
68 GetSystemInfo(&si); | |
69 number_of_cores = static_cast<int>(si.dwNumberOfProcessors); | |
70 #elif defined(WEBRTC_LINUX) || defined(WEBRTC_ANDROID) | |
71 number_of_cores = static_cast<int>(sysconf(_SC_NPROCESSORS_ONLN)); | |
72 #elif defined(WEBRTC_MAC) | |
73 int name[] = {CTL_HW, HW_AVAILCPU}; | |
74 size_t size = sizeof(number_of_cores); | |
75 if (0 != sysctl(name, 2, &number_of_cores, &size, NULL, 0)) { | |
76 LOG(LS_ERROR) << "Failed to get number of cores"; | |
77 number_of_cores = 1; | |
78 } | |
79 #else | |
80 LOG(LS_ERROR) << "No function to get number of cores"; | |
81 #endif | |
82 | |
83 LOG(LS_INFO) << "Available number of cores: " << number_of_cores; | |
84 | |
85 return number_of_cores; | |
86 } | |
87 | |
88 // Statically cache the number of system cores available since if the process | |
89 // is running in a sandbox, we may only be able to read the value once (before | |
90 // the sandbox is initialized) and not thereafter. | |
91 // For more information see crbug.com/176522. | |
92 int SystemInfo::logical_cpus_ = 0; | |
93 | |
94 SystemInfo::SystemInfo() { | |
95 } | |
96 | |
97 // Return the number of cpu threads available to the system. | |
98 // static | |
99 int SystemInfo::GetMaxCpus() { | |
100 if (!logical_cpus_) | |
101 logical_cpus_ = DetectNumberOfCores(); | |
102 return logical_cpus_; | |
103 } | |
104 | |
105 // Return the number of cpus available to the process. Since affinity can be | |
106 // changed on the fly, do not cache this value. | |
107 // Can be affected by heat. | |
108 int SystemInfo::GetCurCpus() { | |
109 int cur_cpus = 0; | |
110 #if defined(WEBRTC_WIN) | |
111 DWORD_PTR process_mask = 0; | |
112 DWORD_PTR system_mask = 0; | |
113 ::GetProcessAffinityMask(::GetCurrentProcess(), &process_mask, &system_mask); | |
114 for (size_t i = 0; i < sizeof(DWORD_PTR) * 8; ++i) { | |
115 if (process_mask & 1) | |
116 ++cur_cpus; | |
117 process_mask >>= 1; | |
118 } | |
119 #elif defined(WEBRTC_MAC) | |
120 uint32_t sysctl_value; | |
121 size_t length = sizeof(sysctl_value); | |
122 int error = sysctlbyname("hw.ncpu", &sysctl_value, &length, NULL, 0); | |
123 cur_cpus = !error ? static_cast<int>(sysctl_value) : 1; | |
124 #else | |
125 // Linux, Solaris, WEBRTC_ANDROID | |
126 cur_cpus = GetMaxCpus(); | |
127 #endif | |
128 return cur_cpus; | |
129 } | |
130 | |
131 // Return the type of this CPU. | |
132 SystemInfo::Architecture SystemInfo::GetCpuArchitecture() { | |
133 #if defined(__arm__) || defined(_M_ARM) | |
134 return SI_ARCH_ARM; | |
135 #elif defined(__x86_64__) || defined(_M_X64) | |
136 return SI_ARCH_X64; | |
137 #elif defined(__i386__) || defined(_M_IX86) | |
138 return SI_ARCH_X86; | |
139 #else | |
140 return SI_ARCH_UNKNOWN; | |
141 #endif | |
142 } | |
143 | |
144 // Returns the vendor string from the cpu, e.g. "GenuineIntel", "AuthenticAMD". | |
145 // See "Intel Processor Identification and the CPUID Instruction" | |
146 // (Intel document number: 241618) | |
147 std::string SystemInfo::GetCpuVendor() { | |
148 #if defined(CPU_X86) | |
149 int cpu_info[4]; | |
150 __cpuid(cpu_info, 0); | |
151 cpu_info[0] = cpu_info[1]; // Reorder output | |
152 cpu_info[1] = cpu_info[3]; | |
153 // cpu_info[2] = cpu_info[2]; // Avoid -Werror=self-assign | |
154 cpu_info[3] = 0; | |
155 return std::string(reinterpret_cast<char*>(&cpu_info[0])); | |
156 #elif defined(CPU_ARM) | |
157 return "ARM"; | |
158 #else | |
159 return "Undefined"; | |
160 #endif | |
161 } | |
162 | |
163 // Returns the amount of installed physical memory in Bytes. Cacheable. | |
164 // Returns -1 on error. | |
165 int64_t SystemInfo::GetMemorySize() { | |
166 int64_t memory = -1; | |
167 | |
168 #if defined(WEBRTC_WIN) | |
169 MEMORYSTATUSEX status = {0}; | |
170 status.dwLength = sizeof(status); | |
171 | |
172 if (GlobalMemoryStatusEx(&status)) { | |
173 memory = status.ullTotalPhys; | |
174 } else { | |
175 LOG_GLE(LS_WARNING) << "GlobalMemoryStatusEx failed."; | |
176 } | |
177 | |
178 #elif defined(WEBRTC_MAC) | |
179 size_t len = sizeof(memory); | |
180 int error = sysctlbyname("hw.memsize", &memory, &len, NULL, 0); | |
181 if (error || memory == 0) | |
182 memory = -1; | |
183 #elif defined(WEBRTC_LINUX) | |
184 memory = static_cast<int64_t>(sysconf(_SC_PHYS_PAGES)) * | |
185 static_cast<int64_t>(sysconf(_SC_PAGESIZE)); | |
186 if (memory < 0) { | |
187 LOG(LS_WARNING) << "sysconf(_SC_PHYS_PAGES) failed." | |
188 << "sysconf(_SC_PHYS_PAGES) " << sysconf(_SC_PHYS_PAGES) | |
189 << "sysconf(_SC_PAGESIZE) " << sysconf(_SC_PAGESIZE); | |
190 memory = -1; | |
191 } | |
192 #endif | |
193 | |
194 return memory; | |
195 } | |
196 | |
197 // Return the name of the machine model we are currently running on. | |
198 // This is a human readable string that consists of the name and version | |
199 // number of the hardware, i.e 'MacBookAir1,1'. Returns an empty string if | |
200 // model can not be determined. | |
201 std::string SystemInfo::GetMachineModel() { | |
202 #if defined(WEBRTC_MAC) | |
203 char buffer[128]; | |
204 size_t length = sizeof(buffer); | |
205 int error = sysctlbyname("hw.model", buffer, &length, NULL, 0); | |
206 if (!error) | |
207 return std::string(buffer, length - 1); | |
208 return std::string(); | |
209 #else | |
210 return "Not available"; | |
211 #endif | |
212 } | |
213 | |
214 } // namespace rtc | |
OLD | NEW |