00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef SBUILD_PARSE_VALUE_H
00021 #define SBUILD_PARSE_VALUE_H
00022
00023 #include <sbuild/sbuild-parse-error.h>
00024 #include <sbuild/sbuild-log.h>
00025
00026 #include <string>
00027 #include <sstream>
00028
00029 namespace sbuild
00030 {
00031
00038 void
00039 parse_value (std::string const& value,
00040 bool& parsed_value);
00041
00048 void
00049 parse_value (std::string const& value,
00050 std::string& parsed_value);
00051
00058 template <typename T>
00059 void
00060 parse_value (std::string const& value,
00061 T& parsed_value)
00062 {
00063 std::istringstream is(value);
00064 is.imbue(std::locale("C"));
00065 T tmpval;
00066 if (is >> tmpval)
00067 {
00068 parsed_value = tmpval;
00069 log_debug(DEBUG_NOTICE) << "value=" << parsed_value << std::endl;
00070 }
00071 else
00072 {
00073 log_debug(DEBUG_NOTICE) << "parse error" << std::endl;
00074 throw parse_error(parse_error::BAD_VALUE, value);
00075 }
00076 }
00077
00078 }
00079
00080 #endif
00081
00082
00083
00084
00085
00086