Use GetCommandLineW() to get a UTF16-encoded command line on Windows (#2248).
[dcpomatic.git] / src / lib / cross_unix.cc
1 /*
2     Copyright (C) 2012-2021 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
22 #include "cross.h"
23 #include <dcp/raw_convert.h>
24 #include <dcp/warnings.h>
25 LIBDCP_DISABLE_WARNINGS
26 extern "C" {
27 #include <libavformat/avio.h>
28 }
29 LIBDCP_ENABLE_WARNINGS
30
31
32 using std::string;
33
34
35 /** @param s Number of seconds to sleep for */
36 void
37 dcpomatic_sleep_seconds (int s)
38 {
39         sleep (s);
40 }
41
42
43 void
44 dcpomatic_sleep_milliseconds (int ms)
45 {
46         usleep (ms * 1000);
47 }
48
49
50 uint64_t
51 thread_id ()
52 {
53         return (uint64_t) pthread_self ();
54 }
55
56
57 int
58 avio_open_boost (AVIOContext** s, boost::filesystem::path file, int flags)
59 {
60         return avio_open (s, file.c_str(), flags);
61 }
62
63
64 boost::filesystem::path
65 home_directory ()
66 {
67         return getenv("HOME");
68 }
69
70
71 /** @return true if this process is a 32-bit one running on a 64-bit-capable OS */
72 bool
73 running_32_on_64 ()
74 {
75         /* I'm assuming nobody does this on Linux/macOS */
76         return false;
77 }
78
79
80 string
81 dcpomatic::get_process_id ()
82 {
83         return dcp::raw_convert<string>(getpid());
84 }
85
86
87 ArgFixer::ArgFixer(int argc, char** argv)
88         : _argc(argc)
89         , _argv(argv)
90 {
91
92 }
93