Detect CPU info on OS X.
[dcpomatic.git] / src / lib / cross.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "cross.h"
21 #ifdef DVDOMATIC_POSIX
22 #include <unistd.h>
23 #endif
24 #ifdef DVDOMATIC_WINDOWS
25 #include "windows.h"
26 #endif
27 #ifdef DVDOMATIC_OSX
28 #include <sys/sysctl.h>
29 #endif
30
31 using std::pair;
32 using std::string;
33
34 void
35 dvdomatic_sleep (int s)
36 {
37 #ifdef DVDOMATIC_POSIX
38         sleep (s);
39 #endif
40 #ifdef DVDOMATIC_WINDOWS
41         Sleep (s * 1000);
42 #endif
43 }
44
45 /** @return A pair containing CPU model name and the number of processors */
46 pair<string, int>
47 cpu_info ()
48 {
49         pair<string, int> info;
50         info.second = 0;
51         
52 #ifdef DVDOMATIC_LINUX
53         ifstream f (N_("/proc/cpuinfo"));
54         while (f.good ()) {
55                 string l;
56                 getline (f, l);
57                 if (boost::algorithm::starts_with (l, N_("model name"))) {
58                         string::size_type const c = l.find (':');
59                         if (c != string::npos) {
60                                 info.first = l.substr (c + 2);
61                         }
62                 } else if (boost::algorithm::starts_with (l, N_("processor"))) {
63                         ++info.second;
64                 }
65         }
66 #endif
67
68 #ifdef DVDOMATIC_OSX
69         size_t N = sizeof (info.second);
70         sysctlbyname ("hw.ncpu", &info.second, &N, 0, 0);
71         char buffer[64];
72         N = sizeof (buffer);
73         if (sysctlbyname ("machdep.cpu.brand_string", buffer, &N, 0, 0) == 0) {
74                 info.first = buffer;
75         }
76 #endif          
77
78         return info;
79 }
80