-
-
Notifications
You must be signed in to change notification settings - Fork 133
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
feat: clap_completion #1056
Closed
TwistingTwists
wants to merge
1
commit into
parseablehq:main
from
TwistingTwists:abhi_completion_cli
Closed
feat: clap_completion #1056
Changes from all commits
Commits
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
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 |
---|---|---|
|
@@ -37,14 +37,14 @@ | |
all(target_os = "linux", target_arch = "x86_64"), | ||
all(target_os = "macos", target_arch = "aarch64") | ||
)))] | ||
use std::string::String as KafkaSslProtocol; | ||
|
||
/// Default username and password for Parseable server, used by default for local mode. | ||
/// NOTE: obviously not recommended for production | ||
pub const DEFAULT_USERNAME: &str = "admin"; | ||
pub const DEFAULT_PASSWORD: &str = "admin"; | ||
|
||
#[derive(Parser)] | ||
#[derive(Parser, Debug)] | ||
#[command( | ||
name = "parseable", | ||
bin_name = "parseable", | ||
|
@@ -73,13 +73,88 @@ | |
"#, | ||
subcommand_required = true, | ||
)] | ||
pub struct Cli { | ||
pub enum Cli { | ||
#[clap(name = "storage")] | ||
/// Storage options | ||
Storage(StorageOptions), | ||
|
||
/// Generate shell completions | ||
#[clap(name = "completions")] | ||
Completion(CommandCompletionOptions), | ||
} | ||
|
||
// taken generously from https://github.com/jj-vcs/jj/blob/be32d4e3efbb9a51deadcc63635a5fb1526d0d6c/cli/src/commands/util/completion.rs#L23C1-L47C36 | ||
// Using an explicit `doc` attribute prevents rustfmt from mangling the list | ||
// formatting without disabling rustfmt for the entire struct. | ||
#[doc = r#"Print a command-line-completion script | ||
|
||
Apply it by running one of these: | ||
|
||
- Bash: `source <(pb util completion bash)` | ||
- Fish: `pb util completion fish | source` | ||
- Nushell: | ||
```nu | ||
pb util completion nushell | save "completions-pb.nu" | ||
use "completions-pb.nu" * # Or `source "completions-pb.nu"` | ||
``` | ||
- Zsh: | ||
```shell | ||
autoload -U compinit | ||
compinit | ||
source <(pb util completion zsh) | ||
``` | ||
"#] | ||
|
||
#[derive(clap::Args, Debug)] | ||
#[command(verbatim_doc_comment)] | ||
pub struct CommandCompletionOptions { | ||
pub shell: Option<ShellCompletion>, | ||
} | ||
|
||
/// Available shell completions | ||
#[derive(clap::ValueEnum, Clone, Copy, Debug, Eq, Hash, PartialEq)] | ||
pub enum ShellCompletion { | ||
Bash, | ||
Elvish, | ||
Fish, | ||
// Nushell, | ||
PowerShell, | ||
Zsh, | ||
} | ||
|
||
impl ShellCompletion { | ||
pub fn generate(&self, cmd: &mut clap::Command) -> Vec<u8> { | ||
use clap_complete::generate; | ||
Check failure on line 127 in src/cli.rs
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
use clap_complete::Shell; | ||
Check failure on line 128 in src/cli.rs
|
||
// use clap_complete_nushell::Nushell; | ||
|
||
let mut buf = Vec::new(); | ||
|
||
let bin_name = "pb"; | ||
|
||
match self { | ||
Self::Bash => generate(Shell::Bash, cmd, bin_name, &mut buf), | ||
Self::Elvish => generate(Shell::Elvish, cmd, bin_name, &mut buf), | ||
Self::Fish => generate(Shell::Fish, cmd, bin_name, &mut buf), | ||
// Self::Nushell => generate(Nushell, cmd, bin_name, &mut buf), | ||
Self::PowerShell => generate(Shell::PowerShell, cmd, bin_name, &mut buf), | ||
Self::Zsh => generate(Shell::Zsh, cmd, bin_name, &mut buf), | ||
} | ||
|
||
buf | ||
} | ||
} | ||
|
||
// todo remove caution | ||
#[derive(clap::Args, Debug)] | ||
pub struct StorageOptions { | ||
#[command(subcommand)] | ||
pub storage: StorageOptions, | ||
pub storage: StorageOptionsEnum, | ||
} | ||
|
||
#[derive(Parser)] | ||
pub enum StorageOptions { | ||
// todo remove caution | ||
#[derive(clap::Subcommand, Debug)] | ||
pub enum StorageOptionsEnum { | ||
#[command(name = "local-store")] | ||
Local(LocalStoreArgs), | ||
|
||
|
@@ -90,23 +165,23 @@ | |
Blob(BlobStoreArgs), | ||
} | ||
|
||
#[derive(Parser)] | ||
#[derive(Parser, Debug)] | ||
pub struct LocalStoreArgs { | ||
#[command(flatten)] | ||
pub options: Options, | ||
#[command(flatten)] | ||
pub storage: FSConfig, | ||
} | ||
|
||
#[derive(Parser)] | ||
#[derive(Parser, Debug)] | ||
pub struct S3StoreArgs { | ||
#[command(flatten)] | ||
pub options: Options, | ||
#[command(flatten)] | ||
pub storage: S3Config, | ||
} | ||
|
||
#[derive(Parser)] | ||
#[derive(Parser, Debug)] | ||
pub struct BlobStoreArgs { | ||
#[command(flatten)] | ||
pub options: Options, | ||
|
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pb
is a different cli tool, a client to the parseable(server) actually.Can we have a argument/flag similar to
--help
that when set will print the completions for the specific shell. i.e.this way we can continue to use the CLI as is, setting the default behavior of the CLI to be "don't output" when the flag is not set.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is also a good way to do this, rather than adding a command. I'll implement this.