51 disconnect(
config_, SIGNAL(subscriberQueueSizeChanged(
size_t)),
64 connect(config, SIGNAL(subscriberQueueSizeChanged(
size_t)),
86 if (broker && wasSubscribed)
112 QString topic = xAxisConfig->
getTopic();
120 const Message&)), properties)) {
126 QString xTopic = xAxisConfig->
getTopic();
127 QString yTopic = yAxisConfig->
getTopic();
173 variant_topic_tools::BuiltinVariant variant = message.
getVariant().
174 getMember(xAxisConfig->
getField().toStdString());
176 point.setX(variant.getNumericValue());
183 variant_topic_tools::BuiltinVariant variant = message.
getVariant().
184 getMember(yAxisConfig->
getField().toStdString());
186 point.setY(variant.getNumericValue());
187 }
catch (
const variant_topic_tools::NoSuchMemberException& e) {
189 " member '" << yAxisConfig->
getField().toStdString() <<
"': " <<
211 QStringList fieldParts = axisConfig->
getField().split(
"/");
213 while (!fieldParts.isEmpty()) {
214 fieldParts.removeLast();
216 QString parentField = fieldParts.join(
"/");
217 variant_topic_tools::MessageVariant variant;
219 if (!parentField.isEmpty())
220 variant = message.
getVariant().getMember(fieldParts.join(
"/").
225 variant_topic_tools::MessageDataType type = variant.getType();
227 if (type.hasHeader()) {
238 variant_topic_tools::BuiltinVariant variant = message.
getVariant().
247 variant_topic_tools::BuiltinVariant variant = message.
getVariant().
248 getMember(axisConfig->
getField().toStdString());
250 timeValue.
value_ = variant.getNumericValue();
267 while ((timeValuesX.count() > 1) && (timeValuesY.count() > 1)) {
268 while ((timeValuesX.count() > 1) &&
269 ((++timeValuesX.begin())->time_ < timeValuesY.front().time_))
270 timeValuesX.removeFirst();
272 while ((timeValuesY.count() > 1) &&
273 ((++timeValuesY.begin())->time_ < timeValuesX.front().time_))
274 timeValuesY.removeFirst();
276 if ((timeValuesY.front().time_ >= timeValuesX.front().time_) &&
277 (timeValuesX.count() > 1)) {
280 const TimeValue& firstX = timeValuesX.first();
281 const TimeValue& secondX = *(++timeValuesX.begin());
284 (timeValuesY.front().time_-firstX.
time_).toSec()/
286 point.setY(timeValuesY.front().value_);
288 timeValuesY.removeFirst();
292 else if ((timeValuesX.front().time_ >= timeValuesY.front().time_) &&
293 (timeValuesY.count() > 1)) {
296 const TimeValue& firstY = timeValuesY.first();
297 const TimeValue& secondY = *(++timeValuesY.begin());
299 point.setX(timeValuesX.front().value_);
301 (timeValuesX.front().time_-firstY.
time_).toSec()/
304 timeValuesX.removeFirst();
size_t getSubscriberQueueSize() const
void pointReceived(const QPointF &point)
CurveConfig * getConfig() const
void configSubscriberQueueSizeChanged(size_t queueSize)
void subscriberMessageReceived(const QString &topic, const Message &message)
QMap< CurveConfig::Axis, QString > timeFields_
CurveAxisConfig * getAxisConfig(Axis axis) const
QMap< int, QVariant > PropertyMap
void subscriberXAxisMessageReceived(const QString &topic, const Message &message)
MessageBroker * getBroker() const
const QString & getField() const
void subscriberYAxisMessageReceived(const QString &topic, const Message &message)
virtual bool subscribe(const QString &topic, QObject *receiver, const char *method, const PropertyMap &properties=PropertyMap(), Qt::ConnectionType type=Qt::AutoConnection)=0
void setConfig(CurveConfig *config)
void processMessage(const Message &message)
QMap< CurveConfig::Axis, QString > subscribedTopics_
virtual ~CurveDataSequencer()
QMap< CurveConfig::Axis, TimeValueList > timeValues_
void configAxisConfigChanged()
FieldType getFieldType() const
#define ROS_WARN_STREAM_ONCE(args)
const QString & getTopic() const
bool isSubscribed() const
const ros::Time & getReceiptTime() const
virtual bool unsubscribe(const QString &topic, QObject *receiver, const char *method=0)=0
void setBroker(MessageBroker *broker)
const variant_topic_tools::MessageVariant & getVariant() const
QLinkedList< TimeValue > TimeValueList
CurveDataSequencer(QObject *parent=0)