Rename dcpomatic_sleep -> dcpomatic_sleep_seconds.
[dcpomatic.git] / src / lib / cross.h
1 /*
2     Copyright (C) 2012-2018 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 struct AVIOContext;
39
40 void dcpomatic_sleep_seconds (int);
41 extern std::string cpu_info ();
42 extern void run_ffprobe (boost::filesystem::path, boost::filesystem::path);
43 extern std::list<std::pair<std::string, std::string> > mount_info ();
44 extern boost::filesystem::path openssl_path ();
45 #ifdef DCPOMATIC_OSX
46 extern boost::filesystem::path app_contents ();
47 #endif
48 #ifdef DCPOMATIC_WINDOWS
49 extern void maybe_open_console ();
50 #endif
51 extern boost::filesystem::path shared_path ();
52 extern FILE * fopen_boost (boost::filesystem::path, std::string);
53 extern int dcpomatic_fseek (FILE *, int64_t, int);
54 extern void start_batch_converter (boost::filesystem::path dcpomatic);
55 extern void start_player (boost::filesystem::path dcpomatic);
56 extern uint64_t thread_id ();
57 extern int avio_open_boost (AVIOContext** s, boost::filesystem::path file, int flags);
58 extern boost::filesystem::path home_directory ();
59 extern std::string command_and_read (std::string cmd);
60 extern bool running_32_on_64 ();
61
62 /** @class Waker
63  *  @brief A class which tries to keep the computer awake on various operating systems.
64  *
65  *  Create a Waker to prevent sleep, and call nudge() every so often (every minute or so).
66  *  Destroy the Waker to allow sleep again.
67  */
68 class Waker
69 {
70 public:
71         Waker ();
72         ~Waker ();
73
74         void nudge ();
75
76 private:
77 #ifdef DCPOMATIC_OSX
78         IOPMAssertionID _assertion_id;
79 #endif
80 };
81
82 #endif