parameter_cache.h
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement
4  *
5  * Copyright (c) 2020,
6  * TU Dortmund - Institute of Control Theory and Systems Engineering.
7  * All rights reserved.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  *
22  * Authors: Christoph Rösmann
23  *********************************************************************/
24 
25 #ifndef SRC_GUI_INCLUDE_CORBO_GUI_PARAMETER_CACHE_H_
26 #define SRC_GUI_INCLUDE_CORBO_GUI_PARAMETER_CACHE_H_
27 
28 #include <google/protobuf/message.h>
29 
30 #include <list>
31 #include <memory>
32 #include <string>
33 #include <unordered_map>
34 
35 namespace corbo {
36 namespace gui {
37 
38 class ParameterCache
39 {
40  public:
41  using CacheMap = std::unordered_map<std::string, std::unique_ptr<google::protobuf::Message>>;
42 
43  void toCache(const std::string& key, const google::protobuf::Message& message);
44 
45  std::unique_ptr<google::protobuf::Message> fromCache(const std::string& key) const;
46 
47  bool hasCache(const std::string& key) const;
48 
49  void erase(const std::string& key) { _params.erase(key); }
50 
51  static std::string nestedNameListToKey(const std::list<std::string>& nested_name);
52 
53  private:
55 };
56 
57 } // namespace gui
58 } // namespace corbo
59 
60 #endif // SRC_GUI_INCLUDE_CORBO_GUI_PARAMETER_CACHE_H_
corbo::gui::ParameterCache::toCache
void toCache(const std::string &key, const google::protobuf::Message &message)
Definition: parameter_cache.cpp:78
corbo::gui::ParameterCache::hasCache
bool hasCache(const std::string &key) const
Definition: parameter_cache.cpp:97
corbo
Definition: communication/include/corbo-communication/utilities.h:37
corbo::gui::ParameterCache::_params
CacheMap _params
Definition: parameter_cache.h:120
corbo::gui::ParameterCache::fromCache
std::unique_ptr< google::protobuf::Message > fromCache(const std::string &key) const
Definition: parameter_cache.cpp:85
corbo::gui::ParameterCache::erase
void erase(const std::string &key)
Definition: parameter_cache.h:115
corbo::gui::ParameterCache::nestedNameListToKey
static std::string nestedNameListToKey(const std::list< std::string > &nested_name)
Definition: parameter_cache.cpp:99
corbo::gui::ParameterCache::CacheMap
std::unordered_map< std::string, std::unique_ptr< google::protobuf::Message > > CacheMap
Definition: parameter_cache.h:107


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:59