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
|
/*
Copyright (C) 2000-2015 John W. Eaton
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
<http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#if defined (USE_READLINE)
#include <stdio.h>
#include <stdlib.h>
#include <readline/readline.h>
#include "oct-rl-edit.h"
#define OCTAVE_RL_SAVE_STRING(ss, s) \
static char *ss = 0; \
\
if (ss) \
{ \
free (ss); \
ss = 0; \
} \
\
ss = malloc (strlen (s) + 1); \
\
strcpy (ss, s)
void
octave_rl_redisplay (void)
{
rl_redisplay ();
}
int
octave_rl_screen_height (void)
{
int rows, cols;
rl_get_screen_size (&rows, &cols);
return rows;
}
int
octave_rl_screen_width (void)
{
int rows, cols;
rl_get_screen_size (&rows, &cols);
return cols;
}
void
octave_rl_enable_paren_matching (int val)
{
rl_variable_bind ("blink-matching-paren", val ? "1" : "0");
}
int
octave_rl_erase_empty_line (int val)
{
int retval = rl_erase_empty_line;
rl_erase_empty_line = val;
return retval;
}
/* It would be much simpler if we could just call _rl_clear_screen to
only clear the screen, but it is not a public function, and on some
systems, it is not exported from shared library versions of
readline, so we can't use it.
Instead, temporarily redefine the redisplay function to do nothing.
FIXME -- It would be safer to do this when protected from
interrupts... */
static void
flush_stdout (void)
{
fflush (stdout);
}
void
octave_rl_clear_screen (int skip_redisplay)
{
int ignore1 = 0;
int ignore2 = 0;
if (skip_redisplay)
{
rl_voidfunc_t *saved_redisplay_function = rl_redisplay_function;
rl_redisplay_function = flush_stdout;
rl_clear_screen (ignore1, ignore2);
rl_redisplay_function = saved_redisplay_function;
}
else
rl_clear_screen (ignore1, ignore2);
}
void
octave_rl_resize_terminal (void)
{
rl_resize_terminal ();
}
void
octave_rl_set_screen_size (int ht, int wd)
{
rl_set_screen_size (ht, wd);
}
void
octave_rl_restore_terminal_state ()
{
if (rl_deprep_term_function)
rl_deprep_term_function ();
}
char *
octave_rl_copy_line (void)
{
return rl_copy_text (0, rl_end);
}
void
octave_rl_replace_line (const char *s, int clear_undo)
{
rl_replace_line (s, clear_undo);
}
void
octave_rl_kill_full_line (void)
{
rl_kill_full_line (0, 0);
}
void
octave_rl_insert_text (const char *s)
{
rl_insert_text (s);
}
int
octave_rl_newline (int count, int key)
{
return rl_newline (count, key);
}
const char *
octave_rl_line_buffer (void)
{
return rl_line_buffer;
}
int
octave_rl_do_undo (void)
{
return rl_do_undo ();
}
void
octave_rl_clear_undo_list (void)
{
if (rl_undo_list)
{
rl_free_undo_list ();
rl_undo_list = 0;
}
}
void
octave_rl_set_name (const char *n)
{
OCTAVE_RL_SAVE_STRING (nm, n);
rl_readline_name = nm;
/* Since we've already called rl_initialize, we need to re-read the
init file to take advantage of the conditional parsing feature
based on rl_readline_name; */
rl_re_read_init_file (0, 0);
}
char *
octave_rl_readline (const char *prompt)
{
return readline (prompt);
}
void
octave_rl_set_input_stream (FILE *f)
{
rl_instream = f;
}
FILE *
octave_rl_get_input_stream (void)
{
return rl_instream;
}
void
octave_rl_set_output_stream (FILE *f)
{
rl_outstream = f;
}
FILE *
octave_rl_get_output_stream (void)
{
return rl_outstream;
}
void
octave_rl_read_init_file (const char *f)
{
rl_read_init_file (f);
}
void
octave_rl_re_read_init_file (void)
{
rl_re_read_init_file (0, 0);
}
int
octave_rl_filename_completion_desired (int arg)
{
int retval = rl_filename_completion_desired;
rl_filename_completion_desired = arg;
return retval;
}
int
octave_rl_filename_quoting_desired (int arg)
{
int retval = rl_filename_quoting_desired;
rl_filename_quoting_desired = arg;
return retval;
}
int
octave_rl_prefer_env_winsize (int arg)
{
int retval = rl_prefer_env_winsize;
rl_prefer_env_winsize = arg;
return retval;
}
void
octave_rl_done (int arg)
{
rl_done = arg;
}
char *
octave_rl_filename_completion_function (const char *text, int state)
{
return rl_filename_completion_function (text, state);
}
void
octave_rl_set_basic_word_break_characters (const char *s)
{
OCTAVE_RL_SAVE_STRING (ss, s);
rl_basic_word_break_characters = ss;
}
void
octave_rl_set_completer_word_break_characters (const char *s)
{
OCTAVE_RL_SAVE_STRING (ss, s);
rl_completer_word_break_characters = ss;
}
void
octave_rl_set_basic_quote_characters (const char *s)
{
OCTAVE_RL_SAVE_STRING (ss, s);
rl_basic_quote_characters = ss;
}
void
octave_rl_set_filename_quote_characters (const char *s)
{
OCTAVE_RL_SAVE_STRING (ss, s);
rl_filename_quote_characters = ss;
}
void
octave_rl_set_completer_quote_characters (const char *s)
{
OCTAVE_RL_SAVE_STRING (ss, s);
rl_completer_quote_characters = ss;
}
void
octave_rl_set_completion_append_character (char c)
{
rl_completion_append_character = c;
}
void
octave_rl_set_completion_function (rl_attempted_completion_fcn_ptr f)
{
rl_attempted_completion_function = f;
}
void
octave_rl_set_quoting_function (rl_quoting_fcn_ptr f)
{
rl_filename_quoting_function = f;
}
void
octave_rl_set_dequoting_function (rl_dequoting_fcn_ptr f)
{
rl_filename_dequoting_function = f;
}
void
octave_rl_set_char_is_quoted_function (rl_char_is_quoted_fcn_ptr f)
{
rl_char_is_quoted_p = f;
}
void
octave_rl_set_startup_hook (rl_startup_hook_fcn_ptr f)
{
rl_startup_hook = f;
}
rl_startup_hook_fcn_ptr
octave_rl_get_startup_hook (void)
{
return rl_startup_hook;
}
void
octave_rl_set_pre_input_hook (rl_pre_input_hook_fcn_ptr f)
{
rl_pre_input_hook = f;
}
rl_pre_input_hook_fcn_ptr
octave_rl_get_pre_input_hook (void)
{
return rl_pre_input_hook;
}
void
octave_rl_set_event_hook (rl_event_hook_fcn_ptr f)
{
rl_event_hook = f;
}
rl_event_hook_fcn_ptr
octave_rl_get_event_hook (void)
{
return rl_event_hook;
}
char **
octave_rl_completion_matches (const char *text, rl_completer_fcn_ptr f)
{
return rl_completion_matches (text, f);
}
char
octave_rl_prompt_start_ignore (void)
{
return RL_PROMPT_START_IGNORE;
}
char
octave_rl_prompt_end_ignore (void)
{
return RL_PROMPT_END_IGNORE;
}
void
octave_rl_add_defun (const char *name, rl_fcn_ptr f, char key)
{
rl_add_defun (name, f, key);
}
void
octave_rl_set_terminal_name (const char *term)
{
OCTAVE_RL_SAVE_STRING (saved_term, term);
rl_terminal_name = saved_term;
}
void
octave_rl_initialize (void)
{
#if defined (__WIN32__) && ! defined (__CYGWIN__)
rl_catch_signals = 0;
#endif
rl_initialize ();
}
int
octave_rl_history_search_forward (int count, int ignore)
{
return rl_history_search_forward (count, ignore);
}
int
octave_rl_history_search_backward (int count, int ignore)
{
return rl_history_search_backward (count, ignore);
}
char
octave_rl_ctrl (char c)
{
return CTRL (c);
}
char
octave_rl_meta (char c)
{
return META (c);
}
#endif
|