-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added seek(time) interface to read_only_interface - default sqlite implementation - added seek implementation to sequential reader (assumes multi-file is in time order) - updated set_filter/reset_filter to be able to update in between reads without resetting to beginning - added tests for seeking/filtering both single and multi-file bags fix mock for seek_time remove extra line moved setting up filters and seek_time for new file into `load_current_file` split up seek tests added docs to read_only_interface for seek, set_filter & reset_filter Signed-off-by: Sonia Jin <[email protected]>
- Loading branch information
Showing
28 changed files
with
441 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
rosbag2_bagfile_information: | ||
version: 4 | ||
storage_identifier: sqlite3 | ||
relative_file_paths: | ||
- wbag_0.db3 | ||
- wbag_1.db3 | ||
- wbag_2.db3 | ||
- wbag_3.db3 | ||
- wbag_4.db3 | ||
duration: | ||
nanoseconds: 411 | ||
starting_time: | ||
nanoseconds_since_epoch: 2623 | ||
message_count: 6074 | ||
topics_with_message_count: | ||
- topic_metadata: | ||
name: HHH | ||
type: std_msgs/msg/String | ||
serialization_format: cdr | ||
offered_qos_profiles: "" | ||
message_count: 726 | ||
- topic_metadata: | ||
name: GGG | ||
type: std_msgs/msg/String | ||
serialization_format: cdr | ||
offered_qos_profiles: "" | ||
message_count: 731 | ||
- topic_metadata: | ||
name: FFF | ||
type: std_msgs/msg/String | ||
serialization_format: cdr | ||
offered_qos_profiles: "" | ||
message_count: 772 | ||
- topic_metadata: | ||
name: EEE | ||
type: std_msgs/msg/String | ||
serialization_format: cdr | ||
offered_qos_profiles: "" | ||
message_count: 804 | ||
- topic_metadata: | ||
name: CCC | ||
type: std_msgs/msg/String | ||
serialization_format: cdr | ||
offered_qos_profiles: "" | ||
message_count: 742 | ||
- topic_metadata: | ||
name: DDD | ||
type: std_msgs/msg/String | ||
serialization_format: cdr | ||
offered_qos_profiles: "" | ||
message_count: 753 | ||
- topic_metadata: | ||
name: BBB | ||
type: std_msgs/msg/String | ||
serialization_format: cdr | ||
offered_qos_profiles: "" | ||
message_count: 742 | ||
- topic_metadata: | ||
name: AAA | ||
type: std_msgs/msg/String | ||
serialization_format: cdr | ||
offered_qos_profiles: "" | ||
message_count: 804 | ||
compression_format: "" | ||
compression_mode: "" |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.