TopicTimingServer.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::TopicTimingServer
17  * @author Fabian Paus ( fabian dot paus at kit dot edu )
18  * @date 2019
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 #include "TopicTimingServer.h"
24 
27 
28 namespace armarx
29 {
32  {
33  defineOptionalProperty<std::string>("TimingTestTopicName", "TimingTestTopic", "-");
34  defineOptionalProperty<int>("UpdatePeriodInMS", 10, "-");
35 
36  defineOptionalProperty<std::string>(
37  "DebugObserverName", "DebugObserver", "Name of the topic the DebugObserver listens on");
38  }
39 
40  std::string
42  {
43  return "TopicTimingServer";
44  }
45 
46  void
48  {
49  offeringTopicFromProperty("TimingTestTopicName");
50 
51  offeringTopicFromProperty("DebugObserverName");
52 
53  updatePeriodInMS = getProperty<int>("UpdatePeriodInMS").getValue();
54  }
55 
56  void
58  {
59  topic = getTopicFromProperty<armarx::topic_timing::TopicPrx>("TimingTestTopicName");
60 
61  debugObserver = getTopicFromProperty<DebugObserverInterfacePrx>("DebugObserverName");
62 
63  lastSmallTime = IceUtil::Time::now();
64 
65  task = new RunningTask<TopicTimingServer>(this, &TopicTimingServer::run);
66  task->start();
67  }
68 
69  void
71  {
72  task->stop();
73  task = nullptr;
74  }
75 
76  void
78  {
79  }
80 
83  {
86  }
87 
88  void
89  TopicTimingServer::run()
90  {
91  CycleUtil c(updatePeriodInMS);
92  while (!task->isStopped())
93  {
94  IceUtil::Time time_now = IceUtil::Time::now();
95  {
96  topic_timing::SmallData data;
97  data.sentTimestamp = time_now.toMicroSeconds();
98 
99  topic->reportSmall(data);
100  }
101  IceUtil::Time time_sent = IceUtil::Time::now();
102 
103  IceUtil::Time dur_send = time_sent - time_now;
104 
105  IceUtil::Time dur_cycle = time_now - lastSmallTime;
106  lastSmallTime = time_now;
107 
108  StringVariantBaseMap channel;
109  channel["DurationSend"] = new Variant(dur_send.toMilliSecondsDouble());
110  channel["DurationCycle"] = new Variant(dur_cycle.toMilliSecondsDouble());
111  debugObserver->setDebugChannel("TopicTimingServerSmall", channel);
112 
113  c.waitForCycleDuration();
114  }
115  }
116 } // namespace armarx
armarx::StringVariantBaseMap
std::map< std::string, VariantBasePtr > StringVariantBaseMap
Definition: ManagedIceObject.h:110
armarx::TopicTimingServer::onDisconnectComponent
virtual void onDisconnectComponent() override
Definition: TopicTimingServer.cpp:70
armarx::CycleUtil
This util class helps with keeping a cycle time during a control cycle.
Definition: CycleUtil.h:40
armarx::Component::offeringTopicFromProperty
void offeringTopicFromProperty(const std::string &propertyName)
Offer a topic whose name is specified by the given property.
Definition: Component.cpp:159
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:46
armarx::TopicTimingServerPropertyDefinitions
Definition: TopicTimingServer.h:38
armarx::RunningTask
Definition: ArmarXMultipleObjectsScheduler.h:36
armarx::TopicTimingServer::onConnectComponent
virtual void onConnectComponent() override
Definition: TopicTimingServer.cpp:57
data
uint8_t data[1]
Definition: EtherCATFrame.h:68
armarx::TopicTimingServer::onExitComponent
virtual void onExitComponent() override
Definition: TopicTimingServer.cpp:77
armarx::armem::Time
armarx::core::time::DateTime Time
Definition: forward_declarations.h:13
TopicTimingServer.h
CycleUtil.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
IceUtil::Handle< class PropertyDefinitionContainer >
armarx::TopicTimingServer::createPropertyDefinitions
virtual armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: TopicTimingServer.cpp:82
armarx::TopicTimingServer::onInitComponent
virtual void onInitComponent() override
Definition: TopicTimingServer.cpp:47
armarx::TopicTimingServerPropertyDefinitions::TopicTimingServerPropertyDefinitions
TopicTimingServerPropertyDefinitions(std::string prefix)
Definition: TopicTimingServer.cpp:30
armarx::TopicTimingServer::getDefaultName
virtual std::string getDefaultName() const override
Definition: TopicTimingServer.cpp:41
armarx::PropertyDefinitionsPtr
IceUtil::Handle< class PropertyDefinitionContainer > PropertyDefinitionsPtr
PropertyDefinitions smart pointer type.
Definition: forward_declarations.h:35
Variant.h
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27