TAMSVIZ
Visualization and annotation tool for ROS
bagplayer.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include <condition_variable>
7 #include <mutex>
8 #include <string>
9 #include <thread>
10 #include <unordered_map>
11 #include <vector>
12 
13 #include "event.h"
14 
15 #include <rosbag/bag.h>
16 
17 class RosBagView;
19 class Topic;
20 class Message;
21 
22 class BagPlayer {
23  std::shared_ptr<RosBagView> _view;
24  std::shared_ptr<MessagePlaybackScope> _message_playback_scope;
25  mutable std::mutex _view_mutex;
26  double _duration = 0;
27  std::string _path;
28  std::string _file_name;
29  ros::Time _bag_start_time;
30  std::thread _thread;
31  std::mutex _action_mutex;
32  std::function<void()> _pending_action;
33  std::function<double()> _time_function;
34  std::condition_variable _action_condition;
35  std::unordered_map<std::string, std::shared_ptr<Topic>> _topics;
36  std::vector<std::string> _topic_names;
37  std::vector<std::pair<std::string, std::string>> _topic_type_name_list;
38  volatile bool _is_playing = false;
39  bool _exit = false;
40  void startAction(const std::function<void()> &action);
41  inline bool interrupted_nolock() {
42  return _pending_action != nullptr || _exit;
43  }
44  inline bool interrupted() {
45  std::unique_lock<std::mutex> lock(_action_mutex);
46  return interrupted_nolock();
47  }
48  // std::shared_ptr<const Message>
49  // instantiate_nolock(const rosbag::MessageInstance &msg);
50  // void publish(const rosbag::MessageInstance &msg);
51  void publish(const std::string &topic,
52  const std::shared_ptr<const Message> &message);
53 
54 public:
55  BagPlayer(const std::string &path);
56  BagPlayer(const BagPlayer &) = delete;
57  BagPlayer &operator=(const BagPlayer &) = delete;
58  void stop();
59  void play(const std::vector<double> &notification_times);
60  void rewind();
61  void seek(double time_from_start);
62  double time();
63  inline double duration() const { return _duration; }
64  const std::string &path() const { return _path; }
65  const std::string &fileName() const { return _file_name; }
66  std::vector<std::string> listTopics(const std::string &type_name);
67  bool findMessageTimeSpan(const std::string &topic, double time, double *start,
68  double *duration) const;
69  const ros::Time &startTime() const { return _bag_start_time; }
70  // std::vector<std::shared_ptr<const Message>>
71  // readMessageSamples(const std::string &topic, double start, double stop);
72  void readMessageSamples(
73  const std::string &topic, double start, double stop,
74  const std::function<bool(const std::shared_ptr<const Message> &)>
75  &callback);
76  bool isPlaying() const { return _is_playing; }
77  ~BagPlayer();
78  Event<void()> changed;
79 };
Definition: topic.h:30