Add more {raw,locale}_convert methods.
[libdcp.git] / src / raw_convert.h
1 /*
2     Copyright (C) 2014 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_RAW_CONVERT_H
35 #define LIBDCP_RAW_CONVERT_H
36
37 #include <boost/static_assert.hpp>
38 #include <iomanip>
39 #include <stdint.h>
40
41 namespace dcp {
42
43 /** A sort-of version of boost::lexical_cast that does uses the "C"
44  *  locale (i.e. no thousands separators and a . for the decimal separator).
45  */
46 template <typename P, typename Q>
47 P
48 raw_convert (Q v, int precision = 16, bool fixed = false)
49 {
50         /* We can't write a generic version of raw_convert; all required
51            versions must be specialised.
52         */
53         BOOST_STATIC_ASSERT (sizeof (Q) == 0);
54 }
55
56 template <>
57 std::string
58 raw_convert (int v, int, bool);
59
60 template <>
61 std::string
62 raw_convert (unsigned int v, int, bool);
63
64 template <>
65 std::string
66 raw_convert (int64_t v, int, bool);
67
68 template <>
69 std::string
70 raw_convert (uint64_t v, int, bool);
71
72 template <>
73 std::string
74 raw_convert (float v, int, bool);
75
76 template <>
77 std::string
78 raw_convert (double v, int, bool);
79
80 template <>
81 std::string
82 raw_convert (char const * v, int, bool);
83
84 template <>
85 std::string
86 raw_convert (char* v, int, bool);
87
88 template <>
89 std::string
90 raw_convert (std::string v, int, bool);
91
92 template <>
93 int
94 raw_convert (std::string v, int, bool);
95
96 template <>
97 int
98 raw_convert (char const * v, int, bool);
99
100 template <>
101 float
102 raw_convert (std::string v, int, bool);
103
104 template <>
105 float
106 raw_convert (char const * v, int, bool);
107
108 template <>
109 double
110 raw_convert (std::string v, int, bool);
111
112 template <>
113 double
114 raw_convert (char const * v, int, bool);
115
116 }
117
118 #endif