├── .gitignore ├── CMakeLists.txt ├── Makefile ├── README.rst ├── examples └── simple-db-read-write │ ├── play-from-mysql.sh │ ├── play-from-postgres.sh │ ├── play-from-sqlite.sh │ ├── record-to-mysql.sh │ ├── record-to-postgres.sh │ └── record-to-sqlite.sh ├── mainpage.dox ├── manifest.xml ├── msg └── TestComplex.msg ├── nodes └── ros_sql ├── rosdep.yaml ├── scripts └── bag_to_sql ├── src └── ros_sql │ ├── __init__.py │ ├── factories.py │ ├── models.py │ ├── ros2sql.py │ ├── session.py │ ├── type_map.py │ └── util.py ├── stack.xml └── tests └── test_ros_sql.py /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | msg_gen 3 | src/ros_sql/msg 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | include $(shell rospack find mk)/cmake.mk -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/README.rst -------------------------------------------------------------------------------- /examples/simple-db-read-write/play-from-mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/examples/simple-db-read-write/play-from-mysql.sh -------------------------------------------------------------------------------- /examples/simple-db-read-write/play-from-postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/examples/simple-db-read-write/play-from-postgres.sh -------------------------------------------------------------------------------- /examples/simple-db-read-write/play-from-sqlite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/examples/simple-db-read-write/play-from-sqlite.sh -------------------------------------------------------------------------------- /examples/simple-db-read-write/record-to-mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/examples/simple-db-read-write/record-to-mysql.sh -------------------------------------------------------------------------------- /examples/simple-db-read-write/record-to-postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/examples/simple-db-read-write/record-to-postgres.sh -------------------------------------------------------------------------------- /examples/simple-db-read-write/record-to-sqlite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/examples/simple-db-read-write/record-to-sqlite.sh -------------------------------------------------------------------------------- /mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/mainpage.dox -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/manifest.xml -------------------------------------------------------------------------------- /msg/TestComplex.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/msg/TestComplex.msg -------------------------------------------------------------------------------- /nodes/ros_sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/nodes/ros_sql -------------------------------------------------------------------------------- /rosdep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/rosdep.yaml -------------------------------------------------------------------------------- /scripts/bag_to_sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/scripts/bag_to_sql -------------------------------------------------------------------------------- /src/ros_sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ros_sql/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/src/ros_sql/factories.py -------------------------------------------------------------------------------- /src/ros_sql/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/src/ros_sql/models.py -------------------------------------------------------------------------------- /src/ros_sql/ros2sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/src/ros_sql/ros2sql.py -------------------------------------------------------------------------------- /src/ros_sql/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/src/ros_sql/session.py -------------------------------------------------------------------------------- /src/ros_sql/type_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/src/ros_sql/type_map.py -------------------------------------------------------------------------------- /src/ros_sql/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/src/ros_sql/util.py -------------------------------------------------------------------------------- /stack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/stack.xml -------------------------------------------------------------------------------- /tests/test_ros_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawlab/ros_sql/HEAD/tests/test_ros_sql.py --------------------------------------------------------------------------------