33 defineOptionalProperty<std::string>(
"TimingTestTopicName",
"TimingTestTopic",
"-");
34 defineOptionalProperty<int>(
"UpdatePeriodInMS", 10,
"-");
36 defineOptionalProperty<std::string>(
37 "DebugObserverName",
"DebugObserver",
"Name of the topic the DebugObserver listens on");
43 return "TopicTimingServer";
53 updatePeriodInMS = getProperty<int>(
"UpdatePeriodInMS").getValue();
59 topic = getTopicFromProperty<armarx::topic_timing::TopicPrx>(
"TimingTestTopicName");
61 debugObserver = getTopicFromProperty<DebugObserverInterfacePrx>(
"DebugObserverName");
63 lastSmallTime = IceUtil::Time::now();
89 TopicTimingServer::run()
92 while (!task->isStopped())
96 topic_timing::SmallData
data;
97 data.sentTimestamp = time_now.toMicroSeconds();
99 topic->reportSmall(
data);
106 lastSmallTime = time_now;
109 channel[
"DurationSend"] =
new Variant(dur_send.toMilliSecondsDouble());
110 channel[
"DurationCycle"] =
new Variant(dur_cycle.toMilliSecondsDouble());
111 debugObserver->setDebugChannel(
"TopicTimingServerSmall", channel);
113 c.waitForCycleDuration();