-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor
launch.frontend
file loading (#271)
Signed-off-by: ivanpauno <[email protected]>
- Loading branch information
Showing
10 changed files
with
224 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Copyright 2019 Open Source Robotics Foundation, Inc. | ||
# | ||
# 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. | ||
|
||
"""Implementation of `InvalidLaunchFileError` class.""" | ||
|
||
|
||
class InvalidLaunchFileError(Exception): | ||
"""Exception raised when the given launch file is not valid.""" | ||
|
||
def __init__(self, extension='', *, likely_errors=None): | ||
"""Constructor.""" | ||
self._extension = extension | ||
self._likely_errors = likely_errors | ||
|
||
def __str__(self): | ||
"""Pretty print.""" | ||
if self._extension == '' or not self._likely_errors: | ||
return 'The launch file may have a syntax error, or its format is unknown' | ||
else: | ||
# If `self.likely_errors[0]` is `RuntimeError('asd')`, the following will be printed: | ||
# ``` | ||
# InvalidLaunchFileError: Failed to load file of format [<extension>]: | ||
# RuntimeError: asd | ||
# ``` | ||
return 'Failed to load file of format [{}]:\n\t{}: {}'.format( | ||
self._extension, | ||
# Convert `<class 'ERROR_NAME'>` to `ERROR_NAME` | ||
str(self._likely_errors[0].__class__)[8:-2], | ||
str(self._likely_errors[0]) | ||
) |
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
56 changes: 56 additions & 0 deletions
56
launch/launch/launch_description_sources/any_launch_file_utilities.py
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,56 @@ | ||
# Copyright 2019 Open Source Robotics Foundation, Inc. | ||
# | ||
# 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. | ||
|
||
"""Python package utility functions related to loading Frontend Launch Files.""" | ||
|
||
import os | ||
from typing import Text | ||
from typing import Type | ||
|
||
from .frontend_launch_file_utilities import get_launch_description_from_frontend_launch_file | ||
from .python_launch_file_utilities import get_launch_description_from_python_launch_file | ||
from ..frontend import Parser | ||
from ..invalid_launch_file_error import InvalidLaunchFileError | ||
from ..launch_description import LaunchDescription | ||
|
||
|
||
def get_launch_description_from_any_launch_file( | ||
launch_file_path: Text, | ||
*, | ||
parser: Type[Parser] = Parser | ||
) -> LaunchDescription: | ||
""" | ||
Load a given launch file (by path), and return the launch description from it. | ||
:raise `InvalidLaunchFileError`: Failed to load launch file. | ||
It's only showed with launch files without extension (or not recognized extensions). | ||
:raise `SyntaxError`: Invalid file. The file may have a syntax error in it. | ||
:raise `ValueError`: Invalid file. The file may not be a text file. | ||
""" | ||
loaders = [get_launch_description_from_frontend_launch_file] | ||
extension = os.path.splitext(launch_file_path)[1] | ||
if extension: | ||
extension = extension[1:] | ||
if extension == 'py': | ||
loaders.insert(0, get_launch_description_from_python_launch_file) | ||
else: | ||
loaders.append(get_launch_description_from_python_launch_file) | ||
extension = '' if not Parser.is_extension_valid(extension) else extension | ||
exceptions = [] | ||
for loader in loaders: | ||
try: | ||
return loader(launch_file_path) | ||
except Exception as ex: | ||
exceptions.append(ex) | ||
raise InvalidLaunchFileError(extension, likely_errors=exceptions) |
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
35 changes: 35 additions & 0 deletions
35
launch/launch/launch_description_sources/frontend_launch_file_utilities.py
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,35 @@ | ||
# Copyright 2019 Open Source Robotics Foundation, Inc. | ||
# | ||
# 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. | ||
|
||
"""Python package utility functions related to loading Frontend Launch Files.""" | ||
|
||
from typing import Text | ||
from typing import Type | ||
|
||
from ..frontend import InvalidFrontendLaunchFileError | ||
from ..frontend import Parser | ||
from ..launch_description import LaunchDescription | ||
|
||
# Re-export name | ||
InvalidFrontendLaunchFileError = InvalidFrontendLaunchFileError | ||
|
||
|
||
def get_launch_description_from_frontend_launch_file( | ||
frontend_launch_file_path: Text, | ||
*, | ||
parser: Type[Parser] = Parser | ||
) -> LaunchDescription: | ||
"""Load a `LaunchDescription` from a declarative (markup based) launch file.""" | ||
root_entity, parser = parser.load(frontend_launch_file_path) | ||
return parser.parse_description(root_entity) |
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