Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef ROSMATLAB_ROSBAG_VIEW_H
00030 #define ROSMATLAB_ROSBAG_VIEW_H
00031
00032 #include <rosbag/view.h>
00033 #include <rosmatlab/object.h>
00034
00035 #include <introspection/forwards.h>
00036
00037 namespace rosmatlab {
00038 namespace rosbag {
00039
00040 using ::rosbag::MessageInstance;
00041 using ::rosbag::ConnectionInfo;
00042
00043 class Bag;
00044 class Query;
00045
00046 class View : public ::rosbag::View, public Object<View> {
00047 public:
00048 friend class Bag;
00049
00050 using ::rosbag::View::iterator;
00051 using ::rosbag::View::const_iterator;
00052
00053 View(int nrhs, const mxArray *prhs[]);
00054 View(const Bag& bag, int nrhs, const mxArray *prhs[]);
00055 virtual ~View();
00056
00057 using ::rosbag::View::begin;
00058 using ::rosbag::View::end;
00059 using ::rosbag::View::size;
00060
00061 mxArray *getSize();
00062
00063 void addQuery(int nrhs, const mxArray *prhs[]);
00064 void addQuery(const Bag& bag, int nrhs, const mxArray *prhs[]);
00065
00066 void reset();
00067 bool start();
00068 bool valid();
00069 bool eof();
00070 void increment();
00071
00072 void get(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]);
00073 void next(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]);
00074 void data(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]);
00075
00076 mxArray *getTime();
00077 mxArray *getTopic();
00078 mxArray *getDataType();
00079 mxArray *getMD5Sum();
00080 mxArray *getMessageDefinition();
00081 mxArray *getConnectionHeader();
00082 mxArray *getCallerId();
00083 mxArray *isLatching();
00084
00085 mxArray *getQueries();
00086 mxArray *getConnections();
00087 mxArray *getBeginTime();
00088 mxArray *getEndTime();
00089
00090 private:
00091 iterator& operator*();
00092 MessageInstance* operator->();
00093 mxArray *getInternal(mxArray *target, std::size_t index = 0, std::size_t size = 0);
00094
00095 private:
00096 std::vector<boost::shared_ptr<Query> > queries_;
00097 std::vector<uint8_t> read_buffer_;
00098
00099 cpp_introspection::MessagePtr message_instance_;
00100 iterator current_;
00101 bool eof_;
00102 };
00103
00104 }
00105 }
00106
00107 #endif // ROSMATLAB_ROSBAG_VIEW_H