Bv2.1 7.2.3: Check that subtitle <StartTime> exists and is 0.
[libdcp.git] / src / locale_convert.h
1 /*
2     Copyright (C) 2016 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 #ifndef LIBDCP_LOCALE_CONVERT_H
35 #define LIBDCP_LOCALE_CONVERT_H
36
37 #include "util.h"
38 #include <boost/filesystem.hpp>
39 #include <boost/static_assert.hpp>
40 #include <string>
41 #include <cstdio>
42
43 namespace dcp {
44
45 template <typename P, typename Q>
46 P
47 locale_convert (Q, int precision = 16, bool fixed = false)
48 {
49         /* We can't write a generic version of locale_convert; all required
50            versions must be specialised.
51         */
52         BOOST_STATIC_ASSERT (sizeof (Q) == 0);
53         LIBDCP_UNUSED(precision);
54         LIBDCP_UNUSED(fixed);
55 }
56
57 template <>
58 std::string
59 locale_convert (unsigned char x, int, bool);
60
61 template <>
62 std::string
63 locale_convert (unsigned short int x, int, bool);
64
65 template <>
66 std::string
67 locale_convert (int x, int, bool);
68
69 template <>
70 std::string
71 locale_convert (unsigned int x, int, bool);
72
73 template <>
74 std::string
75 locale_convert (long int x, int, bool);
76
77 template <>
78 std::string
79 locale_convert (unsigned long int x, int, bool);
80
81 template <>
82 std::string
83 locale_convert (long long int x, int, bool);
84
85 template <>
86 std::string
87 locale_convert (unsigned long long int x, int, bool);
88
89 template <>
90 std::string
91 locale_convert (float x, int precision, bool fixed);
92
93 template <>
94 std::string
95 locale_convert (double x, int precision, bool fixed);
96
97 template <>
98 std::string
99 locale_convert (std::string x, int, bool);
100
101 template <>
102 std::string
103 locale_convert (char* x, int, bool);
104
105 template <>
106 std::string
107 locale_convert (char const * x, int, bool);
108
109 template <>
110 std::string
111 locale_convert (wchar_t const * x, int, bool);
112
113 template <>
114 std::string
115 locale_convert (char x, int, bool);
116
117 template <>
118 std::string
119 locale_convert (boost::filesystem::path x, int, bool);
120
121 template <>
122 unsigned char
123 locale_convert (std::string x, int, bool);
124
125 template <>
126 unsigned short int
127 locale_convert (std::string x, int, bool);
128
129 template <>
130 unsigned int
131 locale_convert (std::string x, int, bool);
132
133 template <>
134 int
135 locale_convert (std::string x, int, bool);
136
137 template <>
138 long
139 locale_convert (std::string x, int, bool);
140
141 template <>
142 unsigned long
143 locale_convert (std::string x, int, bool);
144
145 template <>
146 long long
147 locale_convert (std::string x, int, bool);
148
149 template <>
150 unsigned long long
151 locale_convert (std::string x, int, bool);
152
153 template <>
154 float
155 locale_convert (std::string x, int, bool);
156
157 template <>
158 double
159 locale_convert (std::string x, int, bool);
160
161 }
162
163 #endif