1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
|
////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 1993-2021 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING. If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////
/*
The functions listed below were adapted from similar functions from
GNU Bash, the Bourne Again SHell, copyright (C) 1987, 1989, 1991 Free
Software Foundation, Inc.
do_history edit_history_readline
do_edit_history edit_history_add_hist
*/
#if defined (HAVE_CONFIG_H)
# include "config.h"
#endif
#include <cstdlib>
#include <cstring>
#include <fstream>
#include <string>
#include "cmd-hist.h"
#include "file-ops.h"
#include "lo-mappers.h"
#include "lo-sysdep.h"
#include "oct-env.h"
#include "oct-time.h"
#include "str-vec.h"
#include "unistd-wrappers.h"
#include "defun.h"
#include "error.h"
#include "errwarn.h"
#include "event-manager.h"
#include "input.h"
#include "oct-hist.h"
#include "ovl.h"
#include "pager.h"
#include "parse.h"
#include "sighandlers.h"
#include "sysdep.h"
#include "interpreter.h"
#include "interpreter-private.h"
#include "unwind-prot.h"
#include "utils.h"
#include "variables.h"
namespace octave
{
// Read the edited history lines from STREAM and return them
// one at a time. This can read unlimited length lines. The
// caller should free the storage.
static char *
edit_history_readline (std::fstream& stream)
{
char c;
int line_len = 128;
int lindex = 0;
char *line = new char [line_len];
line[0] = '\0';
while (stream.get (c))
{
if (lindex + 2 >= line_len)
{
char *tmp_line = new char [line_len += 128];
strcpy (tmp_line, line);
delete [] line;
line = tmp_line;
}
if (c == '\n')
{
line[lindex++] = '\n';
line[lindex++] = '\0';
return line;
}
else
line[lindex++] = c;
}
if (! lindex)
{
delete [] line;
return nullptr;
}
if (lindex + 2 >= line_len)
{
char *tmp_line = new char [lindex+3];
strcpy (tmp_line, line);
delete [] line;
line = tmp_line;
}
// Finish with newline if none in file.
line[lindex++] = '\n';
line[lindex++] = '\0';
return line;
}
static void
edit_history_add_hist (const std::string& line)
{
if (! line.empty ())
{
std::string tmp = line;
int len = tmp.length ();
if (len > 0 && tmp[len-1] == '\n')
tmp.resize (len - 1);
if (! tmp.empty ())
{
if (command_history::add (tmp))
{
event_manager& evmgr
= __get_event_manager__ ("edit_history_add_hist");
evmgr.append_history (tmp);
}
}
}
}
static bool
get_int_arg (const octave_value& arg, int& val)
{
bool ok = true;
if (arg.is_string ())
{
std::string tmp = arg.string_value ();
ok = sscanf (tmp.c_str (), "%d", &val) == 1;
}
else if (arg.isnumeric ())
val = arg.int_value ();
else
ok = false;
return ok;
}
static std::string
mk_tmp_hist_file (const octave_value_list& args,
bool insert_curr, const char *warn_for)
{
string_vector hlist = command_history::list ();
int hist_count = hlist.numel () - 1; // switch to zero-based indexing
// The current command line is already part of the history list by
// the time we get to this point. Delete the cmd from the list when
// executing 'edit_history' so that it doesn't show up in the history
// but the actual commands performed will.
if (! insert_curr)
command_history::remove (hist_count);
hist_count--; // skip last entry in history list
// If no numbers have been specified, the default is to edit the
// last command in the history list.
int hist_beg = hist_count;
int hist_end = hist_count;
bool reverse = false;
// Process options.
int nargin = args.length ();
if (nargin == 2)
{
if (! get_int_arg (args(0), hist_beg)
|| ! get_int_arg (args(1), hist_end))
error ("%s: arguments must be integers", warn_for);
if (hist_beg < 0)
hist_beg += (hist_count + 1);
else
hist_beg--;
if (hist_end < 0)
hist_end += (hist_count + 1);
else
hist_end--;
}
else if (nargin == 1)
{
if (! get_int_arg (args(0), hist_beg))
error ("%s: argument must be an integer", warn_for);
if (hist_beg < 0)
hist_beg += (hist_count + 1);
else
hist_beg--;
hist_end = hist_beg;
}
if (hist_beg > hist_count || hist_end > hist_count)
error ("%s: history specification out of range", warn_for);
if (hist_end < hist_beg)
{
std::swap (hist_end, hist_beg);
reverse = true;
}
std::string name = sys::tempnam ("", "oct-");
std::ofstream file = sys::ofstream (name.c_str (), std::ios::out);
if (! file)
error ("%s: couldn't open temporary file '%s'", warn_for,
name.c_str ());
if (reverse)
{
for (int i = hist_end; i >= hist_beg; i--)
file << hlist[i] << "\n";
}
else
{
for (int i = hist_beg; i <= hist_end; i++)
file << hlist[i] << "\n";
}
file.close ();
return name;
}
static void
unlink_cleanup (const char *file)
{
octave_unlink_wrapper (file);
}
history_system::history_system (interpreter& interp)
: m_interpreter (interp), m_input_from_tmp_file (false),
m_timestamp_format_string (default_timestamp_format ())
{ }
void history_system::initialize (bool read_history_file)
{
command_history::initialize (read_history_file, default_file (),
default_size (),
sys::env::getenv ("OCTAVE_HISTCONTROL"));
event_manager& evmgr = m_interpreter.get_event_manager ();
evmgr.set_history (command_history::list ());
}
void history_system::write_timestamp (void)
{
sys::localtime now;
std::string timestamp = now.strftime (m_timestamp_format_string);
if (! timestamp.empty ())
{
if (command_history::add (timestamp))
{
event_manager& evmgr = m_interpreter.get_event_manager ();
evmgr.append_history (timestamp);
}
}
}
octave_value
history_system::input_from_tmp_file (const octave_value_list& args,
int nargout)
{
return set_internal_variable (m_input_from_tmp_file, args, nargout,
"input_from_tmp_file");
}
octave_value
history_system::timestamp_format_string (const octave_value_list& args,
int nargout)
{
return set_internal_variable (m_timestamp_format_string, args, nargout,
"timestamp_format_string");
}
// Display, save, or load history. Stolen and modified from bash.
//
// Arg of -w FILENAME means write file, arg of -r FILENAME
// means read file, arg of -q means don't number lines. Arg of N
// means only display that many items.
string_vector history_system::do_history (const octave_value_list& args,
int nargout)
{
bool numbered_output = nargout == 0;
unwind_protect frame;
string_vector hlist;
frame.add_fcn (command_history::set_file, command_history::file ());
int nargin = args.length ();
// Number of history lines to show (-1 = all)
int limit = -1;
for (octave_idx_type i = 0; i < nargin; i++)
{
octave_value arg = args(i);
std::string option;
if (arg.is_string ())
option = arg.string_value ();
else if (arg.isnumeric ())
{
limit = arg.int_value ();
if (limit < 0)
limit = -limit;
continue;
}
else
err_wrong_type_arg ("history", arg);
event_manager& evmgr = m_interpreter.get_event_manager ();
if (option == "-r" || option == "-w" || option == "-a"
|| option == "-n")
{
if (i < nargin - 1)
{
std::string fname
= args(++i).xstring_value ("history: filename must be a string for %s option",
option.c_str ());
command_history::set_file (fname);
}
else
command_history::set_file (default_file ());
if (option == "-a")
// Append 'new' lines to file.
command_history::append ();
else if (option == "-w")
// Write entire history.
command_history::write ();
else if (option == "-r")
{
// Read entire file.
command_history::read ();
evmgr.set_history (command_history::list ());
}
else if (option == "-n")
{
// Read 'new' history from file.
command_history::read_range ();
evmgr.set_history (command_history::list ());
}
else
panic_impossible ();
return hlist;
}
else if (option == "-c")
{
command_history::clear ();
evmgr.clear_history ();
}
else if (option == "-q")
numbered_output = false;
else if (option == "--")
{
i++;
break;
}
else
{
// The last argument found in the command list that looks like
// an integer will be used
int tmp;
if (sscanf (option.c_str (), "%d", &tmp) == 1)
{
if (tmp > 0)
limit = tmp;
else
limit = -tmp;
}
else
{
if (option.length () > 0 && option[0] == '-')
error ("history: unrecognized option '%s'", option.c_str ());
else
error ("history: bad non-numeric arg '%s'", option.c_str ());
}
}
}
hlist = command_history::list (limit, numbered_output);
int len = hlist.numel ();
if (nargout == 0)
{
for (octave_idx_type i = 0; i < len; i++)
octave_stdout << hlist[i] << "\n";
}
return hlist;
}
void history_system::do_edit_history (const octave_value_list& args)
{
std::string name = mk_tmp_hist_file (args, false, "edit_history");
if (name.empty ())
return;
// Call up our favorite editor on the file of commands.
environment& env = m_interpreter.get_environment ();
std::string cmd = env.editor ();
cmd.append (R"( ")" + name + '"');
// Ignore interrupts while we are off editing commands. Should we
// maybe avoid using system()?
volatile interrupt_handler old_interrupt_handler
= ignore_interrupts ();
int status = system (cmd.c_str ());
set_interrupt_handler (old_interrupt_handler);
// Check if text edition was successful. Abort the operation
// in case of failure.
if (status != EXIT_SUCCESS)
error ("edit_history: text editor command failed");
// Write the commands to the history file since source_file
// disables command line history while it executes.
std::fstream file = sys::fstream (name.c_str (), std::ios::in);
char *line;
//int first = 1;
while ((line = edit_history_readline (file)) != nullptr)
{
// Skip blank lines.
if (line[0] == '\n')
{
delete [] line;
continue;
}
edit_history_add_hist (line);
delete [] line;
}
file.close ();
unwind_protect frame;
frame.add_fcn (unlink_cleanup, name.c_str ());
frame.protect_var (m_input_from_tmp_file);
m_input_from_tmp_file = true;
// FIXME: instead of sourcing a file, we should just iterate through
// the list of commands, parsing and executing them one at a time as
// if they were entered interactively.
source_file (name);
}
void history_system::do_run_history (const octave_value_list& args)
{
std::string name = mk_tmp_hist_file (args, false, "run_history");
if (name.empty ())
return;
unwind_protect frame;
frame.add_fcn (unlink_cleanup, name.c_str ());
frame.protect_var (m_input_from_tmp_file);
m_input_from_tmp_file = true;
// FIXME: instead of sourcing a file, we should just iterate through
// the list of commands, parsing and executing them one at a time as
// if they were entered interactively.
source_file (name);
}
std::string history_system::default_file (void)
{
std::string file;
std::string env_file = sys::env::getenv ("OCTAVE_HISTFILE");
if (! env_file.empty ())
file = env_file;
if (file.empty ())
file = sys::file_ops::concat (sys::env::get_home_directory (),
".octave_hist");
return file;
}
int history_system::default_size (void)
{
int size = 1000;
std::string env_size = sys::env::getenv ("OCTAVE_HISTSIZE");
if (! env_size.empty ())
{
int val;
if (sscanf (env_size.c_str (), "%d", &val) == 1)
size = (val > 0 ? val : 0);
}
return size;
}
std::string history_system::default_timestamp_format (void)
{
return
"# Octave " OCTAVE_VERSION ", %a %b %d %H:%M:%S %Y %Z <"
+ sys::env::get_user_name ()
+ '@'
+ sys::env::get_host_name ()
+ '>';
}
}
DEFMETHOD (edit_history, interp, args, ,
doc: /* -*- texinfo -*-
@deftypefn {} {} edit_history
@deftypefnx {} {} edit_history @var{cmd_number}
@deftypefnx {} {} edit_history @var{first} @var{last}
Edit the history list using the editor named by the variable @env{EDITOR}.
The commands to be edited are first copied to a temporary file. When you
exit the editor, Octave executes the commands that remain in the file. It
is often more convenient to use @code{edit_history} to define functions
rather than attempting to enter them directly on the command line.
The block of commands is executed as soon as you exit the editor.
To avoid executing any commands, simply delete all the lines from the buffer
before leaving the editor.
When invoked with no arguments, edit the previously executed command;
With one argument, edit the specified command @var{cmd_number};
With two arguments, edit the list of commands between @var{first} and
@var{last}. Command number specifiers may also be negative where -1
refers to the most recently executed command.
The following are equivalent and edit the most recently executed command.
@example
@group
edit_history
edit_history -1
@end group
@end example
When using ranges, specifying a larger number for the first command than the
last command reverses the list of commands before they are placed in the
buffer to be edited.
@seealso{run_history, history}
@end deftypefn */)
{
// FIXME: should this be limited to the top-level context?
if (args.length () > 2)
print_usage ();
octave::history_system& history_sys = interp.get_history_system ();
history_sys.do_edit_history (args);
return ovl ();
}
DEFMETHOD (history, interp, args, nargout,
doc: /* -*- texinfo -*-
@deftypefn {} {} history
@deftypefnx {} {} history @var{opt1} @dots{}
@deftypefnx {} {@var{h} =} history ()
@deftypefnx {} {@var{h} =} history (@var{opt1}, @dots{})
If invoked with no arguments, @code{history} displays a list of commands
that you have executed.
Valid options are:
@table @code
@item @var{n}
@itemx -@var{n}
Display only the most recent @var{n} lines of history.
@item -c
Clear the history list.
@item -q
Don't number the displayed lines of history. This is useful for cutting
and pasting commands using the X Window System.
@item -r @var{file}
Read the file @var{file}, appending its contents to the current
history list. If the name is omitted, use the default history file
(normally @file{~/.octave_hist}).
@item -w @var{file}
Write the current history to the file @var{file}. If the name is
omitted, use the default history file (normally @file{~/.octave_hist}).
@end table
For example, to display the five most recent commands that you have
typed without displaying line numbers, use the command
@kbd{history -q 5}.
If invoked with a single output argument, the history will be saved to that
argument as a cell string and will not be output to screen.
@seealso{edit_history, run_history}
@end deftypefn */)
{
// FIXME: should this be limited to the top-level context?
octave::history_system& history_sys = interp.get_history_system ();
// Call do_history even if nargout is zero to display history list.
string_vector hlist = history_sys.do_history (args, nargout);
return nargout > 0 ? ovl (Cell (hlist)) : ovl ();
}
DEFMETHOD (run_history, interp, args, ,
doc: /* -*- texinfo -*-
@deftypefn {} {} run_history
@deftypefnx {} {} run_history @var{cmd_number}
@deftypefnx {} {} run_history @var{first} @var{last}
Run commands from the history list.
When invoked with no arguments, run the previously executed command;
With one argument, run the specified command @var{cmd_number};
With two arguments, run the list of commands between @var{first} and
@var{last}. Command number specifiers may also be negative where -1
refers to the most recently executed command. For example, the command
@example
@group
run_history
OR
run_history -1
@end group
@end example
@noindent
executes the most recent command again.
The command
@example
run_history 13 169
@end example
@noindent
executes commands 13 through 169.
Specifying a larger number for the first command than the last command
reverses the list of commands before executing them.
For example:
@example
@group
disp (1)
disp (2)
run_history -1 -2
@result{}
2
1
@end group
@end example
@seealso{edit_history, history}
@end deftypefn */)
{
// FIXME: should this be limited to the top-level context?
octave::history_system& history_sys = interp.get_history_system ();
if (args.length () > 2)
print_usage ();
history_sys.do_run_history (args);
return ovl ();
}
DEFUN (history_control, args, nargout,
doc: /* -*- texinfo -*-
@deftypefn {} {@var{val} =} history_control ()
@deftypefnx {} {@var{old_val} =} history_control (@var{new_val})
Query or set the internal variable that specifies how commands are saved
to the history list.
The default value is an empty character string, but may be overridden by the
environment variable @w{@env{OCTAVE_HISTCONTROL}}.
The value of @code{history_control} is a colon-separated list of values
controlling how commands are saved on the history list. If the list
of values includes @code{ignorespace}, lines which begin with a space
character are not saved in the history list. A value of @code{ignoredups}
causes lines matching the previous history entry to not be saved.
A value of @code{ignoreboth} is shorthand for @code{ignorespace} and
@code{ignoredups}. A value of @code{erasedups} causes all previous lines
matching the current line to be removed from the history list before that
line is saved. Any value not in the above list is ignored. If
@code{history_control} is the empty string, all commands are saved on
the history list, subject to the value of @code{history_save}.
@seealso{history_file, history_size, history_timestamp_format_string, history_save}
@end deftypefn */)
{
octave_value retval;
std::string old_history_control = octave::command_history::histcontrol ();
std::string tmp = old_history_control;
retval = set_internal_variable (tmp, args, nargout, "history_control");
if (tmp != old_history_control)
octave::command_history::process_histcontrol (tmp);
return retval;
}
DEFUN (history_size, args, nargout,
doc: /* -*- texinfo -*-
@deftypefn {} {@var{val} =} history_size ()
@deftypefnx {} {@var{old_val} =} history_size (@var{new_val})
Query or set the internal variable that specifies how many entries
to store in the history file.
The default value is @code{1000}, but may be overridden by the environment
variable @w{@env{OCTAVE_HISTSIZE}}.
@seealso{history_file, history_timestamp_format_string, history_save}
@end deftypefn */)
{
octave_value retval;
int old_history_size = octave::command_history::size ();
int tmp = old_history_size;
retval = set_internal_variable (tmp, args, nargout,
"history_size", -1,
std::numeric_limits<int>::max ());
if (tmp != old_history_size)
octave::command_history::set_size (tmp);
return retval;
}
DEFUN (history_file, args, nargout,
doc: /* -*- texinfo -*-
@deftypefn {} {@var{val} =} history_file ()
@deftypefnx {} {@var{old_val} =} history_file (@var{new_val})
Query or set the internal variable that specifies the name of the file used to
store command history.
All future commands issued during the current Octave session will be written to
this new file (if the current setting of @code{history_save} allows for this).
The default value is @file{~/.octave_hist}, but may be overridden by the
environment variable @w{@env{OCTAVE_HISTFILE}}.
Programming Notes:
If you want to permanently change the location of Octave's history file you
need to issue the @code{history_file} command in every new Octave session.
This can be achieved by using Octave's @file{.octaverc} startup file.
If you also want to read the saved history commands of past Octave sessions
from this different history file, then you need to use the additional command
@code{history -r} after setting the new value of the history file. Example
code in Octave's startup file to do this might look like this:
@example
@group
history_file ("~/new/.octave_hist");
if (exist (history_file ()))
history ("-r", history_file());
endif
@end group
@end example
@seealso{history, history_control, history_save, history_size, history_timestamp_format_string}
@end deftypefn */)
{
octave_value retval;
std::string old_history_file = octave::command_history::file ();
std::string tmp = old_history_file;
retval = set_internal_variable (tmp, args, nargout, "history_file");
if (tmp != old_history_file)
octave::command_history::set_file (tmp);
return retval;
}
DEFMETHOD (history_timestamp_format_string, interp, args, nargout,
doc: /* -*- texinfo -*-
@deftypefn {} {@var{val} =} history_timestamp_format_string ()
@deftypefnx {} {@var{old_val} =} history_timestamp_format_string (@var{new_val})
@deftypefnx {} {} history_timestamp_format_string (@var{new_val}, "local")
Query or set the internal variable that specifies the format string
for the comment line that is written to the history file when Octave
exits.
The format string is passed to @code{strftime}. The default value is
@example
"# Octave VERSION, %a %b %d %H:%M:%S %Y %Z <USER@@HOST>"
@end example
When called from inside a function with the @qcode{"local"} option, the
variable is changed locally for the function and any subroutines it calls.
The original variable value is restored when exiting the function.
@seealso{strftime, history_file, history_size, history_save}
@end deftypefn */)
{
octave::history_system& history_sys = interp.get_history_system ();
return history_sys.timestamp_format_string (args, nargout);
}
/*
%!test
%! history_timestamp_format_string ("# Example history marker", "local");
%! assert (history_timestamp_format_string (), "# Example history marker")
%!test <*57843>
%! history_timestamp_format_string ("", "local");
%! assert (history_timestamp_format_string (), "")
*/
DEFUN (history_save, args, nargout,
doc: /* -*- texinfo -*-
@deftypefn {} {@var{val} =} history_save ()
@deftypefnx {} {@var{old_val} =} history_save (@var{new_val})
@deftypefnx {} {} history_save (@var{new_val}, "local")
Query or set the internal variable that controls whether commands entered
on the command line are saved in the history file.
When called from inside a function with the @qcode{"local"} option, the
variable is changed locally for the function and any subroutines it calls.
The original variable value is restored when exiting the function.
@seealso{history_control, history_file, history_size, history_timestamp_format_string}
@end deftypefn */)
{
octave_value retval;
bool old_history_save = ! octave::command_history::ignoring_entries ();
bool tmp = old_history_save;
retval = set_internal_variable (tmp, args, nargout, "history_save");
if (tmp != old_history_save)
octave::command_history::ignore_entries (! tmp);
return retval;
}
|