diff options
author | Josh Blum <josh@joshknows.com> | 2011-11-03 19:28:43 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-12-16 10:53:26 -0800 |
commit | c490cdda00ebd7733c1633939b258225f3834e8e (patch) | |
tree | fb751c35c1578485f1891503be53fb56c4782f21 /host/lib | |
parent | 4d2c1e06a96604e54b99c1871dbfecba1286bd8b (diff) | |
download | uhd-c490cdda00ebd7733c1633939b258225f3834e8e.tar.gz uhd-c490cdda00ebd7733c1633939b258225f3834e8e.tar.bz2 uhd-c490cdda00ebd7733c1633939b258225f3834e8e.zip |
uhd: allow device addr (from string) to parse empty values
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/types/device_addr.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/host/lib/types/device_addr.cpp b/host/lib/types/device_addr.cpp index e329bd390..1554c3e4e 100644 --- a/host/lib/types/device_addr.cpp +++ b/host/lib/types/device_addr.cpp @@ -40,16 +40,15 @@ static std::string trim(const std::string &in){ device_addr_t::device_addr_t(const std::string &args){ BOOST_FOREACH(const std::string &pair, tokenizer(args, arg_delim)){ if (trim(pair) == "") continue; - std::string key; + std::vector<std::string> toks; BOOST_FOREACH(const std::string &tok, tokenizer(pair, pair_delim)){ - if (key.empty()) key = tok; - else{ - this->set(trim(key), trim(tok)); - goto continue_next_arg; - } + toks.push_back(tok); + } + if (toks.size() == 1) toks.push_back(""); //pad empty value + if (toks.size() == 2 and not trim(toks[0]).empty()){ //only valid combination + this->set(trim(toks[0]), trim(toks[1])); } - throw uhd::value_error("invalid args string: "+args); - continue_next_arg: continue; + else throw uhd::value_error("invalid args string: "+args); //otherwise error } } |