Skip to content

Commit

Permalink
Added settable called save_scripted_commands which determines whether…
Browse files Browse the repository at this point in the history
… to save commands

run in scripts and pyscripts to history.
  • Loading branch information
kmvanbrunt committed Sep 19, 2024
1 parent 88b1657 commit 51ee8e5
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 40 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
add output to the operating system clipboard
* Updated unit tests to be Python 3.12 compliant.
* Fall back to bz2 compression of history file when lzma is not installed.
* Added settable called `save_scripted_commands` which determines whether to save commands
run in scripts and pyscripts to history.
* Deletions (potentially breaking changes)
* Removed `apply_style` from `Cmd.pwarning()`.

Expand Down
37 changes: 27 additions & 10 deletions cmd2/cmd2.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ def __init__(
self.editor = Cmd.DEFAULT_EDITOR
self.feedback_to_output = False # Do not include nonessentials in >, | output by default (things like timing)
self.quiet = False # Do not suppress nonessential output
self.save_scripted_commands = True # Save commands run in scripts and pyscripts to history
self.timing = False # Prints elapsed time for each command

# The maximum number of CompletionItems to display during tab completion. If the number of completion
Expand Down Expand Up @@ -1084,12 +1085,7 @@ def allow_style_type(value: str) -> ansi.AllowStyle:
)

self.add_settable(
Settable(
'always_show_hint',
bool,
'Display tab completion hint even when completion suggestions print',
self,
)
Settable('always_show_hint', bool, 'Display tab completion hint even when completion suggestions print', self)
)
self.add_settable(Settable('debug', bool, "Show full traceback on exception", self))
self.add_settable(Settable('echo', bool, "Echo command issued into output", self))
Expand All @@ -1099,6 +1095,9 @@ def allow_style_type(value: str) -> ansi.AllowStyle:
Settable('max_completion_items', int, "Maximum number of CompletionItems to display during tab completion", self)
)
self.add_settable(Settable('quiet', bool, "Don't print nonessential feedback", self))
self.add_settable(
Settable('save_scripted_commands', bool, 'Save commands run in scripts and pyscripts to history', self)
)
self.add_settable(Settable('timing', bool, "Report execution times", self))

# ----- Methods related to presenting output to the user -----
Expand Down Expand Up @@ -4955,7 +4954,13 @@ def _persist_history(self) -> None:
except OSError as ex:
self.perror(f"Cannot write persistent history file '{self.persistent_history_file}': {ex}")

def _generate_transcript(self, history: Union[List[HistoryItem], List[str]], transcript_file: str) -> None:
def _generate_transcript(
self,
history: Union[List[HistoryItem], List[str]],
transcript_file: str,
*,
add_to_history: bool = True,
) -> None:
"""Generate a transcript file from a given history of commands"""
self.last_result = False

Expand Down Expand Up @@ -5005,7 +5010,11 @@ def _generate_transcript(self, history: Union[List[HistoryItem], List[str]], tra

# then run the command and let the output go into our buffer
try:
stop = self.onecmd_plus_hooks(history_item, raise_keyboard_interrupt=True)
stop = self.onecmd_plus_hooks(
history_item,
add_to_history=add_to_history,
raise_keyboard_interrupt=True,
)
except KeyboardInterrupt as ex:
self.perror(ex)
stop = True
Expand Down Expand Up @@ -5149,9 +5158,17 @@ def do_run_script(self, args: argparse.Namespace) -> Optional[bool]:

if args.transcript:
# self.last_resort will be set by _generate_transcript()
self._generate_transcript(script_commands, os.path.expanduser(args.transcript))
self._generate_transcript(
script_commands,
os.path.expanduser(args.transcript),
add_to_history=self.save_scripted_commands,
)
else:
stop = self.runcmds_plus_hooks(script_commands, stop_on_keyboard_interrupt=True)
stop = self.runcmds_plus_hooks(
script_commands,
add_to_history=self.save_scripted_commands,
stop_on_keyboard_interrupt=True,
)
self.last_result = True
return stop

Expand Down
6 changes: 5 additions & 1 deletion cmd2/py_bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,11 @@ def __call__(self, command: str, *, echo: Optional[bool] = None) -> CommandResul
self._cmd2_app.stdout = cast(TextIO, copy_cmd_stdout)
with redirect_stdout(cast(IO[str], copy_cmd_stdout)):
with redirect_stderr(cast(IO[str], copy_stderr)):
stop = self._cmd2_app.onecmd_plus_hooks(command, py_bridge_call=True)
stop = self._cmd2_app.onecmd_plus_hooks(
command,
add_to_history=self._cmd2_app.save_scripted_commands,
py_bridge_call=True,
)
finally:
with self._cmd2_app.sigint_protection:
self._cmd2_app.stdout = cast(IO[str], copy_cmd_stdout.inner_stream)
Expand Down
29 changes: 15 additions & 14 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,20 +98,21 @@ def verify_help_text(

# Output from the set command
SET_TXT = (
"Name Value Description \n"
"==================================================================================================================\n"
"allow_style Terminal Allow ANSI text style sequences in output (valid values: \n"
" Always, Never, Terminal) \n"
"always_show_hint False Display tab completion hint even when completion suggestions\n"
" print \n"
"debug False Show full traceback on exception \n"
"echo False Echo command issued into output \n"
"editor vim Program used by 'edit' \n"
"feedback_to_output False Include nonessentials in '|', '>' results \n"
"max_completion_items 50 Maximum number of CompletionItems to display during tab \n"
" completion \n"
"quiet False Don't print nonessential feedback \n"
"timing False Report execution times \n"
"Name Value Description \n"
"====================================================================================================================\n"
"allow_style Terminal Allow ANSI text style sequences in output (valid values: \n"
" Always, Never, Terminal) \n"
"always_show_hint False Display tab completion hint even when completion suggestions\n"
" print \n"
"debug False Show full traceback on exception \n"
"echo False Echo command issued into output \n"
"editor vim Program used by 'edit' \n"
"feedback_to_output False Include nonessentials in '|', '>' results \n"
"max_completion_items 50 Maximum number of CompletionItems to display during tab \n"
" completion \n"
"quiet False Don't print nonessential feedback \n"
"save_scripted_commands True Save commands run in scripts and pyscripts to history \n"
"timing False Report execution times \n"
)


Expand Down
31 changes: 16 additions & 15 deletions tests/transcripts/regex_set.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,19 @@ now: 'Terminal'
editor - was: '/.*/'
now: 'vim'
(Cmd) set
Name Value Description/ +/
==================================================================================================================
allow_style Terminal Allow ANSI text style sequences in output (valid values:/ +/
Always, Never, Terminal)/ +/
always_show_hint False Display tab completion hint even when completion suggestions
print/ +/
debug False Show full traceback on exception/ +/
echo False Echo command issued into output/ +/
editor vim Program used by 'edit'/ +/
feedback_to_output False Include nonessentials in '|', '>' results/ +/
max_completion_items 50 Maximum number of CompletionItems to display during tab/ +/
completion/ +/
maxrepeats 3 Max number of `--repeat`s allowed/ +/
quiet False Don't print nonessential feedback/ +/
timing False Report execution times/ +/
Name Value Description/ +/
====================================================================================================================
allow_style Terminal Allow ANSI text style sequences in output (valid values:/ +/
Always, Never, Terminal)/ +/
always_show_hint False Display tab completion hint even when completion suggestions
print/ +/
debug False Show full traceback on exception/ +/
echo False Echo command issued into output/ +/
editor vim Program used by 'edit'/ +/
feedback_to_output False Include nonessentials in '|', '>' results/ +/
max_completion_items 50 Maximum number of CompletionItems to display during tab/ +/
completion/ +/
maxrepeats 3 Max number of `--repeat`s allowed/ +/
quiet False Don't print nonessential feedback/ +/
save_scripted_commands True Save commands run in scripts and pyscripts to history/ +/
timing False Report execution times/ +/

0 comments on commit 51ee8e5

Please sign in to comment.