blob: 3a3e91ecf80fca59d327fb6c3de6a718df3ba977 [file] [log] [blame]
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001/* util.c -- readline utility functions */
2
Jari Aalto31859422009-01-12 13:36:28 +00003/* Copyright (C) 1987-2009 Free Software Foundation, Inc.
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004
Jari Aalto31859422009-01-12 13:36:28 +00005 This file is part of the GNU Readline Library (Readline), a library
6 for reading lines of text with interactive input and history editing.
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007
Jari Aalto31859422009-01-12 13:36:28 +00008 Readline is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
Jari Aaltoccc6cda1996-12-23 17:02:34 +000011 (at your option) any later version.
12
Jari Aalto31859422009-01-12 13:36:28 +000013 Readline is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Jari Aaltoccc6cda1996-12-23 17:02:34 +000016 GNU General Public License for more details.
17
Jari Aalto31859422009-01-12 13:36:28 +000018 You should have received a copy of the GNU General Public License
19 along with Readline. If not, see <http://www.gnu.org/licenses/>.
20*/
21
Jari Aaltoccc6cda1996-12-23 17:02:34 +000022#define READLINE_LIBRARY
23
24#if defined (HAVE_CONFIG_H)
25# include <config.h>
26#endif
27
Jari Aaltoccc6cda1996-12-23 17:02:34 +000028#include <sys/types.h>
29#include <fcntl.h>
Jari Aaltod166f041997-06-05 14:59:13 +000030#include "posixjmp.h"
Jari Aaltoccc6cda1996-12-23 17:02:34 +000031
32#if defined (HAVE_UNISTD_H)
33# include <unistd.h> /* for _POSIX_VERSION */
34#endif /* HAVE_UNISTD_H */
35
36#if defined (HAVE_STDLIB_H)
37# include <stdlib.h>
38#else
39# include "ansi_stdlib.h"
40#endif /* HAVE_STDLIB_H */
41
Jari Aaltod166f041997-06-05 14:59:13 +000042#include <stdio.h>
43#include <ctype.h>
44
Jari Aaltoccc6cda1996-12-23 17:02:34 +000045/* System-specific feature definitions and include files. */
46#include "rldefs.h"
Jari Aalto95732b42005-12-07 14:08:12 +000047#include "rlmbutil.h"
Jari Aaltoccc6cda1996-12-23 17:02:34 +000048
49#if defined (TIOCSTAT_IN_SYS_IOCTL)
50# include <sys/ioctl.h>
51#endif /* TIOCSTAT_IN_SYS_IOCTL */
52
53/* Some standard library routines. */
54#include "readline.h"
55
Jari Aaltobb706242000-03-17 21:46:59 +000056#include "rlprivate.h"
57#include "xmalloc.h"
58
Jari Aaltoccc6cda1996-12-23 17:02:34 +000059/* **************************************************************** */
60/* */
61/* Utility Functions */
62/* */
63/* **************************************************************** */
64
65/* Return 0 if C is not a member of the class of characters that belong
66 in words, or 1 if it is. */
67
68int _rl_allow_pathname_alphabetic_chars = 0;
Jari Aalto31859422009-01-12 13:36:28 +000069static const char * const pathname_alphabetic_chars = "/-_=~.#$";
Jari Aaltoccc6cda1996-12-23 17:02:34 +000070
71int
Jari Aalto28ef6c32001-04-06 19:14:31 +000072rl_alphabetic (c)
Jari Aaltoccc6cda1996-12-23 17:02:34 +000073 int c;
74{
75 if (ALPHABETIC (c))
76 return (1);
77
78 return (_rl_allow_pathname_alphabetic_chars &&
79 strchr (pathname_alphabetic_chars, c) != NULL);
80}
81
Jari Aalto95732b42005-12-07 14:08:12 +000082#if defined (HANDLE_MULTIBYTE)
83int
84_rl_walphabetic (wc)
85 wchar_t wc;
86{
87 int c;
88
89 if (iswalnum (wc))
90 return (1);
91
92 c = wc & 0177;
93 return (_rl_allow_pathname_alphabetic_chars &&
94 strchr (pathname_alphabetic_chars, c) != NULL);
95}
96#endif
97
Jari Aaltoccc6cda1996-12-23 17:02:34 +000098/* How to abort things. */
99int
100_rl_abort_internal ()
101{
Jari Aalto28ef6c32001-04-06 19:14:31 +0000102 rl_ding ();
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000103 rl_clear_message ();
Jari Aalto95732b42005-12-07 14:08:12 +0000104 _rl_reset_argument ();
Jari Aalto28ef6c32001-04-06 19:14:31 +0000105 rl_clear_pending_input ();
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000106
Jari Aalto7117c2d2002-07-17 14:10:11 +0000107 RL_UNSETSTATE (RL_STATE_MACRODEF);
Jari Aalto28ef6c32001-04-06 19:14:31 +0000108 while (rl_executing_macro)
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000109 _rl_pop_executing_macro ();
110
Jari Aalto28ef6c32001-04-06 19:14:31 +0000111 rl_last_func = (rl_command_func_t *)NULL;
Jari Aalto31859422009-01-12 13:36:28 +0000112 longjmp (_rl_top_level, 1);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000113 return (0);
114}
115
116int
117rl_abort (count, key)
118 int count, key;
119{
120 return (_rl_abort_internal ());
121}
122
123int
124rl_tty_status (count, key)
125 int count, key;
126{
127#if defined (TIOCSTAT)
128 ioctl (1, TIOCSTAT, (char *)0);
Jari Aaltob72432f1999-02-19 17:11:39 +0000129 rl_refresh_line (count, key);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000130#else
Jari Aalto28ef6c32001-04-06 19:14:31 +0000131 rl_ding ();
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000132#endif
133 return 0;
134}
135
136/* Return a copy of the string between FROM and TO.
137 FROM is inclusive, TO is not. */
138char *
139rl_copy_text (from, to)
140 int from, to;
141{
142 register int length;
143 char *copy;
144
145 /* Fix it if the caller is confused. */
146 if (from > to)
147 SWAP (from, to);
148
149 length = to - from;
Jari Aaltof73dda02001-11-13 17:56:06 +0000150 copy = (char *)xmalloc (1 + length);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000151 strncpy (copy, rl_line_buffer + from, length);
152 copy[length] = '\0';
153 return (copy);
154}
155
156/* Increase the size of RL_LINE_BUFFER until it has enough space to hold
157 LEN characters. */
158void
159rl_extend_line_buffer (len)
160 int len;
161{
162 while (len >= rl_line_buffer_len)
163 {
164 rl_line_buffer_len += DEFAULT_BUFFER_SIZE;
Jari Aaltof73dda02001-11-13 17:56:06 +0000165 rl_line_buffer = (char *)xrealloc (rl_line_buffer, rl_line_buffer_len);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000166 }
167
168 _rl_set_the_line ();
169}
170
Jari Aaltocce855b1998-04-17 19:52:44 +0000171
172/* A function for simple tilde expansion. */
173int
174rl_tilde_expand (ignore, key)
175 int ignore, key;
176{
177 register int start, end;
178 char *homedir, *temp;
179 int len;
180
181 end = rl_point;
182 start = end - 1;
183
184 if (rl_point == rl_end && rl_line_buffer[rl_point] == '~')
185 {
186 homedir = tilde_expand ("~");
187 _rl_replace_text (homedir, start, end);
Jari Aalto31859422009-01-12 13:36:28 +0000188 xfree (homedir);
Jari Aaltocce855b1998-04-17 19:52:44 +0000189 return (0);
190 }
191 else if (rl_line_buffer[start] != '~')
192 {
193 for (; !whitespace (rl_line_buffer[start]) && start >= 0; start--)
194 ;
195 start++;
196 }
197
198 end = start;
199 do
200 end++;
201 while (whitespace (rl_line_buffer[end]) == 0 && end < rl_end);
202
203 if (whitespace (rl_line_buffer[end]) || end >= rl_end)
204 end--;
205
206 /* If the first character of the current word is a tilde, perform
207 tilde expansion and insert the result. If not a tilde, do
208 nothing. */
209 if (rl_line_buffer[start] == '~')
210 {
211 len = end - start + 1;
Jari Aaltof73dda02001-11-13 17:56:06 +0000212 temp = (char *)xmalloc (len + 1);
Jari Aaltocce855b1998-04-17 19:52:44 +0000213 strncpy (temp, rl_line_buffer + start, len);
214 temp[len] = '\0';
215 homedir = tilde_expand (temp);
Jari Aalto31859422009-01-12 13:36:28 +0000216 xfree (temp);
Jari Aaltocce855b1998-04-17 19:52:44 +0000217
218 _rl_replace_text (homedir, start, end);
Jari Aalto31859422009-01-12 13:36:28 +0000219 xfree (homedir);
Jari Aaltocce855b1998-04-17 19:52:44 +0000220 }
221
222 return (0);
223}
224
Jari Aalto31859422009-01-12 13:36:28 +0000225#if defined (USE_VARARGS)
226void
227#if defined (PREFER_STDARG)
228_rl_ttymsg (const char *format, ...)
229#else
230_rl_ttymsg (va_alist)
231 va_dcl
232#endif
233{
234 va_list args;
235#if defined (PREFER_VARARGS)
236 char *format;
237#endif
238
239#if defined (PREFER_STDARG)
240 va_start (args, format);
241#else
242 va_start (args);
243 format = va_arg (args, char *);
244#endif
245
246 fprintf (stderr, "readline: ");
247 vfprintf (stderr, format, args);
248 fprintf (stderr, "\n");
249 fflush (stderr);
250
251 va_end (args);
252
253 rl_forced_update_display ();
254}
255
256void
257#if defined (PREFER_STDARG)
258_rl_errmsg (const char *format, ...)
259#else
260_rl_errmsg (va_alist)
261 va_dcl
262#endif
263{
264 va_list args;
265#if defined (PREFER_VARARGS)
266 char *format;
267#endif
268
269#if defined (PREFER_STDARG)
270 va_start (args, format);
271#else
272 va_start (args);
273 format = va_arg (args, char *);
274#endif
275
276 fprintf (stderr, "readline: ");
277 vfprintf (stderr, format, args);
278 fprintf (stderr, "\n");
279 fflush (stderr);
280
281 va_end (args);
282}
283
284#else /* !USE_VARARGS */
285void
286_rl_ttymsg (format, arg1, arg2)
287 char *format;
288{
289 fprintf (stderr, "readline: ");
290 fprintf (stderr, format, arg1, arg2);
291 fprintf (stderr, "\n");
292
293 rl_forced_update_display ();
294}
295
296void
297_rl_errmsg (format, arg1, arg2)
298 char *format;
299{
300 fprintf (stderr, "readline: ");
301 fprintf (stderr, format, arg1, arg2);
302 fprintf (stderr, "\n");
303}
304#endif /* !USE_VARARGS */
305
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000306/* **************************************************************** */
307/* */
308/* String Utility Functions */
309/* */
310/* **************************************************************** */
311
312/* Determine if s2 occurs in s1. If so, return a pointer to the
313 match in s1. The compare is case insensitive. */
314char *
315_rl_strindex (s1, s2)
Jari Aalto28ef6c32001-04-06 19:14:31 +0000316 register const char *s1, *s2;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000317{
318 register int i, l, len;
319
320 for (i = 0, l = strlen (s2), len = strlen (s1); (len - i) >= l; i++)
321 if (_rl_strnicmp (s1 + i, s2, l) == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +0000322 return ((char *) (s1 + i));
323 return ((char *)NULL);
324}
325
Jari Aaltof73dda02001-11-13 17:56:06 +0000326#ifndef HAVE_STRPBRK
Jari Aalto28ef6c32001-04-06 19:14:31 +0000327/* Find the first occurrence in STRING1 of any character from STRING2.
328 Return a pointer to the character in STRING1. */
329char *
330_rl_strpbrk (string1, string2)
331 const char *string1, *string2;
332{
333 register const char *scan;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000334#if defined (HANDLE_MULTIBYTE)
335 mbstate_t ps;
336 register int i, v;
337
338 memset (&ps, 0, sizeof (mbstate_t));
339#endif
Jari Aalto28ef6c32001-04-06 19:14:31 +0000340
341 for (; *string1; string1++)
342 {
343 for (scan = string2; *scan; scan++)
344 {
345 if (*string1 == *scan)
346 return ((char *)string1);
347 }
Jari Aalto7117c2d2002-07-17 14:10:11 +0000348#if defined (HANDLE_MULTIBYTE)
349 if (MB_CUR_MAX > 1 && rl_byte_oriented == 0)
350 {
351 v = _rl_get_char_len (string1, &ps);
352 if (v > 1)
Jari Aaltob80f6442004-07-27 13:29:18 +0000353 string1 += v - 1; /* -1 to account for auto-increment in loop */
Jari Aalto7117c2d2002-07-17 14:10:11 +0000354 }
355#endif
Jari Aalto28ef6c32001-04-06 19:14:31 +0000356 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000357 return ((char *)NULL);
358}
Jari Aaltof73dda02001-11-13 17:56:06 +0000359#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000360
361#if !defined (HAVE_STRCASECMP)
362/* Compare at most COUNT characters from string1 to string2. Case
363 doesn't matter. */
364int
365_rl_strnicmp (string1, string2, count)
366 char *string1, *string2;
367 int count;
368{
369 register char ch1, ch2;
370
371 while (count)
372 {
373 ch1 = *string1++;
374 ch2 = *string2++;
375 if (_rl_to_upper(ch1) == _rl_to_upper(ch2))
376 count--;
377 else
378 break;
379 }
380 return (count);
381}
382
383/* strcmp (), but caseless. */
384int
385_rl_stricmp (string1, string2)
386 char *string1, *string2;
387{
388 register char ch1, ch2;
389
390 while (*string1 && *string2)
391 {
392 ch1 = *string1++;
393 ch2 = *string2++;
394 if (_rl_to_upper(ch1) != _rl_to_upper(ch2))
395 return (1);
396 }
397 return (*string1 - *string2);
398}
399#endif /* !HAVE_STRCASECMP */
400
401/* Stupid comparison routine for qsort () ing strings. */
402int
403_rl_qsort_string_compare (s1, s2)
404 char **s1, **s2;
405{
406#if defined (HAVE_STRCOLL)
407 return (strcoll (*s1, *s2));
408#else
409 int result;
410
411 result = **s1 - **s2;
412 if (result == 0)
413 result = strcmp (*s1, *s2);
414
415 return result;
416#endif
417}
418
Jari Aaltof73dda02001-11-13 17:56:06 +0000419/* Function equivalents for the macros defined in chardefs.h. */
420#define FUNCTION_FOR_MACRO(f) int (f) (c) int c; { return f (c); }
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000421
Jari Aaltof73dda02001-11-13 17:56:06 +0000422FUNCTION_FOR_MACRO (_rl_digit_p)
423FUNCTION_FOR_MACRO (_rl_digit_value)
424FUNCTION_FOR_MACRO (_rl_lowercase_p)
425FUNCTION_FOR_MACRO (_rl_pure_alphabetic)
426FUNCTION_FOR_MACRO (_rl_to_lower)
427FUNCTION_FOR_MACRO (_rl_to_upper)
428FUNCTION_FOR_MACRO (_rl_uppercase_p)
Jari Aaltocce855b1998-04-17 19:52:44 +0000429
Jari Aalto31859422009-01-12 13:36:28 +0000430/* A convenience function, to force memory deallocation to be performed
431 by readline. DLLs on Windows apparently require this. */
432void
433rl_free (mem)
434 void *mem;
435{
436 if (mem)
437 free (mem);
438}
439
Jari Aaltocce855b1998-04-17 19:52:44 +0000440/* Backwards compatibility, now that savestring has been removed from
441 all `public' readline header files. */
442#undef _rl_savestring
443char *
444_rl_savestring (s)
Jari Aalto28ef6c32001-04-06 19:14:31 +0000445 const char *s;
Jari Aaltocce855b1998-04-17 19:52:44 +0000446{
Jari Aaltof73dda02001-11-13 17:56:06 +0000447 return (strcpy ((char *)xmalloc (1 + (int)strlen (s)), (s)));
Jari Aaltocce855b1998-04-17 19:52:44 +0000448}
Jari Aalto31859422009-01-12 13:36:28 +0000449
450#if defined (USE_VARARGS)
451static FILE *_rl_tracefp;
452
453void
454#if defined (PREFER_STDARG)
455_rl_trace (const char *format, ...)
456#else
457_rl_trace (va_alist)
458 va_dcl
459#endif
460{
461 va_list args;
462#if defined (PREFER_VARARGS)
463 char *format;
464#endif
465
466#if defined (PREFER_STDARG)
467 va_start (args, format);
468#else
469 va_start (args);
470 format = va_arg (args, char *);
471#endif
472
473 if (_rl_tracefp == 0)
474 _rl_tropen ();
475 vfprintf (_rl_tracefp, format, args);
476 fprintf (_rl_tracefp, "\n");
477 fflush (_rl_tracefp);
478
479 va_end (args);
480}
481
482int
483_rl_tropen ()
484{
485 char fnbuf[128];
486
487 if (_rl_tracefp)
488 fclose (_rl_tracefp);
489 sprintf (fnbuf, "/var/tmp/rltrace.%ld", getpid());
490 unlink(fnbuf);
491 _rl_tracefp = fopen (fnbuf, "w+");
492 return _rl_tracefp != 0;
493}
494
495int
496_rl_trclose ()
497{
498 int r;
499
500 r = fclose (_rl_tracefp);
501 _rl_tracefp = 0;
502 return r;
503}
504
505#endif