inicpp
C++ parser of INI files with schema validation.
All Classes Namespaces Functions Variables Typedefs Friends Pages
option.cpp
1 #include "option.h"
2 
3 namespace inicpp
4 {
5  option::option(const option &source)
6  {
7  this->operator=(source);
8  }
9 
11  {
12  if (&source != this) {
13  values_.clear();
14  name_ = source.name_;
15  type_ = source.type_;
16  for (const auto &value : source.values_) {
17  switch (type_) {
18  case option_type::boolean_e: copy_option<boolean_ini_t>(value); break;
19  case option_type::enum_e: copy_option<enum_ini_t>(value); break;
20  case option_type::float_e: copy_option<float_ini_t>(value); break;
21  case option_type::signed_e: copy_option<signed_ini_t>(value); break;
22  case option_type::string_e: copy_option<string_ini_t>(value); break;
23  case option_type::unsigned_e: copy_option<unsigned_ini_t>(value); break;
24  case option_type::invalid_e:
25  // never reached
26  throw invalid_type_exception("Invalid option type");
27  break;
28  }
29  }
30  option_schema_ = source.option_schema_;
31  }
32  return *this;
33  }
34 
36  {
37  name_ = source.name_;
38  type_ = source.type_;
39  values_ = std::move(source.values_);
40  option_schema_ = std::move(source.option_schema_);
41  }
42 
44  {
45  if (&source != this) {
46  name_ = source.name_;
47  type_ = source.type_;
48  values_ = std::move(source.values_);
49  option_schema_ = std::move(source.option_schema_);
50  }
51  return *this;
52  }
53 
54  option::option(const std::string &name, const std::string &value) : name_(name), type_(option_type::string_e)
55  {
56  add_to_list<string_ini_t>(value);
57  }
58 
59  option::option(const std::string &name, const std::vector<std::string> &values)
60  : name_(name), type_(option_type::string_e)
61  {
62  for (const auto &input_value : values) {
63  add_to_list<string_ini_t>(input_value);
64  }
65  }
66 
67  const std::string &option::get_name() const
68  {
69  return name_;
70  }
71 
72  option_type option::get_type() const
73  {
74  return type_;
75  }
76 
77  void option::remove_from_list_pos(size_t position)
78  {
79  if (position >= values_.size()) {
80  throw not_found_exception(position);
81  }
82  values_.erase(values_.begin() + position);
83  }
84 
85  void option::validate(const option_schema &opt_schema)
86  {
87  opt_schema.validate_option(*this);
88  }
89 
90  bool option::operator==(const option &other) const
91  {
92  if (name_ != other.name_ || type_ != other.type_) {
93  return false;
94  }
95 
96  if (values_.size() != other.values_.size()) {
97  return false;
98  } else {
99  for (size_t i = 0; i < values_.size(); ++i) {
100  switch (type_) {
101  case option_type::boolean_e:
102  if (!compare_option<boolean_ini_t>(values_[i], other.values_[i])) {
103  return false;
104  }
105  break;
106  case option_type::enum_e:
107  if (!compare_option<enum_ini_t>(values_[i], other.values_[i])) {
108  return false;
109  }
110  break;
111  case option_type::float_e:
112  if (!compare_option<float_ini_t>(values_[i], other.values_[i])) {
113  return false;
114  }
115  break;
116  case option_type::signed_e:
117  if (!compare_option<signed_ini_t>(values_[i], other.values_[i])) {
118  return false;
119  }
120  break;
121  case option_type::string_e:
122  if (!compare_option<string_ini_t>(values_[i], other.values_[i])) {
123  return false;
124  }
125  break;
126  case option_type::unsigned_e:
127  if (!compare_option<unsigned_ini_t>(values_[i], other.values_[i])) {
128  return false;
129  }
130  break;
131  default: throw invalid_type_exception("Invalid option type"); break;
132  }
133  }
134  }
135  return true;
136  }
137 
138  bool option::operator!=(const option &other) const
139  {
140  return !(*this == other);
141  }
142 
143  bool option::is_list() const
144  {
145  return values_.size() > 1;
146  }
147 
148  option &option::operator=(boolean_ini_t arg)
149  {
150  values_.clear();
151  type_ = option_type::boolean_e;
152  add_to_list<boolean_ini_t>(arg);
153  return *this;
154  }
155 
156  option &option::operator=(signed_ini_t arg)
157  {
158  values_.clear();
159  type_ = option_type::signed_e;
160  add_to_list<signed_ini_t>(arg);
161  return *this;
162  }
163 
164  option &option::operator=(unsigned_ini_t arg)
165  {
166  values_.clear();
167  type_ = option_type::unsigned_e;
168  add_to_list<unsigned_ini_t>(arg);
169  return *this;
170  }
171 
172  option &option::operator=(float_ini_t arg)
173  {
174  values_.clear();
175  type_ = option_type::float_e;
176  add_to_list<float_ini_t>(arg);
177  return *this;
178  }
179 
180  option &option::operator=(const char *arg)
181  {
182  values_.clear();
183  type_ = option_type::string_e;
184  add_to_list<string_ini_t>(arg);
185  return *this;
186  }
187 
188  option &option::operator=(string_ini_t arg)
189  {
190  values_.clear();
191  type_ = option_type::string_e;
192  add_to_list<string_ini_t>(arg);
193  return *this;
194  }
195 
197  {
198  values_.clear();
199  type_ = option_type::enum_e;
200  add_to_list<enum_ini_t>(arg);
201  return *this;
202  }
203 
204  // ----- Write functions -----
205 
206 
207  std::string escape_option_value(const std::string &str)
208  {
209  std::string result(str);
210  if (str.length() > 0 && std::isspace(result[0])) {
211  result.insert(result.begin(), '\\');
212  }
213  if (str.length() > 1 && std::isspace(result[result.length() - 1])) {
214  result.insert(result.end() - 1, '\\');
215  }
216 
217  return result;
218  }
219 
220  void write_boolean_option(std::vector<boolean_ini_t> values, std::ostream &os)
221  {
222  if (values[0]) {
223  os << "yes";
224  } else {
225  os << "no";
226  }
227  for (auto it = values.begin() + 1; it != values.end(); ++it) {
228  os << ",";
229  if (*it) {
230  os << "yes";
231  } else {
232  os << "no";
233  }
234  }
235  }
236  void write_enum_option(std::vector<enum_ini_t> values, std::ostream &os)
237  {
238  os << escape_option_value(static_cast<std::string>(values[0]));
239  for (auto it = values.begin() + 1; it != values.end(); ++it) {
240  os << "," << escape_option_value(static_cast<std::string>(*it));
241  }
242  }
243  void write_float_option(std::vector<float_ini_t> values, std::ostream &os)
244  {
245  os << values[0];
246  for (auto it = values.begin() + 1; it != values.end(); ++it) {
247  os << "," << *it;
248  }
249  }
250  void write_signed_option(std::vector<signed_ini_t> values, std::ostream &os)
251  {
252  os << values[0];
253  for (auto it = values.begin() + 1; it != values.end(); ++it) {
254  os << "," << *it;
255  }
256  }
257  void write_unsigned_option(std::vector<unsigned_ini_t> values, std::ostream &os)
258  {
259  os << values[0];
260  for (auto it = values.begin() + 1; it != values.end(); ++it) {
261  os << "," << *it;
262  }
263  }
264  void write_string_option(std::vector<string_ini_t> values, std::ostream &os)
265  {
266  os << escape_option_value(values[0]);
267  for (auto it = values.begin() + 1; it != values.end(); ++it) {
268  os << "," << escape_option_value(*it);
269  }
270  }
271 
272  std::ostream &operator<<(std::ostream &os, const option &opt)
273  {
274  os << opt.name_ << " = ";
275  switch (opt.type_) {
276  case option_type::boolean_e: write_boolean_option(opt.get_list<boolean_ini_t>(), os); break;
277  case option_type::enum_e: write_enum_option(opt.get_list<enum_ini_t>(), os); break;
278  case option_type::float_e: write_float_option(opt.get_list<float_ini_t>(), os); break;
279  case option_type::signed_e: write_signed_option(opt.get_list<signed_ini_t>(), os); break;
280  case option_type::string_e: write_string_option(opt.get_list<string_ini_t>(), os); break;
281  case option_type::unsigned_e: write_unsigned_option(opt.get_list<unsigned_ini_t>(), os); break;
282  case option_type::invalid_e:
283  // never reached
284  throw invalid_type_exception("Invalid option type");
285  break;
286  }
287  os << std::endl;
288 
289  return os;
290  }
291 }
bool is_list() const
Definition: option.cpp:143
INICPP_API friend std::ostream & operator<<(std::ostream &os, const option &opt)
Definition: option.cpp:272
bool operator!=(const option &other) const
Definition: option.cpp:138
void validate(const option_schema &opt_schema)
Definition: option.cpp:85
void validate_option(option &opt) const
option()=delete
Definition: config.h:15
option & operator=(const option &source)
Definition: option.cpp:10
const std::string & get_name() const
Definition: option.cpp:67
std::vector< ReturnType > get_list() const
Definition: option.h:350
bool operator==(const option &other) const
Definition: option.cpp:90
option_type get_type() const
Definition: option.cpp:72
void remove_from_list_pos(size_t position)
Definition: option.cpp:77