Add conversions from char.
[libdcp.git] / src / raw_convert.cc
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 #include "raw_convert.h"
35 #include "locale_convert.h"
36 #include <boost/algorithm/string.hpp>
37
38 using std::string;
39
40 static
41 string
42 make_raw (string v)
43 {
44         struct lconv* lc = localeconv ();
45         boost::algorithm::replace_all (v, lc->decimal_point, ".");
46         boost::algorithm::replace_all (v, lc->thousands_sep, "");
47         return v;
48 }
49
50 static
51 string
52 make_local (string v)
53 {
54         struct lconv* lc = localeconv ();
55         boost::algorithm::replace_all (v, ".", lc->decimal_point);
56         /* We hope it's ok not to add in thousands separators here */
57         return v;
58 }
59
60 template <>
61 string
62 dcp::raw_convert (int v, int precision, bool fixed)
63 {
64         return make_raw (locale_convert<string> (v, precision, fixed));
65 }
66
67 template <>
68 string
69 dcp::raw_convert (unsigned int v, int precision, bool fixed)
70 {
71         return make_raw (locale_convert<string> (v, precision, fixed));
72 }
73
74 template <>
75 string
76 dcp::raw_convert (long v, int precision, bool fixed)
77 {
78         return make_raw (locale_convert<string> (v, precision, fixed));
79 }
80
81 template <>
82 string
83 dcp::raw_convert (unsigned long v, int precision, bool fixed)
84 {
85         return make_raw (locale_convert<string> (v, precision, fixed));
86 }
87
88 template <>
89 string
90 dcp::raw_convert (long long v, int precision, bool fixed)
91 {
92         return make_raw (locale_convert<string> (v, precision, fixed));
93 }
94
95 template <>
96 string
97 dcp::raw_convert (unsigned long long v, int precision, bool fixed)
98 {
99         return make_raw (locale_convert<string> (v, precision, fixed));
100 }
101
102 template <>
103 string
104 dcp::raw_convert (float v, int precision, bool fixed)
105 {
106         return make_raw (locale_convert<string> (v, precision, fixed));
107 }
108
109 template <>
110 string
111 dcp::raw_convert (double v, int precision, bool fixed)
112 {
113         return make_raw (locale_convert<string> (v, precision, fixed));
114 }
115
116 template <>
117 string
118 dcp::raw_convert (char const * v, int, bool)
119 {
120         return v;
121 }
122
123 template <>
124 string
125 dcp::raw_convert (char* v, int, bool)
126 {
127         return v;
128 }
129
130 template <>
131 string
132 dcp::raw_convert (string v, int, bool)
133 {
134         return v;
135 }
136
137 template <>
138 string
139 dcp::raw_convert (char v, int, bool)
140 {
141         string s;
142         s += v;
143         return s;
144 }
145
146 template <>
147 int
148 dcp::raw_convert (string v, int precision, bool fixed)
149 {
150         return locale_convert<int> (make_local (v), precision, fixed);
151 }
152
153 template <>
154 int
155 dcp::raw_convert (char const * v, int precision, bool fixed)
156 {
157         return locale_convert<int> (make_local (v), precision, fixed);
158 }
159
160 template <>
161 float
162 dcp::raw_convert (string v, int precision, bool fixed)
163 {
164         return locale_convert<float> (make_local (v), precision, fixed);
165 }
166
167 template <>
168 float
169 dcp::raw_convert (char const * v, int precision, bool fixed)
170 {
171         return locale_convert<float> (make_local (v), precision, fixed);
172 }
173
174 template <>
175 double
176 dcp::raw_convert (string v, int precision, bool fixed)
177 {
178         return locale_convert<double> (make_local (v), precision, fixed);
179 }
180
181 template <>
182 double
183 dcp::raw_convert (char const * v, int precision, bool fixed)
184 {
185         return locale_convert<double> (make_local (v), precision, fixed);
186 }