histexpand.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:33k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* histexpand.c -- history expansion. */
  2. /* Copyright (C) 1989, 1992 Free Software Foundation, Inc.
  3.    This file contains the GNU History Library (the Library), a set of
  4.    routines for managing the text of previously typed lines.
  5.    The Library is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License as published by
  7.    the Free Software Foundation; either version 1, or (at your option)
  8.    any later version.
  9.    The Library is distributed in the hope that it will be useful, but
  10.    WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.    General Public License for more details.
  13.    The GNU General Public License is often shipped with GNU software, and
  14.    is generally kept in a file called COPYING or LICENSE.  If you do not
  15.    have a copy of the license, write to the Free Software Foundation,
  16.    675 Mass Ave, Cambridge, MA 02139, USA. */
  17. #define READLINE_LIBRARY
  18. #if defined (HAVE_CONFIG_H)
  19. #  include <config.h>
  20. #endif
  21. #include <stdio.h>
  22. #if defined (HAVE_STDLIB_H)
  23. #  include <stdlib.h>
  24. #else
  25. #  include "ansi_stdlib.h"
  26. #endif /* HAVE_STDLIB_H */
  27. #if defined (HAVE_UNISTD_H)
  28. #  ifndef _MINIX
  29. #    include <sys/types.h>
  30. #  endif
  31. #  include <unistd.h>
  32. #endif
  33. #if defined (HAVE_STRING_H)
  34. #  include <string.h>
  35. #else
  36. #  include <strings.h>
  37. #endif /* !HAVE_STRING_H */
  38. #include "history.h"
  39. #include "histlib.h"
  40. #define HISTORY_WORD_DELIMITERS " tn;&()|<>"
  41. #define HISTORY_QUOTE_CHARACTERS ""'`"
  42. static char error_pointer;
  43. static char *subst_lhs;
  44. static char *subst_rhs;
  45. static int subst_lhs_len;
  46. static int subst_rhs_len;
  47. static char *get_history_word_specifier ();
  48. static char *history_find_word ();
  49. extern int history_offset;
  50. extern char *single_quote ();
  51. static char *quote_breaks ();
  52. extern char *xmalloc (), *xrealloc ();
  53. /* Variables exported by this file. */
  54. /* The character that represents the start of a history expansion
  55.    request.  This is usually `!'. */
  56. char history_expansion_char = '!';
  57. /* The character that invokes word substitution if found at the start of
  58.    a line.  This is usually `^'. */
  59. char history_subst_char = '^';
  60. /* During tokenization, if this character is seen as the first character
  61.    of a word, then it, and all subsequent characters upto a newline are
  62.    ignored.  For a Bourne shell, this should be '#'.  Bash special cases
  63.    the interactive comment character to not be a comment delimiter. */
  64. char history_comment_char = '';
  65. /* The list of characters which inhibit the expansion of text if found
  66.    immediately following history_expansion_char. */
  67. char *history_no_expand_chars = " tnr=";
  68. /* If set to a non-zero value, single quotes inhibit history expansion.
  69.    The default is 0. */
  70. int history_quotes_inhibit_expansion = 0;
  71. /* If set, this points to a function that is called to verify that a
  72.    particular history expansion should be performed. */
  73. Function *history_inhibit_expansion_function;
  74. /* **************************************************************** */
  75. /*     */
  76. /* History Expansion     */
  77. /*     */
  78. /* **************************************************************** */
  79. /* Hairy history expansion on text, not tokens.  This is of general
  80.    use, and thus belongs in this library. */
  81. /* The last string searched for by a !?string? search. */
  82. static char *search_string;
  83. /* The last string matched by a !?string? search. */
  84. static char *search_match;
  85. /* Return the event specified at TEXT + OFFSET modifying OFFSET to
  86.    point to after the event specifier.  Just a pointer to the history
  87.    line is returned; NULL is returned in the event of a bad specifier.
  88.    You pass STRING with *INDEX equal to the history_expansion_char that
  89.    begins this specification.
  90.    DELIMITING_QUOTE is a character that is allowed to end the string
  91.    specification for what to search for in addition to the normal
  92.    characters `:', ` ', `t', `n', and sometimes `?'.
  93.    So you might call this function like:
  94.    line = get_history_event ("!echo:p", &index, 0);  */
  95. char *
  96. get_history_event (string, caller_index, delimiting_quote)
  97.      char *string;
  98.      int *caller_index;
  99.      int delimiting_quote;
  100. {
  101.   register int i;
  102.   register char c;
  103.   HIST_ENTRY *entry;
  104.   int which, sign, local_index, substring_okay;
  105.   Function *search_func;
  106.   char *temp;
  107.   /* The event can be specified in a number of ways.
  108.      !!   the previous command
  109.      !n   command line N
  110.      !-n  current command-line minus N
  111.      !str the most recent command starting with STR
  112.      !?str[?]
  113.   the most recent command containing STR
  114.      All values N are determined via HISTORY_BASE. */
  115.   i = *caller_index;
  116.   if (string[i] != history_expansion_char)
  117.     return ((char *)NULL);
  118.   /* Move on to the specification. */
  119.   i++;
  120.   sign = 1;
  121.   substring_okay = 0;
  122. #define RETURN_ENTRY(e, w) 
  123. return ((e = history_get (w)) ? e->line : (char *)NULL)
  124.   /* Handle !! case. */
  125.   if (string[i] == history_expansion_char)
  126.     {
  127.       i++;
  128.       which = history_base + (history_length - 1);
  129.       *caller_index = i;
  130.       RETURN_ENTRY (entry, which);
  131.     }
  132.   /* Hack case of numeric line specification. */
  133.   if (string[i] == '-')
  134.     {
  135.       sign = -1;
  136.       i++;
  137.     }
  138.   if (_rl_digit_p (string[i]))
  139.     {
  140.       /* Get the extent of the digits and compute the value. */
  141.       for (which = 0; _rl_digit_p (string[i]); i++)
  142. which = (which * 10) + _rl_digit_value (string[i]);
  143.       *caller_index = i;
  144.       if (sign < 0)
  145. which = (history_length + history_base) - which;
  146.       RETURN_ENTRY (entry, which);
  147.     }
  148.   /* This must be something to search for.  If the spec begins with
  149.      a '?', then the string may be anywhere on the line.  Otherwise,
  150.      the string must be found at the start of a line. */
  151.   if (string[i] == '?')
  152.     {
  153.       substring_okay++;
  154.       i++;
  155.     }
  156.   /* Only a closing `?' or a newline delimit a substring search string. */
  157.   for (local_index = i; (c = string[i]); i++)
  158.     if ((!substring_okay && (whitespace (c) || c == ':' ||
  159. (history_search_delimiter_chars && member (c, history_search_delimiter_chars)) ||
  160. string[i] == delimiting_quote)) ||
  161. string[i] == 'n' ||
  162. (substring_okay && string[i] == '?'))
  163.       break;
  164.   which = i - local_index;
  165.   temp = xmalloc (1 + which);
  166.   if (which)
  167.     strncpy (temp, string + local_index, which);
  168.   temp[which] = '';
  169.   if (substring_okay && string[i] == '?')
  170.     i++;
  171.   *caller_index = i;
  172. #define FAIL_SEARCH() 
  173.   do { 
  174.     history_offset = history_length; free (temp) ; return (char *)NULL; 
  175.   } while (0)
  176.   /* If there is no search string, try to use the previous search string,
  177.      if one exists.  If not, fail immediately. */
  178.   if (*temp == '' && substring_okay)
  179.     {
  180.       if (search_string)
  181.         {
  182.           free (temp);
  183.           temp = savestring (search_string);
  184.         }
  185.       else
  186.         FAIL_SEARCH ();
  187.     }
  188.   search_func = substring_okay ? history_search : history_search_prefix;
  189.   while (1)
  190.     {
  191.       local_index = (*search_func) (temp, -1);
  192.       if (local_index < 0)
  193. FAIL_SEARCH ();
  194.       if (local_index == 0 || substring_okay)
  195. {
  196.   entry = current_history ();
  197.   history_offset = history_length;
  198.   /* If this was a substring search, then remember the
  199.      string that we matched for word substitution. */
  200.   if (substring_okay)
  201.     {
  202.       FREE (search_string);
  203.       search_string = temp;
  204.       FREE (search_match);
  205.       search_match = history_find_word (entry->line, local_index);
  206.     }
  207.   else
  208.     free (temp);
  209.   return (entry->line);
  210. }
  211.       if (history_offset)
  212. history_offset--;
  213.       else
  214. FAIL_SEARCH ();
  215.     }
  216. #undef FAIL_SEARCH
  217. #undef RETURN_ENTRY
  218. }
  219. /* Function for extracting single-quoted strings.  Used for inhibiting
  220.    history expansion within single quotes. */
  221. /* Extract the contents of STRING as if it is enclosed in single quotes.
  222.    SINDEX, when passed in, is the offset of the character immediately
  223.    following the opening single quote; on exit, SINDEX is left pointing
  224.    to the closing single quote. */
  225. static void
  226. hist_string_extract_single_quoted (string, sindex)
  227.      char *string;
  228.      int *sindex;
  229. {
  230.   register int i;
  231.   for (i = *sindex; string[i] && string[i] != '''; i++)
  232.     ;
  233.   *sindex = i;
  234. }
  235. static char *
  236. quote_breaks (s)
  237.      char *s;
  238. {
  239.   register char *p, *r;
  240.   char *ret;
  241.   int len = 3;
  242.   for (p = s; p && *p; p++, len++)
  243.     {
  244.       if (*p == ''')
  245. len += 3;
  246.       else if (whitespace (*p) || *p == 'n')
  247. len += 2;
  248.     }
  249.   r = ret = xmalloc (len);
  250.   *r++ = ''';
  251.   for (p = s; p && *p; )
  252.     {
  253.       if (*p == ''')
  254. {
  255.   *r++ = ''';
  256.   *r++ = '\';
  257.   *r++ = ''';
  258.   *r++ = ''';
  259.   p++;
  260. }
  261.       else if (whitespace (*p) || *p == 'n')
  262. {
  263.   *r++ = ''';
  264.   *r++ = *p++;
  265.   *r++ = ''';
  266. }
  267.       else
  268. *r++ = *p++;
  269.     }
  270.   *r++ = ''';
  271.   *r = '';
  272.   return ret;
  273. }
  274. static char *
  275. hist_error(s, start, current, errtype)
  276.       char *s;
  277.       int start, current, errtype;
  278. {
  279.   char *temp, *emsg;
  280.   int ll, elen;
  281.   ll = current - start;
  282.   switch (errtype)
  283.     {
  284.     case EVENT_NOT_FOUND:
  285.       emsg = "event not found";
  286.       elen = 15;
  287.       break;
  288.     case BAD_WORD_SPEC:
  289.       emsg = "bad word specifier";
  290.       elen = 18;
  291.       break;
  292.     case SUBST_FAILED:
  293.       emsg = "substitution failed";
  294.       elen = 19;
  295.       break;
  296.     case BAD_MODIFIER:
  297.       emsg = "unrecognized history modifier";
  298.       elen = 29;
  299.       break;
  300.     case NO_PREV_SUBST:
  301.       emsg = "no previous substitution";
  302.       elen = 24;
  303.       break;
  304.     default:
  305.       emsg = "unknown expansion error";
  306.       elen = 23;
  307.       break;
  308.     }
  309.   temp = xmalloc (ll + elen + 3);
  310.   strncpy (temp, s + start, ll);
  311.   temp[ll] = ':';
  312.   temp[ll + 1] = ' ';
  313.   strcpy (temp + ll + 2, emsg);
  314.   return (temp);
  315. }
  316. /* Get a history substitution string from STR starting at *IPTR
  317.    and return it.  The length is returned in LENPTR.
  318.    A backslash can quote the delimiter.  If the string is the
  319.    empty string, the previous pattern is used.  If there is
  320.    no previous pattern for the lhs, the last history search
  321.    string is used.
  322.    If IS_RHS is 1, we ignore empty strings and set the pattern
  323.    to "" anyway.  subst_lhs is not changed if the lhs is empty;
  324.    subst_rhs is allowed to be set to the empty string. */
  325. static char *
  326. get_subst_pattern (str, iptr, delimiter, is_rhs, lenptr)
  327.      char *str;
  328.      int *iptr, delimiter, is_rhs, *lenptr;
  329. {
  330.   register int si, i, j, k;
  331.   char *s = (char *) NULL;
  332.   i = *iptr;
  333.   for (si = i; str[si] && str[si] != delimiter; si++)
  334.     if (str[si] == '\' && str[si + 1] == delimiter)
  335.       si++;
  336.   if (si > i || is_rhs)
  337.     {
  338.       s = xmalloc (si - i + 1);
  339.       for (j = 0, k = i; k < si; j++, k++)
  340. {
  341.   /* Remove a backslash quoting the search string delimiter. */
  342.   if (str[k] == '\' && str[k + 1] == delimiter)
  343.     k++;
  344.   s[j] = str[k];
  345. }
  346.       s[j] = '';
  347.       if (lenptr)
  348. *lenptr = j;
  349.     }
  350.   i = si;
  351.   if (str[i])
  352.     i++;
  353.   *iptr = i;
  354.   return s;
  355. }
  356. static void
  357. postproc_subst_rhs ()
  358. {
  359.   char *new;
  360.   int i, j, new_size;
  361.   new = xmalloc (new_size = subst_rhs_len + subst_lhs_len);
  362.   for (i = j = 0; i < subst_rhs_len; i++)
  363.     {
  364.       if (subst_rhs[i] == '&')
  365. {
  366.   if (j + subst_lhs_len >= new_size)
  367.     new = xrealloc (new, (new_size = new_size * 2 + subst_lhs_len));
  368.   strcpy (new + j, subst_lhs);
  369.   j += subst_lhs_len;
  370. }
  371.       else
  372. {
  373.   /* a single backslash protects the `&' from lhs interpolation */
  374.   if (subst_rhs[i] == '\' && subst_rhs[i + 1] == '&')
  375.     i++;
  376.   if (j >= new_size)
  377.     new = xrealloc (new, new_size *= 2);
  378.   new[j++] = subst_rhs[i];
  379. }
  380.     }
  381.   new[j] = '';
  382.   free (subst_rhs);
  383.   subst_rhs = new;
  384.   subst_rhs_len = j;
  385. }
  386. /* Expand the bulk of a history specifier starting at STRING[START].
  387.    Returns 0 if everything is OK, -1 if an error occurred, and 1
  388.    if the `p' modifier was supplied and the caller should just print
  389.    the returned string.  Returns the new index into string in
  390.    *END_INDEX_PTR, and the expanded specifier in *RET_STRING. */
  391. static int
  392. history_expand_internal (string, start, end_index_ptr, ret_string, current_line)
  393.      char *string;
  394.      int start, *end_index_ptr;
  395.      char **ret_string;
  396.      char *current_line; /* for !# */
  397. {
  398.   int i, n, starting_index;
  399.   int substitute_globally, want_quotes, print_only;
  400.   char *event, *temp, *result, *tstr, *t, c, *word_spec;
  401.   int result_len;
  402.   result = xmalloc (result_len = 128);
  403.   i = start;
  404.   /* If it is followed by something that starts a word specifier,
  405.      then !! is implied as the event specifier. */
  406.   if (member (string[i + 1], ":$*%^"))
  407.     {
  408.       char fake_s[3];
  409.       int fake_i = 0;
  410.       i++;
  411.       fake_s[0] = fake_s[1] = history_expansion_char;
  412.       fake_s[2] = '';
  413.       event = get_history_event (fake_s, &fake_i, 0);
  414.     }
  415.   else if (string[i + 1] == '#')
  416.     {
  417.       i += 2;
  418.       event = current_line;
  419.     }
  420.   else
  421.     {
  422.       int quoted_search_delimiter = 0;
  423.       /* If the character before this `!' is a double or single
  424.  quote, then this expansion takes place inside of the
  425.  quoted string.  If we have to search for some text ("!foo"),
  426.  allow the delimiter to end the search string. */
  427.       if (i && (string[i - 1] == ''' || string[i - 1] == '"'))
  428. quoted_search_delimiter = string[i - 1];
  429.       event = get_history_event (string, &i, quoted_search_delimiter);
  430.     }
  431.   
  432.   if (event == 0)
  433.     {
  434.       *ret_string = hist_error (string, start, i, EVENT_NOT_FOUND);
  435.       free (result);
  436.       return (-1);
  437.     }
  438.   /* If a word specifier is found, then do what that requires. */
  439.   starting_index = i;
  440.   word_spec = get_history_word_specifier (string, event, &i);
  441.   /* There is no such thing as a `malformed word specifier'.  However,
  442.      it is possible for a specifier that has no match.  In that case,
  443.      we complain. */
  444.   if (word_spec == (char *)&error_pointer)
  445.     {
  446.       *ret_string = hist_error (string, starting_index, i, BAD_WORD_SPEC);
  447.       free (result);
  448.       return (-1);
  449.     }
  450.   /* If no word specifier, than the thing of interest was the event. */
  451.   temp = word_spec ? savestring (word_spec) : savestring (event);
  452.   FREE (word_spec);
  453.   /* Perhaps there are other modifiers involved.  Do what they say. */
  454.   want_quotes = substitute_globally = print_only = 0;
  455.   starting_index = i;
  456.   while (string[i] == ':')
  457.     {
  458.       c = string[i + 1];
  459.       if (c == 'g')
  460. {
  461.   substitute_globally = 1;
  462.   i++;
  463.   c = string[i + 1];
  464. }
  465.       switch (c)
  466. {
  467. default:
  468.   *ret_string = hist_error (string, i+1, i+2, BAD_MODIFIER);
  469.   free (result);
  470.   free (temp);
  471.   return -1;
  472. case 'q':
  473.   want_quotes = 'q';
  474.   break;
  475. case 'x':
  476.   want_quotes = 'x';
  477.   break;
  478.   /* :p means make this the last executed line.  So we
  479.      return an error state after adding this line to the
  480.      history. */
  481. case 'p':
  482.   print_only++;
  483.   break;
  484.   /* :t discards all but the last part of the pathname. */
  485. case 't':
  486.   tstr = strrchr (temp, '/');
  487.   if (tstr)
  488.     {
  489.       tstr++;
  490.       t = savestring (tstr);
  491.       free (temp);
  492.       temp = t;
  493.     }
  494.   break;
  495.   /* :h discards the last part of a pathname. */
  496. case 'h':
  497.   tstr = strrchr (temp, '/');
  498.   if (tstr)
  499.     *tstr = '';
  500.   break;
  501.   /* :r discards the suffix. */
  502. case 'r':
  503.   tstr = strrchr (temp, '.');
  504.   if (tstr)
  505.     *tstr = '';
  506.   break;
  507.   /* :e discards everything but the suffix. */
  508. case 'e':
  509.   tstr = strrchr (temp, '.');
  510.   if (tstr)
  511.     {
  512.       t = savestring (tstr);
  513.       free (temp);
  514.       temp = t;
  515.     }
  516.   break;
  517. /* :s/this/that substitutes `that' for the first
  518.    occurrence of `this'.  :gs/this/that substitutes `that'
  519.    for each occurrence of `this'.  :& repeats the last
  520.    substitution.  :g& repeats the last substitution
  521.    globally. */
  522. case '&':
  523. case 's':
  524.   {
  525.     char *new_event, *t;
  526.     int delimiter, failed, si, l_temp;
  527.     if (c == 's')
  528.       {
  529. if (i + 2 < (int)strlen (string))
  530.   delimiter = string[i + 2];
  531. else
  532.   break; /* no search delimiter */
  533. i += 3;
  534. t = get_subst_pattern (string, &i, delimiter, 0, &subst_lhs_len);
  535. /* An empty substitution lhs with no previous substitution
  536.    uses the last search string as the lhs. */
  537. if (t)
  538.   {
  539.     FREE (subst_lhs);
  540.     subst_lhs = t;
  541.   }
  542. else if (!subst_lhs)
  543.   {
  544.     if (search_string && *search_string)
  545.       {
  546. subst_lhs = savestring (search_string);
  547. subst_lhs_len = strlen (subst_lhs);
  548.       }
  549.     else
  550.       {
  551. subst_lhs = (char *) NULL;
  552. subst_lhs_len = 0;
  553.       }
  554.   }
  555. FREE (subst_rhs);
  556. subst_rhs = get_subst_pattern (string, &i, delimiter, 1, &subst_rhs_len);
  557. /* If `&' appears in the rhs, it's supposed to be replaced
  558.    with the lhs. */
  559. if (member ('&', subst_rhs))
  560.   postproc_subst_rhs ();
  561.       }
  562.     else
  563.       i += 2;
  564.     /* If there is no lhs, the substitution can't succeed. */
  565.     if (subst_lhs_len == 0)
  566.       {
  567. *ret_string = hist_error (string, starting_index, i, NO_PREV_SUBST);
  568. free (result);
  569. free (temp);
  570. return -1;
  571.       }
  572.     l_temp = strlen (temp);
  573.     /* Ignore impossible cases. */
  574.     if (subst_lhs_len > l_temp)
  575.       {
  576. *ret_string = hist_error (string, starting_index, i, SUBST_FAILED);
  577. free (result);
  578. free (temp);
  579. return (-1);
  580.       }
  581.     /* Find the first occurrence of THIS in TEMP. */
  582.     si = 0;
  583.     for (failed = 1; (si + subst_lhs_len) <= l_temp; si++)
  584.       if (STREQN (temp+si, subst_lhs, subst_lhs_len))
  585. {
  586.   int len = subst_rhs_len - subst_lhs_len + l_temp;
  587.   new_event = xmalloc (1 + len);
  588.   strncpy (new_event, temp, si);
  589.   strncpy (new_event + si, subst_rhs, subst_rhs_len);
  590.   strncpy (new_event + si + subst_rhs_len,
  591.    temp + si + subst_lhs_len,
  592.    l_temp - (si + subst_lhs_len));
  593.   new_event[len] = '';
  594.   free (temp);
  595.   temp = new_event;
  596.   failed = 0;
  597.   if (substitute_globally)
  598.     {
  599.       si += subst_rhs_len;
  600.       l_temp = strlen (temp);
  601.       substitute_globally++;
  602.       continue;
  603.     }
  604.   else
  605.     break;
  606. }
  607.     if (substitute_globally > 1)
  608.       {
  609. substitute_globally = 0;
  610. continue; /* don't want to increment i */
  611.       }
  612.     if (failed == 0)
  613.       continue; /* don't want to increment i */
  614.     *ret_string = hist_error (string, starting_index, i, SUBST_FAILED);
  615.     free (result);
  616.     free (temp);
  617.     return (-1);
  618.   }
  619. }
  620.       i += 2;
  621.     }
  622.   /* Done with modfiers. */
  623.   /* Believe it or not, we have to back the pointer up by one. */
  624.   --i;
  625.   if (want_quotes)
  626.     {
  627.       char *x;
  628.       if (want_quotes == 'q')
  629. x = single_quote (temp);
  630.       else if (want_quotes == 'x')
  631. x = quote_breaks (temp);
  632.       else
  633. x = savestring (temp);
  634.       free (temp);
  635.       temp = x;
  636.     }
  637.   n = strlen (temp);
  638.   if (n >= result_len)
  639.     result = xrealloc (result, n + 2);
  640.   strcpy (result, temp);
  641.   free (temp);
  642.   *end_index_ptr = i;
  643.   *ret_string = result;
  644.   return (print_only);
  645. }
  646. /* Expand the string STRING, placing the result into OUTPUT, a pointer
  647.    to a string.  Returns:
  648.   -1) If there was an error in expansion.
  649.    0) If no expansions took place (or, if the only change in
  650.       the text was the de-slashifying of the history expansion
  651.       character)
  652.    1) If expansions did take place
  653.    2) If the `p' modifier was given and the caller should print the result
  654.   If an error ocurred in expansion, then OUTPUT contains a descriptive
  655.   error message. */
  656. #define ADD_STRING(s) 
  657. do 
  658.   { 
  659.     int sl = strlen (s); 
  660.     j += sl; 
  661.     if (j >= result_len) 
  662.       { 
  663. while (j >= result_len) 
  664.   result_len += 128; 
  665. result = xrealloc (result, result_len); 
  666.       } 
  667.     strcpy (result + j - sl, s); 
  668.   } 
  669. while (0)
  670. #define ADD_CHAR(c) 
  671. do 
  672.   { 
  673.     if (j >= result_len - 1) 
  674.       result = xrealloc (result, result_len += 64); 
  675.     result[j++] = c; 
  676.     result[j] = ''; 
  677.   } 
  678. while (0)
  679. int
  680. history_expand (hstring, output)
  681.      char *hstring;
  682.      char **output;
  683. {
  684.   register int j;
  685.   int i, r, l, passc, cc, modified, eindex, only_printing;
  686.   char *string;
  687.   /* The output string, and its length. */
  688.   int result_len;
  689.   char *result;
  690.   /* Used when adding the string. */
  691.   char *temp;
  692.   /* Setting the history expansion character to 0 inhibits all
  693.      history expansion. */
  694.   if (history_expansion_char == 0)
  695.     {
  696.       *output = savestring (hstring);
  697.       return (0);
  698.     }
  699.     
  700.   /* Prepare the buffer for printing error messages. */
  701.   result = xmalloc (result_len = 256);
  702.   result[0] = '';
  703.   only_printing = modified = 0;
  704.   l = strlen (hstring);
  705.   /* Grovel the string.  Only backslash and single quotes can quote the
  706.      history escape character.  We also handle arg specifiers. */
  707.   /* Before we grovel forever, see if the history_expansion_char appears
  708.      anywhere within the text. */
  709.   /* The quick substitution character is a history expansion all right.  That
  710.      is to say, "^this^that^" is equivalent to "!!:s^this^that^", and in fact,
  711.      that is the substitution that we do. */
  712.   if (hstring[0] == history_subst_char)
  713.     {
  714.       string = xmalloc (l + 5);
  715.       string[0] = string[1] = history_expansion_char;
  716.       string[2] = ':';
  717.       string[3] = 's';
  718.       strcpy (string + 4, hstring);
  719.       l += 4;
  720.     }
  721.   else
  722.     {
  723.       string = hstring;
  724.       /* If not quick substitution, still maybe have to do expansion. */
  725.       /* `!' followed by one of the characters in history_no_expand_chars
  726.  is NOT an expansion. */
  727.       for (i = 0; string[i]; i++)
  728. {
  729.   cc = string[i + 1];
  730.   /* The history_comment_char, if set, appearing that the beginning
  731.      of a word signifies that the rest of the line should not have
  732.      history expansion performed on it.
  733.      Skip the rest of the line and break out of the loop. */
  734.   if (history_comment_char && string[i] == history_comment_char &&
  735.       (i == 0 || member (string[i - 1], HISTORY_WORD_DELIMITERS)))
  736.     {
  737.       while (string[i])
  738. i++;
  739.       break;
  740.     }
  741.   else if (string[i] == history_expansion_char)
  742.     {
  743.       if (!cc || member (cc, history_no_expand_chars))
  744. continue;
  745.       /* If the calling application has set
  746.  history_inhibit_expansion_function to a function that checks
  747.  for special cases that should not be history expanded,
  748.  call the function and skip the expansion if it returns a
  749.  non-zero value. */
  750.       else if (history_inhibit_expansion_function &&
  751. (*history_inhibit_expansion_function) (string, i))
  752. continue;
  753.       else
  754. break;
  755.     }
  756.   /* XXX - at some point, might want to extend this to handle
  757.    double quotes as well. */
  758.   else if (history_quotes_inhibit_expansion && string[i] == ''')
  759.     {
  760.       /* If this is bash, single quotes inhibit history expansion. */
  761.       i++;
  762.       hist_string_extract_single_quoted (string, &i);
  763.     }
  764.   else if (history_quotes_inhibit_expansion && string[i] == '\')
  765.     {
  766.       /* If this is bash, allow backslashes to quote single
  767.  quotes and the history expansion character. */
  768.       if (cc == ''' || cc == history_expansion_char)
  769. i++;
  770.     }
  771. }
  772.   
  773.       if (string[i] != history_expansion_char)
  774. {
  775.   free (result);
  776.   *output = savestring (string);
  777.   return (0);
  778. }
  779.     }
  780.   /* Extract and perform the substitution. */
  781.   for (passc = i = j = 0; i < l; i++)
  782.     {
  783.       int tchar = string[i];
  784.       if (passc)
  785. {
  786.   passc = 0;
  787.   ADD_CHAR (tchar);
  788.   continue;
  789. }
  790.       if (tchar == history_expansion_char)
  791. tchar = -3;
  792.       else if (tchar == history_comment_char)
  793. tchar = -2;
  794.       switch (tchar)
  795. {
  796. default:
  797.   ADD_CHAR (string[i]);
  798.   break;
  799. case '\':
  800.   passc++;
  801.   ADD_CHAR (tchar);
  802.   break;
  803. case ''':
  804.   {
  805.     /* If history_quotes_inhibit_expansion is set, single quotes
  806.        inhibit history expansion. */
  807.     if (history_quotes_inhibit_expansion)
  808.       {
  809. int quote, slen;
  810. quote = i++;
  811. hist_string_extract_single_quoted (string, &i);
  812. slen = i - quote + 2;
  813. temp = xmalloc (slen);
  814. strncpy (temp, string + quote, slen);
  815. temp[slen - 1] = '';
  816. ADD_STRING (temp);
  817. free (temp);
  818.       }
  819.     else
  820.       ADD_CHAR (string[i]);
  821.     break;
  822.   }
  823. case -2: /* history_comment_char */
  824.   if (i == 0 || member (string[i - 1], HISTORY_WORD_DELIMITERS))
  825.     {
  826.       temp = xmalloc (l - i + 1);
  827.       strcpy (temp, string + i);
  828.       ADD_STRING (temp);
  829.       free (temp);
  830.       i = l;
  831.     }
  832.   else
  833.     ADD_CHAR (string[i]);
  834.   break;
  835. case -3: /* history_expansion_char */
  836.   cc = string[i + 1];
  837.   /* If the history_expansion_char is followed by one of the
  838.      characters in history_no_expand_chars, then it is not a
  839.      candidate for expansion of any kind. */
  840.   if (member (cc, history_no_expand_chars))
  841.     {
  842.       ADD_CHAR (string[i]);
  843.       break;
  844.     }
  845. #if defined (NO_BANG_HASH_MODIFIERS)
  846.   /* There is something that is listed as a `word specifier' in csh
  847.      documentation which means `the expanded text to this point'.
  848.      That is not a word specifier, it is an event specifier.  If we
  849.      don't want to allow modifiers with `!#', just stick the current
  850.      output line in again. */
  851.   if (cc == '#')
  852.     {
  853.       if (result)
  854. {
  855.   temp = xmalloc (1 + strlen (result));
  856.   strcpy (temp, result);
  857.   ADD_STRING (temp);
  858.   free (temp);
  859. }
  860.       i++;
  861.       break;
  862.     }
  863. #endif
  864.   r = history_expand_internal (string, i, &eindex, &temp, result);
  865.   if (r < 0)
  866.     {
  867.       *output = temp;
  868.       free (result);
  869.       if (string != hstring)
  870. free (string);
  871.       return -1;
  872.     }
  873.   else
  874.     {
  875.       if (temp)
  876. {
  877.   modified++;
  878.   if (*temp)
  879.     ADD_STRING (temp);
  880.   free (temp);
  881. }
  882.       only_printing = r == 1;
  883.       i = eindex;
  884.     }
  885.   break;
  886. }
  887.     }
  888.   *output = result;
  889.   if (string != hstring)
  890.     free (string);
  891.   if (only_printing)
  892.     {
  893.       add_history (result);
  894.       return (2);
  895.     }
  896.   return (modified != 0);
  897. }
  898. /* Return a consed string which is the word specified in SPEC, and found
  899.    in FROM.  NULL is returned if there is no spec.  The address of
  900.    ERROR_POINTER is returned if the word specified cannot be found.
  901.    CALLER_INDEX is the offset in SPEC to start looking; it is updated
  902.    to point to just after the last character parsed. */
  903. static char *
  904. get_history_word_specifier (spec, from, caller_index)
  905.      char *spec, *from;
  906.      int *caller_index;
  907. {
  908.   register int i = *caller_index;
  909.   int first, last;
  910.   int expecting_word_spec = 0;
  911.   char *result;
  912.   /* The range of words to return doesn't exist yet. */
  913.   first = last = 0;
  914.   result = (char *)NULL;
  915.   /* If we found a colon, then this *must* be a word specification.  If
  916.      it isn't, then it is an error. */
  917.   if (spec[i] == ':')
  918.     {
  919.       i++;
  920.       expecting_word_spec++;
  921.     }
  922.   /* Handle special cases first. */
  923.   /* `%' is the word last searched for. */
  924.   if (spec[i] == '%')
  925.     {
  926.       *caller_index = i + 1;
  927.       return (search_match ? savestring (search_match) : savestring (""));
  928.     }
  929.   /* `*' matches all of the arguments, but not the command. */
  930.   if (spec[i] == '*')
  931.     {
  932.       *caller_index = i + 1;
  933.       result = history_arg_extract (1, '$', from);
  934.       return (result ? result : savestring (""));
  935.     }
  936.   /* `$' is last arg. */
  937.   if (spec[i] == '$')
  938.     {
  939.       *caller_index = i + 1;
  940.       return (history_arg_extract ('$', '$', from));
  941.     }
  942.   /* Try to get FIRST and LAST figured out. */
  943.   if (spec[i] == '-')
  944.     first = 0;
  945.   else if (spec[i] == '^')
  946.     first = 1;
  947.   else if (_rl_digit_p (spec[i]) && expecting_word_spec)
  948.     {
  949.       for (first = 0; _rl_digit_p (spec[i]); i++)
  950. first = (first * 10) + _rl_digit_value (spec[i]);
  951.     }
  952.   else
  953.     return ((char *)NULL); /* no valid `first' for word specifier */
  954.   if (spec[i] == '^' || spec[i] == '*')
  955.     {
  956.       last = (spec[i] == '^') ? 1 : '$'; /* x* abbreviates x-$ */
  957.       i++;
  958.     }
  959.   else if (spec[i] != '-')
  960.     last = first;
  961.   else
  962.     {
  963.       i++;
  964.       if (_rl_digit_p (spec[i]))
  965. {
  966.   for (last = 0; _rl_digit_p (spec[i]); i++)
  967.     last = (last * 10) + _rl_digit_value (spec[i]);
  968. }
  969.       else if (spec[i] == '$')
  970. {
  971.   i++;
  972.   last = '$';
  973. }
  974.       else if (!spec[i] || spec[i] == ':')  /* could be modifier separator */
  975. last = -1; /* x- abbreviates x-$ omitting word `$' */
  976.     }
  977.   *caller_index = i;
  978.   if (last >= first || last == '$' || last < 0)
  979.     result = history_arg_extract (first, last, from);
  980.   return (result ? result : (char *)&error_pointer);
  981. }
  982. /* Extract the args specified, starting at FIRST, and ending at LAST.
  983.    The args are taken from STRING.  If either FIRST or LAST is < 0,
  984.    then make that arg count from the right (subtract from the number of
  985.    tokens, so that FIRST = -1 means the next to last token on the line).
  986.    If LAST is `$' the last arg from STRING is used. */
  987. char *
  988. history_arg_extract (first, last, string)
  989.      int first, last;
  990.      char *string;
  991. {
  992.   register int i, len;
  993.   char *result;
  994.   int size, offset;
  995.   char **list;
  996.   /* XXX - think about making history_tokenize return a struct array,
  997.      each struct in array being a string and a length to avoid the
  998.      calls to strlen below. */
  999.   if ((list = history_tokenize (string)) == NULL)
  1000.     return ((char *)NULL);
  1001.   for (len = 0; list[len]; len++)
  1002.     ;
  1003.   if (last < 0)
  1004.     last = len + last - 1;
  1005.   if (first < 0)
  1006.     first = len + first - 1;
  1007.   if (last == '$')
  1008.     last = len - 1;
  1009.   if (first == '$')
  1010.     first = len - 1;
  1011.   last++;
  1012.   if (first >= len || last > len || first < 0 || last < 0 || first > last)
  1013.     result = ((char *)NULL);
  1014.   else
  1015.     {
  1016.       for (size = 0, i = first; i < last; i++)
  1017. size += strlen (list[i]) + 1;
  1018.       result = xmalloc (size + 1);
  1019.       result[0] = '';
  1020.       for (i = first, offset = 0; i < last; i++)
  1021. {
  1022.   strcpy (result + offset, list[i]);
  1023.   offset += strlen (list[i]);
  1024.   if (i + 1 < last)
  1025.     {
  1026.              result[offset++] = ' ';
  1027.       result[offset] = 0;
  1028.     }
  1029. }
  1030.     }
  1031.   for (i = 0; i < len; i++)
  1032.     free (list[i]);
  1033.   free (list);
  1034.   return (result);
  1035. }
  1036. #define slashify_in_quotes "\`"$"
  1037. /* Parse STRING into tokens and return an array of strings.  If WIND is
  1038.    not -1 and INDP is not null, we also want the word surrounding index
  1039.    WIND.  The position in the returned array of strings is returned in
  1040.    *INDP. */
  1041. static char **
  1042. history_tokenize_internal (string, wind, indp)
  1043.      char *string;
  1044.      int wind, *indp;
  1045. {
  1046.   char **result;
  1047.   register int i, start, result_index, size;
  1048.   int len, delimiter;
  1049.   /* Get a token, and stuff it into RESULT.  The tokens are split
  1050.      exactly where the shell would split them. */
  1051.   for (i = result_index = size = 0, result = (char **)NULL; string[i]; )
  1052.     {
  1053.       delimiter = 0;
  1054.       /* Skip leading whitespace. */
  1055.       for (; string[i] && whitespace (string[i]); i++)
  1056. ;
  1057.       if (string[i] == 0 || string[i] == history_comment_char)
  1058. return (result);
  1059.       start = i;
  1060.       
  1061.       if (member (string[i], "()n"))
  1062. {
  1063.   i++;
  1064.   goto got_token;
  1065. }
  1066.       if (member (string[i], "<>;&|$"))
  1067. {
  1068.   int peek = string[i + 1];
  1069.   if (peek == string[i] && peek != '$')
  1070.     {
  1071.       if (peek == '<' && string[i + 2] == '-')
  1072. i++;
  1073.       i += 2;
  1074.       goto got_token;
  1075.     }
  1076.   else
  1077.     {
  1078.       if ((peek == '&' && (string[i] == '>' || string[i] == '<')) ||
  1079.   ((peek == '>') && (string[i] == '&')) ||
  1080.   ((peek == '(') && (string[i] == '$')))
  1081. {
  1082.   i += 2;
  1083.   goto got_token;
  1084. }
  1085.     }
  1086.   if (string[i] != '$')
  1087.     {
  1088.       i++;
  1089.       goto got_token;
  1090.     }
  1091. }
  1092.       /* Get word from string + i; */
  1093.       if (member (string[i], HISTORY_QUOTE_CHARACTERS))
  1094. delimiter = string[i++];
  1095.       for (; string[i]; i++)
  1096. {
  1097.   if (string[i] == '\' && string[i + 1] == 'n')
  1098.     {
  1099.       i++;
  1100.       continue;
  1101.     }
  1102.   if (string[i] == '\' && delimiter != ''' &&
  1103.       (delimiter != '"' || member (string[i], slashify_in_quotes)))
  1104.     {
  1105.       i++;
  1106.       continue;
  1107.     }
  1108.   if (delimiter && string[i] == delimiter)
  1109.     {
  1110.       delimiter = 0;
  1111.       continue;
  1112.     }
  1113.   if (!delimiter && (member (string[i], HISTORY_WORD_DELIMITERS)))
  1114.     break;
  1115.   if (!delimiter && member (string[i], HISTORY_QUOTE_CHARACTERS))
  1116.     delimiter = string[i];
  1117. }
  1118.     got_token:
  1119.       /* If we are looking for the word in which the character at a
  1120.  particular index falls, remember it. */
  1121.       if (indp && wind != -1 && wind >= start && wind < i)
  1122.         *indp = result_index;
  1123.       len = i - start;
  1124.       if (result_index + 2 >= size)
  1125. result = (char **)xrealloc (result, ((size += 10) * sizeof (char *)));
  1126.       result[result_index] = xmalloc (1 + len);
  1127.       strncpy (result[result_index], string + start, len);
  1128.       result[result_index][len] = '';
  1129.       result[++result_index] = (char *)NULL;
  1130.     }
  1131.   return (result);
  1132. }
  1133. /* Return an array of tokens, much as the shell might.  The tokens are
  1134.    parsed out of STRING. */
  1135. char **
  1136. history_tokenize (string)
  1137.      char *string;
  1138. {
  1139.   return (history_tokenize_internal (string, -1, (int *)NULL));
  1140. }
  1141. /* Find and return the word which contains the character at index IND
  1142.    in the history line LINE.  Used to save the word matched by the
  1143.    last history !?string? search. */
  1144. static char *
  1145. history_find_word (line, ind)
  1146.      char *line;
  1147.      int ind;
  1148. {
  1149.   char **words, *s;
  1150.   int i, wind;
  1151.   words = history_tokenize_internal (line, ind, &wind);
  1152.   if (wind == -1)
  1153.     return ((char *)NULL);
  1154.   s = words[wind];
  1155.   for (i = 0; i < wind; i++)
  1156.     free (words[i]);
  1157.   for (i = wind + 1; words[i]; i++)
  1158.     free (words[i]);
  1159.   free (words);
  1160.   return s;
  1161. }