Merge master; at least partially.
[libdcp.git] / src / util.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef LIBDCP_UTIL_H
21 #define LIBDCP_UTIL_H
22
23 /** @file  src/util.h
24  *  @brief Utility methods.
25  */
26
27 #include <string>
28 #include <stdint.h>
29 #include <boost/shared_ptr.hpp>
30 #include <openjpeg.h>
31 #include "types.h"
32
33 namespace xmlpp {
34         class Element;
35 }
36
37 namespace libdcp {
38
39 class ARGBFrame;
40 class CertificateChain;
41 class GammaLUT;
42 class XYZsRGBLUT;
43
44 struct Size {
45         Size ()
46                 : width (0)
47                 , height (0)
48         {}
49
50         Size (int w, int h)
51                 : width (w)
52                 , height (h)
53         {}
54         
55         int width;
56         int height;
57 };
58         
59 extern bool operator== (Size const & a, Size const & b);
60 extern bool operator!= (Size const & a, Size const & b);
61
62 extern std::string make_uuid ();
63 extern std::string make_digest (std::string filename);
64 extern std::string content_kind_to_string (ContentKind kind);
65 extern ContentKind content_kind_from_string (std::string kind);
66 extern bool empty_or_white_space (std::string s);
67 extern opj_image_t* decompress_j2k (uint8_t* data, int64_t size, int reduce);
68 extern boost::shared_ptr<ARGBFrame> xyz_to_rgb (opj_image_t* xyz_frame, boost::shared_ptr<const GammaLUT>, boost::shared_ptr<const GammaLUT>);
69
70 extern void init ();
71
72 extern void sign (xmlpp::Element* parent, CertificateChain const & certificates, std::string const & signer_key);
73 extern void add_signature_value (xmlpp::Element* parent, CertificateChain const & certificates, std::string const & signer_key, std::string const & ns);
74 extern void add_signer (xmlpp::Element* parent, CertificateChain const & certificates, std::string const & ns);
75         
76 }
77
78 #endif