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.
Files changed (875) hide show
  1. booster_robotics_sdk_python-1.0.0/.clang-format +213 -0
  2. booster_robotics_sdk_python-1.0.0/.gitattributes +4 -0
  3. booster_robotics_sdk_python-1.0.0/.gitignore +27 -0
  4. booster_robotics_sdk_python-1.0.0/.gitmodules +3 -0
  5. booster_robotics_sdk_python-1.0.0/.lfsconfig +3 -0
  6. booster_robotics_sdk_python-1.0.0/.workflow/git-ee-pipe-build.yml +114 -0
  7. booster_robotics_sdk_python-1.0.0/.workflow/project-defined.cmake +37 -0
  8. booster_robotics_sdk_python-1.0.0/CMakeLists.txt +200 -0
  9. booster_robotics_sdk_python-1.0.0/PKG-INFO +42 -0
  10. booster_robotics_sdk_python-1.0.0/README.md +34 -0
  11. booster_robotics_sdk_python-1.0.0/ci-c-make-list.cmake +50 -0
  12. booster_robotics_sdk_python-1.0.0/deps_install.sh +13 -0
  13. booster_robotics_sdk_python-1.0.0/include/booster/common/dds/dds_callback.hpp +32 -0
  14. booster_robotics_sdk_python-1.0.0/include/booster/common/dds/dds_entity.hpp +81 -0
  15. booster_robotics_sdk_python-1.0.0/include/booster/common/dds/dds_factory_model.hpp +107 -0
  16. booster_robotics_sdk_python-1.0.0/include/booster/common/dds/dds_topic_channel.hpp +79 -0
  17. booster_robotics_sdk_python-1.0.0/include/booster/idl/ai/Subtitle.h +392 -0
  18. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/BatteryState.h +292 -0
  19. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/ButtonEvent.h +275 -0
  20. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/FallDownState.h +271 -0
  21. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/HandReplyData.h +286 -0
  22. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/HandReplyParam.h +350 -0
  23. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/HandTouchData.h +284 -0
  24. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/HandTouchParam.h +374 -0
  25. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/ImuState.h +291 -0
  26. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/LightControlMsg.h +248 -0
  27. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/LightPixel.h +273 -0
  28. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/LowCmd.h +274 -0
  29. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/LowState.h +313 -0
  30. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/MotorCmd.h +349 -0
  31. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/MotorState.h +374 -0
  32. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/Odometer.h +273 -0
  33. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/ProneBodyControlStatus.h +241 -0
  34. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RemoteControllerState.h +732 -0
  35. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotDdsBatteryStatus.h +339 -0
  36. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotDdsImuStatus.h +300 -0
  37. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotDdsJointStatus.h +357 -0
  38. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotProcessState.h +281 -0
  39. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotProcessStateMsg.h +253 -0
  40. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotReplayTrajID.h +243 -0
  41. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotStates.h +285 -0
  42. booster_robotics_sdk_python-1.0.0/include/booster/idl/b1/RobotStatusDdsMsg.h +318 -0
  43. booster_robotics_sdk_python-1.0.0/include/booster/idl/builtin_interfaces/Time.h +254 -0
  44. booster_robotics_sdk_python-1.0.0/include/booster/idl/rpc/RpcReqMsg.h +291 -0
  45. booster_robotics_sdk_python-1.0.0/include/booster/idl/rpc/RpcRespMsg.h +291 -0
  46. booster_robotics_sdk_python-1.0.0/include/booster/idl/sensor_msgs/CameraInfo.h +479 -0
  47. booster_robotics_sdk_python-1.0.0/include/booster/idl/sensor_msgs/CompressedImage.h +294 -0
  48. booster_robotics_sdk_python-1.0.0/include/booster/idl/sensor_msgs/Image.h +371 -0
  49. booster_robotics_sdk_python-1.0.0/include/booster/idl/sensor_msgs/RegionOfInterest.h +313 -0
  50. booster_robotics_sdk_python-1.0.0/include/booster/idl/std_msgs/Header.h +265 -0
  51. booster_robotics_sdk_python-1.0.0/include/booster/robot/ai/api.hpp +161 -0
  52. booster_robotics_sdk_python-1.0.0/include/booster/robot/ai/client.hpp +103 -0
  53. booster_robotics_sdk_python-1.0.0/include/booster/robot/ai/const.hpp +13 -0
  54. booster_robotics_sdk_python-1.0.0/include/booster/robot/b1/b1_api_const.hpp +135 -0
  55. booster_robotics_sdk_python-1.0.0/include/booster/robot/b1/b1_loco_api.hpp +827 -0
  56. booster_robotics_sdk_python-1.0.0/include/booster/robot/b1/b1_loco_client.hpp +496 -0
  57. booster_robotics_sdk_python-1.0.0/include/booster/robot/channel/channel_factory.hpp +60 -0
  58. booster_robotics_sdk_python-1.0.0/include/booster/robot/channel/channel_publisher.hpp +53 -0
  59. booster_robotics_sdk_python-1.0.0/include/booster/robot/channel/channel_subscriber.hpp +66 -0
  60. booster_robotics_sdk_python-1.0.0/include/booster/robot/common/entities.hpp +160 -0
  61. booster_robotics_sdk_python-1.0.0/include/booster/robot/common/robot_shared.hpp +68 -0
  62. booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/error.hpp +20 -0
  63. booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/request.hpp +43 -0
  64. booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/request_header.hpp +43 -0
  65. booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/response.hpp +47 -0
  66. booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/response_header.hpp +44 -0
  67. booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/rpc_client.hpp +45 -0
  68. booster_robotics_sdk_python-1.0.0/include/booster/robot/rpc/rpc_server.hpp +37 -0
  69. booster_robotics_sdk_python-1.0.0/include/booster/third_party/nlohmann_json/json.hpp +24596 -0
  70. booster_robotics_sdk_python-1.0.0/internal_distribution/README.md +2 -0
  71. booster_robotics_sdk_python-1.0.0/internal_distribution/build_package.sh +30 -0
  72. booster_robotics_sdk_python-1.0.0/internal_distribution/install.sh +28 -0
  73. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/common/ros_dds_bridge/bridge.hpp +19 -0
  74. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/b1/FallDownRecoveryState.h +257 -0
  75. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/b1/PersonFace.h +342 -0
  76. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/b1/PersonFaceMsgs.h +275 -0
  77. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/b1/RawBytesMsg.h +241 -0
  78. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/b1/RawBytesStamped.h +269 -0
  79. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/booster_msgs/BinaryData.h +253 -0
  80. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/booster_msgs/BinaryDataCdrAux.hpp +52 -0
  81. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/demo/DemoMsg.h +284 -0
  82. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/demo/DemoMsgCdrAux.hpp +50 -0
  83. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/Point.h +290 -0
  84. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/PointCdrAux.hpp +50 -0
  85. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/Pose.h +288 -0
  86. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/PoseCdrAux.hpp +52 -0
  87. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/PoseStamped.h +271 -0
  88. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/Quaternion.h +292 -0
  89. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/Transform.h +275 -0
  90. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/TransformStamped.h +300 -0
  91. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/geometry_msgs/Vector3.h +273 -0
  92. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/robocup_msgs/Ball.h +300 -0
  93. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/robocup_msgs/Kick.h +354 -0
  94. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/sensor_msgs/Imu.h +415 -0
  95. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/sensor_msgs/ImuCdrAux.hpp +52 -0
  96. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/sensor_msgs/JointState.h +367 -0
  97. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/sensor_msgs/JointStateCdrAux.hpp +53 -0
  98. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/tf2_msgs/TFMessage.h +248 -0
  99. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/robot/b1/b1_internal_api_const.hpp +30 -0
  100. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/robot/b1/b1_loco_internal_api.hpp +356 -0
  101. booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/robot/b1/b1_loco_internal_client.hpp +289 -0
  102. booster_robotics_sdk_python-1.0.0/pyproject.toml +30 -0
  103. booster_robotics_sdk_python-1.0.0/python_example/__init__.py +0 -0
  104. booster_robotics_sdk_python-1.0.0/python_example/controller_example/arm_demo.py +43 -0
  105. booster_robotics_sdk_python-1.0.0/python_example/controller_example/move_demo.py +34 -0
  106. booster_robotics_sdk_python-1.0.0/python_example/sdk_pybind_ai_example.py +173 -0
  107. booster_robotics_sdk_python-1.0.0/python_example/sdk_pybind_b1_exmaple.py +575 -0
  108. booster_robotics_sdk_python-1.0.0/python_example/sdk_pybind_low_level.py +350 -0
  109. booster_robotics_sdk_python-1.0.0/release.sh +103 -0
  110. booster_robotics_sdk_python-1.0.0/sdk_release/.gitignore +18 -0
  111. booster_robotics_sdk_python-1.0.0/sdk_release/CMakeLists.txt +62 -0
  112. booster_robotics_sdk_python-1.0.0/sdk_release/LICENSE +23 -0
  113. booster_robotics_sdk_python-1.0.0/sdk_release/README.md +66 -0
  114. booster_robotics_sdk_python-1.0.0/sdk_release/example/high_level/b1_7dof_arm_sdk_example.cpp +143 -0
  115. booster_robotics_sdk_python-1.0.0/sdk_release/example/high_level/b1_arm_sdk_example.cpp +139 -0
  116. booster_robotics_sdk_python-1.0.0/sdk_release/example/high_level/b1_loco_example_client.cpp +460 -0
  117. booster_robotics_sdk_python-1.0.0/sdk_release/example/high_level/b1_loco_example_client.py +406 -0
  118. booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/b1_7dof_arm_low_sdk_example.cpp +179 -0
  119. booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/b1_low_sdk_example.cpp +208 -0
  120. booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_for_custom_publisher.py +99 -0
  121. booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_hand_data_subscriber.cpp +31 -0
  122. booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_hand_data_subscriber.py +39 -0
  123. booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_publisher.cpp +50 -0
  124. booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_publisher.py +38 -0
  125. booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_subscriber.cpp +50 -0
  126. booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/low_level_subscriber.py +31 -0
  127. booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/odometer_example.cpp +28 -0
  128. booster_robotics_sdk_python-1.0.0/sdk_release/example/low_level/odometer_example.py +20 -0
  129. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/common/dds/dds_callback.hpp +32 -0
  130. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/common/dds/dds_entity.hpp +81 -0
  131. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/common/dds/dds_factory_model.hpp +107 -0
  132. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/common/dds/dds_topic_channel.hpp +79 -0
  133. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/ai/Subtitle.h +392 -0
  134. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/BatteryState.h +292 -0
  135. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/ButtonEvent.h +275 -0
  136. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/FallDownState.h +271 -0
  137. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/HandReplyData.h +286 -0
  138. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/HandReplyParam.h +350 -0
  139. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/HandTouchData.h +284 -0
  140. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/HandTouchParam.h +374 -0
  141. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/ImuState.h +291 -0
  142. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/LightControlMsg.h +248 -0
  143. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/LightPixel.h +273 -0
  144. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/LowCmd.h +274 -0
  145. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/LowState.h +313 -0
  146. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/MotorCmd.h +349 -0
  147. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/MotorState.h +374 -0
  148. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/Odometer.h +273 -0
  149. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/ProneBodyControlStatus.h +241 -0
  150. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RemoteControllerState.h +732 -0
  151. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotDdsBatteryStatus.h +339 -0
  152. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotDdsImuStatus.h +300 -0
  153. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotDdsJointStatus.h +357 -0
  154. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotProcessState.h +281 -0
  155. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotProcessStateMsg.h +253 -0
  156. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotReplayTrajID.h +243 -0
  157. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotStates.h +285 -0
  158. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/b1/RobotStatusDdsMsg.h +318 -0
  159. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/builtin_interfaces/Time.h +254 -0
  160. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/rpc/RpcReqMsg.h +291 -0
  161. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/rpc/RpcRespMsg.h +291 -0
  162. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/sensor_msgs/CameraInfo.h +479 -0
  163. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/sensor_msgs/CompressedImage.h +294 -0
  164. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/sensor_msgs/Image.h +371 -0
  165. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/sensor_msgs/RegionOfInterest.h +313 -0
  166. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/idl/std_msgs/Header.h +265 -0
  167. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/ai/api.hpp +161 -0
  168. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/ai/client.hpp +103 -0
  169. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/ai/const.hpp +13 -0
  170. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/b1/b1_api_const.hpp +135 -0
  171. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/b1/b1_loco_api.hpp +781 -0
  172. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/b1/b1_loco_client.hpp +468 -0
  173. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/channel/channel_factory.hpp +60 -0
  174. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/channel/channel_publisher.hpp +53 -0
  175. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/channel/channel_subscriber.hpp +66 -0
  176. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/common/entities.hpp +160 -0
  177. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/common/robot_shared.hpp +68 -0
  178. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/error.hpp +20 -0
  179. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/request.hpp +43 -0
  180. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/request_header.hpp +43 -0
  181. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/response.hpp +47 -0
  182. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/response_header.hpp +44 -0
  183. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/rpc_client.hpp +45 -0
  184. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/rpc/rpc_server.hpp +37 -0
  185. booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/third_party/nlohmann_json/json.hpp +24596 -0
  186. booster_robotics_sdk_python-1.0.0/sdk_release/install.sh +54 -0
  187. booster_robotics_sdk_python-1.0.0/sdk_release/lib/aarch64/libbooster_robotics_sdk.a +0 -0
  188. booster_robotics_sdk_python-1.0.0/sdk_release/lib/x86_64/libbooster_robotics_sdk.a +0 -0
  189. booster_robotics_sdk_python-1.0.0/sdk_release/pyproject.toml +91 -0
  190. booster_robotics_sdk_python-1.0.0/sdk_release/python/binding.cpp +872 -0
  191. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/Cdr.h +3408 -0
  192. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/CdrEncoding.hpp +54 -0
  193. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/CdrSizeCalculator.hpp +1270 -0
  194. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/FastBuffer.h +368 -0
  195. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/FastCdr.h +2078 -0
  196. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/cdr/fixed_size_string.hpp +344 -0
  197. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/config.h +51 -0
  198. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/detail/container_recursive_inspector.hpp +53 -0
  199. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/eProsima_auto_link.h +67 -0
  200. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/exceptions/BadOptionalAccessException.hpp +83 -0
  201. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/exceptions/BadParamException.h +83 -0
  202. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/exceptions/Exception.h +96 -0
  203. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/exceptions/LockedExternalAccessException.hpp +83 -0
  204. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/exceptions/NotEnoughMemoryException.h +83 -0
  205. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/fastcdr_dll.h +69 -0
  206. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/xcdr/MemberId.hpp +72 -0
  207. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/xcdr/detail/optional.hpp +71 -0
  208. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/xcdr/external.hpp +190 -0
  209. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastcdr/xcdr/optional.hpp +356 -0
  210. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/common/ReplyHeader.hpp +72 -0
  211. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/common/RequestHeader.hpp +72 -0
  212. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/common/Types.hpp +57 -0
  213. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/topic/BuiltinTopicKey.hpp +45 -0
  214. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/topic/ParticipantBuiltinTopicData.hpp +45 -0
  215. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/topic/PublicationBuiltinTopicData.hpp +100 -0
  216. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/topic/SubscriptionBuiltinTopicData.hpp +94 -0
  217. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/topic/TopicBuiltinTopicData.hpp +81 -0
  218. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/typelookup/TypeLookupManager.hpp +296 -0
  219. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/typelookup/TypeLookupReplyListener.hpp +89 -0
  220. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/typelookup/TypeLookupRequestListener.hpp +90 -0
  221. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/builtin/typelookup/common/TypeLookupTypes.hpp +645 -0
  222. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/common/InstanceHandle.hpp +39 -0
  223. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/Entity.hpp +186 -0
  224. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/LoanableArray.hpp +75 -0
  225. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/LoanableCollection.hpp +250 -0
  226. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/LoanableSequence.hpp +233 -0
  227. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/LoanableTypedCollection.hpp +101 -0
  228. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/StackAllocatedSequence.hpp +91 -0
  229. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/UserAllocatedSequence.hpp +103 -0
  230. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/condition/Condition.hpp +74 -0
  231. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/condition/GuardCondition.hpp +72 -0
  232. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/condition/StatusCondition.hpp +112 -0
  233. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/condition/WaitSet.hpp +110 -0
  234. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/policy/ParameterTypes.hpp +1823 -0
  235. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/policy/QosPolicies.hpp +3211 -0
  236. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/policy/ReaderDataLifecycleQosPolicy.hpp +88 -0
  237. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/policy/WriterDataLifecycleQosPolicy.hpp +70 -0
  238. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/BaseStatus.hpp +56 -0
  239. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/DeadlineMissedStatus.hpp +65 -0
  240. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/IncompatibleQosStatus.hpp +96 -0
  241. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/LivelinessChangedStatus.hpp +59 -0
  242. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/MatchedStatus.hpp +55 -0
  243. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/PublicationMatchedStatus.hpp +41 -0
  244. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/SampleRejectedStatus.hpp +72 -0
  245. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/StatusMask.hpp +270 -0
  246. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/core/status/SubscriptionMatchedStatus.hpp +42 -0
  247. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/domain/DomainParticipant.hpp +966 -0
  248. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/domain/DomainParticipantFactory.hpp +330 -0
  249. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/domain/DomainParticipantListener.hpp +247 -0
  250. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/domain/qos/DomainParticipantFactoryQos.hpp +171 -0
  251. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/domain/qos/DomainParticipantQos.hpp +519 -0
  252. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/log/Colors.hpp +60 -0
  253. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/log/FileConsumer.hpp +72 -0
  254. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/log/Log.hpp +354 -0
  255. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/log/OStreamConsumer.hpp +58 -0
  256. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/log/StdoutConsumer.hpp +45 -0
  257. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/log/StdoutErrConsumer.hpp +80 -0
  258. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/DataWriter.hpp +634 -0
  259. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/DataWriterListener.hpp +132 -0
  260. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/Publisher.hpp +376 -0
  261. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/PublisherListener.hpp +62 -0
  262. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/qos/DataWriterQos.hpp +918 -0
  263. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/qos/PublisherQos.hpp +210 -0
  264. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/publisher/qos/WriterQos.hpp +158 -0
  265. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/DataReader.hpp +1090 -0
  266. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/DataReaderListener.hpp +159 -0
  267. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/InstanceState.hpp +87 -0
  268. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/ReadCondition.hpp +126 -0
  269. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/SampleInfo.hpp +124 -0
  270. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/SampleState.hpp +60 -0
  271. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/Subscriber.hpp +394 -0
  272. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/SubscriberListener.hpp +76 -0
  273. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/ViewState.hpp +71 -0
  274. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/qos/DataReaderQos.hpp +929 -0
  275. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/qos/ReaderQos.hpp +159 -0
  276. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/subscriber/qos/SubscriberQos.hpp +211 -0
  277. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/ContentFilteredTopic.hpp +145 -0
  278. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/IContentFilter.hpp +78 -0
  279. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/IContentFilterFactory.hpp +96 -0
  280. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/Topic.hpp +157 -0
  281. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/TopicDataType.hpp +392 -0
  282. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/TopicDescription.hpp +97 -0
  283. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/TopicListener.hpp +75 -0
  284. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/TypeSupport.hpp +314 -0
  285. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/dds/topic/qos/TopicQos.hpp +552 -0
  286. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/Endpoint.h +150 -0
  287. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/RTPSDomain.h +308 -0
  288. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/BuiltinTransports.hpp +85 -0
  289. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/EndpointAttributes.h +180 -0
  290. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/ExternalLocators.hpp +48 -0
  291. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/HistoryAttributes.h +130 -0
  292. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/PropertyPolicy.h +124 -0
  293. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/RTPSParticipantAllocationAttributes.hpp +185 -0
  294. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/RTPSParticipantAttributes.h +613 -0
  295. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/ReaderAttributes.h +116 -0
  296. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/ServerAttributes.h +265 -0
  297. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/ThreadSettings.hpp +111 -0
  298. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/attributes/WriterAttributes.h +153 -0
  299. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/BuiltinProtocols.h +216 -0
  300. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/data/BuiltinEndpoints.hpp +47 -0
  301. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/data/ContentFilterProperty.hpp +82 -0
  302. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/data/NetworkConfiguration.hpp +24 -0
  303. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/data/ParticipantProxyData.h +234 -0
  304. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/data/ReaderProxyData.h +521 -0
  305. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/data/WriterProxyData.h +514 -0
  306. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/endpoint/EDP.h +429 -0
  307. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/endpoint/EDPSimple.h +292 -0
  308. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/endpoint/EDPStatic.h +166 -0
  309. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/participant/PDP.h +651 -0
  310. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/participant/PDPListener.h +108 -0
  311. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/participant/PDPSimple.h +171 -0
  312. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/liveliness/WLP.h +314 -0
  313. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/builtin/liveliness/WLPListener.h +110 -0
  314. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/BinaryProperty.h +182 -0
  315. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/CDRMessage_t.h +228 -0
  316. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/CacheChange.h +449 -0
  317. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/CdrSerialization.hpp +106 -0
  318. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/ChangeKind_t.hpp +44 -0
  319. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/EntityId_t.hpp +405 -0
  320. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/FragmentNumber.h +55 -0
  321. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/Guid.h +260 -0
  322. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/GuidPrefix_t.hpp +177 -0
  323. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/InstanceHandle.h +365 -0
  324. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/Locator.h +541 -0
  325. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/LocatorList.hpp +489 -0
  326. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/LocatorListComparisons.hpp +62 -0
  327. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/LocatorSelector.hpp +478 -0
  328. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/LocatorSelectorEntry.hpp +122 -0
  329. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/LocatorWithMask.hpp +67 -0
  330. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/LocatorsIterator.hpp +70 -0
  331. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/MatchingInfo.h +68 -0
  332. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/PortParameters.h +136 -0
  333. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/Property.h +221 -0
  334. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/RemoteLocators.hpp +240 -0
  335. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/SampleIdentity.h +250 -0
  336. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/SequenceNumber.h +421 -0
  337. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/SerializedPayload.h +200 -0
  338. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/Time_t.h +697 -0
  339. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/Token.h +158 -0
  340. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/Types.h +173 -0
  341. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/VendorId_t.hpp +39 -0
  342. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/WriteParams.h +213 -0
  343. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/common/all_common.h +35 -0
  344. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/exceptions/Exception.h +112 -0
  345. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/flowcontrol/FlowControllerConsts.hpp +33 -0
  346. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/flowcontrol/FlowControllerDescriptor.hpp +65 -0
  347. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/flowcontrol/FlowControllerSchedulerPolicy.hpp +47 -0
  348. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/flowcontrol/ThroughputControllerDescriptor.h +56 -0
  349. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/history/History.h +343 -0
  350. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/history/IChangePool.h +73 -0
  351. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/history/IPayloadPool.h +131 -0
  352. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/history/ReaderHistory.h +274 -0
  353. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/history/WriterHistory.h +257 -0
  354. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/interfaces/IReaderDataFilter.hpp +55 -0
  355. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/CDRMessage.h +353 -0
  356. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/CDRMessage.hpp +1238 -0
  357. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/MessageReceiver.h +291 -0
  358. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/RTPSMessageCreator.h +274 -0
  359. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/RTPSMessageGroup.h +333 -0
  360. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/RTPSMessageSenderInterface.hpp +104 -0
  361. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/messages/RTPS_messages.h +116 -0
  362. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/network/SenderResource.h +20 -0
  363. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/participant/ParticipantDiscoveryInfo.h +113 -0
  364. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/participant/RTPSParticipant.h +453 -0
  365. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/participant/RTPSParticipantListener.h +225 -0
  366. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/RTPSReader.h +536 -0
  367. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/ReaderDiscoveryInfo.h +74 -0
  368. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/ReaderListener.h +219 -0
  369. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/StatefulPersistentReader.h +95 -0
  370. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/StatefulReader.h +381 -0
  371. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/StatelessPersistentReader.h +95 -0
  372. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/reader/StatelessReader.h +302 -0
  373. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/resources/ResourceEvent.h +184 -0
  374. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/resources/ResourceManagement.h +44 -0
  375. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/resources/TimedEvent.h +186 -0
  376. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/rtps_all.h +47 -0
  377. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/rtps_fwd.h +40 -0
  378. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/accesscontrol/AccessControl.h +184 -0
  379. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/accesscontrol/EndpointSecurityAttributes.h +182 -0
  380. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/accesscontrol/ParticipantSecurityAttributes.h +137 -0
  381. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/accesscontrol/SecurityMaskUtilities.h +41 -0
  382. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/authentication/Authentication.h +295 -0
  383. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/authentication/Handshake.h +38 -0
  384. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/common/Handle.h +175 -0
  385. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/common/ParticipantGenericMessage.h +349 -0
  386. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/common/SharedSecretHandle.h +162 -0
  387. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/cryptography/CryptoKeyExchange.h +136 -0
  388. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/cryptography/CryptoKeyFactory.h +227 -0
  389. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/cryptography/CryptoTransform.h +204 -0
  390. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/cryptography/CryptoTypes.h +87 -0
  391. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/cryptography/Cryptography.h +70 -0
  392. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/exceptions/SecurityException.h +79 -0
  393. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/logging/BuiltinLoggingType.h +58 -0
  394. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/logging/LogOptions.h +52 -0
  395. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/logging/Logging.h +292 -0
  396. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/logging/LoggingLevel.h +140 -0
  397. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/security/logging/NameValuePair.h +47 -0
  398. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/ChainingTransport.h +389 -0
  399. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/ChainingTransportDescriptor.h +75 -0
  400. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/PortBasedTransportDescriptor.hpp +113 -0
  401. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/SenderResource.h +132 -0
  402. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/SocketTransportDescriptor.h +98 -0
  403. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/TCPTransportDescriptor.h +309 -0
  404. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/TCPv4TransportDescriptor.h +103 -0
  405. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/TCPv6TransportDescriptor.h +57 -0
  406. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/TransportDescriptorInterface.h +106 -0
  407. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/TransportInterface.h +294 -0
  408. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/TransportReceiverInterface.h +53 -0
  409. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/UDPTransportDescriptor.h +77 -0
  410. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/UDPv4TransportDescriptor.h +56 -0
  411. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/UDPv6TransportDescriptor.h +58 -0
  412. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/shared_mem/SharedMemTransportDescriptor.h +166 -0
  413. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/transport/test_UDPv4TransportDescriptor.h +118 -0
  414. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/ChangeForReader.h +216 -0
  415. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/DeliveryRetCode.hpp +21 -0
  416. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/IReaderDataFilter.hpp +22 -0
  417. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/LivelinessData.h +119 -0
  418. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/LivelinessManager.h +178 -0
  419. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/LocatorSelectorSender.hpp +125 -0
  420. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/PersistentWriter.h +80 -0
  421. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/RTPSWriter.h +653 -0
  422. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/ReaderLocator.h +274 -0
  423. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/ReaderProxy.h +510 -0
  424. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/StatefulPersistentWriter.h +108 -0
  425. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/StatefulWriter.h +547 -0
  426. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/StatelessPersistentWriter.h +99 -0
  427. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/StatelessWriter.h +300 -0
  428. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/WriterDiscoveryInfo.h +72 -0
  429. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/rtps/writer/WriterListener.h +157 -0
  430. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/IListeners.hpp +43 -0
  431. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/dds/domain/DomainParticipant.hpp +225 -0
  432. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/dds/publisher/qos/DataWriterQos.hpp +53 -0
  433. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/dds/subscriber/qos/DataReaderQos.hpp +70 -0
  434. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/monitorservice_types.idl +122 -0
  435. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/StatisticsCommon.hpp +399 -0
  436. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/Interfaces.hpp +31 -0
  437. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IConnectionsObserver.hpp +55 -0
  438. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IConnectionsQueryable.hpp +58 -0
  439. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IProxyObserver.hpp +52 -0
  440. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IProxyQueryable.hpp +67 -0
  441. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IStatusObserver.hpp +51 -0
  442. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IStatusQueryable.hpp +66 -0
  443. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/topic_names.hpp +69 -0
  444. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/statistics/types.idl +175 -0
  445. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/thirdparty/optionparser/optionparser/optionparser.h +2862 -0
  446. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastdds/thirdparty/optionparser/optionparser.hpp +48 -0
  447. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/Domain.h +251 -0
  448. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/TopicDataType.h +33 -0
  449. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/LibrarySettingsAttributes.h +66 -0
  450. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/ParticipantAttributes.h +63 -0
  451. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/PublisherAttributes.h +149 -0
  452. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/ReplierAttributes.hpp +54 -0
  453. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/RequesterAttributes.hpp +55 -0
  454. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/SubscriberAttributes.h +151 -0
  455. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/TopicAttributes.h +151 -0
  456. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/attributes/all_attributes.h +29 -0
  457. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/common/KeyedChanges.h +63 -0
  458. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/config/doxygen_modules.h +144 -0
  459. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/config.h +133 -0
  460. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/eProsima_auto_link.h +66 -0
  461. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/fastrtps_all.h +54 -0
  462. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/fastrtps_dll.h +69 -0
  463. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/fastrtps_fwd.h +35 -0
  464. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/log/Colors.h +19 -0
  465. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/log/FileConsumer.h +33 -0
  466. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/log/Log.h +30 -0
  467. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/log/StdoutConsumer.h +28 -0
  468. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/participant/Participant.h +104 -0
  469. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/participant/ParticipantListener.h +88 -0
  470. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/publisher/Publisher.h +192 -0
  471. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/publisher/PublisherHistory.h +206 -0
  472. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/publisher/PublisherListener.h +92 -0
  473. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/DeadlineMissedStatus.h +35 -0
  474. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/IncompatibleQosStatus.hpp +35 -0
  475. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/LivelinessChangedStatus.h +32 -0
  476. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/LivelinessLostStatus.h +24 -0
  477. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/ParameterTypes.h +70 -0
  478. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/QosPolicies.h +112 -0
  479. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/ReaderQos.h +35 -0
  480. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/SampleRejectedStatus.hpp +33 -0
  481. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/qos/WriterQos.h +35 -0
  482. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/Endpoint.h +24 -0
  483. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/RTPSDomain.h +24 -0
  484. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/EndpointAttributes.h +24 -0
  485. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/HistoryAttributes.h +29 -0
  486. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/PropertyPolicy.h +23 -0
  487. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/RTPSParticipantAllocationAttributes.hpp +24 -0
  488. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/RTPSParticipantAttributes.h +24 -0
  489. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/ReaderAttributes.h +25 -0
  490. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/ServerAttributes.h +25 -0
  491. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/attributes/WriterAttributes.h +24 -0
  492. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/BuiltinProtocols.h +25 -0
  493. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/data/ParticipantProxyData.h +25 -0
  494. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/data/ReaderProxyData.h +25 -0
  495. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/data/WriterProxyData.h +25 -0
  496. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/endpoint/EDP.h +25 -0
  497. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/endpoint/EDPSimple.h +25 -0
  498. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/endpoint/EDPStatic.h +25 -0
  499. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/participant/PDP.h +25 -0
  500. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/participant/PDPListener.h +25 -0
  501. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/participant/PDPSimple.h +25 -0
  502. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/liveliness/WLP.h +25 -0
  503. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/builtin/liveliness/WLPListener.h +25 -0
  504. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/BinaryProperty.h +23 -0
  505. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/CDRMessage_t.h +24 -0
  506. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/CacheChange.h +24 -0
  507. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/FragmentNumber.h +24 -0
  508. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/Guid.h +24 -0
  509. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/InstanceHandle.h +24 -0
  510. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/Locator.h +24 -0
  511. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/LocatorListComparisons.hpp +24 -0
  512. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/LocatorSelector.hpp +24 -0
  513. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/LocatorSelectorEntry.hpp +24 -0
  514. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/MatchingInfo.h +25 -0
  515. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/PortParameters.h +24 -0
  516. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/Property.h +23 -0
  517. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/RemoteLocators.hpp +24 -0
  518. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/SampleIdentity.h +23 -0
  519. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/SequenceNumber.h +24 -0
  520. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/SerializedPayload.h +24 -0
  521. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/Time_t.h +24 -0
  522. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/Token.h +23 -0
  523. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/Types.h +24 -0
  524. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/WriteParams.h +23 -0
  525. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/common/all_common.h +24 -0
  526. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/exceptions/Exception.h +20 -0
  527. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/flowcontrol/ThroughputControllerDescriptor.h +20 -0
  528. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/history/History.h +25 -0
  529. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/history/ReaderHistory.h +25 -0
  530. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/history/WriterHistory.h +25 -0
  531. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/messages/CDRMessage.h +24 -0
  532. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/messages/MessageReceiver.h +26 -0
  533. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/messages/RTPSMessageCreator.h +23 -0
  534. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/messages/RTPSMessageGroup.h +25 -0
  535. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/messages/RTPSMessageSenderInterface.hpp +25 -0
  536. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/messages/RTPS_messages.h +24 -0
  537. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/network/SenderResource.h +20 -0
  538. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/participant/ParticipantDiscoveryInfo.h +25 -0
  539. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/participant/RTPSParticipant.h +25 -0
  540. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/participant/RTPSParticipantListener.h +25 -0
  541. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/RTPSReader.h +24 -0
  542. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/ReaderDiscoveryInfo.h +25 -0
  543. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/ReaderListener.h +25 -0
  544. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/StatefulPersistentReader.h +25 -0
  545. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/StatefulReader.h +24 -0
  546. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/StatelessPersistentReader.h +25 -0
  547. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/reader/StatelessReader.h +25 -0
  548. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/resources/ResourceEvent.h +25 -0
  549. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/resources/ResourceManagement.h +25 -0
  550. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/resources/TimedEvent.h +25 -0
  551. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/rtps_all.h +25 -0
  552. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/rtps_fwd.h +25 -0
  553. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/accesscontrol/AccessControl.h +23 -0
  554. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/accesscontrol/EndpointSecurityAttributes.h +23 -0
  555. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/accesscontrol/ParticipantSecurityAttributes.h +23 -0
  556. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/accesscontrol/SecurityMaskUtilities.h +23 -0
  557. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/authentication/Authentication.h +23 -0
  558. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/authentication/Handshake.h +23 -0
  559. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/common/Handle.h +23 -0
  560. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/common/ParticipantGenericMessage.h +20 -0
  561. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/common/SharedSecretHandle.h +23 -0
  562. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/CryptoKeyExchange.h +23 -0
  563. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/CryptoKeyFactory.h +23 -0
  564. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/CryptoTransform.h +23 -0
  565. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/CryptoTypes.h +23 -0
  566. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/Cryptography.h +24 -0
  567. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/security/exceptions/SecurityException.h +20 -0
  568. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/LivelinessData.h +23 -0
  569. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/LivelinessManager.h +23 -0
  570. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/PersistentWriter.h +25 -0
  571. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/RTPSWriter.h +24 -0
  572. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/ReaderLocator.h +26 -0
  573. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/ReaderProxy.h +23 -0
  574. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/StatefulPersistentWriter.h +25 -0
  575. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/StatefulWriter.h +25 -0
  576. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/StatelessPersistentWriter.h +25 -0
  577. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/StatelessWriter.h +25 -0
  578. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/WriterDiscoveryInfo.h +25 -0
  579. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/rtps/writer/WriterListener.h +25 -0
  580. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/subscriber/SampleInfo.h +73 -0
  581. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/subscriber/Subscriber.h +190 -0
  582. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/subscriber/SubscriberHistory.h +278 -0
  583. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/subscriber/SubscriberListener.h +101 -0
  584. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/SocketTransportDescriptor.h +31 -0
  585. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/TCPTransportDescriptor.h +32 -0
  586. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/TCPv4TransportDescriptor.h +32 -0
  587. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/TCPv6TransportDescriptor.h +32 -0
  588. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/TransportDescriptorInterface.h +31 -0
  589. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/TransportInterface.h +40 -0
  590. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/TransportReceiverInterface.h +30 -0
  591. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/UDPTransportDescriptor.h +32 -0
  592. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/UDPv4TransportDescriptor.h +32 -0
  593. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/UDPv6TransportDescriptor.h +32 -0
  594. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/transport/test_UDPv4TransportDescriptor.h +32 -0
  595. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/AnnotationDescriptor.h +71 -0
  596. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/AnnotationParameterValue.h +1451 -0
  597. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/BuiltinAnnotationsTypeObject.h +183 -0
  598. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicData.h +788 -0
  599. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicDataFactory.h +68 -0
  600. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicDataHelper.hpp +127 -0
  601. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicDataPtr.h +63 -0
  602. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicPubSubType.h +106 -0
  603. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicType.h +180 -0
  604. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicTypeBuilder.h +167 -0
  605. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicTypeBuilderFactory.h +317 -0
  606. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicTypeBuilderPtr.h +67 -0
  607. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicTypeMember.h +102 -0
  608. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/DynamicTypePtr.h +76 -0
  609. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/MemberDescriptor.h +194 -0
  610. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeDescriptor.h +163 -0
  611. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeIdentifier.h +434 -0
  612. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeIdentifierTypes.h +1920 -0
  613. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeNamesGenerator.h +50 -0
  614. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeObject.h +8075 -0
  615. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeObjectFactory.h +274 -0
  616. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypeObjectHashId.h +187 -0
  617. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/types/TypesBase.h +647 -0
  618. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/DBQueue.h +157 -0
  619. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/IPFinder.h +135 -0
  620. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/IPLocator.h +306 -0
  621. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/ProxyPool.hpp +243 -0
  622. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/Semaphore.h +100 -0
  623. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/StringMatching.h +66 -0
  624. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/System.h +44 -0
  625. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/TimeConversion.h +160 -0
  626. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/TimedConditionVariable.hpp +195 -0
  627. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/TimedMutex.hpp +344 -0
  628. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/collections/ResourceLimitedContainerConfig.hpp +93 -0
  629. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/collections/ResourceLimitedVector.hpp +602 -0
  630. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/collections/foonathan_memory_helpers.hpp +74 -0
  631. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/fixed_size_bitmap.hpp +637 -0
  632. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/fixed_size_string.hpp +255 -0
  633. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/md5.h +101 -0
  634. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/shared_mutex.hpp +655 -0
  635. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/utils/string_convert.hpp +39 -0
  636. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/xmlparser/XMLEndpointParser.h +165 -0
  637. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/xmlparser/XMLParser.h +683 -0
  638. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/xmlparser/XMLParserCommon.h +490 -0
  639. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/xmlparser/XMLProfileManager.h +351 -0
  640. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/fastrtps/xmlparser/XMLTree.h +220 -0
  641. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/aligned_allocator.hpp +196 -0
  642. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/allocator_storage.hpp +933 -0
  643. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/allocator_traits.hpp +601 -0
  644. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/config.hpp +147 -0
  645. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/config_impl.hpp +22 -0
  646. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/container.hpp +367 -0
  647. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/container_node_sizes_impl.hpp +448 -0
  648. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/debugging.hpp +113 -0
  649. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/default_allocator.hpp +36 -0
  650. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/deleter.hpp +307 -0
  651. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/align.hpp +51 -0
  652. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/assert.hpp +56 -0
  653. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/container_node_sizes.hpp +9 -0
  654. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/container_node_sizes_impl.hpp +448 -0
  655. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/debug_helpers.hpp +234 -0
  656. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/ebo_storage.hpp +41 -0
  657. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/free_list.hpp +227 -0
  658. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/free_list_array.hpp +125 -0
  659. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/ilog2.hpp +68 -0
  660. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/lowlevel_allocator.hpp +85 -0
  661. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/memory_stack.hpp +119 -0
  662. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/small_free_list.hpp +163 -0
  663. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/utility.hpp +117 -0
  664. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/error.hpp +288 -0
  665. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/fallback_allocator.hpp +211 -0
  666. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/heap_allocator.hpp +82 -0
  667. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/iteration_allocator.hpp +304 -0
  668. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/joint_allocator.hpp +926 -0
  669. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/malloc_allocator.hpp +70 -0
  670. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_arena.hpp +692 -0
  671. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_pool.hpp +432 -0
  672. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_pool_collection.hpp +568 -0
  673. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_pool_type.hpp +52 -0
  674. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_resource_adapter.hpp +238 -0
  675. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_stack.hpp +489 -0
  676. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/namespace_alias.hpp +36 -0
  677. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/new_allocator.hpp +54 -0
  678. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/segregator.hpp +447 -0
  679. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/smart_ptr.hpp +197 -0
  680. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/static_allocator.hpp +178 -0
  681. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/std_allocator.hpp +361 -0
  682. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/temporary_allocator.hpp +334 -0
  683. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/threading.hpp +154 -0
  684. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/tracking.hpp +429 -0
  685. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/include/foonathan_memory/foonathan/memory/virtual_memory.hpp +201 -0
  686. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/aarch64/20/libfastcdr.so +0 -0
  687. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/aarch64/20/libfastrtps.so +0 -0
  688. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/aarch64/20/libfoonathan_memory-0.7.3.a +0 -0
  689. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/aarch64/libfastcdr.so +0 -0
  690. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/aarch64/libfastrtps.so +0 -0
  691. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/aarch64/libfoonathan_memory-0.7.3.a +0 -0
  692. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/x86_64/20/libfastcdr.so +0 -0
  693. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/x86_64/20/libfastrtps.so +0 -0
  694. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/x86_64/20/libfoonathan_memory-0.7.3.a +0 -0
  695. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/x86_64/libfastcdr.so +0 -0
  696. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/x86_64/libfastrtps.so +0 -0
  697. booster_robotics_sdk_python-1.0.0/sdk_release/third_party/lib/x86_64/libfoonathan_memory-0.7.3.a +0 -0
  698. booster_robotics_sdk_python-1.0.0/shared-file-system/rusty-data-root/cfg/commit-dependency.info.json +16 -0
  699. booster_robotics_sdk_python-1.0.0/shared-file-system/script/s-30-install-dependency.sh +14 -0
  700. booster_robotics_sdk_python-1.0.0/shared-file-system/script/s-40-build-component.sh +7 -0
  701. booster_robotics_sdk_python-1.0.0/src/common/dds/dds_callback.cpp +17 -0
  702. booster_robotics_sdk_python-1.0.0/src/common/dds/dds_factory_model.cpp +153 -0
  703. booster_robotics_sdk_python-1.0.0/src/common/dds/dds_topic_channel.cpp +0 -0
  704. booster_robotics_sdk_python-1.0.0/src/common/ros_dds_bridge/bridge.cpp +22 -0
  705. booster_robotics_sdk_python-1.0.0/src/idl/ai/Subtitle.cpp +628 -0
  706. booster_robotics_sdk_python-1.0.0/src/idl/ai/Subtitle.idl +14 -0
  707. booster_robotics_sdk_python-1.0.0/src/idl/b1/BatteryState.cpp +483 -0
  708. booster_robotics_sdk_python-1.0.0/src/idl/b1/BatteryState.idl +10 -0
  709. booster_robotics_sdk_python-1.0.0/src/idl/b1/ButtonEvent.cpp +426 -0
  710. booster_robotics_sdk_python-1.0.0/src/idl/b1/ButtonEvent.idl +19 -0
  711. booster_robotics_sdk_python-1.0.0/src/idl/b1/FallDownState.cpp +435 -0
  712. booster_robotics_sdk_python-1.0.0/src/idl/b1/FallDownState.idl +15 -0
  713. booster_robotics_sdk_python-1.0.0/src/idl/b1/HandReplyData.cpp +471 -0
  714. booster_robotics_sdk_python-1.0.0/src/idl/b1/HandReplyData.idl +10 -0
  715. booster_robotics_sdk_python-1.0.0/src/idl/b1/HandReplyParam.cpp +572 -0
  716. booster_robotics_sdk_python-1.0.0/src/idl/b1/HandReplyParam.idl +14 -0
  717. booster_robotics_sdk_python-1.0.0/src/idl/b1/HandTouchData.cpp +470 -0
  718. booster_robotics_sdk_python-1.0.0/src/idl/b1/HandTouchData.h +284 -0
  719. booster_robotics_sdk_python-1.0.0/src/idl/b1/HandTouchData.idl +10 -0
  720. booster_robotics_sdk_python-1.0.0/src/idl/b1/HandTouchParam.cpp +615 -0
  721. booster_robotics_sdk_python-1.0.0/src/idl/b1/HandTouchParam.h +374 -0
  722. booster_robotics_sdk_python-1.0.0/src/idl/b1/HandTouchParam.idl +13 -0
  723. booster_robotics_sdk_python-1.0.0/src/idl/b1/ImuState.cpp +459 -0
  724. booster_robotics_sdk_python-1.0.0/src/idl/b1/ImuState.idl +9 -0
  725. booster_robotics_sdk_python-1.0.0/src/idl/b1/LightControlMsg.cpp +410 -0
  726. booster_robotics_sdk_python-1.0.0/src/idl/b1/LightControlMsg.idl +9 -0
  727. booster_robotics_sdk_python-1.0.0/src/idl/b1/LightPixel.cpp +444 -0
  728. booster_robotics_sdk_python-1.0.0/src/idl/b1/LightPixel.idl +9 -0
  729. booster_robotics_sdk_python-1.0.0/src/idl/b1/LowCmd.cpp +428 -0
  730. booster_robotics_sdk_python-1.0.0/src/idl/b1/LowCmd.idl +15 -0
  731. booster_robotics_sdk_python-1.0.0/src/idl/b1/LowState.cpp +500 -0
  732. booster_robotics_sdk_python-1.0.0/src/idl/b1/LowState.idl +12 -0
  733. booster_robotics_sdk_python-1.0.0/src/idl/b1/MotorCmd.cpp +563 -0
  734. booster_robotics_sdk_python-1.0.0/src/idl/b1/MotorCmd.idl +14 -0
  735. booster_robotics_sdk_python-1.0.0/src/idl/b1/MotorState.cpp +609 -0
  736. booster_robotics_sdk_python-1.0.0/src/idl/b1/MotorState.idl +14 -0
  737. booster_robotics_sdk_python-1.0.0/src/idl/b1/Odometer.cpp +441 -0
  738. booster_robotics_sdk_python-1.0.0/src/idl/b1/Odometer.idl +9 -0
  739. booster_robotics_sdk_python-1.0.0/src/idl/b1/ProneBodyControlStatus.cpp +400 -0
  740. booster_robotics_sdk_python-1.0.0/src/idl/b1/ProneBodyControlStatus.idl +7 -0
  741. booster_robotics_sdk_python-1.0.0/src/idl/b1/RemoteControllerState.cpp +1190 -0
  742. booster_robotics_sdk_python-1.0.0/src/idl/b1/RemoteControllerState.idl +37 -0
  743. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotDdsBatteryStatus.cpp +566 -0
  744. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotDdsBatteryStatus.idl +13 -0
  745. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotDdsImuStatus.cpp +497 -0
  746. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotDdsImuStatus.idl +11 -0
  747. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotDdsJointStatus.cpp +605 -0
  748. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotDdsJointStatus.idl +14 -0
  749. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotProcessState.cpp +461 -0
  750. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotProcessState.idl +11 -0
  751. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotProcessStateMsg.cpp +418 -0
  752. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotProcessStateMsg.idl +10 -0
  753. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotReplayTrajID.cpp +401 -0
  754. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotReplayTrajID.idl +9 -0
  755. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotStates.cpp +477 -0
  756. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotStates.idl +54 -0
  757. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotStatusDdsMsg.cpp +512 -0
  758. booster_robotics_sdk_python-1.0.0/src/idl/b1/RobotStatusDdsMsg.idl +14 -0
  759. booster_robotics_sdk_python-1.0.0/src/idl/builtin_interfaces/Time.cpp +408 -0
  760. booster_robotics_sdk_python-1.0.0/src/idl/builtin_interfaces/Time.idl +17 -0
  761. booster_robotics_sdk_python-1.0.0/src/idl/rpc/RpcReqMsg.cpp +460 -0
  762. booster_robotics_sdk_python-1.0.0/src/idl/rpc/RpcReqMsg.idl +11 -0
  763. booster_robotics_sdk_python-1.0.0/src/idl/rpc/RpcRespMsg.cpp +462 -0
  764. booster_robotics_sdk_python-1.0.0/src/idl/rpc/RpcRespMsg.idl +11 -0
  765. booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/CameraInfo.cpp +745 -0
  766. booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/CameraInfo.idl +153 -0
  767. booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/CompressedImage.cpp +479 -0
  768. booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/CompressedImage.idl +32 -0
  769. booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/Image.cpp +585 -0
  770. booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/Image.idl +50 -0
  771. booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/RegionOfInterest.cpp +513 -0
  772. booster_robotics_sdk_python-1.0.0/src/idl/sensor_msgs/RegionOfInterest.idl +42 -0
  773. booster_robotics_sdk_python-1.0.0/src/idl/std_msgs/Header.cpp +428 -0
  774. booster_robotics_sdk_python-1.0.0/src/idl/std_msgs/Header.idl +19 -0
  775. booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/FallDownRecoveryState.cpp +437 -0
  776. booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/FallDownRecoveryState.idl +9 -0
  777. booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/PersonFace.cpp +554 -0
  778. booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/PersonFace.idl +12 -0
  779. booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/PersonFaceMsgs.cpp +449 -0
  780. booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/PersonFaceMsgs.idl +11 -0
  781. booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/RawBytesMsg.cpp +394 -0
  782. booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/RawBytesMsg.idl +8 -0
  783. booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/RawBytesStamped.cpp +441 -0
  784. booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/RawBytesStamped.idl +10 -0
  785. booster_robotics_sdk_python-1.0.0/src/idl_internal/booster_msgs/BinaryData.cxx +314 -0
  786. booster_robotics_sdk_python-1.0.0/src/idl_internal/booster_msgs/BinaryData.idl +7 -0
  787. booster_robotics_sdk_python-1.0.0/src/idl_internal/booster_msgs/BinaryDataCdrAux.ipp +132 -0
  788. booster_robotics_sdk_python-1.0.0/src/idl_internal/demo/DemoMsg.cxx +370 -0
  789. booster_robotics_sdk_python-1.0.0/src/idl_internal/demo/DemoMsg.idl +9 -0
  790. booster_robotics_sdk_python-1.0.0/src/idl_internal/demo/DemoMsgCdrAux.ipp +146 -0
  791. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Point.cxx +388 -0
  792. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Point.idl +12 -0
  793. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/PointCdrAux.ipp +146 -0
  794. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Pose.cxx +372 -0
  795. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Pose.idl +11 -0
  796. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/PoseCdrAux.ipp +138 -0
  797. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/PoseStamped.cpp +436 -0
  798. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/PoseStamped.idl +11 -0
  799. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Quaternion.cpp +472 -0
  800. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Quaternion.idl +21 -0
  801. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Transform.cpp +436 -0
  802. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Transform.idl +18 -0
  803. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/TransformStamped.cpp +492 -0
  804. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/TransformStamped.idl +35 -0
  805. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Vector3.cpp +440 -0
  806. booster_robotics_sdk_python-1.0.0/src/idl_internal/geometry_msgs/Vector3.idl +17 -0
  807. booster_robotics_sdk_python-1.0.0/src/idl_internal/robocup_msgs/Ball.cpp +479 -0
  808. booster_robotics_sdk_python-1.0.0/src/idl_internal/robocup_msgs/Ball.idl +12 -0
  809. booster_robotics_sdk_python-1.0.0/src/idl_internal/robocup_msgs/Kick.cpp +571 -0
  810. booster_robotics_sdk_python-1.0.0/src/idl_internal/robocup_msgs/Kick.idl +15 -0
  811. booster_robotics_sdk_python-1.0.0/src/idl_internal/sensor_msgs/Imu.cxx +577 -0
  812. booster_robotics_sdk_python-1.0.0/src/idl_internal/sensor_msgs/Imu.idl +44 -0
  813. booster_robotics_sdk_python-1.0.0/src/idl_internal/sensor_msgs/ImuCdrAux.ipp +180 -0
  814. booster_robotics_sdk_python-1.0.0/src/idl_internal/sensor_msgs/JointState.cxx +489 -0
  815. booster_robotics_sdk_python-1.0.0/src/idl_internal/sensor_msgs/JointState.idl +36 -0
  816. booster_robotics_sdk_python-1.0.0/src/idl_internal/sensor_msgs/JointStateCdrAux.ipp +164 -0
  817. booster_robotics_sdk_python-1.0.0/src/idl_internal/tf2_msgs/TFMessage.cpp +399 -0
  818. booster_robotics_sdk_python-1.0.0/src/idl_internal/tf2_msgs/TFMessage.idl +13 -0
  819. booster_robotics_sdk_python-1.0.0/src/python/binding.cpp +1603 -0
  820. booster_robotics_sdk_python-1.0.0/src/python/controller/booster_robotics_sdk_python/__init__.py +11 -0
  821. booster_robotics_sdk_python-1.0.0/src/python/controller/booster_robotics_sdk_python/arm_controller.py +233 -0
  822. booster_robotics_sdk_python-1.0.0/src/python/controller/booster_robotics_sdk_python/move_controller.py +272 -0
  823. booster_robotics_sdk_python-1.0.0/src/python/internal_binding.cpp +57 -0
  824. booster_robotics_sdk_python-1.0.0/src/robot/ai/client.cpp +42 -0
  825. booster_robotics_sdk_python-1.0.0/src/robot/b1/b1_loco_client.cpp +44 -0
  826. booster_robotics_sdk_python-1.0.0/src/robot/b1/b1_loco_internal_client.cpp +34 -0
  827. booster_robotics_sdk_python-1.0.0/src/robot/channel/channel_factory.cpp +78 -0
  828. booster_robotics_sdk_python-1.0.0/src/robot/channel/channel_publisher.cpp +0 -0
  829. booster_robotics_sdk_python-1.0.0/src/robot/channel/channel_subscriber.cpp +0 -0
  830. booster_robotics_sdk_python-1.0.0/src/robot/rpc/rpc_client.cpp +115 -0
  831. booster_robotics_sdk_python-1.0.0/src/robot/rpc/rpc_server.cpp +59 -0
  832. booster_robotics_sdk_python-1.0.0/test/demo_test/demo_publisher.cpp +119 -0
  833. booster_robotics_sdk_python-1.0.0/test/demo_test/demo_publisher.hpp +39 -0
  834. booster_robotics_sdk_python-1.0.0/test/demo_test/demo_subscriber.cpp +100 -0
  835. booster_robotics_sdk_python-1.0.0/test/demo_test/demo_subscriber.hpp +47 -0
  836. booster_robotics_sdk_python-1.0.0/test/demo_test/demo_test.cpp +46 -0
  837. booster_robotics_sdk_python-1.0.0/test/pub_sub/publisher.cpp +60 -0
  838. booster_robotics_sdk_python-1.0.0/test/pub_sub/subscriber.cpp +43 -0
  839. booster_robotics_sdk_python-1.0.0/test/rpc/loco_rpc_server.hpp +20 -0
  840. booster_robotics_sdk_python-1.0.0/test/rpc/rpc_client.cpp +53 -0
  841. booster_robotics_sdk_python-1.0.0/test/rpc/rpc_server.cpp +44 -0
  842. booster_robotics_sdk_python-1.0.0/test/sim_bridge/sim_bridge_subscriber.cpp +31 -0
  843. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/CMakeLists.txt +35 -0
  844. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/codegen.cpp +52 -0
  845. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/cpp_merger.hpp +198 -0
  846. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/dds_file_manager.hpp +125 -0
  847. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/header_merger.hpp +235 -0
  848. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/helper.hpp +64 -0
  849. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/merger.hpp +59 -0
  850. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Header.cpp +428 -0
  851. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Header.h +265 -0
  852. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Header.idl +19 -0
  853. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/LowCmd.cpp +515 -0
  854. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/LowCmd.h +295 -0
  855. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/LowCmd.idl +15 -0
  856. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmd.cxx +335 -0
  857. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmd.h +295 -0
  858. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmd.idl +13 -0
  859. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmdCdrAux.hpp +50 -0
  860. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmdCdrAux.ipp +178 -0
  861. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmdPubSubTypes.cxx +229 -0
  862. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/MotorCmdPubSubTypes.h +138 -0
  863. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Time.cpp +499 -0
  864. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Time.cxx +165 -0
  865. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Time.h +276 -0
  866. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/Time.idl +17 -0
  867. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/TimeCdrAux.hpp +50 -0
  868. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/TimeCdrAux.ipp +138 -0
  869. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/TimePubSubTypes.cxx +229 -0
  870. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/TimePubSubTypes.h +138 -0
  871. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/test.cpp +457 -0
  872. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/test.h +256 -0
  873. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/temp/test.idl +7 -0
  874. booster_robotics_sdk_python-1.0.0/tools/booster_fastdds_gen/test/test_publisher.cpp +33 -0
  875. 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,4 @@
1
+ *.a filter=lfs diff=lfs merge=lfs -text
2
+ *.so filter=lfs diff=lfs merge=lfs -text
3
+ **/tool-build/** filter=lfs diff=lfs merge=lfs -text
4
+ *.zip filter=lfs diff=lfs merge=lfs -text
@@ -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,3 @@
1
+ [submodule "sdk_release"]
2
+ path = sdk_release
3
+ url = git@gitee.com:booster_robotics/sdk_release.git
@@ -0,0 +1,3 @@
1
+ # [lfs]
2
+ # url = "http://192.168.101.144:1536/api/booster-custom-project/booster_robotics_sdk"
3
+
@@ -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
+ ```