Boost程序选项中的矢量参数

时间:2011-11-17 23:13:30

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

我有两个相关的问题:

  1. 使用Boost程序选项允许传递一系列值的最简单方法是什么?我的目的是避免使用prog --opt 1 --opt 2 --opt 3并改为prog --opt 1 2 3

  2. 使用完全两个数字的选项的最简单方法是什么,例如prog --opt 137 42

  3. (我不需要任何“免费”程序参数。)

2 个答案:

答案 0 :(得分:40)

这是一个迟到的答案,但我希望它有助于某人。您可以在第1项中轻松使用相同的技术,除非您需要对向量中的项目数添加另一个验证:

来自rcollyer的例子:

namespace po = boost::program_options;
po::option_descriptions desc("");

desc.add_options()
 ("opt", po::value<std::vector<int> >()->multitoken(), "description");

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

vector<int> opts;
if (!vm["opt"].empty() && (opts = vm["opt"].as<vector<int> >()).size() == 2) {
  // good to go
}

答案 1 :(得分:31)

对于第一部分,这应该有效

namespace po = boost::program_options;
po::option_descriptions desc("");

desc.add_options()
 ("opt", po::value<std::vector<int> >()->multitoken(), "description");

第二部分,需要更多的工作。函数po::value返回po::typed_value< T, charT >,您必须在其上覆盖多个函数的行为,如下所示

template< typename T, typename charT = char >
class fixed_tokens_typed_value : public po::typed_value< T, charT > {
   unsigned _min, _max;

   typedef po::typed_value< T, charT > base;

 public:

   fixed_tokens_typed_value( T * t, unsigned min, unsigned max ) 
     : _min(min), _max(max), base( t ) {
       base::multitoken();
   }

   virtual multi_typed_value* min_tokens( unsigned min ) {
       _min = min;
       return *this;
   }
   unsigned min_tokens() const {return _min;}

   virtual multi_typed_value* max_tokens( unsigned max ) {
       _max = max;
       return *this;
   }
   unsigned max_tokens() const {return _max;}

   base* zero_tokens() {
       _min = _max = 0;
       base::zero_tokens();
       return *this;
   }
}

需要附带

template< typename T >
fixed_tokens_typed_value< T > 
fixed_tokens_value(unsigned min, unsigned max) {
    return fixed_tokens_typed_value< T >(0, min, max ); }

template< typename T >
fixed_tokens_typed_value< T > 
fixed_tokens_value(T * t, unsigned min, unsigned max) {
    fixed_tokens_typed_value< T >* r = new
                   fixed_tokens_typed_value< T >(t, min, max);
    return r; }

然后

desc.add_options()
 ("opt", po::fixed_tokens_value<std::vector<int> >(2,2), "description");

应该有效。我还没有机会测试它,所以它可能包含一些错误。但是,至少应该让你知道你需要什么。