Skip to content
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

ROS2-like CLI for iceoryx2 #98

Open
5 tasks
orecham opened this issue Jan 21, 2024 · 3 comments
Open
5 tasks

ROS2-like CLI for iceoryx2 #98

orecham opened this issue Jan 21, 2024 · 3 comments
Assignees

Comments

@orecham
Copy link
Contributor

orecham commented Jan 21, 2024

Brief feature description

A ROS2-like CLI enabling users to interact with iceoryx2 from the terminal would be a useful addition for users to aid development of applications.

Detailed information

An summary of the capabilities of the ROS 2 CLI can be found here. NOTE: The iceoryx2 does not need to necessarily provide all of the same functionality, this should just be taken as inspiration for what could be useful.

Proposal for initial for CLI functionality:

  1. introspect - introspect the internals of the iceoryx2 system (e.g. things stored in shared memory)
  2. processes - manage processes running iceoryx2
  3. pub - publish to the iceoryx2 system from the terminal
  4. rpc - execute iceoryx2 rpc operations from the terminal
  5. services - manage the services currently available in iceoryx2
  6. sub - subscribe to the iceoryx2 system from the terminal

Tasks

Follow up from #106:

  1. Address TODOs in commands.rs
  2. Ensure implementation of commands.rs follows Rust conventions
  3. Display installed commands before development commands
  4. Work out how to test command lookup in file system
  5. Add iceoryx2-cli to internal/scripts/crates_io_publish_script.sh to release it.
orecham added a commit to orecham/iceoryx2 that referenced this issue Jan 21, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jan 21, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jan 21, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jan 28, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jan 28, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jan 28, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jan 28, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jan 28, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jan 28, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 22, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 24, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 24, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 24, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 24, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue May 24, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 23, 2024
@orecham
Copy link
Contributor Author

orecham commented Jun 24, 2024

Next PR:

  1. Address TODOs in commands.rs
  2. Ensure implementation of commands.rs follows Rust conventions
  3. Display installed commands before development commands
  4. Work out how to test command lookup in file system

orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 24, 2024
@elBoberido
Copy link
Member

@orecham can you add those items directly as tasks to the issue description?

orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 24, 2024
orecham added a commit to orecham/iceoryx2 that referenced this issue Jun 24, 2024
@orecham
Copy link
Contributor Author

orecham commented Jun 24, 2024

@orecham can you add those items directly as tasks to the issue description?

@elBoberido Done

elfenpiff added a commit that referenced this issue Jun 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants