|
Package Summary
Tags | No category tags. |
Version | 0.15.12 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros2/rosbag2.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-11-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
ROSBag2 SQLite3 storage plugin
Additional Links
No additional links.
Maintainers
- Michael Orlov
- Geoffrey Biggs
- Michel Hidalgo
- Emerson Knapp
- ROS Tooling Working Group
Authors
No additional authors.
README
No README found.
See repository README.
CHANGELOG
Changelog for package rosbag2_storage_default_plugins
0.15.12 (2024-07-28)
- [Humble] Add topics with zero message counts to the SQLiteStorage::get_metadata(). (#1722)
- [humble] Fix for failing throws_on_invalid_pragma_in_config_file test on Windows (backport #1742) (#1748)
- Contributors: Michael Orlov, mergify[bot]
0.15.11 (2024-05-20)
0.15.10 (2024-05-17)
0.15.9 (2024-01-24)
0.15.8 (2023-09-19)
0.15.7 (2023-07-18)
0.15.6 (2023-06-05)
0.15.5 (2023-04-25)
0.15.4 (2023-01-10)
- ros2bag: move storage preset validation to sqlite3 plugin (#1135) (#1184)
- [humble] Store db schema version and ROS_DISTRO name in db3 files (backport #1156) (#1175)
- Contributors: Daisuke Nishimatsu, mergify[bot]
0.15.3 (2022-11-07)
- Add support for old db3 schema used on distros prior to Foxy (#1090) (#1094)
- Revert "[humble] Backport. Added support for filtering topics via regular expressions (#1034)- (#1039)" (#1069)
- [humble] Backport. Added support for filtering topics via regular expressions (#1034)- (#1039)
- Contributors: Esteve Fernandez, mergify[bot]
0.15.2 (2022-05-11)
0.15.1 (2022-04-06)
0.15.0 (2022-04-05)
0.14.1 (2022-03-29)
- Bump version number to avoid conflict
- Contributors: Chris Lalancette
0.14.0 (2022-03-29)
- Install headers to include/${PROJECT_NAME} (#958)
- Contributors: Shane Loretz
0.13.0 (2022-01-13)
- Emit a warning rather than crash when a message is too big for sqlite (#919)
- Contributors: William Woodall
0.12.0 (2021-12-17)
- Enable YAML encoding/decoding for RecordOptions and StorageOptions (#916)
- Contributors: Emerson Knapp
0.11.0 (2021-11-08)
- Update package maintainers (#899)
- Contributors: Michel Hidalgo
0.10.1 (2021-10-22)
0.10.0 (2021-10-19)
- added seek interface (#836)
- Contributors: sonia
0.9.0 (2021-05-17)
0.8.0 (2021-04-19)
- Remove -Werror from builds, enable it in Action CI (#722)
- Explicitly add emersonknapp as maintainer (#692)
- Reindexer core (#641) Add a new C++ Reindexer class for reconstructing metadata from bags that are missing it.
- Contributors: Emerson Knapp, jhdcs
0.7.0 (2021-03-18)
0.6.0 (2021-02-01)
- Fix build issues when rosbag2_storage is binary installed (#585)
- Mutex protection for db writing and stl collections in writer & storage (#603)
- SQLite storage optimized by default (#568)
- Contributors: Adam DÄ…browski, P. J. Reed
0.5.0 (2020-12-02)
0.4.0 (2020-11-19)
- read yaml config file (#497)
- add storage_config_uri (#493)
- Update the package.xml files with the latest Open Robotics maintainers (#535)
- Contributors: Karsten Knese, Michael Jeronimo
0.3.2 (2020-06-03)
0.3.1 (2020-06-01)
0.3.0 (2020-05-26)
0.2.8 (2020-05-18)
0.2.7 (2020-05-12)
0.2.6 (2020-05-07)
0.2.5 (2020-04-30)
- Add filter for reading selective topics (#302)
- Transaction based sqlite3 inserts (#225)
- Add QoS profiles field to metadata struct and provide serialization utilities (#330)
- Replace rcutils_get_file_size with rcpputils::fs::file_size (#291)
- code style only: wrap after open parenthesis if not in one line (#280)
- Improve SQLite error messages (#269)
- remove rosbag2 filesystem helper (#249)
- Sanitize bagfile splitting CLI input (#226)
- make ros tooling working group maintainer (#211)
- Contributors: Dirk Thomas, Emerson Knapp, Karsten Knese, Mabel Zhang, Prajakta Gokhale, Sriram Raghunathan, Zachary Michaels
0.2.4 (2019-11-18)
0.2.3 (2019-11-18)
- Enhance rosbag writer capabilities to split bag files. (#185)
- Contributors: Zachary Michaels
0.2.2 (2019-11-13)
- (API) Generate bagfile metadata in Writer (#184)
- Contributors: Zachary Michaels
0.2.1 (2019-10-23)
- Add get_identifier to storage io-interface for support in bagfile splitting. (#183)
- Change storage interfaces for bagfile splitting feature (#170)
- Add error checking on SqliteWrapper deconstructor. (#169)
- Contributors: Zachary Michaels
0.2.0 (2019-09-26)
0.1.2 (2019-05-20)
- Indexing of messages.timestamp to avoid runtime-copy. (#121) Extended SqliteStorage::initialize() to add an index for the message table's timestamp column. Without this, the ORDER BY query in prepare_for_reading() causes expensive table duplication, which also has potential for out-of-disk or out-of-memory errors.
- Fixes an init race condition
(#93)
* This could probably be a race condition, for ex: When we've
create a subscriber in the API, and the subscriber has the data
already available in the callback (Cause of existing publishers) the
db entry for the particular topic would not be availalble, which in
turn returns an SqliteException. This is cause
write_->create_topic() call is where we add the db entry for a
particular topic. And, this leads to crashing before any recording.
Locally I solved it by adding the db entry first, and if
create_subscription fails, remove the topic entry from the db and
also erase the subscription. Signed-off-by: Sriram Raghunathan
<<rsriram7@visteon.com>>
* Fix comments for pull request
https://github.com/ros2/rosbag2/pull/93 Signed-off-by: Sriram
Raghunathan <<rsriram7@visteon.com>>
* Added unit test case for remove_topics from db Signed-off-by:
Sriram Raghunathan <<rsriram7@visteon.com>>
* Fix unit tests failing by adding dependent test macros
Signed-off-by: Sriram Raghunathan <<rsriram7@visteon.com>>
- Fixes the linter errors
- Contributors: Felix-El, Sriram Raghunathan
0.1.1 (2019-05-09)
0.1.0 (2019-05-08)
- fix line length of logging macros (#110)
- fix logging signature (#107)
- Contributors: Dirk Thomas, Karsten Knese
0.0.5 (2018-12-27)
0.0.4 (2018-12-19)
- 0.0.3
- Play old bagfiles (#69)
- Contributors: Karsten Knese, Martin Idel
0.0.2 (2018-12-12)
- update maintainer email
- fix unused variable warning when in release
- Contributors: Karsten Knese
0.0.1 (2018-12-11)
- rename topic_with_types to topic_metadata
- GH-142 replace map with unordered map where possible (#65)
- Use converters when recording a bag file (#57)
- use uint8 for serialized message (#61)
- Renaming struct members for consistency (#64)
- Display bag summary using [ros2 bag info]{.title-ref} (#45)
- Use directory as bagfile and add additonal record options (#43)
- Introduce rosbag2_transport layer and CLI (#38)
- Add correct timing behaviour for rosbag play (#32)
- Improve sqlite iterator interface (#33)
- Improve sqlite usage and test stability (#31)
- Record all topics (#30)
- Record and play multiple topics (#27)
- Allow an arbitrary topic to be recorded (#26)
- Use serialized message directly (#24)
- add visibility macros (#28)
- initial version of plugin based storage api (#7)
- Contributors: Alessandro Bottero, Andreas Greimel, Andreas Holzner, Karsten Knese, Martin Idel
Wiki Tutorials
This package does not provide any links to tutorials in it's rosindex metadata.
You can check on the ROS Wiki Tutorials page for the package.
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
ament_cmake_gmock | |
rosbag2_test_common | |
pluginlib | |
rcpputils | |
rcutils | |
rosbag2_storage | |
sqlite3_vendor | |
yaml_cpp_vendor |
System Dependencies
No direct system dependencies.
Dependant Packages
Launch files
No launch files found
Messages
No message files found.
Services
No service files found
Plugins
No plugins found.
Recent questions tagged rosbag2_storage_default_plugins at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 0.22.8 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros2/rosbag2.git |
VCS Type | git |
VCS Version | iron |
Last Updated | 2024-11-11 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Intermediate metapackage to point at default storage plugin(s) for rosbag2
Additional Links
No additional links.
Maintainers
- Michael Orlov
- Geoffrey Biggs
- Michel Hidalgo
- Emerson Knapp
- ROS Tooling Working Group
Authors
No additional authors.
README
No README found.
See repository README.
CHANGELOG
Changelog for package rosbag2_storage_default_plugins
0.22.8 (2024-11-09)
0.22.7 (2024-07-11)
0.22.6 (2024-02-07)
0.22.5 (2023-11-18)
0.22.4 (2023-10-24)
0.22.3 (2023-09-08)
0.22.2 (2023-07-14)
0.22.1 (2023-05-18)
0.22.0 (2023-04-18)
0.21.0 (2023-04-12)
0.20.0 (2023-02-14)
0.19.0 (2023-01-13)
- rosbag2_storage: set MCAP as default plugin (#1160)
- Add Michael Orlov as maintainer in rosbag2 packages (#1215)
- Contributors: Michael Orlov, james-rms
0.18.0 (2022-11-15)
- Move sqlite3 storage implementation to rosbag2_storage_sqlite3 package (#1113)
- Reverse read order API and sqlite storage implementation (#1083)
- Add support for old db3 schema used on distros prior to Foxy (#1090)
- Added support for excluding topics via regular expressions (#1046)
- Contributors: Emerson Knapp, Esteve Fernandez, Michael Orlov
Wiki Tutorials
This package does not provide any links to tutorials in it's rosindex metadata.
You can check on the ROS Wiki Tutorials page for the package.
Package Dependencies
System Dependencies
No direct system dependencies.
Dependant Packages
Launch files
No launch files found
Messages
No message files found.
Services
No service files found
Plugins
No plugins found.
Recent questions tagged rosbag2_storage_default_plugins at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 0.26.5 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros2/rosbag2.git |
VCS Type | git |
VCS Version | jazzy |
Last Updated | 2024-11-07 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Intermediate metapackage to point at default storage plugin(s) for rosbag2
Additional Links
No additional links.
Maintainers
- Michael Orlov
- Geoffrey Biggs
- Michel Hidalgo
- Emerson Knapp
- ROS Tooling Working Group
Authors
No additional authors.
README
No README found.
See repository README.
CHANGELOG
Changelog for package rosbag2_storage_default_plugins
0.26.5 (2024-09-06)
0.26.4 (2024-06-27)
0.26.3 (2024-05-15)
0.26.2 (2024-04-24)
0.26.1 (2024-04-17)
0.26.0 (2024-04-16)
0.25.0 (2024-03-27)
0.24.0 (2023-07-11)
0.23.0 (2023-04-28)
0.22.0 (2023-04-18)
0.21.0 (2023-04-12)
0.20.0 (2023-02-14)
0.19.0 (2023-01-13)
- rosbag2_storage: set MCAP as default plugin (#1160)
- Add Michael Orlov as maintainer in rosbag2 packages (#1215)
- Contributors: Michael Orlov, james-rms
0.18.0 (2022-11-15)
- Move sqlite3 storage implementation to rosbag2_storage_sqlite3 package (#1113)
- Reverse read order API and sqlite storage implementation (#1083)
- Add support for old db3 schema used on distros prior to Foxy (#1090)
- Added support for excluding topics via regular expressions (#1046)
- Contributors: Emerson Knapp, Esteve Fernandez, Michael Orlov
Wiki Tutorials
This package does not provide any links to tutorials in it's rosindex metadata.
You can check on the ROS Wiki Tutorials page for the package.
Package Dependencies
System Dependencies
No direct system dependencies.
Dependant Packages
Launch files
No launch files found
Messages
No message files found.
Services
No service files found
Plugins
No plugins found.
Recent questions tagged rosbag2_storage_default_plugins at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 0.29.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros2/rosbag2.git |
VCS Type | git |
VCS Version | rolling |
Last Updated | 2024-11-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Intermediate metapackage to point at default storage plugin(s) for rosbag2
Additional Links
No additional links.
Maintainers
- Michael Orlov
- Geoffrey Biggs
- Michel Hidalgo
- Emerson Knapp
- ROS Tooling Working Group
Authors
No additional authors.
README
No README found.
See repository README.
CHANGELOG
Changelog for package rosbag2_storage_default_plugins
0.29.0 (2024-09-03)
0.28.0 (2024-06-17)
0.27.0 (2024-04-30)
0.26.1 (2024-04-17)
0.26.0 (2024-04-16)
0.25.0 (2024-03-27)
0.24.0 (2023-07-11)
0.23.0 (2023-04-28)
0.22.0 (2023-04-18)
0.21.0 (2023-04-12)
0.20.0 (2023-02-14)
0.19.0 (2023-01-13)
- rosbag2_storage: set MCAP as default plugin (#1160)
- Add Michael Orlov as maintainer in rosbag2 packages (#1215)
- Contributors: Michael Orlov, james-rms
0.18.0 (2022-11-15)
- Move sqlite3 storage implementation to rosbag2_storage_sqlite3 package (#1113)
- Reverse read order API and sqlite storage implementation (#1083)
- Add support for old db3 schema used on distros prior to Foxy (#1090)
- Added support for excluding topics via regular expressions (#1046)
- Contributors: Emerson Knapp, Esteve Fernandez, Michael Orlov
Wiki Tutorials
This package does not provide any links to tutorials in it's rosindex metadata.
You can check on the ROS Wiki Tutorials page for the package.
Package Dependencies
System Dependencies
No direct system dependencies.
Dependant Packages
Launch files
No launch files found
Messages
No message files found.
Services
No service files found
Plugins
No plugins found.
Recent questions tagged rosbag2_storage_default_plugins at Robotics Stack Exchange
No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
rosbag2_storage_default_plugins package from rosbag2 reporos1_rosbag_storage_vendor ros2bag rosbag2 rosbag2_bag_v2_plugins rosbag2_converter_default_plugins rosbag2_storage rosbag2_storage_default_plugins rosbag2_test_common rosbag2_tests rosbag2_transport shared_queues_vendor sqlite3_vendor |
|
Package Summary
Tags | No category tags. |
Version | 0.0.7 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros2/rosbag2.git |
VCS Type | git |
VCS Version | crystal |
Last Updated | 2019-04-08 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
ROSBag2 SQLite3 storage plugin
Additional Links
No additional links.
Maintainers
- Karsten Knese
Authors
No additional authors.
README
No README found.
See repository README.
CHANGELOG
Changelog for package rosbag2_storage_default_plugins
0.0.7 (2019-04-08)
0.0.6 (2019-02-27)
0.0.5 (2018-12-27)
0.0.4 (2018-12-19)
- 0.0.3
- Play old bagfiles (#69)
- Contributors: Karsten Knese, Martin Idel
0.0.2 (2018-12-12)
- update maintainer email
- fix unused variable warning when in release
- Contributors: Karsten Knese
0.0.1 (2018-12-11)
- rename topic_with_types to topic_metadata
- GH-142 replace map with unordered map where possible (#65)
- Use converters when recording a bag file (#57)
- use uint8 for serialized message (#61)
- Renaming struct members for consistency (#64)
- Display bag summary using [ros2 bag info]{.title-ref} (#45)
- Use directory as bagfile and add additonal record options (#43)
- Introduce rosbag2_transport layer and CLI (#38)
- Add correct timing behaviour for rosbag play (#32)
- Improve sqlite iterator interface (#33)
- Improve sqlite usage and test stability (#31)
- Record all topics (#30)
- Record and play multiple topics (#27)
- Allow an arbitrary topic to be recorded (#26)
- Use serialized message directly (#24)
- add visibility macros (#28)
- initial version of plugin based storage api (#7)
- Contributors: Alessandro Bottero, Andreas Greimel, Andreas Holzner, Karsten Knese, Martin Idel
Wiki Tutorials
This package does not provide any links to tutorials in it's rosindex metadata.
You can check on the ROS Wiki Tutorials page for the package.
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
ament_cmake_gmock | |
rosbag2_test_common | |
pluginlib | |
rcutils | |
rosbag2_storage | |
sqlite3_vendor |
System Dependencies
No direct system dependencies.
Dependant Packages
Name | Deps |
---|---|
rosbag2_tests |
Launch files
No launch files found
Messages
No message files found.
Services
No service files found
Plugins
No plugins found.
Recent questions tagged rosbag2_storage_default_plugins at Robotics Stack Exchange
rosbag2_storage_default_plugins package from rosbag2 reporos2bag rosbag2 rosbag2_converter_default_plugins rosbag2_storage rosbag2_storage_default_plugins rosbag2_test_common rosbag2_tests rosbag2_transport shared_queues_vendor sqlite3_vendor |
|
Package Summary
Tags | No category tags. |
Version | 0.2.4 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros2/rosbag2.git |
VCS Type | git |
VCS Version | eloquent |
Last Updated | 2020-11-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
ROSBag2 SQLite3 storage plugin
Additional Links
No additional links.
Maintainers
- Karsten Knese
- Michael Jeronimo
Authors
No additional authors.
README
No README found.
See repository README.
CHANGELOG
Changelog for package rosbag2_storage_default_plugins
0.2.4 (2019-11-18)
0.2.3 (2019-11-18)
- Enhance rosbag writer capabilities to split bag files. (#185)
- Contributors: Zachary Michaels
0.2.2 (2019-11-13)
- (API) Generate bagfile metadata in Writer (#184)
- Contributors: Zachary Michaels
0.2.1 (2019-10-23)
- Add get_identifier to storage io-interface for support in bagfile splitting. (#183)
- Change storage interfaces for bagfile splitting feature (#170)
- Add error checking on SqliteWrapper deconstructor. (#169)
- Contributors: Zachary Michaels
0.2.0 (2019-09-26)
0.1.2 (2019-05-20)
- Indexing of messages.timestamp to avoid runtime-copy. (#121) Extended SqliteStorage::initialize() to add an index for the message table's timestamp column. Without this, the ORDER BY query in prepare_for_reading() causes expensive table duplication, which also has potential for out-of-disk or out-of-memory errors.
- Fixes an init race condition
(#93)
* This could probably be a race condition, for ex: When we've
create a subscriber in the API, and the subscriber has the data
already available in the callback (Cause of existing publishers) the
db entry for the particular topic would not be availalble, which in
turn returns an SqliteException. This is cause
write_->create_topic() call is where we add the db entry for a
particular topic. And, this leads to crashing before any recording.
Locally I solved it by adding the db entry first, and if
create_subscription fails, remove the topic entry from the db and
also erase the subscription. Signed-off-by: Sriram Raghunathan
<<rsriram7@visteon.com>>
* Fix comments for pull request
https://github.com/ros2/rosbag2/pull/93 Signed-off-by: Sriram
Raghunathan <<rsriram7@visteon.com>>
* Added unit test case for remove_topics from db Signed-off-by:
Sriram Raghunathan <<rsriram7@visteon.com>>
* Fix unit tests failing by adding dependent test macros
Signed-off-by: Sriram Raghunathan <<rsriram7@visteon.com>>
- Fixes the linter errors
- Contributors: Felix-El, Sriram Raghunathan
0.1.1 (2019-05-09)
0.1.0 (2019-05-08)
- fix line length of logging macros (#110)
- fix logging signature (#107)
- Contributors: Dirk Thomas, Karsten Knese
0.0.5 (2018-12-27)
0.0.4 (2018-12-19)
- 0.0.3
- Play old bagfiles (#69)
- Contributors: Karsten Knese, Martin Idel
0.0.2 (2018-12-12)
- update maintainer email
- fix unused variable warning when in release
- Contributors: Karsten Knese
0.0.1 (2018-12-11)
- rename topic_with_types to topic_metadata
- GH-142 replace map with unordered map where possible (#65)
- Use converters when recording a bag file (#57)
- use uint8 for serialized message (#61)
- Renaming struct members for consistency (#64)
- Display bag summary using [ros2 bag info]{.title-ref} (#45)
- Use directory as bagfile and add additonal record options (#43)
- Introduce rosbag2_transport layer and CLI (#38)
- Add correct timing behaviour for rosbag play (#32)
- Improve sqlite iterator interface (#33)
- Improve sqlite usage and test stability (#31)
- Record all topics (#30)
- Record and play multiple topics (#27)
- Allow an arbitrary topic to be recorded (#26)
- Use serialized message directly (#24)
- add visibility macros (#28)
- initial version of plugin based storage api (#7)
- Contributors: Alessandro Bottero, Andreas Greimel, Andreas Holzner, Karsten Knese, Martin Idel
Wiki Tutorials
This package does not provide any links to tutorials in it's rosindex metadata.
You can check on the ROS Wiki Tutorials page for the package.
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
ament_cmake_gmock | |
rosbag2_test_common | |
pluginlib | |
rcutils | |
rosbag2_storage | |
sqlite3_vendor |
System Dependencies
No direct system dependencies.
Dependant Packages
Name | Deps |
---|---|
rosbag2_tests |
Launch files
No launch files found
Messages
No message files found.
Services
No service files found
Plugins
No plugins found.
Recent questions tagged rosbag2_storage_default_plugins at Robotics Stack Exchange
rosbag2_storage_default_plugins package from rosbag2 reporos2bag rosbag2 rosbag2_converter_default_plugins rosbag2_storage rosbag2_storage_default_plugins rosbag2_test_common rosbag2_tests rosbag2_transport shared_queues_vendor sqlite3_vendor |
|
Package Summary
Tags | No category tags. |
Version | 0.1.8 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros2/rosbag2.git |
VCS Type | git |
VCS Version | dashing |
Last Updated | 2020-10-29 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
ROSBag2 SQLite3 storage plugin
Additional Links
No additional links.
Maintainers
- Karsten Knese
- Michael Jeronimo
Authors
No additional authors.
README
No README found.
See repository README.
CHANGELOG
Changelog for package rosbag2_storage_default_plugins
0.1.8 (2019-10-16)
0.1.7 (2019-10-14)
0.1.6 (2019-09-20)
0.1.5 (2019-09-09)
0.1.4 (2019-07-31)
0.1.3 (2019-06-12)
0.1.2 (2019-05-20)
- Indexing of messages.timestamp to avoid runtime-copy. (#121) Extended SqliteStorage::initialize() to add an index for the message table's timestamp column. Without this, the ORDER BY query in prepare_for_reading() causes expensive table duplication, which also has potential for out-of-disk or out-of-memory errors.
- Fixes an init race condition
(#93)
* This could probably be a race condition, for ex: When we've
create a subscriber in the API, and the subscriber has the data
already available in the callback (Cause of existing publishers) the
db entry for the particular topic would not be availalble, which in
turn returns an SqliteException. This is cause
write_->create_topic() call is where we add the db entry for a
particular topic. And, this leads to crashing before any recording.
Locally I solved it by adding the db entry first, and if
create_subscription fails, remove the topic entry from the db and
also erase the subscription. Signed-off-by: Sriram Raghunathan
<<rsriram7@visteon.com>>
* Fix comments for pull request
https://github.com/ros2/rosbag2/pull/93 Signed-off-by: Sriram
Raghunathan <<rsriram7@visteon.com>>
* Added unit test case for remove_topics from db Signed-off-by:
Sriram Raghunathan <<rsriram7@visteon.com>>
* Fix unit tests failing by adding dependent test macros
Signed-off-by: Sriram Raghunathan <<rsriram7@visteon.com>>
- Fixes the linter errors
- Contributors: Felix-El, Sriram Raghunathan
0.1.1 (2019-05-09)
0.1.0 (2019-05-08)
- fix line length of logging macros (#110)
- fix logging signature (#107)
- Contributors: Dirk Thomas, Karsten Knese
0.0.5 (2018-12-27)
0.0.4 (2018-12-19)
- 0.0.3
- Play old bagfiles (#69)
- Contributors: Karsten Knese, Martin Idel
0.0.2 (2018-12-12)
- update maintainer email
- fix unused variable warning when in release
- Contributors: Karsten Knese
0.0.1 (2018-12-11)
- rename topic_with_types to topic_metadata
- GH-142 replace map with unordered map where possible (#65)
- Use converters when recording a bag file (#57)
- use uint8 for serialized message (#61)
- Renaming struct members for consistency (#64)
- Display bag summary using [ros2 bag info]{.title-ref} (#45)
- Use directory as bagfile and add additonal record options (#43)
- Introduce rosbag2_transport layer and CLI (#38)
- Add correct timing behaviour for rosbag play (#32)
- Improve sqlite iterator interface (#33)
- Improve sqlite usage and test stability (#31)
- Record all topics (#30)
- Record and play multiple topics (#27)
- Allow an arbitrary topic to be recorded (#26)
- Use serialized message directly (#24)
- add visibility macros (#28)
- initial version of plugin based storage api (#7)
- Contributors: Alessandro Bottero, Andreas Greimel, Andreas Holzner, Karsten Knese, Martin Idel
Wiki Tutorials
This package does not provide any links to tutorials in it's rosindex metadata.
You can check on the ROS Wiki Tutorials page for the package.
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
ament_cmake_gmock | |
rosbag2_test_common | |
pluginlib | |
rcutils | |
rosbag2_storage | |
sqlite3_vendor |
System Dependencies
No direct system dependencies.
Dependant Packages
Name | Deps |
---|---|
rosbag2_tests |
Launch files
No launch files found
Messages
No message files found.
Services
No service files found
Plugins
No plugins found.
Recent questions tagged rosbag2_storage_default_plugins at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 0.9.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros2/rosbag2.git |
VCS Type | git |
VCS Version | galactic |
Last Updated | 2022-09-29 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
ROSBag2 SQLite3 storage plugin
Additional Links
No additional links.
Maintainers
- Karsten Knese
- Michael Jeronimo
- Emerson Knapp
- ROS Tooling Working Group
Authors
No additional authors.
README
No README found.
See repository README.
CHANGELOG
Changelog for package rosbag2_storage_default_plugins
0.9.2 (2022-09-26)
0.9.1 (2021-07-08)
0.9.0 (2021-05-17)
0.8.0 (2021-04-19)
- Remove -Werror from builds, enable it in Action CI (#722)
- Explicitly add emersonknapp as maintainer (#692)
- Reindexer core (#641) Add a new C++ Reindexer class for reconstructing metadata from bags that are missing it.
- Contributors: Emerson Knapp, jhdcs
0.7.0 (2021-03-18)
0.6.0 (2021-02-01)
- Fix build issues when rosbag2_storage is binary installed (#585)
- Mutex protection for db writing and stl collections in writer & storage (#603)
- SQLite storage optimized by default (#568)
- Contributors: Adam DÄ…browski, P. J. Reed
0.5.0 (2020-12-02)
0.4.0 (2020-11-19)
- read yaml config file (#497)
- add storage_config_uri (#493)
- Update the package.xml files with the latest Open Robotics maintainers (#535)
- Contributors: Karsten Knese, Michael Jeronimo
0.3.2 (2020-06-03)
0.3.1 (2020-06-01)
0.3.0 (2020-05-26)
0.2.8 (2020-05-18)
0.2.7 (2020-05-12)
0.2.6 (2020-05-07)
0.2.5 (2020-04-30)
- Add filter for reading selective topics (#302)
- Transaction based sqlite3 inserts (#225)
- Add QoS profiles field to metadata struct and provide serialization utilities (#330)
- Replace rcutils_get_file_size with rcpputils::fs::file_size (#291)
- code style only: wrap after open parenthesis if not in one line (#280)
- Improve SQLite error messages (#269)
- remove rosbag2 filesystem helper (#249)
- Sanitize bagfile splitting CLI input (#226)
- make ros tooling working group maintainer (#211)
- Contributors: Dirk Thomas, Emerson Knapp, Karsten Knese, Mabel Zhang, Prajakta Gokhale, Sriram Raghunathan, Zachary Michaels
0.2.4 (2019-11-18)
0.2.3 (2019-11-18)
- Enhance rosbag writer capabilities to split bag files. (#185)
- Contributors: Zachary Michaels
0.2.2 (2019-11-13)
- (API) Generate bagfile metadata in Writer (#184)
- Contributors: Zachary Michaels
0.2.1 (2019-10-23)
- Add get_identifier to storage io-interface for support in bagfile splitting. (#183)
- Change storage interfaces for bagfile splitting feature (#170)
- Add error checking on SqliteWrapper deconstructor. (#169)
- Contributors: Zachary Michaels
0.2.0 (2019-09-26)
0.1.2 (2019-05-20)
- Indexing of messages.timestamp to avoid runtime-copy. (#121) Extended SqliteStorage::initialize() to add an index for the message table's timestamp column. Without this, the ORDER BY query in prepare_for_reading() causes expensive table duplication, which also has potential for out-of-disk or out-of-memory errors.
- Fixes an init race condition
(#93)
* This could probably be a race condition, for ex: When we've
create a subscriber in the API, and the subscriber has the data
already available in the callback (Cause of existing publishers) the
db entry for the particular topic would not be availalble, which in
turn returns an SqliteException. This is cause
write_->create_topic() call is where we add the db entry for a
particular topic. And, this leads to crashing before any recording.
Locally I solved it by adding the db entry first, and if
create_subscription fails, remove the topic entry from the db and
also erase the subscription. Signed-off-by: Sriram Raghunathan
<<rsriram7@visteon.com>>
* Fix comments for pull request
https://github.com/ros2/rosbag2/pull/93 Signed-off-by: Sriram
Raghunathan <<rsriram7@visteon.com>>
* Added unit test case for remove_topics from db Signed-off-by:
Sriram Raghunathan <<rsriram7@visteon.com>>
* Fix unit tests failing by adding dependent test macros
Signed-off-by: Sriram Raghunathan <<rsriram7@visteon.com>>
- Fixes the linter errors
- Contributors: Felix-El, Sriram Raghunathan
0.1.1 (2019-05-09)
0.1.0 (2019-05-08)
- fix line length of logging macros (#110)
- fix logging signature (#107)
- Contributors: Dirk Thomas, Karsten Knese
0.0.5 (2018-12-27)
0.0.4 (2018-12-19)
- 0.0.3
- Play old bagfiles (#69)
- Contributors: Karsten Knese, Martin Idel
0.0.2 (2018-12-12)
- update maintainer email
- fix unused variable warning when in release
- Contributors: Karsten Knese
0.0.1 (2018-12-11)
- rename topic_with_types to topic_metadata
- GH-142 replace map with unordered map where possible (#65)
- Use converters when recording a bag file (#57)
- use uint8 for serialized message (#61)
- Renaming struct members for consistency (#64)
- Display bag summary using [ros2 bag info]{.title-ref} (#45)
- Use directory as bagfile and add additonal record options (#43)
- Introduce rosbag2_transport layer and CLI (#38)
- Add correct timing behaviour for rosbag play (#32)
- Improve sqlite iterator interface (#33)
- Improve sqlite usage and test stability (#31)
- Record all topics (#30)
- Record and play multiple topics (#27)
- Allow an arbitrary topic to be recorded (#26)
- Use serialized message directly (#24)
- add visibility macros (#28)
- initial version of plugin based storage api (#7)
- Contributors: Alessandro Bottero, Andreas Greimel, Andreas Holzner, Karsten Knese, Martin Idel
Wiki Tutorials
This package does not provide any links to tutorials in it's rosindex metadata.
You can check on the ROS Wiki Tutorials page for the package.
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
ament_cmake_gmock | |
rosbag2_test_common | |
pluginlib | |
rcpputils | |
rcutils | |
rosbag2_storage | |
sqlite3_vendor | |
yaml_cpp_vendor |
System Dependencies
No direct system dependencies.
Dependant Packages
Launch files
No launch files found
Messages
No message files found.
Services
No service files found
Plugins
No plugins found.
Recent questions tagged rosbag2_storage_default_plugins at Robotics Stack Exchange
rosbag2_storage_default_plugins package from rosbag2 reporos2bag rosbag2 rosbag2_compression rosbag2_converter_default_plugins rosbag2_cpp bag_recorder_nodes rosbag2_storage rosbag2_storage_default_plugins rosbag2_test_common rosbag2_tests rosbag2_transport shared_queues_vendor sqlite3_vendor zstd_vendor |
|
Package Summary
Tags | No category tags. |
Version | 0.3.11 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros2/rosbag2.git |
VCS Type | git |
VCS Version | foxy |
Last Updated | 2023-05-31 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
ROSBag2 SQLite3 storage plugin
Additional Links
No additional links.
Maintainers
- Karsten Knese
- Michael Jeronimo
- ROS Tooling Working Group
Authors
No additional authors.
README
No README found.
See repository README.
CHANGELOG
Changelog for package rosbag2_storage_default_plugins
0.3.11 (2023-05-27)
0.3.10 (2023-03-16)
0.3.9 (2022-02-03)
0.3.8 (2021-07-19)
0.3.7 (2021-02-15)
0.3.6 (2021-01-05)
- Update maintainer list for Foxy (#551)
- Contributors: Michael Jeronimo
0.3.5 (2020-08-31)
0.3.4 (2020-08-05)
0.3.3 (2020-06-23)
0.3.2 (2020-06-03)
0.3.1 (2020-06-01)
0.3.0 (2020-05-26)
0.2.8 (2020-05-18)
0.2.7 (2020-05-12)
0.2.6 (2020-05-07)
0.2.5 (2020-04-30)
- Add filter for reading selective topics (#302)
- Transaction based sqlite3 inserts (#225)
- Add QoS profiles field to metadata struct and provide serialization utilities (#330)
- Replace rcutils_get_file_size with rcpputils::fs::file_size (#291)
- code style only: wrap after open parenthesis if not in one line (#280)
- Improve SQLite error messages (#269)
- remove rosbag2 filesystem helper (#249)
- Sanitize bagfile splitting CLI input (#226)
- make ros tooling working group maintainer (#211)
- Contributors: Dirk Thomas, Emerson Knapp, Karsten Knese, Mabel Zhang, Prajakta Gokhale, Sriram Raghunathan, Zachary Michaels
0.2.4 (2019-11-18)
0.2.3 (2019-11-18)
- Enhance rosbag writer capabilities to split bag files. (#185)
- Contributors: Zachary Michaels
0.2.2 (2019-11-13)
- (API) Generate bagfile metadata in Writer (#184)
- Contributors: Zachary Michaels
0.2.1 (2019-10-23)
- Add get_identifier to storage io-interface for support in bagfile splitting. (#183)
- Change storage interfaces for bagfile splitting feature (#170)
- Add error checking on SqliteWrapper deconstructor. (#169)
- Contributors: Zachary Michaels
0.2.0 (2019-09-26)
0.1.2 (2019-05-20)
- Indexing of messages.timestamp to avoid runtime-copy. (#121) Extended SqliteStorage::initialize() to add an index for the message table's timestamp column. Without this, the ORDER BY query in prepare_for_reading() causes expensive table duplication, which also has potential for out-of-disk or out-of-memory errors.
- Fixes an init race condition
(#93)
* This could probably be a race condition, for ex: When we've
create a subscriber in the API, and the subscriber has the data
already available in the callback (Cause of existing publishers) the
db entry for the particular topic would not be availalble, which in
turn returns an SqliteException. This is cause
write_->create_topic() call is where we add the db entry for a
particular topic. And, this leads to crashing before any recording.
Locally I solved it by adding the db entry first, and if
create_subscription fails, remove the topic entry from the db and
also erase the subscription. Signed-off-by: Sriram Raghunathan
<<rsriram7@visteon.com>>
* Fix comments for pull request
https://github.com/ros2/rosbag2/pull/93 Signed-off-by: Sriram
Raghunathan <<rsriram7@visteon.com>>
* Added unit test case for remove_topics from db Signed-off-by:
Sriram Raghunathan <<rsriram7@visteon.com>>
* Fix unit tests failing by adding dependent test macros
Signed-off-by: Sriram Raghunathan <<rsriram7@visteon.com>>
- Fixes the linter errors
- Contributors: Felix-El, Sriram Raghunathan
0.1.1 (2019-05-09)
0.1.0 (2019-05-08)
- fix line length of logging macros (#110)
- fix logging signature (#107)
- Contributors: Dirk Thomas, Karsten Knese
0.0.5 (2018-12-27)
0.0.4 (2018-12-19)
- 0.0.3
- Play old bagfiles (#69)
- Contributors: Karsten Knese, Martin Idel
0.0.2 (2018-12-12)
- update maintainer email
- fix unused variable warning when in release
- Contributors: Karsten Knese
0.0.1 (2018-12-11)
- rename topic_with_types to topic_metadata
- GH-142 replace map with unordered map where possible (#65)
- Use converters when recording a bag file (#57)
- use uint8 for serialized message (#61)
- Renaming struct members for consistency (#64)
- Display bag summary using [ros2 bag info]{.title-ref} (#45)
- Use directory as bagfile and add additonal record options (#43)
- Introduce rosbag2_transport layer and CLI (#38)
- Add correct timing behaviour for rosbag play (#32)
- Improve sqlite iterator interface (#33)
- Improve sqlite usage and test stability (#31)
- Record all topics (#30)
- Record and play multiple topics (#27)
- Allow an arbitrary topic to be recorded (#26)
- Use serialized message directly (#24)
- add visibility macros (#28)
- initial version of plugin based storage api (#7)
- Contributors: Alessandro Bottero, Andreas Greimel, Andreas Holzner, Karsten Knese, Martin Idel
Wiki Tutorials
This package does not provide any links to tutorials in it's rosindex metadata.
You can check on the ROS Wiki Tutorials page for the package.
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
ament_cmake_gmock | |
rosbag2_test_common | |
pluginlib | |
rcpputils | |
rcutils | |
rosbag2_storage | |
sqlite3_vendor |
System Dependencies
No direct system dependencies.
Dependant Packages
Name | Deps |
---|---|
psen_scan_v2 | |
rosbag2 | |
rosbag2_tests | |
webots_ros2_tests |
Launch files
No launch files found
Messages
No message files found.
Services
No service files found
Plugins
No plugins found.
Recent questions tagged rosbag2_storage_default_plugins at Robotics Stack Exchange
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.