-
Notifications
You must be signed in to change notification settings - Fork 47
Adds support for plotjuggler & improves parsing logic. #336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
adityapande-1995
wants to merge
18
commits into
main
Choose a base branch
from
aditya/plotjuggler
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 17 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
184ee02
Added plotjuggler fix
adityapande-1995 2ba50d9
Minor cleanup
adityapande-1995 87110bd
Fixed elemet deletion issues
adityapande-1995 ad0bc25
Fix rosdeps
adityapande-1995 d23da80
Exception to plotjuggler
adityapande-1995 a780f93
Fixed empty using target
adityapande-1995 d2b3ed9
CI fix
adityapande-1995 54577a5
Merge branch 'main' into aditya/plotjuggler
adityapande-1995 2628448
CI error
adityapande-1995 9c26b9b
CI fix
adityapande-1995 71dc450
WIP plotjuggler rollup target
adityapande-1995 9d0b1b3
Corrected error msg
adityapande-1995 f30945c
Fix for libraries
adityapande-1995 e226b71
Added a comment
adityapande-1995 33ef4c7
Lint
adityapande-1995 996985f
Update ros2_example_bazel_installed/ros2_example_apps/plotjuggler.py
adityapande-1995 35fc47b
Review comments
adityapande-1995 df48157
Use glob
adityapande-1995 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
bazel_ros2_rules/ros2/resources/ros2bzl/scraping/metadata.py
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
21 changes: 21 additions & 0 deletions
21
ros2_example_bazel_installed/ros2_example_apps/plotjuggler.py
This file contains hidden or 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,21 @@ | ||
""" | ||
Roll up script for plotjuggler with ROS. | ||
""" | ||
|
||
|
||
import os | ||
import subprocess | ||
from bazel_tools.tools.python.runfiles import runfiles | ||
|
||
def main(): | ||
r = runfiles.Create() | ||
binary_path = r.Rlocation("ros2/plotjuggler_plotjuggler") | ||
|
||
if not binary_path: | ||
raise FileNotFoundError("Could not find plotjuggler binary") | ||
|
||
# Run the binary | ||
subprocess.run(binary_path, check=True) | ||
|
||
if __name__ == "__main__": | ||
main() |
This file contains hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.