~drizzle-trunk/drizzle/development

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
2234 by Brian Aker
Mass removal of ifdef/endif in favor of pragma once.
25
#pragma once
1626.2.1 by Monty Taylor
Added wrapper around variables_map to allow us to pull values back out of
26
2207.6.4 by Olaf van der Spek
Refactor
27
#include <boost/program_options.hpp>
28
#include <drizzled/module/option_context.h>
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
29
#include <drizzled/visibility.h>
1626.2.1 by Monty Taylor
Added wrapper around variables_map to allow us to pull values back out of
30
#include <string>
31
2207.6.4 by Olaf van der Spek
Refactor
32
namespace drizzled {
33
namespace module {
1626.2.1 by Monty Taylor
Added wrapper around variables_map to allow us to pull values back out of
34
35
/**
36
 * Options proxy wrapper. Provides pre-pending of module name to each option
37
 * which is added.
38
 */
39
class DRIZZLED_API option_map
40
{
1672.2.1 by Monty Taylor
Fixed plugin option processing. Now we pre-load the modules registering
41
public:
1626.2.2 by Monty Taylor
Moved ownership of the variable_map to the module (avoids copying, also
42
  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
43
44
  option_map(const std::string &module_name_in,
45
             const boost::program_options::variables_map &vm_in);
46
47
  const boost::program_options::variable_value& operator[](const std::string &name_in) const
48
  {
1633.6.2 by Vijay Samuel
Reverted changes.
49
    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
50
  }
51
1626.2.2 by Monty Taylor
Moved ownership of the variable_map to the module (avoids copying, also
52
  size_t count(const std::string &name_in) const
53
  {
1633.6.2 by Vijay Samuel
Reverted changes.
54
    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
55
  }
56
1626.2.1 by Monty Taylor
Added wrapper around variables_map to allow us to pull values back out of
57
private:
2207.6.4 by Olaf van der Spek
Refactor
58
  const std::string &module_name;
1626.2.1 by Monty Taylor
Added wrapper around variables_map to allow us to pull values back out of
59
};
60
61
} /* namespace module */
62
} /* namespace drizzled */
63
64