Can Boost Program_options可以分隔逗号分隔的参数值

时间:2010-06-17 19:50:36

标签: c++ boost c++11 boost-program-options

如果我的命令行是:

> prog --mylist=a,b,c

可以设置Boost的program_options以查看mylist参数的三个不同参数值吗?我已将program_options配置为:

namespace po = boost::program_options;
po::options_description opts("blah")

opts.add_options()
    ("mylist", std::vector<std::string>>()->multitoken, "description");

po::variables_map vm;
po::store(po::parse_command_line(argc, argv, opts), vm);
po::notify(vm);

当我检查mylist参数的值时,我看到一个值为a,b,c。我希望看到三个不同的值,用逗号分隔。如果我将命令行指定为:

,这可以正常工作
> prog --mylist=a b c

> prog --mylist=a --mylist=b --mylist=c

有没有办法配置program_options,以便它将a,b,c视为三个值,每个值应插入到向量中,而不是一个?

我正在使用boost 1.41,g ++ 4.5.0 20100520,并启用了c ++ 0x实验扩展。

修改

接受的解决方案可行但最终变得更复杂,IMO,而不仅仅是迭代矢量并手动分割值。最后,我接受了James McNellis的建议并以这种方式实施。然而,他的解决方案并没有作为答案提交,所以我从hkaiser接受了另一个正确的解决方案。两者都有效,但手动标记化更清晰。

3 个答案:

答案 0 :(得分:3)

您可以为您的选项注册自定义验证器:

namespace po = boost::program_options;

struct mylist_option 
{
    // values specified with --mylist will be stored here
    vector<std::string> values;

    // Function which validates additional tokens from command line.
    static void
    validate(boost::any &v, std::vector<std::string> const &tokens)
    {
        if (v.empty())
            v = boost::any(mylist_option());

        mylist_option *p = boost::any_cast<mylist_option>(&v);
        BOOST_ASSERT(p);

        boost::char_separator<char> sep(",");
        BOOST_FOREACH(std::string const& t, tokens)
        {
            if (t.find(",")) {
                // tokenize values and push them back onto p->values
                boost::tokenizer<boost::char_separator<char> > tok(t, sep);
                std::copy(tok.begin(), tok.end(), 
                    std::back_inserter(p->values));
            }
            else {
                // store value as is
                p->values.push_back(t);
            }
        }
    }
};

然后可以用作:

opts.add_options()                 
    ("mylist", po::value<mylist_option>()->multitoken(), "description");

if (vm.count("mylist"))
{
    // vm["mylist"].as<mylist_option>().values will hold the value specified
    // using --mylist
}

答案 1 :(得分:2)

我自己没有尝试过这样做,但是您可以使用与program_options提供的custom_syntax.cpp示例中相同的方法来编写您可以作为额外提供的自己的解析器解析器。有一些信息here有一个简短的例子。然后你可以将它与James建议使用boost :: tokenizer结合起来,或者只是按照他的建议。

答案 2 :(得分:2)

这就是我现在正在使用的内容:

template<typename T, int N> class mytype;
template<typename T, int N> std::istream& operator>> (std::istream& is, mytype<T,N>& rhs);
template<typename T, int N> std::ostream& operator<< (std::ostream& os, const mytype<T,N>& rhs);
template < typename T, int N >
struct mytype
{
  T values[N];
  friend std::istream& operator>> <>(std::istream &is, mytype<T,N> &val);
  friend std::ostream& operator<< <>(std::ostream &os, const mytype<T,N> &val);
};
template<typename T, int N>
inline std::istream& operator>>(std::istream &is, mytype<T,N> &val)
{
  for( int i = 0; i < N; ++i )
    {
    if( i )
      if (is.peek() == ',')
        is.ignore();
    is >> val.values[i];
    }
  return is;
}
template<typename T, int N>
inline std::ostream& operator<<(std::ostream &os, const mytype<T,N> &val)
{
  for( int i = 0; i < N; ++i )
    {
    if( i ) os << ',';
    os << val.values[i];
    }
  return os;
}

int main(int argc, char *argv[])
{
  namespace po = boost::program_options;

  typedef mytype<int,2> mytype; // let's test with 2 int
  mytype my;
  try
    {
    po::options_description desc("the desc");
    desc.add_options()
      ("mylist", po::value< mytype >(&my), "mylist desc")
      ;

    po::variables_map vm;
    po::store(po::command_line_parser(argc, argv).options(desc).run(), vm);
    po::notify(vm);

    if (vm.count("mylist"))
      {
      const mytype ret = vm["mylist"].as<mytype >();
      std::cerr << "mylist: " << ret << " or: " << my << std::endl;
      }
    }
  catch(std::exception& e)
    {
    std::cout << e.what() << "\n";
    }    
  return 0;
}