5f8c1e41d04c47ea5ba313cb912971e91e5a3bb0
[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 (int64_t 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 (uint64_t 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 (float 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 (double 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 (char const * v, int, bool)
105 {
106         return v;
107 }
108
109 template <>
110 string
111 dcp::raw_convert (char* v, int, bool)
112 {
113         return v;
114 }
115
116 template <>
117 string
118 dcp::raw_convert (string v, int, bool)
119 {
120         return v;
121 }
122
123 template <>
124 int
125 dcp::raw_convert (string v, int precision, bool fixed)
126 {
127         return locale_convert<int> (make_local (v), precision, fixed);
128 }
129
130 template <>
131 int
132 dcp::raw_convert (char const * v, int precision, bool fixed)
133 {
134         return locale_convert<int> (make_local (v), precision, fixed);
135 }
136
137 template <>
138 float
139 dcp::raw_convert (string v, int precision, bool fixed)
140 {
141         return locale_convert<float> (make_local (v), precision, fixed);
142 }
143
144 template <>
145 float
146 dcp::raw_convert (char const * v, int precision, bool fixed)
147 {
148         return locale_convert<float> (make_local (v), precision, fixed);
149 }
150
151 template <>
152 double
153 dcp::raw_convert (string v, int precision, bool fixed)
154 {
155         return locale_convert<double> (make_local (v), precision, fixed);
156 }
157
158 template <>
159 double
160 dcp::raw_convert (char const * v, int precision, bool fixed)
161 {
162         return locale_convert<double> (make_local (v), precision, fixed);
163 }