-
Notifications
You must be signed in to change notification settings - Fork 35
Feat/added option to specify custom command description as array #1982
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
Benni0
wants to merge
4
commits into
splunk:develop
Choose a base branch
from
Benni0:feat/add_cc_multiline_description
base: develop
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 all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
05e1535
feat: add support for shortdesc, tags and examples in searchbnf.conf
Benni0 1abdf45
feat: added support for the validators Set, Match, List, Map and Dura…
Benni0 b49a2c8
feat: added automatic syntax generation for custom commands
Benni0 ad5575b
feat: added custom command decription array for better readability in…
Benni0 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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -58,12 +58,16 @@ def __init__( | |
| "default": argument.get("defaultValue"), | ||
| } | ||
| self.argument_generator(argument_list, argument_dict) | ||
|
|
||
| description = command.get("description") | ||
| if description and isinstance(description, list): | ||
| description = "\n ".join(description) | ||
|
Contributor
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. The join separator |
||
| self.commands_info.append( | ||
| { | ||
| "imported_file_name": imported_file_name, | ||
| "file_name": command["commandName"], | ||
| "class_name": command["commandName"].title(), | ||
| "description": command.get("description"), | ||
| "description": description, | ||
| "syntax": command.get("syntax"), | ||
| "template": template, | ||
| "list_arg": argument_list, | ||
|
|
@@ -92,6 +96,18 @@ def argument_generator( | |
| if args | ||
| else f", validate=validators.{validate_type}()" | ||
| ) | ||
| elif validate_type == "Set": | ||
| allowed_values = validate.get("values") | ||
| validate_str = ( | ||
| f", validate=validators.Set({str(allowed_values).strip('[]')})" | ||
| ) | ||
| elif validate_type == "Map": | ||
| option_map = validate.get("map") | ||
| validate_str = f", validate=validators.Map(**{str(option_map)})" | ||
| elif validate_type == "Match": | ||
| name = validate.get("name") | ||
| pattern = validate.get("pattern") | ||
| validate_str = f", validate=validators.Match('{name}', '{pattern}')" | ||
| else: | ||
| validate_str = f", validate=validators.{validate_type}()" | ||
|
|
||
|
|
@@ -108,6 +124,7 @@ def argument_generator( | |
| f"{validate_str}, " | ||
| f"default='{arg.get('default', '')}')" | ||
| ) | ||
|
|
||
| argument_list.append(arg_str) | ||
| return argument_list | ||
|
|
||
|
|
||
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
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.
The join separator
" \\\n"produces backslash line continuations in the.conffile. Worth verifying Splunk's conf parser handles backslash continuations correctly indescriptionvalues ofsearchbnf.conf. If not, joining with a single space might be safer.