26
26
#include "php_readline.h"
27
27
#include "readline_cli.h"
28
28
29
- #if HAVE_LIBREADLINE || HAVE_LIBEDIT
29
+ #if HAVE_LIBEDIT
30
30
31
31
#ifndef HAVE_RL_COMPLETION_MATCHES
32
32
#define rl_completion_matches completion_matches
33
33
#endif
34
34
35
- #ifdef HAVE_LIBEDIT
36
35
#include <editline/readline.h>
37
- #else
38
- #include <readline/readline.h>
39
- #include <readline/history.h>
40
- #endif
41
36
42
37
PHP_FUNCTION (readline );
43
38
PHP_FUNCTION (readline_add_history );
@@ -170,10 +165,6 @@ ZEND_GET_MODULE(readline)
170
165
171
166
PHP_MINIT_FUNCTION (readline )
172
167
{
173
- #if HAVE_LIBREADLINE
174
- /* libedit don't need this call which set the tty in cooked mode */
175
- using_history ();
176
- #endif
177
168
ZVAL_UNDEF (& _readline_completion );
178
169
#if HAVE_RL_CALLBACK_READ_CHAR
179
170
ZVAL_UNDEF (& _prepped_callback );
@@ -254,21 +245,6 @@ PHP_FUNCTION(readline_info)
254
245
#ifndef PHP_WIN32
255
246
add_assoc_long (return_value ,"end" ,rl_end );
256
247
#endif
257
- #ifdef HAVE_LIBREADLINE
258
- add_assoc_long (return_value ,"mark" ,rl_mark );
259
- add_assoc_long (return_value ,"done" ,rl_done );
260
- add_assoc_long (return_value ,"pending_input" ,rl_pending_input );
261
- add_assoc_string (return_value ,"prompt" ,SAFE_STRING (rl_prompt ));
262
- add_assoc_string (return_value ,"terminal_name" ,(char * )SAFE_STRING (rl_terminal_name ));
263
- add_assoc_str (return_value , "completion_append_character" ,
264
- rl_completion_append_character == 0
265
- ? ZSTR_EMPTY_ALLOC ()
266
- : ZSTR_CHAR (rl_completion_append_character ));
267
- add_assoc_bool (return_value ,"completion_suppress_append" ,rl_completion_suppress_append );
268
- #endif
269
- #if HAVE_ERASE_EMPTY_LINE
270
- add_assoc_long (return_value ,"erase_empty_line" ,rl_erase_empty_line );
271
- #endif
272
248
#ifndef PHP_WIN32
273
249
add_assoc_string (return_value ,"library_version" ,(char * )SAFE_STRING (rl_library_version ));
274
250
#endif
@@ -289,51 +265,6 @@ PHP_FUNCTION(readline_info)
289
265
} else if (!strcasecmp (what , "end" )) {
290
266
RETVAL_LONG (rl_end );
291
267
#endif
292
- #ifdef HAVE_LIBREADLINE
293
- } else if (!strcasecmp (what , "mark" )) {
294
- RETVAL_LONG (rl_mark );
295
- } else if (!strcasecmp (what , "done" )) {
296
- oldval = rl_done ;
297
- if (value ) {
298
- convert_to_long_ex (value );
299
- rl_done = Z_LVAL_P (value );
300
- }
301
- RETVAL_LONG (oldval );
302
- } else if (!strcasecmp (what , "pending_input" )) {
303
- oldval = rl_pending_input ;
304
- if (value ) {
305
- convert_to_string_ex (value );
306
- rl_pending_input = Z_STRVAL_P (value )[0 ];
307
- }
308
- RETVAL_LONG (oldval );
309
- } else if (!strcasecmp (what , "prompt" )) {
310
- RETVAL_STRING (SAFE_STRING (rl_prompt ));
311
- } else if (!strcasecmp (what , "terminal_name" )) {
312
- RETVAL_STRING ((char * )SAFE_STRING (rl_terminal_name ));
313
- } else if (!strcasecmp (what , "completion_suppress_append" )) {
314
- oldval = rl_completion_suppress_append ;
315
- if (value ) {
316
- rl_completion_suppress_append = zend_is_true (value );
317
- }
318
- RETVAL_BOOL (oldval );
319
- } else if (!strcasecmp (what , "completion_append_character" )) {
320
- oldval = rl_completion_append_character ;
321
- if (value ) {
322
- convert_to_string_ex (value )
323
- rl_completion_append_character = (int )Z_STRVAL_P (value )[0 ];
324
- }
325
- RETVAL_INTERNED_STR (
326
- oldval == 0 ? ZSTR_EMPTY_ALLOC () : ZSTR_CHAR (oldval ));
327
- #endif
328
- #if HAVE_ERASE_EMPTY_LINE
329
- } else if (!strcasecmp (what , "erase_empty_line" )) {
330
- oldval = rl_erase_empty_line ;
331
- if (value ) {
332
- convert_to_long_ex (value );
333
- rl_erase_empty_line = Z_LVAL_P (value );
334
- }
335
- RETVAL_LONG (oldval );
336
- #endif
337
268
#ifndef PHP_WIN32
338
269
} else if (!strcasecmp (what ,"library_version" )) {
339
270
RETVAL_STRING ((char * )SAFE_STRING (rl_library_version ));
@@ -383,11 +314,9 @@ PHP_FUNCTION(readline_clear_history)
383
314
return ;
384
315
}
385
316
386
- #if HAVE_LIBEDIT
387
317
/* clear_history is the only function where rl_initialize
388
318
is not call to ensure correct allocation */
389
319
using_history ();
390
- #endif
391
320
clear_history ();
392
321
393
322
RETURN_TRUE ;
@@ -408,7 +337,7 @@ PHP_FUNCTION(readline_list_history)
408
337
409
338
array_init (return_value );
410
339
411
- #if defined( HAVE_LIBEDIT ) && defined( PHP_WIN32 ) /* Winedit on Windows */
340
+ #ifdef PHP_WIN32 /* Winedit on Windows */
412
341
history = history_list ();
413
342
414
343
if (history ) {
@@ -418,7 +347,7 @@ PHP_FUNCTION(readline_list_history)
418
347
}
419
348
}
420
349
421
- #elif defined( HAVE_LIBEDIT ) /* libedit */
350
+ #else /* libedit */
422
351
{
423
352
HISTORY_STATE * hs ;
424
353
int i ;
@@ -434,16 +363,6 @@ PHP_FUNCTION(readline_list_history)
434
363
}
435
364
}
436
365
}
437
-
438
- #else /* readline */
439
- history = history_list ();
440
-
441
- if (history ) {
442
- int i ;
443
- for (i = 0 ; history [i ]; i ++ ) {
444
- add_next_index_string (return_value , history [i ]-> line );
445
- }
446
- }
447
366
#endif
448
367
}
449
368
/* }}} */
@@ -669,11 +588,9 @@ PHP_FUNCTION(readline_callback_handler_remove)
669
588
Ask readline to redraw the display */
670
589
PHP_FUNCTION (readline_redisplay )
671
590
{
672
- #if HAVE_LIBEDIT
673
591
/* seems libedit doesn't take care of rl_initialize in rl_redisplay
674
592
* see bug #72538 */
675
593
using_history ();
676
- #endif
677
594
rl_redisplay ();
678
595
}
679
596
/* }}} */
@@ -692,4 +609,4 @@ PHP_FUNCTION(readline_on_new_line)
692
609
#endif
693
610
694
611
695
- #endif /* HAVE_LIBREADLINE */
612
+ #endif /* HAVE_LIBEDIT */
0 commit comments