Merge.
[dcpomatic.git] / src / lib / cross.h
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/lib/cross.h
22  *  @brief Cross-platform compatibility code.
23  */
24
25 #ifndef DCPOMATIC_CROSS_H
26 #define DCPOMATIC_CROSS_H
27
28 #ifdef DCPOMATIC_OSX
29 #include <IOKit/pwr_mgt/IOPMLib.h>
30 #endif
31 #include <boost/filesystem.hpp>
32
33 #ifdef DCPOMATIC_WINDOWS
34 #define WEXITSTATUS(w) (w)
35 #endif
36
37 class Log;
38
39 void dcpomatic_sleep (int);
40 extern std::string cpu_info ();
41 extern void run_ffprobe (boost::filesystem::path, boost::filesystem::path, boost::shared_ptr<Log>);
42 extern std::list<std::pair<std::string, std::string> > mount_info ();
43 extern boost::filesystem::path openssl_path ();
44 #ifdef DCPOMATIC_OSX
45 extern boost::filesystem::path app_contents ();
46 #endif
47 extern boost::filesystem::path shared_path ();
48 extern FILE * fopen_boost (boost::filesystem::path, std::string);
49 extern int dcpomatic_fseek (FILE *, int64_t, int);
50 extern void start_batch_converter (boost::filesystem::path dcpomatic);
51 extern int thread_id ();
52
53 /** @class Waker
54  *  @brief A class which tries to keep the computer awake on various operating systems.
55  *
56  *  Create a Waker to prevent sleep, and call ::nudge every so often (every minute or so).
57  *  Destroy the Waker to allow sleep again.
58  */
59 class Waker
60 {
61 public:
62         Waker ();
63         ~Waker ();
64
65         void nudge ();
66
67 private:
68 #ifdef DCPOMATIC_OSX
69         IOPMAssertionID _assertion_id;
70 #endif
71 };
72
73 #endif