parameter_cache.cpp
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 
26 
27 #include <list>
28 #include <memory>
29 #include <string>
30 
31 namespace corbo {
32 namespace gui {
33 
34 void ParameterCache::toCache(const std::string& key, const google::protobuf::Message& message)
35 {
36  std::unique_ptr<google::protobuf::Message>& param = _params[key];
37  param = std::unique_ptr<google::protobuf::Message>(message.New());
38  param->CopyFrom(message);
39 }
40 
41 std::unique_ptr<google::protobuf::Message> ParameterCache::fromCache(const std::string& key) const
42 {
43  auto param_it = _params.find(key);
44  if (param_it != _params.end())
45  {
46  std::unique_ptr<google::protobuf::Message> param(param_it->second->New());
47  param->CopyFrom(*param_it->second);
48  return param;
49  }
50  return std::unique_ptr<google::protobuf::Message>();
51 }
52 
53 bool ParameterCache::hasCache(const std::string& key) const { return _params.find(key) != _params.end(); }
54 
55 std::string ParameterCache::nestedNameListToKey(const std::list<std::string>& nested_name)
56 {
57  std::string key;
58  auto it = nested_name.begin();
59  auto prev_end = std::prev(nested_name.end());
60  for (; it != nested_name.end(); ++it)
61  {
62  key += *it;
63  if (it != prev_end) key += "/";
64  }
65  return key;
66 }
67 
68 } // namespace gui
69 } // namespace corbo
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::nestedNameListToKey
static std::string nestedNameListToKey(const std::list< std::string > &nested_name)
Definition: parameter_cache.cpp:99
parameter_cache.h


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