Quiet annoying mutex debug logging messages
[clinton/bobotpp.git] / source / BotConfig.C
CommitLineData
6b59e728 1// BotConfig.C -*- C++ -*-
a6339323 2// Copyright (C) 2004,2005 Clinton Ebadi
6b59e728 3
4// This program is free software; you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation; either version 2 of the License, or
7// any later version.
8
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License
15// along with this program; if not, write to the Free Software
39b022cb 16// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
6b59e728 17
18#include "BotConfig.H"
19#include "Bot.H"
20#include "StringTokenizer.H"
a6339323 21#include "Utils.H"
6b59e728 22#include <iostream>
23#include <string>
24#include <list>
25#include <algorithm>
26
27BotConfig::BotConfig (std::string cf)
28 : config_filename (cf)
29{ }
30
a6339323 31bool
32BotConfig::read_config ()
6b59e728 33{
34 std::ifstream config_file (config_filename.c_str ());
35 std::string current_line;
36 unsigned int line_number = 1;
37
38 options_db.clear ();
39
40 if (!config_file)
41 {
42 // FIXME: log lines (needs local bot object, probably a
43 // redesign. UGH).
44
45 // Bot::logLine ("Error: Config File Not Found `" +
46 // config_filename + "'");
47 return false;
48 }
49
50 while (!config_file.eof ())
51 {
52 std::getline (config_file, current_line);
53 if (current_line.length () == 0 || current_line[0] == '#')
54 {
55 line_number++;
56 continue;
57 }
58
59 StringTokenizer st (current_line);
a6339323 60 std::string command = Utils::to_upper (Utils::trim_str(st.next_token('=')));
61 StringTokenizer params (Utils::trim_str (st.next_token('=')));
6b59e728 62
f0dad759 63 set_option_value (command, params.rest (), true);
6b59e728 64 }
65 return true;
66}
67
68
a6339323 69BotConfig::t_option_values
70BotConfig::get_option_values (std::string key)
6b59e728 71{
72 t_options_db::const_iterator cf_iter =
73 options_db.find (key);
74
75 if (cf_iter != options_db.end ())
76 return cf_iter->second;
77 else
78 return t_option_values (); // Empty vector
79}
80
a6339323 81std::string
82BotConfig::set_config_file (std::string fname)
6b59e728 83{
84 std::string old_config_filename = config_filename;
85 config_filename = fname;
86 options_db.clear ();
87 read_config ();
88 return old_config_filename;
89}
90
91namespace
92{
93 struct push_back_
94 {
95 BotConfig::t_value_list* lst;
96
97 push_back_ (BotConfig::t_value_list* l)
98 : lst (l)
99 {}
100
f59bce33 101 void operator() (BotConfig::t_value val)
6b59e728 102 {
103 lst->push_back (val);
104 }
105 };
f59bce33 106
107 struct run_fun_
108 {
109 std::string key;
110 BotConfig::t_value_list& vals;
111 bool appended;
112
113 run_fun_ (std::string k, BotConfig::t_value_list& vl, bool a)
114 : key (k), vals (vl), appended (a)
4f4c0ce6 115 { }
f59bce33 116 void operator() (BotConfig::t_watcher w)
117 {
118 w (key, vals, appended);
119 }
120 };
6b59e728 121}
122
a6339323 123void
124BotConfig::set_option_value (std::string key, t_value_list values,
6b59e728 125 bool append)
126{
f0dad759 127 key = Utils::to_upper (key); // keys are case insensitive
4f4c0ce6 128 t_options_db::iterator cf_iter = options_db.find (key);
129
f59bce33 130
6b59e728 131 if (cf_iter != options_db.end ())
132 {
133 if (append)
134 {
135 // FIXME: Potentially slow (make this push_front in 3.0)
136 std::for_each (values.begin (), values.end (),
137 push_back_ (&cf_iter->second.first));
138 }
f59bce33 139 else
140 cf_iter->second.first = values;
4f4c0ce6 141
142 // call watchers
143 std::for_each (cf_iter->second.second.begin (),
144 cf_iter->second.second.end (),
145 run_fun_ (key, values, append));
6b59e728 146 }
a6339323 147 else
148 options_db[key] = t_option_values (values, t_watcher_list ());
f59bce33 149}
a6339323 150
f0dad759 151void
152BotConfig::set_option_value (std::string key, t_value value, bool append)
153{
154 t_value_list value_list = t_value_list ();
155 value_list.push_front (value);
156
157 set_option_value (key, value_list, append);
158}
159
a6339323 160bool
161BotConfig::add_watcher (std::string key, t_watcher new_watcher)
162{
163 t_options_db::iterator cf_iter = options_db.find (key);
164
165 if (cf_iter != options_db.end ())
166 {
167 cf_iter->second.second.push_front (new_watcher);
168 return true;
169 }
170 else
171 return false;
172}