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 <dcp/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 #undef check
44
45 /** The maximum number of audio channels that we can have in a DCP */
46 #define MAX_DCP_AUDIO_CHANNELS 12
47 #define DCPOMATIC_HELLO "Boys, you gotta learn not to talk to nuns that way"
48 #define HISTORY_SIZE 10
49
50 class Job;
51 struct AVSubtitle;
52
53 extern std::string seconds_to_hms (int);
54 extern std::string seconds_to_approximate_hms (int);
55 extern void stacktrace (std::ostream &, int);
56 extern std::string dependency_version_summary ();
57 extern double seconds (struct timeval);
58 extern void dcpomatic_setup ();
59 extern void dcpomatic_setup_gettext_i18n (std::string);
60 extern std::vector<std::string> split_at_spaces_considering_quotes (std::string);
61 extern std::string md5_digest (std::vector<boost::filesystem::path>, boost::shared_ptr<Job>);
62 extern void ensure_ui_thread ();
63 extern std::string audio_channel_name (int);
64 extern bool valid_image_file (boost::filesystem::path);
65 #ifdef DCPOMATIC_WINDOWS
66 extern boost::filesystem::path mo_path ();
67 #endif
68 extern std::string tidy_for_filename (std::string);
69 extern dcp::Size fit_ratio_within (float ratio, dcp::Size, int);
70 extern std::string entities_to_text (std::string e);
71 extern std::map<std::string, std::string> split_get_request (std::string url);
72 extern int dcp_audio_frame_rate (int);
73 extern int stride_round_up (int, int const *, int);
74 extern int round_to (float n, int r);
75 extern std::multimap<std::string, std::string> read_key_value (std::istream& s);
76 extern int get_required_int (std::multimap<std::string, std::string> const & kv, std::string k);
77 extern float get_required_float (std::multimap<std::string, std::string> const & kv, std::string k);
78 extern std::string get_required_string (std::multimap<std::string, std::string> const & kv, std::string k);
79 extern int get_optional_int (std::multimap<std::string, std::string> const & kv, std::string k);
80 extern std::string get_optional_string (std::multimap<std::string, std::string> const & kv, std::string k);
81 extern void* wrapped_av_malloc (size_t);
82 extern int64_t divide_with_round (int64_t a, int64_t b);
83 extern ContentTimePeriod subtitle_period (AVSubtitle const &);
84
85 /** @class Socket
86  *  @brief A class to wrap a boost::asio::ip::tcp::socket with some things
87  *  that are useful for DCP-o-matic.
88  *
89  *  This class wraps some things that I could not work out how to do with boost;
90  *  most notably, sync read/write calls with timeouts.
91  */
92 class Socket
93 {
94 public:
95         Socket (int timeout = 30);
96         ~Socket ();
97
98         /** @return Our underlying socket */
99         boost::asio::ip::tcp::socket& socket () {
100                 return _socket;
101         }
102
103         void connect (boost::asio::ip::tcp::endpoint);
104         void accept (int);
105
106         void write (uint32_t n);
107         void write (uint8_t const * data, int size);
108         
109         void read (uint8_t* data, int size);
110         uint32_t read_uint32 ();
111         
112 private:
113         void check ();
114
115         Socket (Socket const &);
116
117         boost::asio::io_service _io_service;
118         boost::asio::deadline_timer _deadline;
119         boost::asio::ip::tcp::socket _socket;
120         boost::asio::ip::tcp::acceptor* _acceptor;
121         int _timeout;
122 };
123
124 extern int64_t video_frames_to_audio_frames (VideoContent::Frame v, float audio_sample_rate, float frames_per_second);
125
126 /** @class ScopedTemporary
127  *  @brief A temporary file which is deleted when the ScopedTemporary object goes out of scope.
128  */
129 class ScopedTemporary
130 {
131 public:
132         ScopedTemporary ();
133         ~ScopedTemporary ();
134
135         /** @return temporary filename */
136         boost::filesystem::path file () const {
137                 return _file;
138         }
139
140         char const * c_str () const;
141         FILE* open (char const *);
142         void close ();
143
144 private:
145         boost::filesystem::path _file;
146         FILE* _open;
147 };
148
149 #endif
150