Skip to content
Snippets Groups Projects
Commit 9da83a81 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Added interpreter for atom ranges

Just a tool to convert strings in the form "10-13"
to arrays of strings as 10,11,12,13.
Still it is not used in currently implemented CVs
parent 6f5e97fa
No related branches found
No related tags found
No related merge requests found
...@@ -132,5 +132,24 @@ void Tools::convert(int i,std::string & str){ ...@@ -132,5 +132,24 @@ void Tools::convert(int i,std::string & str){
str=ostr.str(); str=ostr.str();
} }
void Tools::interpretRanges(std::vector<std::string>&s){
vector<string> news;
for(vector<string>::iterator p=s.begin();p!=s.end();p++){
vector<string> words;
words=getWords(*p,"-");
int a,b;
if(words.size()==2 && convert(words[0],a) && convert(words[1],b)){
assert(b>=a);
for(int i=a;i<=b;i++){
string ss;
convert(i,ss);
news.push_back(ss);
}
}else news.push_back(*p);
}
s=news;
}
...@@ -53,6 +53,8 @@ public: ...@@ -53,6 +53,8 @@ public:
static bool parseVector(std::vector<std::string>&line,const std::string&key,std::vector<T>&val); static bool parseVector(std::vector<std::string>&line,const std::string&key,std::vector<T>&val);
/// Find a keyword without arguments on the input line /// Find a keyword without arguments on the input line
static bool parseFlag(std::vector<std::string>&line,const std::string&key,bool&val); static bool parseFlag(std::vector<std::string>&line,const std::string&key,bool&val);
/// Interpret atom ranges
static void interpretRanges(std::vector<std::string>&);
}; };
template <class T> template <class T>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment