4

如果我的命令行是:

> 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 的另一个正确解决方案。两者都有效,但手动标记化更清晰。

4

3 回答 3

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
}
于 2010-06-18T21:04:00.460 回答
2

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

于 2010-06-17T20:07:40.913 回答
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;
}
于 2014-02-06T15:33:57.187 回答