X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fcxml.cc;h=78f75eeef24254365887c395ba8de78dfa6d9126;hb=be5d6b54ffbc96c2b7823356c0b79583784ca91d;hp=d3ec9e7fd95f6a27efa9a6eeae6543345cc57da9;hpb=5532b044b33f40205c3fed2cd3d1c21dd718507b;p=libcxml.git diff --git a/src/cxml.cc b/src/cxml.cc index d3ec9e7..78f75ee 100644 --- a/src/cxml.cc +++ b/src/cxml.cc @@ -300,3 +300,87 @@ 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<> +long int +locale_convert (string x) +{ + long int y = 0; + sscanf (x.c_str(), "%ld", &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 <> +long 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)); +}