b654be6df6e50ef9b1a1fd78edb82d332152c693
[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 <fstream>
21 #include <boost/algorithm/string.hpp>
22 #include "cross.h"
23 #ifdef DVDOMATIC_POSIX
24 #include <unistd.h>
25 #endif
26 #ifdef DVDOMATIC_WINDOWS
27 #include "windows.h"
28 #endif
29 #ifdef DVDOMATIC_OSX
30 #include <sys/sysctl.h>
31 #endif
32
33 using std::pair;
34 using std::string;
35
36 void
37 dvdomatic_sleep (int s)
38 {
39 #ifdef DVDOMATIC_POSIX
40         sleep (s);
41 #endif
42 #ifdef DVDOMATIC_WINDOWS
43         Sleep (s * 1000);
44 #endif
45 }
46
47 /** @return A pair containing CPU model name and the number of processors */
48 pair<string, int>
49 cpu_info ()
50 {
51         pair<string, int> info;
52         info.second = 0;
53         
54 #ifdef DVDOMATIC_LINUX
55         ifstream f ("/proc/cpuinfo");
56         while (f.good ()) {
57                 string l;
58                 getline (f, l);
59                 if (boost::algorithm::starts_with (l, "model name")) {
60                         string::size_type const c = l.find (':');
61                         if (c != string::npos) {
62                                 info.first = l.substr (c + 2);
63                         }
64                 } else if (boost::algorithm::starts_with (l, "processor")) {
65                         ++info.second;
66                 }
67         }
68 #endif
69
70 #ifdef DVDOMATIC_OSX
71         size_t N = sizeof (info.second);
72         sysctlbyname ("hw.ncpu", &info.second, &N, 0, 0);
73         char buffer[64];
74         N = sizeof (buffer);
75         if (sysctlbyname ("machdep.cpu.brand_string", buffer, &N, 0, 0) == 0) {
76                 info.first = buffer;
77         }
78 #endif          
79
80         return info;
81 }
82