From 670c528a584d96e8bb6009f996204e9ecf174f54 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 12 Mar 2019 15:33:40 +0000 Subject: Remove locked_sstream dependency. --- src/cxml.cc | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) (limited to 'src/cxml.cc') diff --git a/src/cxml.cc b/src/cxml.cc index d3ec9e7..82e4bc3 100644 --- a/src/cxml.cc +++ b/src/cxml.cc @@ -300,3 +300,71 @@ cxml::Document::take_root_node () _root_name = _node->get_name (); } } + +static +string +make_local (string v) +{ + struct lconv* lc = localeconv (); + boost::algorithm::replace_all (v, ".", lc->decimal_point); + /* We hope it's ok not to add in thousands separators here */ + return v; +} + +template +P +locale_convert (Q x) +{ + /* We can't write a generic version of locale_convert; all required + versions must be specialised. + */ + BOOST_STATIC_ASSERT (sizeof(Q) == 0); +} + +template<> +int +locale_convert (string x) +{ + int y = 0; + sscanf (x.c_str(), "%d", &y); + return y; +} + +template<> +float +locale_convert (string x) +{ + float y = 0; + sscanf (x.c_str(), "%f", &y); + return y; +} + +template <> +double +locale_convert (string x) +{ + double y = 0; + sscanf (x.c_str(), "%lf", &y); + return y; +} + +template <> +int +cxml::raw_convert (string v) +{ + return locale_convert (make_local(v)); +} + +template <> +float +cxml::raw_convert (string v) +{ + return locale_convert (make_local(v)); +} + +template <> +double +cxml::raw_convert (string v) +{ + return locale_convert (make_local(v)); +} -- cgit v1.2.3