1626.2.1
by Monty Taylor
Added wrapper around variables_map to allow us to pull values back out of |
1 |
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
2 |
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
|
3 |
*
|
|
4 |
* Copyright (C) 2010 Monty Taylor
|
|
5 |
*
|
|
6 |
* This program is free software; you can redistribute it and/or modify
|
|
7 |
* it under the terms of the GNU General Public License as published by
|
|
8 |
* the Free Software Foundation; version 2 of the License.
|
|
9 |
*
|
|
10 |
* This program is distributed in the hope that it will be useful,
|
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13 |
* GNU General Public License for more details.
|
|
14 |
*
|
|
15 |
* You should have received a copy of the GNU General Public License
|
|
16 |
* along with this program; if not, write to the Free Software
|
|
17 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
18 |
*/
|
|
19 |
||
20 |
/**
|
|
21 |
* @file
|
|
22 |
* @brief An Proxy Wrapper around boost::program_options::variables_map
|
|
23 |
*/
|
|
24 |
||
25 |
#ifndef DRIZZLED_MODULE_OPTION_MAP_H
|
|
26 |
#define DRIZZLED_MODULE_OPTION_MAP_H
|
|
27 |
||
28 |
#include "drizzled/visibility.h" |
|
1633.6.2
by Vijay Samuel
Reverted changes. |
29 |
#include "drizzled/module/option_context.h" |
1626.2.1
by Monty Taylor
Added wrapper around variables_map to allow us to pull values back out of |
30 |
|
31 |
#include <boost/program_options.hpp> |
|
32 |
||
33 |
#include <string> |
|
34 |
||
35 |
namespace drizzled |
|
36 |
{
|
|
37 |
namespace module |
|
38 |
{
|
|
39 |
||
40 |
/**
|
|
41 |
* Options proxy wrapper. Provides pre-pending of module name to each option
|
|
42 |
* which is added.
|
|
43 |
*/
|
|
44 |
class DRIZZLED_API option_map |
|
45 |
{
|
|
46 |
const std::string &module_name; |
|
1672.2.1
by Monty Taylor
Fixed plugin option processing. Now we pre-load the modules registering |
47 |
public: |
1626.2.2
by Monty Taylor
Moved ownership of the variable_map to the module (avoids copying, also |
48 |
const boost::program_options::variables_map &vm; |
1626.2.1
by Monty Taylor
Added wrapper around variables_map to allow us to pull values back out of |
49 |
|
50 |
||
51 |
option_map(const std::string &module_name_in, |
|
52 |
const boost::program_options::variables_map &vm_in); |
|
53 |
option_map(const option_map &old); |
|
54 |
||
55 |
const boost::program_options::variable_value& operator[](const std::string &name_in) const |
|
56 |
{
|
|
1633.6.2
by Vijay Samuel
Reverted changes. |
57 |
return vm[option_context::prepend_name(module_name, name_in.c_str())]; |
1626.2.1
by Monty Taylor
Added wrapper around variables_map to allow us to pull values back out of |
58 |
}
|
59 |
||
1626.2.2
by Monty Taylor
Moved ownership of the variable_map to the module (avoids copying, also |
60 |
size_t count(const std::string &name_in) const |
61 |
{
|
|
1633.6.2
by Vijay Samuel
Reverted changes. |
62 |
return vm.count(option_context::prepend_name(module_name, name_in.c_str())); |
1626.2.2
by Monty Taylor
Moved ownership of the variable_map to the module (avoids copying, also |
63 |
}
|
64 |
||
1626.2.1
by Monty Taylor
Added wrapper around variables_map to allow us to pull values back out of |
65 |
private: |
66 |
||
67 |
/**
|
|
68 |
* Don't allow default construction.
|
|
69 |
*/
|
|
70 |
option_map(); |
|
71 |
||
72 |
/**
|
|
73 |
* Don't allow assignment of objects.
|
|
74 |
*/
|
|
75 |
option_map& operator=(const option_map &); |
|
76 |
};
|
|
77 |
||
78 |
} /* namespace module */ |
|
79 |
} /* namespace drizzled */ |
|
80 |
||
81 |
||
82 |
#endif /* DRIZZLED_MODULE_OPTION_MAP_H */ |