00001
00002
00003
00004
00005
00006
00007
00008 #ifndef READINPUT_H_
00009 #define READINPUT_H_
00010
00011 #include <iostream>
00012 #include <fstream>
00013 #include <sstream>
00014 #include <string>
00015 #include <vector>
00016 #include <iomanip>
00017 #include <algorithm>
00018 #include <cctype>
00019
00020 #include <typeinfo>
00021
00022 #include <stdexcept>
00023
00024 class BadConversion : public std::runtime_error {
00025 public:
00026 BadConversion(std::string const& s)
00027 : std::runtime_error(s)
00028 { }
00029 };
00030
00031
00032 #define xstr(s) str(s)
00033 #define str(s) #s
00034
00038 bool to_bool(std::string str);
00039
00040 class InputVariable {
00041 public:
00042
00043 InputVariable(std::string type, std::string name, void * pValue) {
00044 type_ = type;
00045 name_ = name;
00046 pValue_ = pValue;
00047 }
00048
00049
00050 void read(std::string filename) {
00051 std::ifstream iFile(filename.c_str());
00052 std::string line;
00053
00054 std::string typeString;
00055 std::string nameString;
00056 std::string valueString;
00057
00058 while(getline(iFile, line)) {
00059 std::istringstream iss(line);
00060
00061 iss >> typeString >> nameString >> valueString;
00062 if (typeString==type_ && nameString==name_) {
00063
00064 if (typeString=="int") {
00065 int * p = (int *) pValue_;
00066 *p = atoi(valueString.c_str());
00067 } else if (typeString=="double") {
00068 double * p = (double *) pValue_;
00069 *p = atof(valueString.c_str());
00070 } else if (typeString=="bool") {
00071 bool * p = (bool *) pValue_;
00072 *p = to_bool(valueString);
00073 } else if (typeString=="unsigned") {
00074 unsigned * p = (unsigned *) pValue_;
00075 *p = (unsigned) atoi(valueString.c_str());
00076 }
00077
00078 std::cout << typeString << " " << nameString << " is set to be "
00079 << valueString << std::endl;
00080 break;
00081 }
00082 }
00083
00084 iFile.close();
00085
00086 }
00087
00088 private:
00089 std::string type_;
00090 std::string name_;
00091 void * pValue_;
00092
00093 };
00094
00095
00096 #define READ_INPUT(f, t, v) \
00097 do { \
00098 InputVariable inputVar(t, #v, &v); \
00099 inputVar.read(f); \
00100 } while (0)
00101
00102 #endif