autotier
Automatic Tiering Fuse Filesystem
ConfigNode.hpp
1 // -*- C++ -*-
2 /*
3  * Copyright (C) 2021 Joshua Boudreau <jboudreau@45drives.com>
4  *
5  * This file is part of lib45d.
6  *
7  * lib45d is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * lib45d is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with lib45d. If not, see <https://www.gnu.org/licenses/>.
19  */
20 
21 #pragma once
22 
23 #include <string>
24 #include <unordered_map>
25 
26 namespace ffd {
31  class ConfigNode {
32  public:
33  std::string value_;
34  std::unordered_map<std::string, ConfigNode> *sub_map_;
35 
41  ConfigNode(std::string value, std::unordered_map<std::string, ConfigNode> *sub_map) : value_(value), sub_map_(sub_map), is_copy_(false) {}
46  ConfigNode(void) : value_(""), sub_map_(nullptr), is_copy_(false) {}
54  ConfigNode(const ConfigNode &other)
55  : value_(other.value_)
56  , sub_map_(other.sub_map_)
57  , is_copy_(true) {}
66  : value_(std::move(other.value_))
67  , sub_map_(std::move(other.sub_map_))
68  , is_copy_(false) {
69  other.sub_map_ = nullptr;
70  }
80  value_ = std::move(other.value_);
81  sub_map_ = std::move(other.sub_map_);
82  is_copy_ = false;
83  other.sub_map_ = nullptr;
84  return *this;
85  }
92  if (sub_map_ && !is_copy_)
93  delete sub_map_;
94  }
95  private:
96  bool is_copy_;
97  };
98 }
ffd::ConfigNode::operator=
ConfigNode & operator=(ConfigNode &&other)
Assignment move constructor.
Definition: ConfigNode.hpp:79
ffd::ConfigNode::sub_map_
std::unordered_map< std::string, ConfigNode > * sub_map_
Pointer to submap for config sections.
Definition: ConfigNode.hpp:34
ffd::ConfigNode::ConfigNode
ConfigNode(ConfigNode &&other)
Move constructor.
Definition: ConfigNode.hpp:65
ffd::ConfigNode::~ConfigNode
~ConfigNode()
Destroy the ConfigNode object.
Definition: ConfigNode.hpp:91
ffd::ConfigNode::ConfigNode
ConfigNode(const ConfigNode &other)
Copy construct a new ConfigNode object.
Definition: ConfigNode.hpp:54
ffd
lib45d documentation (not included in this repo, see lib45d source)
Definition: main-page.dox:21
ffd::ConfigNode::is_copy_
bool is_copy_
Set in copy constructor to avoid double deletion of *sub_map_.
Definition: ConfigNode.hpp:96
ffd::ConfigNode::ConfigNode
ConfigNode(void)
Construct a new empty ConfigNode object.
Definition: ConfigNode.hpp:46
ffd::ConfigNode::ConfigNode
ConfigNode(std::string value, std::unordered_map< std::string, ConfigNode > *sub_map)
Construct a new ConfigNode object.
Definition: ConfigNode.hpp:41
ffd::ConfigNode::value_
std::string value_
string from config file after '='
Definition: ConfigNode.hpp:33
ffd::ConfigNode
Class for config_map_ entries.
Definition: ConfigNode.hpp:31