DebugDrawerToArVizComponent.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @package RobotAPI::ArmarXObjects::DebugDrawerToArViz
17  * @author Rainer Kartmann ( rainer dot kartmann at kit dot edu )
18  * @date 2020
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
24 
25 #include "BlackWhitelistUpdate.h"
26 
27 namespace armarx
28 {
30  std::string prefix) :
32  {
33  defineOptionalProperty<std::string>("DebugDrawerTopicName",
34  "DebugDrawerUpdates",
35  "Name of the topic the DebugDrawer listens to.");
36 
37 
38  defineOptionalProperty<std::string>(
39  "LayerBlackWhitelistTopic",
40  "DebugDrawerToArVizLayerBlackWhitelistUpdates",
41  "The layer where updates to the layer black-whitelist are published.");
42  defineOptionalProperty<std::vector<std::string>>(
43  "LayerWhitelist", {}, "If not empty, layers are shown (comma separated list).")
44  .map("[empty whitelist]", {});
45  defineOptionalProperty<std::vector<std::string>>(
46  "LayerBlacklist", {}, "These layers will never be shown (comma separated list).")
47  .map("[empty blacklist]", {});
48  }
49 
50  std::string
52  {
53  return "DebugDrawerToArViz";
54  }
55 
56  void
58  {
59  {
60  BlackWhitelistUpdate update;
61  getProperty(update.whitelist.set, "LayerWhitelist");
62  getProperty(update.blacklist.set, "LayerBlacklist");
64  ARMARX_VERBOSE << "Layer black-white-list: \n"
66  }
67 
68  usingTopicFromProperty("DebugDrawerTopicName");
69  usingTopicFromProperty("LayerBlackWhitelistTopic");
70  }
71 
72  void
74  {
76  }
77 
78  void
80  {
81  }
82 
83  void
85  {
86  }
87 
90  {
93  }
94 } // namespace armarx
ARMARX_VERBOSE
#define ARMARX_VERBOSE
Definition: Logging.h:187
armarx::DebugDrawerToArViz::layerBlackWhitelist
armarx::StringBlackWhitelist layerBlackWhitelist
Definition: DebugDrawerToArViz.h:400
armarx::DebugDrawerToArVizComponent::createPropertyDefinitions
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: DebugDrawerToArVizComponent.cpp:89
armarx::updateBlackWhitelist
void updateBlackWhitelist(StringBlackWhitelist &bw, const armarx::BlackWhitelistUpdate &update)
Definition: BlackWhitelistUpdate.h:13
armarx::DebugDrawerToArVizPropertyDefinitions::DebugDrawerToArVizPropertyDefinitions
DebugDrawerToArVizPropertyDefinitions(std::string prefix)
Definition: DebugDrawerToArVizComponent.cpp:29
armarx::DebugDrawerToArVizComponent::onDisconnectComponent
void onDisconnectComponent() override
Definition: DebugDrawerToArVizComponent.cpp:79
armarx::Component::usingTopicFromProperty
void usingTopicFromProperty(const std::string &propertyName, bool orderedPublishing=false)
Use a topic whose name is specified by the given property.
Definition: Component.cpp:165
armarx::DebugDrawerToArVizComponent::getDefaultName
std::string getDefaultName() const override
Definition: DebugDrawerToArVizComponent.cpp:51
DebugDrawerToArVizComponent.h
armarx::DebugDrawerToArVizPropertyDefinitions
Property definitions of DebugDrawerToArViz.
Definition: DebugDrawerToArVizComponent.h:39
armarx::armem::server::ltm::util::mongodb::detail::update
bool update(mongocxx::collection &coll, const nlohmann::json &query, const nlohmann::json &update)
Definition: mongodb.cpp:68
BlackWhitelistUpdate.h
armarx::Component::getConfigIdentifier
std::string getConfigIdentifier()
Retrieve config identifier for this component as set in constructor.
Definition: Component.cpp:79
armarx::ComponentPropertyDefinitions
Default component property definition container.
Definition: Component.h:69
armarx::ArVizComponentPluginUser::arviz
armarx::viz::Client arviz
Definition: ArVizComponentPlugin.h:42
armarx::PropertyUser::getProperty
Property< PropertyType > getProperty(const std::string &name)
Property creation and retrieval.
Definition: PropertyUser.h:180
armarx::DebugDrawerToArVizComponent::onExitComponent
void onExitComponent() override
Definition: DebugDrawerToArVizComponent.cpp:84
IceUtil::Handle< class PropertyDefinitionContainer >
armarx::DebugDrawerToArVizComponent::onInitComponent
void onInitComponent() override
Definition: DebugDrawerToArVizComponent.cpp:57
armarx::PropertyDefinitionsPtr
IceUtil::Handle< class PropertyDefinitionContainer > PropertyDefinitionsPtr
PropertyDefinitions smart pointer type.
Definition: forward_declarations.h:35
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::DebugDrawerToArVizComponent::onConnectComponent
void onConnectComponent() override
Definition: DebugDrawerToArVizComponent.cpp:73
armarx::DebugDrawerToArViz::setArViz
void setArViz(viz::Client arviz)
Definition: DebugDrawerToArViz.cpp:85