7 #include <QApplication>
8 #include <QProgressDialog>
13 #include <QElapsedTimer>
14 #include <condition_variable>
33 void StrCat(
const std::string& a,
const std::string& b, std::string& out)
36 out.reserve(a.size() + b.size());
46 std::vector<std::pair<QString, QString>>
49 std::vector<std::pair<QString, QString>> all_topics;
52 bool ignoreAll =
false;
56 const auto&
topic = conn->topic;
57 const auto&
md5sum = conn->md5sum;
58 const auto&
datatype = conn->datatype;
61 all_topics.push_back(std::make_pair(QString(
topic.c_str()), QString(
datatype.c_str())));
68 catch (std::exception& ex)
73 all_topics.pop_back();
83 QMessageBox msgBox(
nullptr);
84 msgBox.setWindowTitle(
"ROS bag error");
85 msgBox.setText(QString(
"Topic ") + QString(
topic.c_str()) + QString(
": ") + QString(ex.what()));
87 QPushButton* buttonCancel = msgBox.addButton(tr(
"Cancel"), QMessageBox::RejectRole);
88 QPushButton* buttonIgnore = msgBox.addButton(tr(
"Ignore"), QMessageBox::YesRole);
89 QPushButton* buttonIgnoreAll = msgBox.addButton(tr(
"Ignore all"), QMessageBox::AcceptRole);
90 msgBox.setDefaultButton(buttonIgnoreAll);
92 if (msgBox.clickedButton() == buttonCancel)
97 if (msgBox.clickedButton() == buttonIgnoreAll)
110 auto temp_bag = std::make_shared<rosbag::Bag>();
118 QMessageBox::warning(
nullptr, tr(
"Error"), QString(
"rosbag::open thrown an exception:\n") + QString(ex.what()));
123 auto all_topics =
getAllTopics(temp_bag.get(), ros_parser);
139 if (dialog->exec() !=
static_cast<int>(QDialog::Accepted))
164 std::set<std::string> topic_selected;
167 topic_selected.insert(
topic.toStdString());
170 QProgressDialog progress_dialog;
171 progress_dialog.setWindowTitle(
"Loading the rosbag");
172 progress_dialog.setLabelText(
"Loading... please wait");
173 progress_dialog.setWindowModality(Qt::ApplicationModal);
177 progress_dialog.setRange(0, bag_view.
size() - 1);
178 progress_dialog.show();
187 std::vector<uint8_t>
buffer;
191 const std::string& topic_name = msg_instance.getTopic();
192 double msg_time = msg_instance.getTime().toSec();
195 if (topic_selected.find(topic_name) == topic_selected.end())
201 if (msg_count++ % 100 == 0)
203 progress_dialog.setValue(msg_count);
204 QApplication::processEvents();
206 if (progress_dialog.wasCanceled())
213 const size_t msg_size = msg_instance.size();
216 msg_instance.write(stream);
220 double tmp_timestamp = msg_time;
221 ros_parser.
parseMessage(topic_name, msg_serialized, tmp_timestamp);
225 plot_consecutive.
pushBack(data_point);
227 auto plot_pair = plot_map.
user_defined.find(topic_name);
236 qDebug() <<
"The loading operation took" << timer.elapsed() <<
"milliseconds";