-
Notifications
You must be signed in to change notification settings - Fork 261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Design abstract storage interface #8
Comments
anhosi
added a commit
to bosch-io/rosbag2
that referenced
this issue
Sep 17, 2018
anhosi
added a commit
to bosch-io/rosbag2
that referenced
this issue
Sep 18, 2018
anhosi
added a commit
to bosch-io/rosbag2
that referenced
this issue
Sep 18, 2018
Make the future a class member of player to avoid having to hand it into several functions which is difficult with a move-only type.
anhosi
added a commit
to bosch-io/rosbag2
that referenced
this issue
Sep 18, 2018
anhosi
added a commit
to bosch-io/rosbag2
that referenced
this issue
Sep 18, 2018
Add an explicit overload for record without a topic_names argument to record all topics.
greimela-si
pushed a commit
to bosch-io/rosbag2
that referenced
this issue
Sep 19, 2018
greimela-si
pushed a commit
to bosch-io/rosbag2
that referenced
this issue
Sep 19, 2018
greimela-si
pushed a commit
to bosch-io/rosbag2
that referenced
this issue
Sep 19, 2018
Make the future a class member of player to avoid having to hand it into several functions which is difficult with a move-only type.
greimela-si
pushed a commit
to bosch-io/rosbag2
that referenced
this issue
Sep 19, 2018
greimela-si
pushed a commit
to bosch-io/rosbag2
that referenced
this issue
Sep 19, 2018
Add an explicit overload for record without a topic_names argument to record all topics.
Karsten1987
pushed a commit
that referenced
this issue
Sep 20, 2018
* GH-69 Read storage content in a separate thread For now the publishing starts only after the reading is completly done. This should change aufter GH-68 is done and a thread-safe queue can be used instead of std::queue. * GH-71 Add integration test for timing behavior * GH-68 Introduce vendor package for shared queue - Download and install headers from moodycamel readerwriterqueue - Download and install headers from moodycamel concurrentqueue - Use readerwriterqueue in code to load and publish concurrently * GH-71 Retain time difference of messages when playing a bag file - The main (play) thread sleeps until the time for publishing the message is reached. - Using std::chrono time_point and duration for type-safe time arithmetic instead of rcutils time types. * GH-71 Improve stability of read test - Subscribers need to maintain a longer history if the messages are not consumed fast enough. * GH-71 Fix Classloader instance lifetime The Classloader instance needs to outlive all objects created by it. * GH-71 Extract playing code into a class of its own Reason: record and play have almost no common code but do the exact opposite with the storage and rclcpp. * GH-70 Do not link explicitly against std_msgs - only required in tests - this decreases the amount of packages needed for a clean build without tests * GH-70 Fix error message of storage * GH-70 Fix pluginlib/storage issue for recording * GH-71 Cleanup: variable naming * GH-70 Load storage continuously instead of as fast as possible - Only load if queue contains less than 1000 messages - Wait a millisecond before loading again once the queue is long enough * GH-70 Add options struct to allow specification of queue size * GH-72 Wait for messages to fill up * GH-74 Rename integration tests to play/record tests * GH-74 Use test_msgs in integration tests - gets rid of string_msgs dependency * GH-70 Rename is_not_ready to is_pending, use bulk reading to queue * GH-70 Harmonize storage_loading_future variable * GH-88 Read messages in order of their timestamps - Currently, we write sequentially in order of arrival time so reading in id order is fine - This may change at a later time and should not change the reading behaviour, i.e. we need to read in order of timestamps * Fix compiler error on Mac * GH-8 Fix: use correct ros message type in test * GH-8 Cleanup: minor code style fixes * GH-8 Refactor future usage in player Make the future a class member of player to avoid having to hand it into several functions which is difficult with a move-only type. * GH-8 Cleanup: remove verbose logging for every stored message * GH-8 Refactor rosbag2 interface Add an explicit overload for record without a topic_names argument to record all topics. * fix: call vector.reserve instead of default initalization * fix record demo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Set the API for an abstract storage interface.
See the ros2/design#160 for reference.
The idea is to have a generic, common API to support multiple storage formats (sqlite, ros1bags, ...) to load binary data and the respective meta data to convert it later on to a functional ROS 2 message.
The text was updated successfully, but these errors were encountered: