Mercurial > hg > octave-nkf
annotate liboctave/util/cmd-hist.h @ 20830:b65888ec820e draft default tip gccjit
dmalcom gcc jit import
author | Stefan Mahr <dac922@gmx.de> |
---|---|
date | Fri, 27 Feb 2015 16:59:36 +0100 |
parents | 4197fc428c7d |
children |
rev | line source |
---|---|
1797 | 1 /* |
2 | |
19898
4197fc428c7d
maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents:
17996
diff
changeset
|
3 Copyright (C) 1996-2015 John W. Eaton |
1797 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
1797 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
1797 | 20 |
21 */ | |
22 | |
23 #if !defined (octave_cmd_hist_h) | |
24 #define octave_cmd_hist_h 1 | |
25 | |
26 #include <string> | |
27 | |
28 #include "str-vec.h" | |
29 | |
30 class | |
6108 | 31 OCTAVE_API |
1797 | 32 command_history |
33 { | |
2926 | 34 protected: |
35 | |
36 command_history (void) | |
11486
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
37 : initialized (false), ignoring_additions (false), history_control (0), |
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
38 lines_in_file (0), lines_this_session (0), xfile (), xsize (-1) { } |
2926 | 39 |
1797 | 40 public: |
41 | |
2926 | 42 virtual ~command_history (void) { } |
43 | |
11486
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
44 static void initialize (bool, const std::string&, int, const std::string&); |
11368
944b7e20fc5a
improve handling of exceptions for startup files
John W. Eaton <jwe@octave.org>
parents:
10312
diff
changeset
|
45 |
944b7e20fc5a
improve handling of exceptions for startup files
John W. Eaton <jwe@octave.org>
parents:
10312
diff
changeset
|
46 static bool is_initialized (void); |
944b7e20fc5a
improve handling of exceptions for startup files
John W. Eaton <jwe@octave.org>
parents:
10312
diff
changeset
|
47 |
3504 | 48 static void set_file (const std::string&); |
1797 | 49 |
3504 | 50 static std::string file (void); |
1797 | 51 |
11486
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
52 static void process_histcontrol (const std::string&); |
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
53 |
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
54 static std::string histcontrol (void); |
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
55 |
2926 | 56 static void set_size (int); |
1797 | 57 |
2926 | 58 static int size (void); |
59 | |
60 static void ignore_entries (bool = true); | |
1797 | 61 |
2926 | 62 static bool ignoring_entries (void); |
1797 | 63 |
17219
33ce8c381f2c
make history widget respect history_control settings (bug #39728)
Torsten <ttl@justmail.de>
parents:
15397
diff
changeset
|
64 static bool add (const std::string&); |
1797 | 65 |
2926 | 66 static void remove (int); |
67 | |
15397
231d8d3b8225
provide command_hist::clear_history function
John W. Eaton <jwe@octave.org>
parents:
15271
diff
changeset
|
68 static void clear (void); |
231d8d3b8225
provide command_hist::clear_history function
John W. Eaton <jwe@octave.org>
parents:
15271
diff
changeset
|
69 |
2926 | 70 static int where (void); |
1797 | 71 |
2926 | 72 static int length (void); |
1797 | 73 |
2926 | 74 static int max_input_history (void); |
1797 | 75 |
2926 | 76 static int base (void); |
1797 | 77 |
2926 | 78 static int current_number (void); |
1797 | 79 |
2926 | 80 static void stifle (int); |
1797 | 81 |
2926 | 82 static int unstifle (void); |
1797 | 83 |
2926 | 84 static int is_stifled (void); |
1797 | 85 |
2926 | 86 static void set_mark (int n); |
1797 | 87 |
2926 | 88 // Gag. This declaration has to match the Function typedef in |
89 // readline.h. | |
1797 | 90 |
4802 | 91 static int goto_mark (void); |
2926 | 92 |
93 static void read (bool = true); | |
2658 | 94 |
3504 | 95 static void read (const std::string&, bool = true); |
1797 | 96 |
2926 | 97 static void read_range (int = -1, int = -1, bool = true); |
2658 | 98 |
3504 | 99 static void read_range (const std::string&, int = -1, int = -1, |
10312
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
100 bool = true); |
1797 | 101 |
3504 | 102 static void write (const std::string& = std::string ()); |
1797 | 103 |
3504 | 104 static void append (const std::string& = std::string ()); |
1797 | 105 |
3504 | 106 static void truncate_file (const std::string& = std::string (), int = -1); |
1797 | 107 |
2926 | 108 static string_vector list (int = -1, bool = false); |
1797 | 109 |
3504 | 110 static std::string get_entry (int); |
1797 | 111 |
3504 | 112 static void replace_entry (int, const std::string&); |
1797 | 113 |
3504 | 114 static void clean_up_and_save (const std::string& = std::string (), int = -1); |
1797 | 115 |
116 private: | |
117 | |
2926 | 118 // No copying! |
119 | |
120 command_history (const command_history&); | |
121 | |
122 command_history& operator = (const command_history&); | |
123 | |
124 static bool instance_ok (void); | |
125 | |
126 static void make_command_history (void); | |
127 | |
128 // The real thing. | |
129 static command_history *instance; | |
130 | |
13983
7dd7cccf0757
clean up memory allocated for singletons before exit
John W. Eaton <jwe@octave.org>
parents:
12330
diff
changeset
|
131 static void cleanup_instance (void) { delete instance; instance = 0; } |
7dd7cccf0757
clean up memory allocated for singletons before exit
John W. Eaton <jwe@octave.org>
parents:
12330
diff
changeset
|
132 |
2926 | 133 protected: |
134 | |
135 // To use something other than the GNU history library, derive a new | |
136 // class from command_history, overload these functions as | |
137 // necessary, and make instance point to the new class. | |
138 | |
3504 | 139 virtual void do_set_file (const std::string&); |
2926 | 140 |
3504 | 141 virtual std::string do_file (void); |
2926 | 142 |
11486
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
143 virtual void do_process_histcontrol (const std::string&); |
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
144 |
12330
60b6b175f88a
require readline to provide working history control
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
145 virtual std::string do_histcontrol (void) const { return std::string (); } |
11486
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
146 |
17769
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
147 virtual void do_initialize (bool, const std::string&, int, |
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
148 const std::string&); |
11368
944b7e20fc5a
improve handling of exceptions for startup files
John W. Eaton <jwe@octave.org>
parents:
10312
diff
changeset
|
149 |
944b7e20fc5a
improve handling of exceptions for startup files
John W. Eaton <jwe@octave.org>
parents:
10312
diff
changeset
|
150 virtual bool do_is_initialized (void) const; |
944b7e20fc5a
improve handling of exceptions for startup files
John W. Eaton <jwe@octave.org>
parents:
10312
diff
changeset
|
151 |
2926 | 152 virtual void do_set_size (int); |
153 | |
11500
7aeb4eb7403f
cmd-hist.h, cmd-hist.cc: sprinkle with const
John W. Eaton <jwe@octave.org>
parents:
11486
diff
changeset
|
154 virtual int do_size (void) const; |
2926 | 155 |
156 virtual void do_ignore_entries (bool); | |
157 | |
11500
7aeb4eb7403f
cmd-hist.h, cmd-hist.cc: sprinkle with const
John W. Eaton <jwe@octave.org>
parents:
11486
diff
changeset
|
158 virtual bool do_ignoring_entries (void) const; |
2926 | 159 |
17219
33ce8c381f2c
make history widget respect history_control settings (bug #39728)
Torsten <ttl@justmail.de>
parents:
15397
diff
changeset
|
160 virtual bool do_add (const std::string&); |
2926 | 161 |
162 virtual void do_remove (int); | |
163 | |
15397
231d8d3b8225
provide command_hist::clear_history function
John W. Eaton <jwe@octave.org>
parents:
15271
diff
changeset
|
164 virtual void do_clear (void); |
231d8d3b8225
provide command_hist::clear_history function
John W. Eaton <jwe@octave.org>
parents:
15271
diff
changeset
|
165 |
11500
7aeb4eb7403f
cmd-hist.h, cmd-hist.cc: sprinkle with const
John W. Eaton <jwe@octave.org>
parents:
11486
diff
changeset
|
166 virtual int do_where (void) const; |
2926 | 167 |
11500
7aeb4eb7403f
cmd-hist.h, cmd-hist.cc: sprinkle with const
John W. Eaton <jwe@octave.org>
parents:
11486
diff
changeset
|
168 virtual int do_length (void) const; |
2926 | 169 |
11500
7aeb4eb7403f
cmd-hist.h, cmd-hist.cc: sprinkle with const
John W. Eaton <jwe@octave.org>
parents:
11486
diff
changeset
|
170 virtual int do_max_input_history (void) const; |
2926 | 171 |
11500
7aeb4eb7403f
cmd-hist.h, cmd-hist.cc: sprinkle with const
John W. Eaton <jwe@octave.org>
parents:
11486
diff
changeset
|
172 virtual int do_base (void) const; |
2926 | 173 |
11500
7aeb4eb7403f
cmd-hist.h, cmd-hist.cc: sprinkle with const
John W. Eaton <jwe@octave.org>
parents:
11486
diff
changeset
|
174 virtual int do_current_number (void) const; |
2926 | 175 |
176 virtual void do_stifle (int); | |
177 | |
178 virtual int do_unstifle (void); | |
179 | |
11500
7aeb4eb7403f
cmd-hist.h, cmd-hist.cc: sprinkle with const
John W. Eaton <jwe@octave.org>
parents:
11486
diff
changeset
|
180 virtual int do_is_stifled (void) const; |
2926 | 181 |
182 virtual void do_set_mark (int); | |
183 | |
4802 | 184 virtual int do_goto_mark (void); |
2926 | 185 |
3504 | 186 virtual void do_read (const std::string&, bool); |
2926 | 187 |
3504 | 188 virtual void do_read_range (const std::string&, int, int, bool); |
2926 | 189 |
11500
7aeb4eb7403f
cmd-hist.h, cmd-hist.cc: sprinkle with const
John W. Eaton <jwe@octave.org>
parents:
11486
diff
changeset
|
190 virtual void do_write (const std::string&) const; |
2926 | 191 |
3504 | 192 virtual void do_append (const std::string&); |
2926 | 193 |
11500
7aeb4eb7403f
cmd-hist.h, cmd-hist.cc: sprinkle with const
John W. Eaton <jwe@octave.org>
parents:
11486
diff
changeset
|
194 virtual void do_truncate_file (const std::string&, int) const; |
2926 | 195 |
11500
7aeb4eb7403f
cmd-hist.h, cmd-hist.cc: sprinkle with const
John W. Eaton <jwe@octave.org>
parents:
11486
diff
changeset
|
196 virtual string_vector do_list (int, bool) const; |
2926 | 197 |
11500
7aeb4eb7403f
cmd-hist.h, cmd-hist.cc: sprinkle with const
John W. Eaton <jwe@octave.org>
parents:
11486
diff
changeset
|
198 virtual std::string do_get_entry (int) const; |
2926 | 199 |
3504 | 200 virtual void do_replace_entry (int, const std::string&); |
2926 | 201 |
3504 | 202 virtual void do_clean_up_and_save (const std::string&, int); |
2926 | 203 |
17996
260b44c0ed69
improve messages when reading or writing history fails (bug #40443)
John W. Eaton <jwe@octave.org>
parents:
17769
diff
changeset
|
204 void error (int, const std::string& msg = "") const; |
2926 | 205 |
11500
7aeb4eb7403f
cmd-hist.h, cmd-hist.cc: sprinkle with const
John W. Eaton <jwe@octave.org>
parents:
11486
diff
changeset
|
206 void error (const std::string&) const; |
1797 | 207 |
11368
944b7e20fc5a
improve handling of exceptions for startup files
John W. Eaton <jwe@octave.org>
parents:
10312
diff
changeset
|
208 // TRUE means we have initialized the history file name and number of |
944b7e20fc5a
improve handling of exceptions for startup files
John W. Eaton <jwe@octave.org>
parents:
10312
diff
changeset
|
209 // lines to save. |
944b7e20fc5a
improve handling of exceptions for startup files
John W. Eaton <jwe@octave.org>
parents:
10312
diff
changeset
|
210 bool initialized; |
944b7e20fc5a
improve handling of exceptions for startup files
John W. Eaton <jwe@octave.org>
parents:
10312
diff
changeset
|
211 |
1797 | 212 // TRUE means we are ignoring new additions. |
213 bool ignoring_additions; | |
214 | |
11486
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
215 // Bitmask for history control options. See oct-rl-hist.h. |
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
216 int history_control; |
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
217 |
a1deab9a6e71
bash-like history control
Pascal Dupuis <Pascal.Dupuis@worldonline.be> and John W. Eaton <jwe@octave.org>
parents:
11368
diff
changeset
|
218 // The number of history lines we read from the history file. |
1797 | 219 int lines_in_file; |
220 | |
221 // The number of history lines we've saved so far. | |
222 int lines_this_session; | |
223 | |
224 // The default history file. | |
3504 | 225 std::string xfile; |
1797 | 226 |
227 // The number of lines of history to save. | |
228 int xsize; | |
229 }; | |
230 | |
231 #endif |