Merge master.
[dcpomatic.git] / src / lib / util.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3     Copyright (C) 2000-2007 Paul Davis
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 /** @file src/util.h
22  *  @brief Some utility functions and classes.
23  */
24
25 #ifndef DCPOMATIC_UTIL_H
26 #define DCPOMATIC_UTIL_H
27
28 #include <string>
29 #include <vector>
30 #include <boost/shared_ptr.hpp>
31 #include <boost/asio.hpp>
32 #include <boost/optional.hpp>
33 #include <boost/filesystem.hpp>
34 #include <libdcp/util.h>
35 extern "C" {
36 #include <libavcodec/avcodec.h>
37 #include <libavfilter/avfilter.h>
38 }
39 #include "compose.hpp"
40 #include "types.h"
41 #include "video_content.h"
42
43 #ifdef DCPOMATIC_DEBUG
44 #define TIMING(...) _film->log()->microsecond_log (String::compose (__VA_ARGS__), Log::TIMING);
45 #else
46 #define TIMING(...)
47 #endif
48
49 #undef check
50
51 /** The maximum number of audio channels that we can cope with */
52 #define MAX_AUDIO_CHANNELS 6
53
54 #define DCPOMATIC_HELLO "Boys, you gotta learn not to talk to nuns that way"
55
56 namespace libdcp {
57         class Signer;
58 }
59
60 class Job;
61
62 extern std::string seconds_to_hms (int);
63 extern std::string seconds_to_approximate_hms (int);
64 extern void stacktrace (std::ostream &, int);
65 extern std::string dependency_version_summary ();
66 extern double seconds (struct timeval);
67 extern void dcpomatic_setup ();
68 extern void dcpomatic_setup_gettext_i18n (std::string);
69 extern std::vector<std::string> split_at_spaces_considering_quotes (std::string);
70 extern std::string md5_digest (std::vector<boost::filesystem::path>, boost::shared_ptr<Job>);
71 extern std::string md5_digest (void const *, int);
72 extern void ensure_ui_thread ();
73 extern std::string audio_channel_name (int);
74 extern bool valid_image_file (boost::filesystem::path);
75 #ifdef DCPOMATIC_WINDOWS
76 extern boost::filesystem::path mo_path ();
77 #endif
78 extern std::string tidy_for_filename (std::string);
79 extern boost::shared_ptr<const libdcp::Signer> make_signer ();
80 extern libdcp::Size fit_ratio_within (float ratio, libdcp::Size);
81
82 struct FrameRateChange
83 {
84         FrameRateChange (float, int);
85
86         /** @return factor by which to multiply a source frame rate
87             to get the effective rate after any skip or repeat has happened.
88         */
89         float factor () const {
90                 if (skip) {
91                         return 0.5;
92                 }
93
94                 return repeat;
95         }
96
97         /** true to skip every other frame */
98         bool skip;
99         /** number of times to use each frame (e.g. 1 is normal, 2 means repeat each frame once, and so on) */
100         int repeat;
101         /** true if this DCP will run its video faster or slower than the source
102          *  without taking into account `repeat' nor `skip'.
103          *  (e.g. change_speed will be true if
104          *          source is 29.97fps, DCP is 30fps
105          *          source is 14.50fps, DCP is 30fps
106          *  but not if
107          *          source is 15.00fps, DCP is 30fps
108          *          source is 12.50fps, DCP is 25fps)
109          */
110         bool change_speed;
111
112         /** Amount by which the video is being sped-up in the DCP; e.g. for a
113          *  24fps source in a 25fps DCP this would be 25/24.
114          */
115         float speed_up;
116
117         std::string description;
118 };
119
120 extern int dcp_audio_frame_rate (int);
121 extern int stride_round_up (int, int const *, int);
122 extern DCPTime time_round_up (DCPTime, DCPTime);
123 extern std::multimap<std::string, std::string> read_key_value (std::istream& s);
124 extern int get_required_int (std::multimap<std::string, std::string> const & kv, std::string k);
125 extern float get_required_float (std::multimap<std::string, std::string> const & kv, std::string k);
126 extern std::string get_required_string (std::multimap<std::string, std::string> const & kv, std::string k);
127 extern int get_optional_int (std::multimap<std::string, std::string> const & kv, std::string k);
128 extern std::string get_optional_string (std::multimap<std::string, std::string> const & kv, std::string k);
129 extern void* wrapped_av_malloc (size_t);
130
131 /** @class Socket
132  *  @brief A class to wrap a boost::asio::ip::tcp::socket with some things
133  *  that are useful for DCP-o-matic.
134  *
135  *  This class wraps some things that I could not work out how to do with boost;
136  *  most notably, sync read/write calls with timeouts.
137  */
138 class Socket
139 {
140 public:
141         Socket (int timeout = 30);
142         ~Socket ();
143
144         /** @return Our underlying socket */
145         boost::asio::ip::tcp::socket& socket () {
146                 return _socket;
147         }
148
149         void connect (boost::asio::ip::tcp::endpoint);
150         void accept (int);
151
152         void write (uint32_t n);
153         void write (uint8_t const * data, int size);
154         
155         void read (uint8_t* data, int size);
156         uint32_t read_uint32 ();
157         
158 private:
159         void check ();
160
161         Socket (Socket const &);
162
163         boost::asio::io_service _io_service;
164         boost::asio::deadline_timer _deadline;
165         boost::asio::ip::tcp::socket _socket;
166         boost::asio::ip::tcp::acceptor* _acceptor;
167         int _timeout;
168 };
169
170 extern int64_t video_frames_to_audio_frames (VideoFrame v, float audio_sample_rate, float frames_per_second);
171
172 class LocaleGuard
173 {
174 public:
175         LocaleGuard ();
176         ~LocaleGuard ();
177         
178 private:
179         char* _old;
180 };
181
182
183 #endif
184