-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bindings for LocalMessageDefinitionSource (#1697)
* Add bindings for LocalMessageDefinitionSource Signed-off-by: methylDragon <[email protected]> * Fix pyi interface definitions Signed-off-by: methylDragon <[email protected]> * Update rosbag2_py/src/rosbag2_py/_message_definitions.cpp Co-authored-by: Michael Orlov <[email protected]> Signed-off-by: methylDragon <[email protected]> --------- Signed-off-by: methylDragon <[email protected]> Co-authored-by: Michael Orlov <[email protected]>
- Loading branch information
1 parent
0f216c8
commit fbb08d0
Showing
7 changed files
with
198 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from typing import Any | ||
|
||
class LocalMessageDefinitionSource: | ||
def __init__(self) -> None: ... | ||
def get_full_text(self, *args, **kwargs) -> Any: ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright 2024 Intrinsic Innovation LLC. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#include "rosbag2_cpp/message_definitions/local_message_definition_source.hpp" | ||
|
||
#include "./pybind11.hpp" | ||
|
||
PYBIND11_MODULE(_message_definitions, m) { | ||
m.doc() = "Python wrapper of the rosbag2_cpp message definitions API"; | ||
|
||
pybind11::class_<rosbag2_cpp::LocalMessageDefinitionSource>( | ||
m, "LocalMessageDefinitionSource") | ||
.def(pybind11::init<>()) | ||
.def( | ||
"get_full_text", &rosbag2_cpp::LocalMessageDefinitionSource::get_full_text); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
# Copyright 2024 Intrinsic Innovation LLC. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from rosbag2_py import LocalMessageDefinitionSource | ||
|
||
|
||
def test_local_message_definition_source_no_crash_on_bad_name(): | ||
source = LocalMessageDefinitionSource() | ||
result = source.get_full_text('some_pkg') | ||
assert result.encoding == 'unknown' | ||
assert result.encoded_message_definition == '' | ||
assert result.topic_type == 'some_pkg' | ||
|
||
|
||
def test_local_message_definition_source_can_find_msg_deps(): | ||
source = LocalMessageDefinitionSource() | ||
result = source.get_full_text('rosbag2_test_msgdefs/ComplexMsg') | ||
assert result.encoding == 'ros2msg' | ||
assert result.encoded_message_definition == ( | ||
'rosbag2_test_msgdefs/BasicMsg b\n' | ||
'\n' | ||
'================================================================================\n' | ||
'MSG: rosbag2_test_msgdefs/BasicMsg\n' | ||
'float32 c\n' | ||
) | ||
|
||
|
||
def test_local_message_definition_source_can_find_srv_deps_in_msg(): | ||
source = LocalMessageDefinitionSource() | ||
result = source.get_full_text('rosbag2_test_msgdefs/srv/ComplexSrvMsg') | ||
assert result.encoding == 'ros2msg' | ||
assert result.topic_type == 'rosbag2_test_msgdefs/srv/ComplexSrvMsg' | ||
assert result.encoded_message_definition == ( | ||
'================================================================================\n' | ||
'SRV: rosbag2_test_msgdefs/srv/ComplexSrvMsg\n' | ||
'rosbag2_test_msgdefs/BasicMsg req\n' | ||
'---\n' | ||
'rosbag2_test_msgdefs/BasicMsg resp\n' | ||
'\n' | ||
'================================================================================\n' | ||
'MSG: rosbag2_test_msgdefs/BasicMsg\n' | ||
'float32 c\n' | ||
) | ||
|
||
|
||
def test_local_message_definition_source_can_find_srv_deps_in_idl(): | ||
source = LocalMessageDefinitionSource() | ||
result = source.get_full_text('rosbag2_test_msgdefs/srv/ComplexSrvIdl') | ||
assert result.encoding == 'ros2idl' | ||
assert result.topic_type == 'rosbag2_test_msgdefs/srv/ComplexSrvIdl' | ||
assert result.encoded_message_definition == ( | ||
'================================================================================\n' | ||
'SRV: rosbag2_test_msgdefs/srv/ComplexSrvIdl\n' | ||
'rosbag2_test_msgdefs/BasicIdl req\n' | ||
'---\n' | ||
'rosbag2_test_msgdefs/BasicIdl resp\n' | ||
'\n' | ||
'================================================================================\n' | ||
'MSG: rosbag2_test_msgdefs/BasicIdl\n' | ||
'\n' | ||
'================================================================================\n' | ||
'IDL: rosbag2_test_msgdefs/BasicIdl\n' | ||
'module rosbag2_test_msgdefs {\n' | ||
' module msg {\n' | ||
' struct BasicIdl {\n' | ||
' float x;\n' | ||
' };\n' | ||
' };\n' | ||
'};\n' | ||
) | ||
|
||
|
||
def test_local_message_definition_source_can_find_idl_deps(): | ||
source = LocalMessageDefinitionSource() | ||
result = source.get_full_text('rosbag2_test_msgdefs/msg/ComplexIdl') | ||
assert result.encoding == 'ros2idl' | ||
assert result.topic_type == 'rosbag2_test_msgdefs/msg/ComplexIdl' | ||
assert result.encoded_message_definition == ( | ||
'================================================================================\n' | ||
'IDL: rosbag2_test_msgdefs/msg/ComplexIdl\n' | ||
'#include "rosbag2_test_msgdefs/msg/BasicIdl.idl"\n' | ||
'\n' | ||
'module rosbag2_test_msgdefs {\n' | ||
' module msg {\n' | ||
' struct ComplexIdl {\n' | ||
' rosbag2_test_msgdefs::msg::BasicIdl a;\n' | ||
' };\n' | ||
' };\n' | ||
'};\n' | ||
'\n' | ||
'================================================================================\n' | ||
'IDL: rosbag2_test_msgdefs/msg/BasicIdl\n' | ||
'module rosbag2_test_msgdefs {\n' | ||
' module msg {\n' | ||
' struct BasicIdl {\n' | ||
' float x;\n' | ||
' };\n' | ||
' };\n' | ||
'};\n' | ||
) | ||
|
||
|
||
def test_local_message_definition_source_can_resolve_msg_with_idl_deps(): | ||
source = LocalMessageDefinitionSource() | ||
result = source.get_full_text( | ||
'rosbag2_test_msgdefs/msg/ComplexMsgDependsOnIdl') | ||
assert result.encoding == 'ros2idl' | ||
assert result.topic_type == 'rosbag2_test_msgdefs/msg/ComplexMsgDependsOnIdl' | ||
assert result.encoded_message_definition == ( | ||
'================================================================================\n' | ||
'IDL: rosbag2_test_msgdefs/msg/ComplexMsgDependsOnIdl\n' | ||
'// generated from rosidl_adapter/resource/msg.idl.em\n' | ||
'// with input from rosbag2_test_msgdefs/msg/ComplexMsgDependsOnIdl.msg\n' | ||
'// generated code does not contain a copyright notice\n' | ||
'\n' | ||
'#include "rosbag2_test_msgdefs/msg/BasicIdl.idl"\n' | ||
'\n' | ||
'module rosbag2_test_msgdefs {\n' | ||
' module msg {\n' | ||
' struct ComplexMsgDependsOnIdl {\n' | ||
' rosbag2_test_msgdefs::msg::BasicIdl a;\n' | ||
' };\n' | ||
' };\n' | ||
'};\n' | ||
'\n' | ||
'================================================================================\n' | ||
'IDL: rosbag2_test_msgdefs/msg/BasicIdl\n' | ||
'module rosbag2_test_msgdefs {\n' | ||
' module msg {\n' | ||
' struct BasicIdl {\n' | ||
' float x;\n' | ||
' };\n' | ||
' };\n' | ||
'};\n' | ||
) |