booster-robotics-sdk-python 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- booster_robotics_sdk_python-1.0.0/.clang-format +213 -0
- booster_robotics_sdk_python-1.0.0/.gitattributes +4 -0
- booster_robotics_sdk_python-1.0.0/.gitignore +27 -0
- booster_robotics_sdk_python-1.0.0/.gitmodules +3 -0
- booster_robotics_sdk_python-1.0.0/.lfsconfig +3 -0
- booster_robotics_sdk_python-1.0.0/.workflow/git-ee-pipe-build.yml +114 -0
- booster_robotics_sdk_python-1.0.0/.workflow/project-defined.cmake +37 -0
- booster_robotics_sdk_python-1.0.0/CMakeLists.txt +200 -0
- booster_robotics_sdk_python-1.0.0/PKG-INFO +42 -0
- booster_robotics_sdk_python-1.0.0/README.md +34 -0
- booster_robotics_sdk_python-1.0.0/ci-c-make-list.cmake +50 -0
- booster_robotics_sdk_python-1.0.0/deps_install.sh +13 -0
- booster_robotics_sdk_python-1.0.0/include/booster/common/dds/dds_callback.hpp +32 -0
- booster_robotics_sdk_python-1.0.0/include/booster/common/dds/dds_entity.hpp +81 -0
- booster_robotics_sdk_python-1.0.0/include/booster/common/dds/dds_factory_model.hpp +107 -0
- booster_robotics_sdk_python-1.0.0/include/booster/common/dds/dds_topic_channel.hpp +79 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/ai/Subtitle.h +392 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/BatteryState.h +292 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/ButtonEvent.h +275 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/FallDownState.h +271 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/HandReplyData.h +286 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/HandReplyParam.h +350 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/HandTouchData.h +284 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/HandTouchParam.h +374 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/ImuState.h +291 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/LightControlMsg.h +248 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/LightPixel.h +273 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/LowCmd.h +274 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/LowState.h +313 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/MotorCmd.h +349 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/MotorState.h +374 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/Odometer.h +273 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/ProneBodyControlStatus.h +241 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RemoteControllerState.h +732 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotDdsBatteryStatus.h +339 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotDdsImuStatus.h +300 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotDdsJointStatus.h +357 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotProcessState.h +281 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotProcessStateMsg.h +253 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotReplayTrajID.h +243 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotStates.h +285 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotStatusDdsMsg.h +318 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/builtin_interfaces/Time.h +254 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/rpc/RpcReqMsg.h +291 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/rpc/RpcRespMsg.h +291 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/sensor_msgs/CameraInfo.h +479 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/sensor_msgs/CompressedImage.h +294 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/sensor_msgs/Image.h +371 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/sensor_msgs/RegionOfInterest.h +313 -0
- booster_robotics_sdk_python-1.0.0/include/booster/idl/std_msgs/Header.h +265 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/ai/api.hpp +161 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/ai/client.hpp +103 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/ai/const.hpp +13 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/b1/b1_api_const.hpp +135 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/b1/b1_loco_api.hpp +827 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/b1/b1_loco_client.hpp +496 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/channel/channel_factory.hpp +60 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/channel/channel_publisher.hpp +53 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/channel/channel_subscriber.hpp +66 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/common/entities.hpp +160 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/common/robot_shared.hpp +68 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/error.hpp +20 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/request.hpp +43 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/request_header.hpp +43 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/response.hpp +47 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/response_header.hpp +44 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/rpc_client.hpp +45 -0
- booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/rpc_server.hpp +37 -0
- booster_robotics_sdk_python-1.0.0/include/booster/third_party/nlohmann_json/json.hpp +24596 -0
- booster_robotics_sdk_python-1.0.0/internal_distribution/README.md +2 -0
- booster_robotics_sdk_python-1.0.0/internal_distribution/build_package.sh +30 -0
- booster_robotics_sdk_python-1.0.0/internal_distribution/install.sh +28 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/common/ros_dds_bridge/bridge.hpp +19 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/b1/FallDownRecoveryState.h +257 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/b1/PersonFace.h +342 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/b1/PersonFaceMsgs.h +275 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/b1/RawBytesMsg.h +241 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/b1/RawBytesStamped.h +269 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/booster_msgs/BinaryData.h +253 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/booster_msgs/BinaryDataCdrAux.hpp +52 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/demo/DemoMsg.h +284 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/demo/DemoMsgCdrAux.hpp +50 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/Point.h +290 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/PointCdrAux.hpp +50 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/Pose.h +288 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/PoseCdrAux.hpp +52 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/PoseStamped.h +271 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/Quaternion.h +292 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/Transform.h +275 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/TransformStamped.h +300 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/Vector3.h +273 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/robocup_msgs/Ball.h +300 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/robocup_msgs/Kick.h +354 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/sensor_msgs/Imu.h +415 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/sensor_msgs/ImuCdrAux.hpp +52 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/sensor_msgs/JointState.h +367 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/sensor_msgs/JointStateCdrAux.hpp +53 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/tf2_msgs/TFMessage.h +248 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/robot/b1/b1_internal_api_const.hpp +30 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/robot/b1/b1_loco_internal_api.hpp +356 -0
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/robot/b1/b1_loco_internal_client.hpp +289 -0
- booster_robotics_sdk_python-1.0.0/pyproject.toml +30 -0
- booster_robotics_sdk_python-1.0.0/python_example/__init__.py +0 -0
- booster_robotics_sdk_python-1.0.0/python_example/controller_example/arm_demo.py +43 -0
- booster_robotics_sdk_python-1.0.0/python_example/controller_example/move_demo.py +34 -0
- booster_robotics_sdk_python-1.0.0/python_example/sdk_pybind_ai_example.py +173 -0
- booster_robotics_sdk_python-1.0.0/python_example/sdk_pybind_b1_exmaple.py +575 -0
- booster_robotics_sdk_python-1.0.0/python_example/sdk_pybind_low_level.py +350 -0
- booster_robotics_sdk_python-1.0.0/release.sh +103 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/.gitignore +18 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/CMakeLists.txt +62 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/LICENSE +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/README.md +66 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/high_level/b1_7dof_arm_sdk_example.cpp +143 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/high_level/b1_arm_sdk_example.cpp +139 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/high_level/b1_loco_example_client.cpp +460 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/high_level/b1_loco_example_client.py +406 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/b1_7dof_arm_low_sdk_example.cpp +179 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/b1_low_sdk_example.cpp +208 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_for_custom_publisher.py +99 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_hand_data_subscriber.cpp +31 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_hand_data_subscriber.py +39 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_publisher.cpp +50 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_publisher.py +38 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_subscriber.cpp +50 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_subscriber.py +31 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/odometer_example.cpp +28 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/odometer_example.py +20 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/common/dds/dds_callback.hpp +32 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/common/dds/dds_entity.hpp +81 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/common/dds/dds_factory_model.hpp +107 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/common/dds/dds_topic_channel.hpp +79 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/ai/Subtitle.h +392 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/BatteryState.h +292 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/ButtonEvent.h +275 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/FallDownState.h +271 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/HandReplyData.h +286 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/HandReplyParam.h +350 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/HandTouchData.h +284 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/HandTouchParam.h +374 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/ImuState.h +291 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/LightControlMsg.h +248 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/LightPixel.h +273 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/LowCmd.h +274 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/LowState.h +313 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/MotorCmd.h +349 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/MotorState.h +374 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/Odometer.h +273 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/ProneBodyControlStatus.h +241 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RemoteControllerState.h +732 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotDdsBatteryStatus.h +339 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotDdsImuStatus.h +300 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotDdsJointStatus.h +357 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotProcessState.h +281 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotProcessStateMsg.h +253 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotReplayTrajID.h +243 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotStates.h +285 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotStatusDdsMsg.h +318 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/builtin_interfaces/Time.h +254 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/rpc/RpcReqMsg.h +291 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/rpc/RpcRespMsg.h +291 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/sensor_msgs/CameraInfo.h +479 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/sensor_msgs/CompressedImage.h +294 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/sensor_msgs/Image.h +371 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/sensor_msgs/RegionOfInterest.h +313 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/std_msgs/Header.h +265 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/ai/api.hpp +161 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/ai/client.hpp +103 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/ai/const.hpp +13 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/b1/b1_api_const.hpp +135 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/b1/b1_loco_api.hpp +781 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/b1/b1_loco_client.hpp +468 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/channel/channel_factory.hpp +60 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/channel/channel_publisher.hpp +53 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/channel/channel_subscriber.hpp +66 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/common/entities.hpp +160 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/common/robot_shared.hpp +68 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/error.hpp +20 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/request.hpp +43 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/request_header.hpp +43 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/response.hpp +47 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/response_header.hpp +44 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/rpc_client.hpp +45 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/rpc_server.hpp +37 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/third_party/nlohmann_json/json.hpp +24596 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/install.sh +54 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/lib/aarch64/libbooster_robotics_sdk.a +0 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/lib/x86_64/libbooster_robotics_sdk.a +0 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/pyproject.toml +91 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/python/binding.cpp +872 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/Cdr.h +3408 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/CdrEncoding.hpp +54 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/CdrSizeCalculator.hpp +1270 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/FastBuffer.h +368 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/FastCdr.h +2078 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/cdr/fixed_size_string.hpp +344 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/config.h +51 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/detail/container_recursive_inspector.hpp +53 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/eProsima_auto_link.h +67 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/exceptions/BadOptionalAccessException.hpp +83 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/exceptions/BadParamException.h +83 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/exceptions/Exception.h +96 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/exceptions/LockedExternalAccessException.hpp +83 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/exceptions/NotEnoughMemoryException.h +83 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/fastcdr_dll.h +69 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/xcdr/MemberId.hpp +72 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/xcdr/detail/optional.hpp +71 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/xcdr/external.hpp +190 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/xcdr/optional.hpp +356 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/common/ReplyHeader.hpp +72 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/common/RequestHeader.hpp +72 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/common/Types.hpp +57 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/topic/BuiltinTopicKey.hpp +45 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/topic/ParticipantBuiltinTopicData.hpp +45 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/topic/PublicationBuiltinTopicData.hpp +100 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/topic/SubscriptionBuiltinTopicData.hpp +94 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/topic/TopicBuiltinTopicData.hpp +81 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/typelookup/TypeLookupManager.hpp +296 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/typelookup/TypeLookupReplyListener.hpp +89 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/typelookup/TypeLookupRequestListener.hpp +90 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/typelookup/common/TypeLookupTypes.hpp +645 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/common/InstanceHandle.hpp +39 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/Entity.hpp +186 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/LoanableArray.hpp +75 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/LoanableCollection.hpp +250 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/LoanableSequence.hpp +233 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/LoanableTypedCollection.hpp +101 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/StackAllocatedSequence.hpp +91 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/UserAllocatedSequence.hpp +103 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/condition/Condition.hpp +74 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/condition/GuardCondition.hpp +72 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/condition/StatusCondition.hpp +112 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/condition/WaitSet.hpp +110 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/policy/ParameterTypes.hpp +1823 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/policy/QosPolicies.hpp +3211 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/policy/ReaderDataLifecycleQosPolicy.hpp +88 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/policy/WriterDataLifecycleQosPolicy.hpp +70 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/BaseStatus.hpp +56 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/DeadlineMissedStatus.hpp +65 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/IncompatibleQosStatus.hpp +96 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/LivelinessChangedStatus.hpp +59 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/MatchedStatus.hpp +55 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/PublicationMatchedStatus.hpp +41 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/SampleRejectedStatus.hpp +72 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/StatusMask.hpp +270 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/SubscriptionMatchedStatus.hpp +42 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/domain/DomainParticipant.hpp +966 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/domain/DomainParticipantFactory.hpp +330 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/domain/DomainParticipantListener.hpp +247 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/domain/qos/DomainParticipantFactoryQos.hpp +171 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/domain/qos/DomainParticipantQos.hpp +519 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/log/Colors.hpp +60 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/log/FileConsumer.hpp +72 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/log/Log.hpp +354 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/log/OStreamConsumer.hpp +58 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/log/StdoutConsumer.hpp +45 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/log/StdoutErrConsumer.hpp +80 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/DataWriter.hpp +634 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/DataWriterListener.hpp +132 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/Publisher.hpp +376 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/PublisherListener.hpp +62 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/qos/DataWriterQos.hpp +918 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/qos/PublisherQos.hpp +210 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/qos/WriterQos.hpp +158 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/DataReader.hpp +1090 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/DataReaderListener.hpp +159 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/InstanceState.hpp +87 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/ReadCondition.hpp +126 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/SampleInfo.hpp +124 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/SampleState.hpp +60 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/Subscriber.hpp +394 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/SubscriberListener.hpp +76 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/ViewState.hpp +71 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/qos/DataReaderQos.hpp +929 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/qos/ReaderQos.hpp +159 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/qos/SubscriberQos.hpp +211 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/ContentFilteredTopic.hpp +145 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/IContentFilter.hpp +78 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/IContentFilterFactory.hpp +96 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/Topic.hpp +157 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/TopicDataType.hpp +392 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/TopicDescription.hpp +97 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/TopicListener.hpp +75 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/TypeSupport.hpp +314 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/qos/TopicQos.hpp +552 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/Endpoint.h +150 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/RTPSDomain.h +308 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/BuiltinTransports.hpp +85 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/EndpointAttributes.h +180 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/ExternalLocators.hpp +48 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/HistoryAttributes.h +130 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/PropertyPolicy.h +124 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/RTPSParticipantAllocationAttributes.hpp +185 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/RTPSParticipantAttributes.h +613 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/ReaderAttributes.h +116 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/ServerAttributes.h +265 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/ThreadSettings.hpp +111 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/WriterAttributes.h +153 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/BuiltinProtocols.h +216 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/data/BuiltinEndpoints.hpp +47 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/data/ContentFilterProperty.hpp +82 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/data/NetworkConfiguration.hpp +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/data/ParticipantProxyData.h +234 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/data/ReaderProxyData.h +521 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/data/WriterProxyData.h +514 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/endpoint/EDP.h +429 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/endpoint/EDPSimple.h +292 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/endpoint/EDPStatic.h +166 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/participant/PDP.h +651 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/participant/PDPListener.h +108 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/participant/PDPSimple.h +171 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/liveliness/WLP.h +314 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/liveliness/WLPListener.h +110 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/BinaryProperty.h +182 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/CDRMessage_t.h +228 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/CacheChange.h +449 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/CdrSerialization.hpp +106 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/ChangeKind_t.hpp +44 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/EntityId_t.hpp +405 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/FragmentNumber.h +55 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/Guid.h +260 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/GuidPrefix_t.hpp +177 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/InstanceHandle.h +365 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/Locator.h +541 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/LocatorList.hpp +489 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/LocatorListComparisons.hpp +62 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/LocatorSelector.hpp +478 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/LocatorSelectorEntry.hpp +122 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/LocatorWithMask.hpp +67 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/LocatorsIterator.hpp +70 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/MatchingInfo.h +68 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/PortParameters.h +136 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/Property.h +221 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/RemoteLocators.hpp +240 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/SampleIdentity.h +250 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/SequenceNumber.h +421 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/SerializedPayload.h +200 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/Time_t.h +697 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/Token.h +158 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/Types.h +173 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/VendorId_t.hpp +39 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/WriteParams.h +213 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/all_common.h +35 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/exceptions/Exception.h +112 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/flowcontrol/FlowControllerConsts.hpp +33 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/flowcontrol/FlowControllerDescriptor.hpp +65 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/flowcontrol/FlowControllerSchedulerPolicy.hpp +47 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/flowcontrol/ThroughputControllerDescriptor.h +56 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/history/History.h +343 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/history/IChangePool.h +73 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/history/IPayloadPool.h +131 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/history/ReaderHistory.h +274 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/history/WriterHistory.h +257 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/interfaces/IReaderDataFilter.hpp +55 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/CDRMessage.h +353 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/CDRMessage.hpp +1238 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/MessageReceiver.h +291 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/RTPSMessageCreator.h +274 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/RTPSMessageGroup.h +333 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/RTPSMessageSenderInterface.hpp +104 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/RTPS_messages.h +116 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/network/SenderResource.h +20 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/participant/ParticipantDiscoveryInfo.h +113 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/participant/RTPSParticipant.h +453 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/participant/RTPSParticipantListener.h +225 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/RTPSReader.h +536 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/ReaderDiscoveryInfo.h +74 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/ReaderListener.h +219 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/StatefulPersistentReader.h +95 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/StatefulReader.h +381 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/StatelessPersistentReader.h +95 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/StatelessReader.h +302 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/resources/ResourceEvent.h +184 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/resources/ResourceManagement.h +44 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/resources/TimedEvent.h +186 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/rtps_all.h +47 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/rtps_fwd.h +40 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/accesscontrol/AccessControl.h +184 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/accesscontrol/EndpointSecurityAttributes.h +182 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/accesscontrol/ParticipantSecurityAttributes.h +137 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/accesscontrol/SecurityMaskUtilities.h +41 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/authentication/Authentication.h +295 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/authentication/Handshake.h +38 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/common/Handle.h +175 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/common/ParticipantGenericMessage.h +349 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/common/SharedSecretHandle.h +162 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/cryptography/CryptoKeyExchange.h +136 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/cryptography/CryptoKeyFactory.h +227 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/cryptography/CryptoTransform.h +204 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/cryptography/CryptoTypes.h +87 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/cryptography/Cryptography.h +70 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/exceptions/SecurityException.h +79 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/logging/BuiltinLoggingType.h +58 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/logging/LogOptions.h +52 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/logging/Logging.h +292 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/logging/LoggingLevel.h +140 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/logging/NameValuePair.h +47 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/ChainingTransport.h +389 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/ChainingTransportDescriptor.h +75 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/PortBasedTransportDescriptor.hpp +113 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/SenderResource.h +132 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/SocketTransportDescriptor.h +98 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/TCPTransportDescriptor.h +309 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/TCPv4TransportDescriptor.h +103 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/TCPv6TransportDescriptor.h +57 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/TransportDescriptorInterface.h +106 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/TransportInterface.h +294 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/TransportReceiverInterface.h +53 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/UDPTransportDescriptor.h +77 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/UDPv4TransportDescriptor.h +56 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/UDPv6TransportDescriptor.h +58 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/shared_mem/SharedMemTransportDescriptor.h +166 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/test_UDPv4TransportDescriptor.h +118 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/ChangeForReader.h +216 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/DeliveryRetCode.hpp +21 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/IReaderDataFilter.hpp +22 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/LivelinessData.h +119 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/LivelinessManager.h +178 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/LocatorSelectorSender.hpp +125 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/PersistentWriter.h +80 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/RTPSWriter.h +653 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/ReaderLocator.h +274 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/ReaderProxy.h +510 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/StatefulPersistentWriter.h +108 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/StatefulWriter.h +547 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/StatelessPersistentWriter.h +99 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/StatelessWriter.h +300 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/WriterDiscoveryInfo.h +72 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/WriterListener.h +157 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/IListeners.hpp +43 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/dds/domain/DomainParticipant.hpp +225 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/dds/publisher/qos/DataWriterQos.hpp +53 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/dds/subscriber/qos/DataReaderQos.hpp +70 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/monitorservice_types.idl +122 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/StatisticsCommon.hpp +399 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/Interfaces.hpp +31 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IConnectionsObserver.hpp +55 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IConnectionsQueryable.hpp +58 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IProxyObserver.hpp +52 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IProxyQueryable.hpp +67 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IStatusObserver.hpp +51 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IStatusQueryable.hpp +66 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/topic_names.hpp +69 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/types.idl +175 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/thirdparty/optionparser/optionparser/optionparser.h +2862 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/thirdparty/optionparser/optionparser.hpp +48 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/Domain.h +251 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/TopicDataType.h +33 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/LibrarySettingsAttributes.h +66 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/ParticipantAttributes.h +63 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/PublisherAttributes.h +149 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/ReplierAttributes.hpp +54 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/RequesterAttributes.hpp +55 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/SubscriberAttributes.h +151 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/TopicAttributes.h +151 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/all_attributes.h +29 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/common/KeyedChanges.h +63 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/config/doxygen_modules.h +144 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/config.h +133 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/eProsima_auto_link.h +66 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/fastrtps_all.h +54 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/fastrtps_dll.h +69 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/fastrtps_fwd.h +35 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/log/Colors.h +19 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/log/FileConsumer.h +33 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/log/Log.h +30 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/log/StdoutConsumer.h +28 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/participant/Participant.h +104 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/participant/ParticipantListener.h +88 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/publisher/Publisher.h +192 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/publisher/PublisherHistory.h +206 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/publisher/PublisherListener.h +92 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/DeadlineMissedStatus.h +35 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/IncompatibleQosStatus.hpp +35 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/LivelinessChangedStatus.h +32 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/LivelinessLostStatus.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/ParameterTypes.h +70 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/QosPolicies.h +112 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/ReaderQos.h +35 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/SampleRejectedStatus.hpp +33 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/WriterQos.h +35 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/Endpoint.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/RTPSDomain.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/EndpointAttributes.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/HistoryAttributes.h +29 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/PropertyPolicy.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/RTPSParticipantAllocationAttributes.hpp +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/RTPSParticipantAttributes.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/ReaderAttributes.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/ServerAttributes.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/WriterAttributes.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/BuiltinProtocols.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/data/ParticipantProxyData.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/data/ReaderProxyData.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/data/WriterProxyData.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/endpoint/EDP.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/endpoint/EDPSimple.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/endpoint/EDPStatic.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/participant/PDP.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/participant/PDPListener.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/participant/PDPSimple.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/liveliness/WLP.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/liveliness/WLPListener.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/BinaryProperty.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/CDRMessage_t.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/CacheChange.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/FragmentNumber.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/Guid.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/InstanceHandle.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/Locator.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/LocatorListComparisons.hpp +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/LocatorSelector.hpp +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/LocatorSelectorEntry.hpp +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/MatchingInfo.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/PortParameters.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/Property.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/RemoteLocators.hpp +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/SampleIdentity.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/SequenceNumber.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/SerializedPayload.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/Time_t.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/Token.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/Types.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/WriteParams.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/all_common.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/exceptions/Exception.h +20 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/flowcontrol/ThroughputControllerDescriptor.h +20 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/history/History.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/history/ReaderHistory.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/history/WriterHistory.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/messages/CDRMessage.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/messages/MessageReceiver.h +26 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/messages/RTPSMessageCreator.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/messages/RTPSMessageGroup.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/messages/RTPSMessageSenderInterface.hpp +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/messages/RTPS_messages.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/network/SenderResource.h +20 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/participant/ParticipantDiscoveryInfo.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/participant/RTPSParticipant.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/participant/RTPSParticipantListener.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/RTPSReader.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/ReaderDiscoveryInfo.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/ReaderListener.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/StatefulPersistentReader.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/StatefulReader.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/StatelessPersistentReader.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/StatelessReader.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/resources/ResourceEvent.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/resources/ResourceManagement.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/resources/TimedEvent.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/rtps_all.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/rtps_fwd.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/accesscontrol/AccessControl.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/accesscontrol/EndpointSecurityAttributes.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/accesscontrol/ParticipantSecurityAttributes.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/accesscontrol/SecurityMaskUtilities.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/authentication/Authentication.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/authentication/Handshake.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/common/Handle.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/common/ParticipantGenericMessage.h +20 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/common/SharedSecretHandle.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/CryptoKeyExchange.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/CryptoKeyFactory.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/CryptoTransform.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/CryptoTypes.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/Cryptography.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/exceptions/SecurityException.h +20 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/LivelinessData.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/LivelinessManager.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/PersistentWriter.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/RTPSWriter.h +24 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/ReaderLocator.h +26 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/ReaderProxy.h +23 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/StatefulPersistentWriter.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/StatefulWriter.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/StatelessPersistentWriter.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/StatelessWriter.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/WriterDiscoveryInfo.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/WriterListener.h +25 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/subscriber/SampleInfo.h +73 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/subscriber/Subscriber.h +190 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/subscriber/SubscriberHistory.h +278 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/subscriber/SubscriberListener.h +101 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/SocketTransportDescriptor.h +31 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/TCPTransportDescriptor.h +32 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/TCPv4TransportDescriptor.h +32 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/TCPv6TransportDescriptor.h +32 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/TransportDescriptorInterface.h +31 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/TransportInterface.h +40 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/TransportReceiverInterface.h +30 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/UDPTransportDescriptor.h +32 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/UDPv4TransportDescriptor.h +32 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/UDPv6TransportDescriptor.h +32 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/test_UDPv4TransportDescriptor.h +32 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/AnnotationDescriptor.h +71 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/AnnotationParameterValue.h +1451 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/BuiltinAnnotationsTypeObject.h +183 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicData.h +788 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicDataFactory.h +68 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicDataHelper.hpp +127 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicDataPtr.h +63 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicPubSubType.h +106 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicType.h +180 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicTypeBuilder.h +167 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicTypeBuilderFactory.h +317 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicTypeBuilderPtr.h +67 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicTypeMember.h +102 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicTypePtr.h +76 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/MemberDescriptor.h +194 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeDescriptor.h +163 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeIdentifier.h +434 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeIdentifierTypes.h +1920 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeNamesGenerator.h +50 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeObject.h +8075 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeObjectFactory.h +274 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeObjectHashId.h +187 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypesBase.h +647 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/DBQueue.h +157 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/IPFinder.h +135 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/IPLocator.h +306 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/ProxyPool.hpp +243 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/Semaphore.h +100 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/StringMatching.h +66 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/System.h +44 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/TimeConversion.h +160 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/TimedConditionVariable.hpp +195 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/TimedMutex.hpp +344 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/collections/ResourceLimitedContainerConfig.hpp +93 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/collections/ResourceLimitedVector.hpp +602 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/collections/foonathan_memory_helpers.hpp +74 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/fixed_size_bitmap.hpp +637 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/fixed_size_string.hpp +255 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/md5.h +101 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/shared_mutex.hpp +655 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/string_convert.hpp +39 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/xmlparser/XMLEndpointParser.h +165 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/xmlparser/XMLParser.h +683 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/xmlparser/XMLParserCommon.h +490 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/xmlparser/XMLProfileManager.h +351 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/xmlparser/XMLTree.h +220 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/aligned_allocator.hpp +196 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/allocator_storage.hpp +933 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/allocator_traits.hpp +601 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/config.hpp +147 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/config_impl.hpp +22 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/container.hpp +367 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/container_node_sizes_impl.hpp +448 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/debugging.hpp +113 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/default_allocator.hpp +36 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/deleter.hpp +307 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/align.hpp +51 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/assert.hpp +56 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/container_node_sizes.hpp +9 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/container_node_sizes_impl.hpp +448 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/debug_helpers.hpp +234 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/ebo_storage.hpp +41 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/free_list.hpp +227 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/free_list_array.hpp +125 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/ilog2.hpp +68 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/lowlevel_allocator.hpp +85 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/memory_stack.hpp +119 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/small_free_list.hpp +163 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/utility.hpp +117 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/error.hpp +288 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/fallback_allocator.hpp +211 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/heap_allocator.hpp +82 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/iteration_allocator.hpp +304 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/joint_allocator.hpp +926 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/malloc_allocator.hpp +70 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_arena.hpp +692 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_pool.hpp +432 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_pool_collection.hpp +568 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_pool_type.hpp +52 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_resource_adapter.hpp +238 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_stack.hpp +489 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/namespace_alias.hpp +36 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/new_allocator.hpp +54 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/segregator.hpp +447 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/smart_ptr.hpp +197 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/static_allocator.hpp +178 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/std_allocator.hpp +361 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/temporary_allocator.hpp +334 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/threading.hpp +154 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/tracking.hpp +429 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/virtual_memory.hpp +201 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/aarch64/20/libfastcdr.so +0 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/aarch64/20/libfastrtps.so +0 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/aarch64/20/libfoonathan_memory-0.7.3.a +0 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/aarch64/libfastcdr.so +0 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/aarch64/libfastrtps.so +0 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/aarch64/libfoonathan_memory-0.7.3.a +0 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/x86_64/20/libfastcdr.so +0 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/x86_64/20/libfastrtps.so +0 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/x86_64/20/libfoonathan_memory-0.7.3.a +0 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/x86_64/libfastcdr.so +0 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/x86_64/libfastrtps.so +0 -0
- booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/x86_64/libfoonathan_memory-0.7.3.a +0 -0
- booster_robotics_sdk_python-1.0.0/shared-file-system/rusty-data-root/cfg/commit-dependency.info.json +16 -0
- booster_robotics_sdk_python-1.0.0/shared-file-system/script/s-30-install-dependency.sh +14 -0
- booster_robotics_sdk_python-1.0.0/shared-file-system/script/s-40-build-component.sh +7 -0
- booster_robotics_sdk_python-1.0.0/src/common/dds/dds_callback.cpp +17 -0
- booster_robotics_sdk_python-1.0.0/src/common/dds/dds_factory_model.cpp +153 -0
- booster_robotics_sdk_python-1.0.0/src/common/dds/dds_topic_channel.cpp +0 -0
- booster_robotics_sdk_python-1.0.0/src/common/ros_dds_bridge/bridge.cpp +22 -0
- booster_robotics_sdk_python-1.0.0/src/idl/ai/Subtitle.cpp +628 -0
- booster_robotics_sdk_python-1.0.0/src/idl/ai/Subtitle.idl +14 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/BatteryState.cpp +483 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/BatteryState.idl +10 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/ButtonEvent.cpp +426 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/ButtonEvent.idl +19 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/FallDownState.cpp +435 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/FallDownState.idl +15 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/HandReplyData.cpp +471 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/HandReplyData.idl +10 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/HandReplyParam.cpp +572 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/HandReplyParam.idl +14 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/HandTouchData.cpp +470 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/HandTouchData.h +284 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/HandTouchData.idl +10 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/HandTouchParam.cpp +615 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/HandTouchParam.h +374 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/HandTouchParam.idl +13 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/ImuState.cpp +459 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/ImuState.idl +9 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/LightControlMsg.cpp +410 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/LightControlMsg.idl +9 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/LightPixel.cpp +444 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/LightPixel.idl +9 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/LowCmd.cpp +428 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/LowCmd.idl +15 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/LowState.cpp +500 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/LowState.idl +12 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/MotorCmd.cpp +563 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/MotorCmd.idl +14 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/MotorState.cpp +609 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/MotorState.idl +14 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/Odometer.cpp +441 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/Odometer.idl +9 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/ProneBodyControlStatus.cpp +400 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/ProneBodyControlStatus.idl +7 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RemoteControllerState.cpp +1190 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RemoteControllerState.idl +37 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotDdsBatteryStatus.cpp +566 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotDdsBatteryStatus.idl +13 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotDdsImuStatus.cpp +497 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotDdsImuStatus.idl +11 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotDdsJointStatus.cpp +605 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotDdsJointStatus.idl +14 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotProcessState.cpp +461 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotProcessState.idl +11 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotProcessStateMsg.cpp +418 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotProcessStateMsg.idl +10 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotReplayTrajID.cpp +401 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotReplayTrajID.idl +9 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotStates.cpp +477 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotStates.idl +54 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotStatusDdsMsg.cpp +512 -0
- booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotStatusDdsMsg.idl +14 -0
- booster_robotics_sdk_python-1.0.0/src/idl/builtin_interfaces/Time.cpp +408 -0
- booster_robotics_sdk_python-1.0.0/src/idl/builtin_interfaces/Time.idl +17 -0
- booster_robotics_sdk_python-1.0.0/src/idl/rpc/RpcReqMsg.cpp +460 -0
- booster_robotics_sdk_python-1.0.0/src/idl/rpc/RpcReqMsg.idl +11 -0
- booster_robotics_sdk_python-1.0.0/src/idl/rpc/RpcRespMsg.cpp +462 -0
- booster_robotics_sdk_python-1.0.0/src/idl/rpc/RpcRespMsg.idl +11 -0
- booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/CameraInfo.cpp +745 -0
- booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/CameraInfo.idl +153 -0
- booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/CompressedImage.cpp +479 -0
- booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/CompressedImage.idl +32 -0
- booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/Image.cpp +585 -0
- booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/Image.idl +50 -0
- booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/RegionOfInterest.cpp +513 -0
- booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/RegionOfInterest.idl +42 -0
- booster_robotics_sdk_python-1.0.0/src/idl/std_msgs/Header.cpp +428 -0
- booster_robotics_sdk_python-1.0.0/src/idl/std_msgs/Header.idl +19 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/FallDownRecoveryState.cpp +437 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/FallDownRecoveryState.idl +9 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/PersonFace.cpp +554 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/PersonFace.idl +12 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/PersonFaceMsgs.cpp +449 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/PersonFaceMsgs.idl +11 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/RawBytesMsg.cpp +394 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/RawBytesMsg.idl +8 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/RawBytesStamped.cpp +441 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/RawBytesStamped.idl +10 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/booster_msgs/BinaryData.cxx +314 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/booster_msgs/BinaryData.idl +7 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/booster_msgs/BinaryDataCdrAux.ipp +132 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/demo/DemoMsg.cxx +370 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/demo/DemoMsg.idl +9 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/demo/DemoMsgCdrAux.ipp +146 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Point.cxx +388 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Point.idl +12 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/PointCdrAux.ipp +146 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Pose.cxx +372 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Pose.idl +11 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/PoseCdrAux.ipp +138 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/PoseStamped.cpp +436 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/PoseStamped.idl +11 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Quaternion.cpp +472 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Quaternion.idl +21 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Transform.cpp +436 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Transform.idl +18 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/TransformStamped.cpp +492 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/TransformStamped.idl +35 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Vector3.cpp +440 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Vector3.idl +17 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/robocup_msgs/Ball.cpp +479 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/robocup_msgs/Ball.idl +12 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/robocup_msgs/Kick.cpp +571 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/robocup_msgs/Kick.idl +15 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/sensor_msgs/Imu.cxx +577 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/sensor_msgs/Imu.idl +44 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/sensor_msgs/ImuCdrAux.ipp +180 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/sensor_msgs/JointState.cxx +489 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/sensor_msgs/JointState.idl +36 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/sensor_msgs/JointStateCdrAux.ipp +164 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/tf2_msgs/TFMessage.cpp +399 -0
- booster_robotics_sdk_python-1.0.0/src/idl_internal/tf2_msgs/TFMessage.idl +13 -0
- booster_robotics_sdk_python-1.0.0/src/python/binding.cpp +1603 -0
- booster_robotics_sdk_python-1.0.0/src/python/controller/booster_robotics_sdk_python/__init__.py +11 -0
- booster_robotics_sdk_python-1.0.0/src/python/controller/booster_robotics_sdk_python/arm_controller.py +233 -0
- booster_robotics_sdk_python-1.0.0/src/python/controller/booster_robotics_sdk_python/move_controller.py +272 -0
- booster_robotics_sdk_python-1.0.0/src/python/internal_binding.cpp +57 -0
- booster_robotics_sdk_python-1.0.0/src/robot/ai/client.cpp +42 -0
- booster_robotics_sdk_python-1.0.0/src/robot/b1/b1_loco_client.cpp +44 -0
- booster_robotics_sdk_python-1.0.0/src/robot/b1/b1_loco_internal_client.cpp +34 -0
- booster_robotics_sdk_python-1.0.0/src/robot/channel/channel_factory.cpp +78 -0
- booster_robotics_sdk_python-1.0.0/src/robot/channel/channel_publisher.cpp +0 -0
- booster_robotics_sdk_python-1.0.0/src/robot/channel/channel_subscriber.cpp +0 -0
- booster_robotics_sdk_python-1.0.0/src/robot/rpc/rpc_client.cpp +115 -0
- booster_robotics_sdk_python-1.0.0/src/robot/rpc/rpc_server.cpp +59 -0
- booster_robotics_sdk_python-1.0.0/test/demo_test/demo_publisher.cpp +119 -0
- booster_robotics_sdk_python-1.0.0/test/demo_test/demo_publisher.hpp +39 -0
- booster_robotics_sdk_python-1.0.0/test/demo_test/demo_subscriber.cpp +100 -0
- booster_robotics_sdk_python-1.0.0/test/demo_test/demo_subscriber.hpp +47 -0
- booster_robotics_sdk_python-1.0.0/test/demo_test/demo_test.cpp +46 -0
- booster_robotics_sdk_python-1.0.0/test/pub_sub/publisher.cpp +60 -0
- booster_robotics_sdk_python-1.0.0/test/pub_sub/subscriber.cpp +43 -0
- booster_robotics_sdk_python-1.0.0/test/rpc/loco_rpc_server.hpp +20 -0
- booster_robotics_sdk_python-1.0.0/test/rpc/rpc_client.cpp +53 -0
- booster_robotics_sdk_python-1.0.0/test/rpc/rpc_server.cpp +44 -0
- booster_robotics_sdk_python-1.0.0/test/sim_bridge/sim_bridge_subscriber.cpp +31 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/CMakeLists.txt +35 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/codegen.cpp +52 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/cpp_merger.hpp +198 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/dds_file_manager.hpp +125 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/header_merger.hpp +235 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/helper.hpp +64 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/merger.hpp +59 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Header.cpp +428 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Header.h +265 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Header.idl +19 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/LowCmd.cpp +515 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/LowCmd.h +295 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/LowCmd.idl +15 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmd.cxx +335 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmd.h +295 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmd.idl +13 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmdCdrAux.hpp +50 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmdCdrAux.ipp +178 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmdPubSubTypes.cxx +229 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmdPubSubTypes.h +138 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Time.cpp +499 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Time.cxx +165 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Time.h +276 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Time.idl +17 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/TimeCdrAux.hpp +50 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/TimeCdrAux.ipp +138 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/TimePubSubTypes.cxx +229 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/TimePubSubTypes.h +138 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/test.cpp +457 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/test.h +256 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/test.idl +7 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/test_publisher.cpp +33 -0
- booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/test_subscriber.cpp +31 -0
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
# 语言: None, Cpp, Java, JavaScript, ObjC, Proto, TableGen, TextProto
|
|
2
|
+
Language: Cpp
|
|
3
|
+
# BasedOnStyle: LLVM
|
|
4
|
+
|
|
5
|
+
# 访问说明符(public、private等)的偏移
|
|
6
|
+
AccessModifierOffset: -4
|
|
7
|
+
|
|
8
|
+
# 开括号(开圆括号、开尖括号、开方括号)后的对齐: Align, DontAlign, AlwaysBreak(总是在开括号后换行)
|
|
9
|
+
AlignAfterOpenBracket: Align
|
|
10
|
+
|
|
11
|
+
# 连续赋值时,对齐所有等号
|
|
12
|
+
AlignConsecutiveAssignments: false
|
|
13
|
+
|
|
14
|
+
# 连续声明时,对齐所有声明的变量名
|
|
15
|
+
AlignConsecutiveDeclarations: false
|
|
16
|
+
|
|
17
|
+
# 右对齐逃脱换行(使用反斜杠换行)的反斜杠
|
|
18
|
+
AlignEscapedNewlines: Right
|
|
19
|
+
|
|
20
|
+
# 水平对齐二元和三元表达式的操作数
|
|
21
|
+
AlignOperands: true
|
|
22
|
+
|
|
23
|
+
# 对齐连续的尾随的注释
|
|
24
|
+
AlignTrailingComments: true
|
|
25
|
+
|
|
26
|
+
# 不允许函数声明的所有参数在放在下一行
|
|
27
|
+
AllowAllParametersOfDeclarationOnNextLine: false
|
|
28
|
+
|
|
29
|
+
# 不允许短的块放在同一行
|
|
30
|
+
AllowShortBlocksOnASingleLine: true
|
|
31
|
+
|
|
32
|
+
# 允许短的case标签放在同一行
|
|
33
|
+
AllowShortCaseLabelsOnASingleLine: true
|
|
34
|
+
|
|
35
|
+
# 允许短的函数放在同一行: None, InlineOnly(定义在类中), Empty(空函数), Inline(定义在类中,空函数), All
|
|
36
|
+
AllowShortFunctionsOnASingleLine: None
|
|
37
|
+
|
|
38
|
+
# 允许短的if语句保持在同一行
|
|
39
|
+
AllowShortIfStatementsOnASingleLine: true
|
|
40
|
+
|
|
41
|
+
# 允许短的循环保持在同一行
|
|
42
|
+
AllowShortLoopsOnASingleLine: true
|
|
43
|
+
|
|
44
|
+
# 总是在返回类型后换行: None, All, TopLevel(顶级函数,不包括在类中的函数),
|
|
45
|
+
# AllDefinitions(所有的定义,不包括声明), TopLevelDefinitions(所有的顶级函数的定义)
|
|
46
|
+
AlwaysBreakAfterReturnType: None
|
|
47
|
+
|
|
48
|
+
# 总是在多行string字面量前换行
|
|
49
|
+
AlwaysBreakBeforeMultilineStrings: false
|
|
50
|
+
|
|
51
|
+
# 总是在template声明后换行
|
|
52
|
+
AlwaysBreakTemplateDeclarations: true
|
|
53
|
+
|
|
54
|
+
# false表示函数实参要么都在同一行,要么都各自一行
|
|
55
|
+
BinPackArguments: true
|
|
56
|
+
|
|
57
|
+
# false表示所有形参要么都在同一行,要么都各自一行
|
|
58
|
+
BinPackParameters: true
|
|
59
|
+
|
|
60
|
+
# 大括号换行,只有当BreakBeforeBraces设置为Custom时才有效
|
|
61
|
+
BraceWrapping:
|
|
62
|
+
# class定义后面
|
|
63
|
+
AfterClass: false
|
|
64
|
+
# 控制语句后面
|
|
65
|
+
AfterControlStatement: false
|
|
66
|
+
# enum定义后面
|
|
67
|
+
AfterEnum: false
|
|
68
|
+
# 函数定义后面
|
|
69
|
+
AfterFunction: false
|
|
70
|
+
# 命名空间定义后面
|
|
71
|
+
AfterNamespace: false
|
|
72
|
+
# struct定义后面
|
|
73
|
+
AfterStruct: false
|
|
74
|
+
# union定义后面
|
|
75
|
+
AfterUnion: false
|
|
76
|
+
# extern之后
|
|
77
|
+
AfterExternBlock: false
|
|
78
|
+
# catch之前
|
|
79
|
+
BeforeCatch: false
|
|
80
|
+
# else之前
|
|
81
|
+
BeforeElse: false
|
|
82
|
+
# 缩进大括号
|
|
83
|
+
IndentBraces: false
|
|
84
|
+
# 分离空函数
|
|
85
|
+
SplitEmptyFunction: false
|
|
86
|
+
# 分离空语句
|
|
87
|
+
SplitEmptyRecord: false
|
|
88
|
+
# 分离空命名空间
|
|
89
|
+
SplitEmptyNamespace: false
|
|
90
|
+
|
|
91
|
+
# 在二元运算符前换行: None(在操作符后换行), NonAssignment(在非赋值的操作符前换行), All(在操作符前换行)
|
|
92
|
+
BreakBeforeBinaryOperators: NonAssignment
|
|
93
|
+
|
|
94
|
+
# 在大括号前换行: Attach(始终将大括号附加到周围的上下文), Linux(除函数、命名空间和类定义,与Attach类似),
|
|
95
|
+
# Mozilla(除枚举、函数、记录定义,与Attach类似), Stroustrup(除函数定义、catch、else,与Attach类似),
|
|
96
|
+
# Allman(总是在大括号前换行), GNU(总是在大括号前换行,并对于控制语句的大括号增加额外的缩进), WebKit(在函数前换行), Custom
|
|
97
|
+
# 注:这里认为语句块也属于函数
|
|
98
|
+
BreakBeforeBraces: Custom
|
|
99
|
+
|
|
100
|
+
# 在三元运算符前换行
|
|
101
|
+
BreakBeforeTernaryOperators: false
|
|
102
|
+
|
|
103
|
+
# 在构造函数的初始化列表的冒号后换行
|
|
104
|
+
BreakConstructorInitializers: AfterColon
|
|
105
|
+
|
|
106
|
+
#BreakInheritanceList: AfterColon
|
|
107
|
+
|
|
108
|
+
BreakStringLiterals: false
|
|
109
|
+
|
|
110
|
+
# 每行字符的限制,0表示没有限制
|
|
111
|
+
ColumnLimit: 0
|
|
112
|
+
|
|
113
|
+
CompactNamespaces: true
|
|
114
|
+
|
|
115
|
+
# 构造函数的初始化列表要么都在同一行,要么都各自一行
|
|
116
|
+
ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
|
117
|
+
|
|
118
|
+
# 构造函数的初始化列表的缩进宽度
|
|
119
|
+
ConstructorInitializerIndentWidth: 4
|
|
120
|
+
|
|
121
|
+
# 延续的行的缩进宽度
|
|
122
|
+
ContinuationIndentWidth: 4
|
|
123
|
+
|
|
124
|
+
# 去除C++11的列表初始化的大括号{后和}前的空格
|
|
125
|
+
Cpp11BracedListStyle: true
|
|
126
|
+
|
|
127
|
+
# 继承最常用的指针和引用的对齐方式
|
|
128
|
+
DerivePointerAlignment: false
|
|
129
|
+
|
|
130
|
+
# 固定命名空间注释
|
|
131
|
+
FixNamespaceComments: true
|
|
132
|
+
|
|
133
|
+
# 缩进case标签
|
|
134
|
+
IndentCaseLabels: false
|
|
135
|
+
|
|
136
|
+
IndentPPDirectives: None
|
|
137
|
+
|
|
138
|
+
# 缩进宽度
|
|
139
|
+
IndentWidth: 4
|
|
140
|
+
|
|
141
|
+
# 函数返回类型换行时,缩进函数声明或函数定义的函数名
|
|
142
|
+
IndentWrappedFunctionNames: false
|
|
143
|
+
|
|
144
|
+
# 保留在块开始处的空行
|
|
145
|
+
KeepEmptyLinesAtTheStartOfBlocks: false
|
|
146
|
+
|
|
147
|
+
# 连续空行的最大数量
|
|
148
|
+
MaxEmptyLinesToKeep: 1
|
|
149
|
+
|
|
150
|
+
# 命名空间的缩进: None, Inner(缩进嵌套的命名空间中的内容), All
|
|
151
|
+
NamespaceIndentation: None
|
|
152
|
+
|
|
153
|
+
# 指针和引用的对齐: Left, Right, Middle
|
|
154
|
+
PointerAlignment: Right
|
|
155
|
+
|
|
156
|
+
# 允许重新排版注释
|
|
157
|
+
ReflowComments: true
|
|
158
|
+
|
|
159
|
+
# 允许排序#include
|
|
160
|
+
SortIncludes: false
|
|
161
|
+
|
|
162
|
+
# 允许排序 using 声明
|
|
163
|
+
SortUsingDeclarations: false
|
|
164
|
+
|
|
165
|
+
# 在C风格类型转换后添加空格
|
|
166
|
+
SpaceAfterCStyleCast: false
|
|
167
|
+
|
|
168
|
+
# 在Template 关键字后面添加空格
|
|
169
|
+
SpaceAfterTemplateKeyword: true
|
|
170
|
+
|
|
171
|
+
# 在赋值运算符之前添加空格
|
|
172
|
+
SpaceBeforeAssignmentOperators: true
|
|
173
|
+
|
|
174
|
+
# SpaceBeforeCpp11BracedList: true
|
|
175
|
+
|
|
176
|
+
# SpaceBeforeCtorInitializerColon: true
|
|
177
|
+
|
|
178
|
+
# SpaceBeforeInheritanceColon: true
|
|
179
|
+
|
|
180
|
+
# 开圆括号之前添加一个空格: Never, ControlStatements, Always
|
|
181
|
+
SpaceBeforeParens: ControlStatements
|
|
182
|
+
|
|
183
|
+
# SpaceBeforeRangeBasedForLoopColon: true
|
|
184
|
+
|
|
185
|
+
# 在空的圆括号中添加空格
|
|
186
|
+
SpaceInEmptyParentheses: false
|
|
187
|
+
|
|
188
|
+
# 在尾随的评论前添加的空格数(只适用于//)
|
|
189
|
+
SpacesBeforeTrailingComments: 1
|
|
190
|
+
|
|
191
|
+
# 在尖括号的<后和>前添加空格
|
|
192
|
+
SpacesInAngles: false
|
|
193
|
+
|
|
194
|
+
# 在C风格类型转换的括号中添加空格
|
|
195
|
+
SpacesInCStyleCastParentheses: false
|
|
196
|
+
|
|
197
|
+
# 在容器(ObjC和JavaScript的数组和字典等)字面量中添加空格
|
|
198
|
+
SpacesInContainerLiterals: true
|
|
199
|
+
|
|
200
|
+
# 在圆括号的(后和)前添加空格
|
|
201
|
+
SpacesInParentheses: false
|
|
202
|
+
|
|
203
|
+
# 在方括号的[后和]前添加空格,lamda表达式和未指明大小的数组的声明不受影响
|
|
204
|
+
SpacesInSquareBrackets: false
|
|
205
|
+
|
|
206
|
+
# 标准: Cpp03, Cpp11, Auto
|
|
207
|
+
Standard: Cpp11
|
|
208
|
+
|
|
209
|
+
# tab宽度
|
|
210
|
+
TabWidth: 4
|
|
211
|
+
|
|
212
|
+
# 使用tab字符: Never, ForIndentation, ForContinuationAndIndentation, Always
|
|
213
|
+
UseTab: Never
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Prerequisites
|
|
2
|
+
*.d
|
|
3
|
+
|
|
4
|
+
# Compiled Object files
|
|
5
|
+
*.slo
|
|
6
|
+
*.lo
|
|
7
|
+
*.o
|
|
8
|
+
*.obj
|
|
9
|
+
|
|
10
|
+
# Precompiled Headers
|
|
11
|
+
*.gch
|
|
12
|
+
*.pch
|
|
13
|
+
|
|
14
|
+
# Directories
|
|
15
|
+
build/
|
|
16
|
+
install/
|
|
17
|
+
dist/
|
|
18
|
+
.vscode
|
|
19
|
+
.debug*
|
|
20
|
+
internal_distribution/packages
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
# IDE
|
|
24
|
+
.idea/
|
|
25
|
+
CMakeLists.bak.txt
|
|
26
|
+
.DS_S*
|
|
27
|
+
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
version: '1.0'
|
|
2
|
+
name: git-ee-pipe-1760464169
|
|
3
|
+
displayName: git-ee-pipe-1760464169
|
|
4
|
+
triggers:
|
|
5
|
+
trigger: auto
|
|
6
|
+
push:
|
|
7
|
+
branches:
|
|
8
|
+
prefix:
|
|
9
|
+
- ''
|
|
10
|
+
|
|
11
|
+
# 太蠢了
|
|
12
|
+
# Yaml的锚点语法不支持
|
|
13
|
+
|
|
14
|
+
stages:
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
- name: wait-paralleled
|
|
18
|
+
displayName: wait-paralleled
|
|
19
|
+
steps:
|
|
20
|
+
|
|
21
|
+
- step: shell@agent
|
|
22
|
+
name: step-wait-u-24-unknown-linux-gnu
|
|
23
|
+
displayName: step-wait-u-24-unknown-linux-gnu
|
|
24
|
+
hostGroupID:
|
|
25
|
+
ID: u-24-unknown-linux-gnu
|
|
26
|
+
hostID:
|
|
27
|
+
- 7a200648-f7df-484f-89e6-85a616a66e7c
|
|
28
|
+
- a8b94e6c-c723-4e77-bf12-12c6ac67f349
|
|
29
|
+
- 76ba81f4-4bfb-4734-bf9e-adb6b428a216
|
|
30
|
+
- 0851ada9-f15a-46cb-8420-f3552bc59870
|
|
31
|
+
script:
|
|
32
|
+
- export CUSTOM_ENV_JOB_STAGE_STEP_NAME="step-wait-u-24-unknown-linux-gnu"
|
|
33
|
+
- export CUSTOM_ENV_DOWNLOAD_TARGET_ARRAY="aarch64-unknown-linux-gnu;x86_64-unknown-linux-gnu"
|
|
34
|
+
- export CUSTOM_ENV_DOWNLOAD_OS_VERSION="Linux 22.04 Ubuntu"
|
|
35
|
+
- curl --silent --show-error --output s-70-closure-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-70-closure-build-project.sh
|
|
36
|
+
- curl --silent --show-error --output s-80-action-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-80-action-build-project.sh
|
|
37
|
+
- sh s-80-action-build-project.sh
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
- name: build-paralleled
|
|
43
|
+
displayName: build-paralleled
|
|
44
|
+
steps:
|
|
45
|
+
|
|
46
|
+
- step: shell@agent
|
|
47
|
+
name: step-build-u-22-aarch64-unknown-linux-gnu
|
|
48
|
+
displayName: step-build-u-22-aarch64-unknown-linux-gnu
|
|
49
|
+
hostGroupID:
|
|
50
|
+
ID: u-22-aarch64-unknown-linux-gnu
|
|
51
|
+
hostID:
|
|
52
|
+
- de76b749-9d62-440d-88d8-4373526769a6
|
|
53
|
+
- 33b6f200-5b8d-4e88-94ba-b21a9d847e98
|
|
54
|
+
script:
|
|
55
|
+
- export CUSTOM_ENV_JOB_STAGE_STEP_NAME="step-build-22-aarch64-unknown-linux-gnu"
|
|
56
|
+
- curl --silent --show-error --output s-70-closure-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-70-closure-build-project.sh
|
|
57
|
+
- curl --silent --show-error --output s-80-action-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-80-action-build-project.sh
|
|
58
|
+
- sh s-80-action-build-project.sh
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
# - step: shell@agent
|
|
62
|
+
# name: step-build-u-24-aarch64-unknown-linux-gnu
|
|
63
|
+
# displayName: step-build-u-24-aarch64-unknown-linux-gnu
|
|
64
|
+
# hostGroupID:
|
|
65
|
+
# ID: u-24-aarch64-unknown-linux-gnu
|
|
66
|
+
# hostID:
|
|
67
|
+
# - ceb50007-5022-4528-82f8-cac56fff1997
|
|
68
|
+
# script:
|
|
69
|
+
# - export CUSTOM_ENV_JOB_STAGE_STEP_NAME="step-build-24-aarch64-unknown-linux-gnu"
|
|
70
|
+
# - curl --silent --show-error --output s-70-closure-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-70-closure-build-project.sh
|
|
71
|
+
# - curl --silent --show-error --output s-80-action-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-80-action-build-project.sh
|
|
72
|
+
# - sh s-80-action-build-project.sh
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
- step: shell@agent
|
|
76
|
+
name: step-build-u-22-x86_64-unknown-linux-gnu
|
|
77
|
+
displayName: step-build-u-22-x86_64-unknown-linux-gnu
|
|
78
|
+
hostGroupID:
|
|
79
|
+
ID: u-22-x86_64-unknown-linux-gnu
|
|
80
|
+
hostID:
|
|
81
|
+
- 13de56cc-be54-4140-a383-84610d6edacb
|
|
82
|
+
- 08cc933d-21e6-45c5-94d3-91b74e585fb7
|
|
83
|
+
- 3989f12a-5077-4a9f-bf14-db89c7b05343
|
|
84
|
+
- 23b30227-7027-4ddc-9552-21447f7f5d82
|
|
85
|
+
- 95629513-e57e-42de-ac18-d1bb89194547
|
|
86
|
+
- 68f8ef54-5453-45cf-8b35-acaeee1fb0e9
|
|
87
|
+
- 4f16f4f1-9875-410a-a9e6-f604ee8cd2eb
|
|
88
|
+
- c3c611fb-4fc1-4732-acf0-57a032965657
|
|
89
|
+
script:
|
|
90
|
+
- export CUSTOM_ENV_JOB_STAGE_STEP_NAME="step-build-22-x86_64-unknown-linux-gnu"
|
|
91
|
+
- curl --silent --show-error --output s-70-closure-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-70-closure-build-project.sh
|
|
92
|
+
- curl --silent --show-error --output s-80-action-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-80-action-build-project.sh
|
|
93
|
+
- sh s-80-action-build-project.sh
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
# - step: shell@agent
|
|
97
|
+
# name: step-build-u-24-x86_64-unknown-linux-gnu
|
|
98
|
+
# displayName: step-build-u-24-x86_64-unknown-linux-gnu
|
|
99
|
+
# hostGroupID:
|
|
100
|
+
# ID: u-24-x86_64-unknown-linux-gnu
|
|
101
|
+
# hostID:
|
|
102
|
+
# - fbd07b0d-41ea-420d-8d8c-27aa3d77fcc5
|
|
103
|
+
# - ea4bde4e-6911-4730-9ed5-7dd1f3199c53
|
|
104
|
+
# - f98df53b-60da-4946-b710-7d3e3b585bcc
|
|
105
|
+
# - 94f48ac9-2a23-4868-a998-392155eb3849
|
|
106
|
+
# - d782e716-897c-42ee-822c-3c1d50749b10
|
|
107
|
+
# - 6b01cde0-f4d2-4080-8157-d3a721498248
|
|
108
|
+
# - f4c4a860-d0ff-40fc-ae43-5fe65726d6f1
|
|
109
|
+
# - 4a41bf06-87ef-4cbd-b92f-163096f2a542
|
|
110
|
+
# script:
|
|
111
|
+
# - export CUSTOM_ENV_JOB_STAGE_STEP_NAME="step-build-24-x86_64-unknown-linux-gnu"
|
|
112
|
+
# - curl --silent --show-error --output s-70-closure-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-70-closure-build-project.sh
|
|
113
|
+
# - curl --silent --show-error --output s-80-action-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-80-action-build-project.sh
|
|
114
|
+
# - sh s-80-action-build-project.sh
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
macro(closure_import_install_project)
|
|
2
|
+
if (DEFINED ARGV0 AND NOT "${ARGV0}" STREQUAL "")
|
|
3
|
+
cmake_language(CALL ${ARGV0})
|
|
4
|
+
endif ()
|
|
5
|
+
endmacro()
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
macro(closure_link_target_exe i_exe_target)
|
|
9
|
+
endmacro()
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
macro(closure_link_target_lib i_lib_target)
|
|
13
|
+
endmacro()
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
macro(closure_generate_project_name)
|
|
17
|
+
get_filename_component(PLUGIN_TARGET_NAME "${CMAKE_CURRENT_SOURCE_DIR}" NAME)
|
|
18
|
+
string(REPLACE "-" "_" C_MAKE_CUSTOM_SUB_LINE_TARGET_NAME ${PLUGIN_TARGET_NAME})
|
|
19
|
+
set(C_MAKE_CUSTOM_PROJECT_NAME "project_${C_MAKE_CUSTOM_SUB_LINE_TARGET_NAME}")
|
|
20
|
+
endmacro()
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
macro(closure_import_prepare_project)
|
|
34
|
+
endmacro()
|
|
35
|
+
|
|
36
|
+
closure_generate_project_name()
|
|
37
|
+
closure_import_prepare_project()
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
cmake_minimum_required(VERSION 3.15...3.27)
|
|
2
|
+
cmake_policy(SET CMP0048 NEW)
|
|
3
|
+
|
|
4
|
+
if (ORIN)
|
|
5
|
+
MESSAGE("Compile for ORIN ... ")
|
|
6
|
+
|
|
7
|
+
execute_process(
|
|
8
|
+
COMMAND uname -m
|
|
9
|
+
OUTPUT_VARIABLE RAW_ARCH
|
|
10
|
+
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
11
|
+
)
|
|
12
|
+
string(TOLOWER "${RAW_ARCH}" DETECTED_ARCH)
|
|
13
|
+
message(STATUS "[System] uname -m = ${DETECTED_ARCH}")
|
|
14
|
+
|
|
15
|
+
if(DETECTED_ARCH MATCHES "x86_64|i[3456]86|amd64")
|
|
16
|
+
SET(CMAKE_CXX_COMPILER "/usr/bin/aarch64-linux-gnu-g++-12")
|
|
17
|
+
SET(CMAKE_C_COMPILER "/usr/bin/aarch64-linux-gnu-gcc-12")
|
|
18
|
+
endif()
|
|
19
|
+
|
|
20
|
+
set(CMAKE_SYSTEM_NAME Linux)
|
|
21
|
+
set(CMAKE_SYSTEM_PROCESSOR aarch64)
|
|
22
|
+
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
|
23
|
+
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
|
24
|
+
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
|
25
|
+
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
|
|
26
|
+
|
|
27
|
+
IF(NOT BOOSTER_THIRD_PARTY_INCLUDE_DIR)
|
|
28
|
+
SET(BOOSTER_THIRD_PARTY_INCLUDE_DIR /opt/robosys/third_party_orin/include CACHE PATH "Booster third party include dir")
|
|
29
|
+
ENDIF()
|
|
30
|
+
|
|
31
|
+
IF(NOT BOOSTER_THIRD_PARTY_LIB_DIR)
|
|
32
|
+
SET(BOOSTER_THIRD_PARTY_LIB_DIR /opt/robosys/third_party_orin/lib CACHE PATH "Booster third party lib dir")
|
|
33
|
+
ENDIF()
|
|
34
|
+
|
|
35
|
+
include_directories(${BOOSTER_THIRD_PARTY_INCLUDE_DIR})
|
|
36
|
+
link_directories(${BOOSTER_THIRD_PARTY_LIB_DIR})
|
|
37
|
+
else()
|
|
38
|
+
SET(CMAKE_CXX_STANDARD 17)
|
|
39
|
+
endif()
|
|
40
|
+
|
|
41
|
+
if(NOT DEFINED SKBUILD_PROJECT_NAME)
|
|
42
|
+
set(SKBUILD_PROJECT_NAME booster_robotics_sdk)
|
|
43
|
+
endif()
|
|
44
|
+
|
|
45
|
+
if(NOT DEFINED SKBUILD_PROJECT_VERSION)
|
|
46
|
+
set(SKBUILD_PROJECT_VERSION 0.1.0)
|
|
47
|
+
endif()
|
|
48
|
+
|
|
49
|
+
project(
|
|
50
|
+
${SKBUILD_PROJECT_NAME}
|
|
51
|
+
VERSION ${SKBUILD_PROJECT_VERSION}
|
|
52
|
+
LANGUAGES CXX)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
SET(LIB_BOOSTER_ROBOTICS_SDK booster_robotics_sdk CACHE STRING "Booster Robotics SDK")
|
|
56
|
+
SET(TEST_BOOSTER_ROBOTICS_SDK booster_robotics_sdk_test CACHE STRING "Booster Robotics SDK Test")
|
|
57
|
+
|
|
58
|
+
option(BUILD_TEST "Build Test" off)
|
|
59
|
+
|
|
60
|
+
option(BUILD_PYTHON_BINDING "Build Python Binding" off)
|
|
61
|
+
message(STATUS "BUILD_PYTHON_BINDING: ${BUILD_PYTHON_BINDING}")
|
|
62
|
+
|
|
63
|
+
if(ORIN)
|
|
64
|
+
set(PLATFORM_SUFFIX "_orin")
|
|
65
|
+
message(STATUS "Architecture is: ORIN")
|
|
66
|
+
|
|
67
|
+
if(NOT INSTALL_DIR)
|
|
68
|
+
set(INSTALL_DIR /opt/robosys CACHE PATH "rs_sdk install dir")
|
|
69
|
+
endif()
|
|
70
|
+
|
|
71
|
+
set(LIB_INSTALL_PREFIX ${INSTALL_DIR}/${LIB_BOOSTER_ROBOTICS_SDK}${PLATFORM_SUFFIX})
|
|
72
|
+
else()
|
|
73
|
+
set(LIB_INSTALL_PREFIX ${CMAKE_INSTALL_LIBDIR})
|
|
74
|
+
endif()
|
|
75
|
+
|
|
76
|
+
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
77
|
+
|
|
78
|
+
set(CMAKE_CXX_STANDARD 17)
|
|
79
|
+
|
|
80
|
+
include_directories(BEFORE ${PROJECT_SOURCE_DIR}/include)
|
|
81
|
+
include_directories(BEFORE ${PROJECT_SOURCE_DIR}/include/booster/idl/b1)
|
|
82
|
+
include_directories(BEFORE ${PROJECT_SOURCE_DIR}/include/booster/idl/builtin_interfaces)
|
|
83
|
+
include_directories(BEFORE ${PROJECT_SOURCE_DIR}/include/booster/idl/sensor_msgs)
|
|
84
|
+
include_directories(BEFORE ${PROJECT_SOURCE_DIR}/include/booster/idl/std_msgs)
|
|
85
|
+
include_directories(BEFORE ${PROJECT_SOURCE_DIR}/internal_include)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
file(GLOB_RECURSE BOOSTER_ROBOTICS_SDK_SOURCES
|
|
89
|
+
"src/*.cpp"
|
|
90
|
+
"src/*.cxx"
|
|
91
|
+
"src/*.ipp")
|
|
92
|
+
|
|
93
|
+
list(FILTER BOOSTER_ROBOTICS_SDK_SOURCES EXCLUDE REGEX "src/python/.*\\.cpp")
|
|
94
|
+
|
|
95
|
+
file(GLOB_RECURSE BOOSTER_ROBOTICS_SDK_HEADERS
|
|
96
|
+
"include/*.h"
|
|
97
|
+
"include/*.hpp")
|
|
98
|
+
file(GLOB_RECURSE DEMO_TEST_SOURCES
|
|
99
|
+
"test/demo_test/*.cpp"
|
|
100
|
+
"test/demo_test/*.cxx"
|
|
101
|
+
"test/demo_test/*.ipp")
|
|
102
|
+
|
|
103
|
+
add_library(${LIB_BOOSTER_ROBOTICS_SDK} ${BOOSTER_ROBOTICS_SDK_SOURCES})
|
|
104
|
+
|
|
105
|
+
link_libraries(${LIB_BOOSTER_ROBOTICS_SDK} fastrtps fastcdr libfoonathan_memory-0.7.3.a)
|
|
106
|
+
|
|
107
|
+
if (BUILD_TEST)
|
|
108
|
+
add_executable(${TEST_BOOSTER_ROBOTICS_SDK} ${DEMO_TEST_SOURCES})
|
|
109
|
+
# target_link_libraries(${TEST_BOOSTER_ROBOTICS_SDK} ${LIB_BOOSTER_ROBOTICS_SDK} fastrtps fastcdr)
|
|
110
|
+
|
|
111
|
+
add_executable(b1_loco_example_client sdk_release/example/high_level/b1_loco_example_client.cpp)
|
|
112
|
+
add_executable(b1_low_level_publisher sdk_release/example/low_level/low_level_publisher.cpp)
|
|
113
|
+
add_executable(b1_low_level_subscriber sdk_release/example/low_level/low_level_subscriber.cpp)
|
|
114
|
+
add_executable(b1_odometer_example sdk_release/example/low_level/odometer_example.cpp)
|
|
115
|
+
add_executable(b1_arm_sdk_example_client sdk_release/example/high_level/b1_arm_sdk_example.cpp)
|
|
116
|
+
add_executable(b1_low_sdk_example sdk_release/example/low_level/b1_low_sdk_example.cpp)
|
|
117
|
+
add_executable(b1_state_subscriber sdk_release/example/high_level/b1_state_subscriber.cpp)
|
|
118
|
+
|
|
119
|
+
add_executable(test_rpc_client test/rpc/rpc_client.cpp)
|
|
120
|
+
add_executable(test_rpc_server test/rpc/rpc_server.cpp)
|
|
121
|
+
add_executable(test_publisher test/pub_sub/publisher.cpp)
|
|
122
|
+
add_executable(test_subscriber test/pub_sub/subscriber.cpp)
|
|
123
|
+
add_executable(test_sim_bridge_subscriber test/sim_bridge/sim_bridge_subscriber.cpp)
|
|
124
|
+
endif()
|
|
125
|
+
|
|
126
|
+
include(GNUInstallDirs)
|
|
127
|
+
#install(TARGETS ${LIB_BOOSTER_ROBOTICS_SDK} ARCHIVE DESTINATION ${LIB_INSTALL_PREFIX CMAKE_INSTALL_LIBDIR})
|
|
128
|
+
install(TARGETS ${LIB_BOOSTER_ROBOTICS_SDK} ARCHIVE DESTINATION ${LIB_INSTALL_PREFIX})
|
|
129
|
+
install(DIRECTORY include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
|
130
|
+
install(DIRECTORY internal_include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
if(BUILD_PYTHON_BINDING)
|
|
135
|
+
find_package(Python3 REQUIRED COMPONENTS Interpreter Development.Module)
|
|
136
|
+
message(STATUS "Python3 executable: ${Python3_EXECUTABLE}")
|
|
137
|
+
|
|
138
|
+
execute_process(
|
|
139
|
+
COMMAND ${Python3_EXECUTABLE} -c "import sysconfig; print(sysconfig.get_paths()['purelib'])"
|
|
140
|
+
OUTPUT_VARIABLE PYTHON_SITE_PACKAGES
|
|
141
|
+
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
142
|
+
RESULT_VARIABLE result
|
|
143
|
+
ERROR_VARIABLE error
|
|
144
|
+
)
|
|
145
|
+
|
|
146
|
+
include_directories(${Python3_INCLUDE_DIRS})
|
|
147
|
+
find_package(pybind11 CONFIG REQUIRED)
|
|
148
|
+
|
|
149
|
+
python3_add_library(_core MODULE src/python/binding.cpp WITH_SOABI)
|
|
150
|
+
target_compile_definitions(_core PRIVATE VERSION_INFO=${PROJECT_VERSION})
|
|
151
|
+
|
|
152
|
+
python3_add_library(booster_robotics_sdk_internal_python MODULE src/python/internal_binding.cpp WITH_SOABI)
|
|
153
|
+
target_compile_definitions(booster_robotics_sdk_internal_python PRIVATE VERSION_INFO=${PROJECT_VERSION})
|
|
154
|
+
|
|
155
|
+
if(GENERATE_PYBIND11_STUBS)
|
|
156
|
+
find_program(PYBIND11_STUBGEN_EXECUTABLE pybind11-stubgen)
|
|
157
|
+
if(NOT PYBIND11_STUBGEN_EXECUTABLE)
|
|
158
|
+
message(FATAL_ERROR "pybind11-stubgen not found")
|
|
159
|
+
endif()
|
|
160
|
+
|
|
161
|
+
add_custom_command(
|
|
162
|
+
TARGET _core
|
|
163
|
+
POST_BUILD
|
|
164
|
+
COMMAND PYTHONPATH=${CMAKE_SOURCE_DIR}/build:/${PYTHONPATH} pybind11-stubgen -o ${CMAKE_SOURCE_DIR}/build _core
|
|
165
|
+
)
|
|
166
|
+
|
|
167
|
+
add_custom_command(
|
|
168
|
+
TARGET booster_robotics_sdk_internal_python
|
|
169
|
+
POST_BUILD
|
|
170
|
+
COMMAND PYTHONPATH=${CMAKE_SOURCE_DIR}/build:/${PYTHONPATH} pybind11-stubgen -o ${CMAKE_SOURCE_DIR}/build booster_robotics_sdk_internal_python
|
|
171
|
+
)
|
|
172
|
+
endif()
|
|
173
|
+
|
|
174
|
+
if(DEFINED SKBUILD_PLATLIB_DIR)
|
|
175
|
+
message(STATUS "Install Python modules into SKBUILD_PLATLIB_DIR = ${SKBUILD_PLATLIB_DIR}")
|
|
176
|
+
set(PYTHON_SITE_PACKAGES "${SKBUILD_PLATLIB_DIR}")
|
|
177
|
+
else()
|
|
178
|
+
execute_process(
|
|
179
|
+
COMMAND ${Python3_EXECUTABLE} -c "import sysconfig; print(sysconfig.get_paths()['purelib'])"
|
|
180
|
+
OUTPUT_VARIABLE PYTHON_SITE_PACKAGES
|
|
181
|
+
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
182
|
+
)
|
|
183
|
+
message(STATUS "Local build: install Python modules into ${PYTHON_SITE_PACKAGES}")
|
|
184
|
+
endif()
|
|
185
|
+
|
|
186
|
+
install(TARGETS _core
|
|
187
|
+
LIBRARY DESTINATION "${PYTHON_SITE_PACKAGES}/booster_robotics_sdk_python")
|
|
188
|
+
|
|
189
|
+
install(TARGETS booster_robotics_sdk_internal_python
|
|
190
|
+
LIBRARY DESTINATION "${PYTHON_SITE_PACKAGES}")
|
|
191
|
+
|
|
192
|
+
if(GENERATE_PYBIND11_STUBS)
|
|
193
|
+
install(FILES ${CMAKE_SOURCE_DIR}/build/_core.pyi
|
|
194
|
+
DESTINATION "${PYTHON_SITE_PACKAGES}/booster_robotics_sdk_python")
|
|
195
|
+
|
|
196
|
+
install(FILES ${CMAKE_SOURCE_DIR}/build/booster_robotics_sdk_internal_python.pyi
|
|
197
|
+
DESTINATION "${PYTHON_SITE_PACKAGES}")
|
|
198
|
+
endif()
|
|
199
|
+
|
|
200
|
+
endif()
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: booster_robotics_sdk_python
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Booster Robotics SDK Python bindings and examples.
|
|
5
|
+
Author-Email: Booster Robotics <liupeize@boosterobotics.com>
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# Booster Robotics SDK
|
|
10
|
+
Booster Robotics SDK aims to provide a simple and easy-to-use interface for developers to control the Booster Robotics products.
|
|
11
|
+
|
|
12
|
+
## Prebuild environment
|
|
13
|
+
* OS (Ubuntu 22.04 LTS)
|
|
14
|
+
* CPU (aarch64 and x86_64)
|
|
15
|
+
* Compiler (gcc version 11.4.0)
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
```bash
|
|
19
|
+
pip3 install pybind11
|
|
20
|
+
# pip3 install pybind11-stubgen
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Build examples
|
|
24
|
+
```bash
|
|
25
|
+
mkdir build
|
|
26
|
+
cd build
|
|
27
|
+
cmake ..
|
|
28
|
+
make
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Build python binding api and install
|
|
32
|
+
```bash
|
|
33
|
+
mkdir build
|
|
34
|
+
cd build
|
|
35
|
+
cmake .. -DBUILD_PYTHON_BINDING=on
|
|
36
|
+
make
|
|
37
|
+
sudo make install
|
|
38
|
+
|
|
39
|
+
if pybind11-stubgen cannot be found even after pip install, export PATH
|
|
40
|
+
```bash
|
|
41
|
+
export PATH=/home/[user name]/.local/bin:$PATH
|
|
42
|
+
```
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Booster Robotics SDK
|
|
2
|
+
Booster Robotics SDK aims to provide a simple and easy-to-use interface for developers to control the Booster Robotics products.
|
|
3
|
+
|
|
4
|
+
## Prebuild environment
|
|
5
|
+
* OS (Ubuntu 22.04 LTS)
|
|
6
|
+
* CPU (aarch64 and x86_64)
|
|
7
|
+
* Compiler (gcc version 11.4.0)
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
```bash
|
|
11
|
+
pip3 install pybind11
|
|
12
|
+
# pip3 install pybind11-stubgen
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Build examples
|
|
16
|
+
```bash
|
|
17
|
+
mkdir build
|
|
18
|
+
cd build
|
|
19
|
+
cmake ..
|
|
20
|
+
make
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Build python binding api and install
|
|
24
|
+
```bash
|
|
25
|
+
mkdir build
|
|
26
|
+
cd build
|
|
27
|
+
cmake .. -DBUILD_PYTHON_BINDING=on
|
|
28
|
+
make
|
|
29
|
+
sudo make install
|
|
30
|
+
|
|
31
|
+
if pybind11-stubgen cannot be found even after pip install, export PATH
|
|
32
|
+
```bash
|
|
33
|
+
export PATH=/home/[user name]/.local/bin:$PATH
|
|
34
|
+
```
|