Add write_string_to_file().
[libdcp.git] / src / util.h
1 /*
2     Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp 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     libdcp 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 libdcp.  If not, see <http://www.gnu.org/licenses/>.
18
19     In addition, as a special exception, the copyright holders give
20     permission to link the code of portions of this program with the
21     OpenSSL library under certain conditions as described in each
22     individual source file, and distribute linked combinations
23     including the two.
24
25     You must obey the GNU General Public License in all respects
26     for all of the code used other than OpenSSL.  If you modify
27     file(s) with this exception, you may extend this exception to your
28     version of the file(s), but you are not obligated to do so.  If you
29     do not wish to do so, delete this exception statement from your
30     version.  If you delete this exception statement from all source
31     files in the program, then also delete it here.
32 */
33
34
35 /** @file  src/util.h
36  *  @brief Utility methods and classes
37  */
38
39
40 #ifndef LIBDCP_UTIL_H
41 #define LIBDCP_UTIL_H
42
43
44 #include "array_data.h"
45 #include "local_time.h"
46 #include "warnings.h"
47 LIBDCP_DISABLE_WARNINGS
48 #include <asdcp/KM_log.h>
49 LIBDCP_ENABLE_WARNINGS
50 #include <boost/filesystem.hpp>
51 #include <boost/function.hpp>
52 #include <boost/optional.hpp>
53 #include <memory>
54 #include <string>
55 #include <stdint.h>
56
57
58 /* windows.h defines this but we want to use it */
59 #undef ERROR
60
61
62 #define LIBDCP_UNUSED(x) (void)(x)
63
64
65 namespace ASDCP {
66         class Dictionary;
67 }
68
69
70 namespace xmlpp {
71         class Element;
72         class Node;
73 }
74
75
76 namespace dcp {
77
78
79 class CertificateChain;
80 class GammaLUT;
81 class OpenJPEGImage;
82
83
84 extern std::string make_uuid ();
85
86 /** Create a digest for a file
87  *  @param filename File name
88  *  @param progress Optional progress reporting function, called with a number of bytes done
89  *  and a total number of bytes.
90  *  @return Digest
91  */
92 extern std::string make_digest(boost::filesystem::path filename, boost::function<void (int64_t, int64_t)>);
93
94 extern std::string make_digest (ArrayData data);
95
96 extern bool ids_equal (std::string a, std::string b);
97 extern std::string remove_urn_uuid (std::string raw);
98
99 /** Set up various bits that the library needs.  Should be called once
100  *  by client applications.
101  *
102  *  @param resources_directory Path to a directory containing the tags and xsd
103  *  directories from the source code; if none is specified libdcp will look
104  *  in the directory given by LIBDCP_RESOURCES or based on where the current
105  *  executable is.
106  */
107 extern void init (boost::optional<boost::filesystem::path> resources_directory = boost::optional<boost::filesystem::path>());
108
109 /** Decode a base64 string.  The base64 decode routine in KM_util.cpp
110  *  gives different values to both this and the command-line base64
111  *  for some inputs.  Not sure why.
112  *
113  *  @param in base64-encoded string
114  *  @param out Output buffer
115  *  @param out_length Length of output buffer
116  *  @return Number of characters written to the output buffer
117  */
118 extern int base64_decode (std::string const & in, unsigned char* out, int out_length);
119
120 extern boost::optional<boost::filesystem::path> relative_to_root (boost::filesystem::path root, boost::filesystem::path file);
121
122 extern std::string file_to_string (boost::filesystem::path, uintmax_t max_length = 1048576);
123 extern void write_string_to_file(std::string const& string, boost::filesystem::path const& path);
124
125 /** @param key RSA private key in PEM format (optionally with -----BEGIN... / -----END...)
126  *  @return SHA1 fingerprint of key
127  */
128 extern std::string private_key_fingerprint (std::string key);
129 extern xmlpp::Node* find_child (xmlpp::Node const * node, std::string name);
130 extern std::string openjpeg_version();
131 extern std::string spaces (int n);
132 extern void indent (xmlpp::Element* element, int initial);
133
134 /** @return true if the day represented by \ref a is less than or
135  *  equal to the one represented by \ref b, ignoring the time parts
136  */
137 extern bool day_less_than_or_equal (LocalTime a, LocalTime b);
138
139 /** @return true if the day represented by \ref a is greater than or
140  *  equal to the one represented by \ref b, ignoring the time parts
141  */
142 extern bool day_greater_than_or_equal (LocalTime a, LocalTime b);
143
144 /** Try quite hard to find a string which starts with \ref base and is
145  *  not in \ref existing
146  */
147 extern std::string unique_string (std::vector<std::string> existing, std::string base);
148
149 extern ASDCP::Dictionary const* asdcp_smpte_dict;
150
151 extern boost::filesystem::path directory_containing_executable ();
152 extern boost::filesystem::path resources_directory ();
153
154
155 class ASDCPErrorSuspender
156 {
157 public:
158         ASDCPErrorSuspender();
159         ~ASDCPErrorSuspender();
160
161 private:
162         Kumu::LogEntryList _log;
163         Kumu::ILogSink& _old;
164         Kumu::EntryListLogSink* _sink;
165 };
166
167
168 template <class From, class To>
169 void
170 add_to_container(To& container, From source)
171 {
172         std::copy(source.begin(), source.end(), std::back_inserter(container));
173 }
174
175
176 }
177
178
179 #endif