xref: /freebsd/contrib/kyua/utils/cmdline/parser.ipp (revision b0d29bc4)
1// Copyright 2010 The Kyua Authors.
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met:
7//
8// * Redistributions of source code must retain the above copyright
9//   notice, this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above copyright
11//   notice, this list of conditions and the following disclaimer in the
12//   documentation and/or other materials provided with the distribution.
13// * Neither the name of Google Inc. nor the names of its contributors
14//   may be used to endorse or promote products derived from this software
15//   without specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29#if !defined(UTILS_CMDLINE_PARSER_IPP)
30#define UTILS_CMDLINE_PARSER_IPP
31
32#include "utils/cmdline/parser.hpp"
33
34
35/// Gets the value of an option.
36///
37/// If the option has been specified multiple times on the command line, this
38/// only returns the last value.  This is the traditional behavior.
39///
40/// The option must support arguments.  Otherwise, a call to this function will
41/// not compile because the option type will lack the definition of some fields
42/// and/or methods.
43///
44/// \param name The option to query.
45///
46/// \return The value of the option converted to the appropriate type.
47///
48/// \pre has_option(name) must be true.
49template< typename Option > typename Option::option_type
50utils::cmdline::parsed_cmdline::get_option(const std::string& name) const
51{
52    const std::vector< std::string >& raw_values = get_option_raw(name);
53    return Option::convert(raw_values[raw_values.size() - 1]);
54}
55
56
57/// Gets the values of an option that supports repetition.
58///
59/// The option must support arguments.  Otherwise, a call to this function will
60/// not compile because the option type will lack the definition of some fields
61/// and/or methods.
62///
63/// \param name The option to query.
64///
65/// \return The values of the option converted to the appropriate type.
66///
67/// \pre has_option(name) must be true.
68template< typename Option > std::vector< typename Option::option_type >
69utils::cmdline::parsed_cmdline::get_multi_option(const std::string& name) const
70{
71    std::vector< typename Option::option_type > values;
72
73    const std::vector< std::string >& raw_values = get_option_raw(name);
74    for (std::vector< std::string >::const_iterator iter = raw_values.begin();
75         iter != raw_values.end(); iter++) {
76        values.push_back(Option::convert(*iter));
77    }
78
79    return values;
80}
81
82
83#endif  // !defined(UTILS_CMDLINE_PARSER_IPP)
84