const std::string &get_help() const { return help; }
const std::string &get_metavar() const { return metavar; }
unsigned get_seen_count() const { return seen_count; }
- virtual void process()=0;
- virtual void process(const std::string &)=0;
+ void process();
+ void process(const std::string &);
virtual ~OptBase() { }
protected:
char shrt;
std::string metavar;
OptBase(char, const std::string &, ArgType);
+ virtual void store()=0;
+ virtual void store(const std::string &)=0;
};
private:
public:
Option(char s, const std::string &l, T &d, ArgType a): OptBase(s, l, a), data(d) { }
- virtual void process()
- {
- if(arg_type==REQUIRED_ARG)
- throw UsageError("--"+lng+" requires an argument");
- process_();
- ++seen_count;
- }
+ virtual void store() { }
- virtual void process(const std::string &a)
+ virtual void store(const std::string &a)
{
- if(arg_type==NO_ARG)
- throw UsageError("--"+lng+" takes no argument");
-
T tmp;
std::istringstream ss(a);
ss>>tmp;
throw UsageError("Invalid argument for --"+lng);
data=tmp;
- ++seen_count;
}
private:
T &data;
-
- void process_() { }
};
template<typename T>
ListOption(char s, const std::string &l, T &d, ArgType a): OptBase(s, l, a), data(d)
{ if(arg_type!=REQUIRED_ARG) throw Exception("ListOption with arg_type!=REQUIRED makes no sense"); }
- virtual void process()
- {
- throw UsageError("--"+lng+" requires an argument");
- }
+ virtual void store() { }
- virtual void process(const std::string &a)
+ virtual void store(const std::string &a)
{
typename T::value_type tmp;
std::istringstream ss(a);
throw UsageError("Invalid argument for --"+lng);
data.push_back(tmp);
- ++seen_count;
}
private:
T &data;
unsigned process_short(const char *const *);
};
-template<> inline void GetOpt::Option<bool>::process_() { data=true; }
-template<> inline void GetOpt::Option<unsigned>::process_() { ++data; }
+template<> inline void GetOpt::Option<bool>::store() { data=true; }
+template<> inline void GetOpt::Option<unsigned>::store() { ++data; }
+
+template<> inline void GetOpt::Option<std::string>::store(const std::string &a)
+{ data=a; }
+
+template<> inline void GetOpt::ListOption<std::list<std::string> >::store(const std::string &a)
+{ data.push_back(a); }
} // namespace Msp