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

MySQL数据库

开发平台:

Visual C++

  1. /* signals.c -- signal handling support for readline. */
  2. /* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
  3.    This file is part of the GNU Readline Library, a library for
  4.    reading lines of text with interactive input and history editing.
  5.    The GNU Readline Library is free software; you can redistribute it
  6.    and/or modify it under the terms of the GNU General Public License
  7.    as published by the Free Software Foundation; either version 1, or
  8.    (at your option) any later version.
  9.    The GNU Readline Library is distributed in the hope that it will be
  10.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  11.    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU 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> /* Just for NULL.  Yuck. */
  22. #include <sys/types.h>
  23. #include <signal.h>
  24. #if defined (HAVE_UNISTD_H)
  25. #  include <unistd.h>
  26. #endif /* HAVE_UNISTD_H */
  27. /* System-specific feature definitions and include files. */
  28. #include "rldefs.h"
  29. #if defined (GWINSZ_IN_SYS_IOCTL)
  30. #  include <sys/ioctl.h>
  31. #endif /* GWINSZ_IN_SYS_IOCTL */
  32. #if defined (__GO32__)
  33. #  undef HANDLE_SIGNALS
  34. #endif /* __GO32__ */
  35. #if defined (HANDLE_SIGNALS)
  36. /* Some standard library routines. */
  37. #include "readline.h"
  38. #include "history.h"
  39. #if !defined (RETSIGTYPE)
  40. #  if defined (VOID_SIGHANDLER)
  41. #    define RETSIGTYPE void
  42. #  else
  43. #    define RETSIGTYPE int
  44. #  endif /* !VOID_SIGHANDLER */
  45. #endif /* !RETSIGTYPE */
  46. #if defined (VOID_SIGHANDLER)
  47. #  define SIGHANDLER_RETURN return
  48. #else
  49. #  define SIGHANDLER_RETURN return (0)
  50. #endif
  51. /* This typedef is equivalant to the one for Function; it allows us
  52.    to say SigHandler *foo = signal (SIGKILL, SIG_IGN); */
  53. typedef RETSIGTYPE SigHandler ();
  54. extern int readline_echoing_p;
  55. extern int rl_pending_input;
  56. extern int _rl_meta_flag;
  57. extern void free_undo_list ();
  58. extern void _rl_get_screen_size ();
  59. extern void _rl_redisplay_after_sigwinch ();
  60. extern void _rl_clean_up_for_exit ();
  61. extern void _rl_kill_kbd_macro ();
  62. extern void _rl_init_argument ();
  63. extern void rl_deprep_terminal (), rl_prep_terminal ();
  64. static SigHandler *rl_set_sighandler ();
  65. /* Exported variables for use by applications. */
  66. /* If non-zero, readline will install its own signal handlers for
  67.    SIGINT, SIGTERM, SIGQUIT, SIGALRM, SIGTSTP, SIGTTIN, and SIGTTOU. */
  68. int rl_catch_signals = 1;
  69. /* If non-zero, readline will install a signal handler for SIGWINCH. */
  70. #ifdef SIGWINCH
  71. int rl_catch_sigwinch = 1;
  72. #endif
  73. static int signals_set_flag;
  74. static int sigwinch_set_flag;
  75. /* **************************************************************** */
  76. /*              */
  77. /*    Signal Handling                          */
  78. /*     */
  79. /* **************************************************************** */
  80. #if defined (HAVE_POSIX_SIGNALS)
  81. typedef struct sigaction sighandler_cxt;
  82. #  define rl_sigaction(s, nh, oh) sigaction(s, nh, oh)
  83. #else
  84. typedef struct { SigHandler *sa_handler; int sa_mask, sa_flags; } sighandler_cxt;
  85. #  define sigemptyset(m)
  86. #endif /* !HAVE_POSIX_SIGNALS */
  87. static sighandler_cxt old_int, old_term, old_alrm, old_quit;
  88. #if defined (SIGTSTP)
  89. static sighandler_cxt old_tstp, old_ttou, old_ttin;
  90. #endif
  91. #if defined (SIGWINCH)
  92. static sighandler_cxt old_winch;
  93. #endif
  94. /* Readline signal handler functions. */
  95. static RETSIGTYPE
  96. rl_signal_handler (sig)
  97.      int sig;
  98. {
  99. #if defined (HAVE_POSIX_SIGNALS)
  100.   sigset_t set;
  101. #else /* !HAVE_POSIX_SIGNALS */
  102. #  if defined (HAVE_BSD_SIGNALS)
  103.   long omask;
  104. #  else /* !HAVE_BSD_SIGNALS */
  105.   sighandler_cxt dummy_cxt; /* needed for rl_set_sighandler call */
  106. #  endif /* !HAVE_BSD_SIGNALS */
  107. #endif /* !HAVE_POSIX_SIGNALS */
  108. #if !defined (HAVE_BSD_SIGNALS) && !defined (HAVE_POSIX_SIGNALS)
  109.   /* Since the signal will not be blocked while we are in the signal
  110.      handler, ignore it until rl_clear_signals resets the catcher. */
  111.   if (sig == SIGINT || sig == SIGALRM)
  112.     rl_set_sighandler (sig, SIG_IGN, &dummy_cxt);
  113. #endif /* !HAVE_BSD_SIGNALS && !HAVE_POSIX_SIGNALS */
  114.   switch (sig)
  115.     {
  116.     case SIGINT:
  117.       rl_free_line_state ();
  118.       /* FALLTHROUGH */
  119. #if defined (SIGTSTP)
  120.     case SIGTSTP:
  121.     case SIGTTOU:
  122.     case SIGTTIN:
  123. #endif /* SIGTSTP */
  124.     case SIGALRM:
  125.     case SIGTERM:
  126.     case SIGQUIT:
  127.       rl_cleanup_after_signal ();
  128. #if defined (HAVE_POSIX_SIGNALS)
  129.       sigprocmask (SIG_BLOCK, (sigset_t *)NULL, &set);
  130.       sigdelset (&set, sig);
  131. #else /* !HAVE_POSIX_SIGNALS */
  132. #  if defined (HAVE_BSD_SIGNALS)
  133.       omask = sigblock (0);
  134. #  endif /* HAVE_BSD_SIGNALS */
  135. #endif /* !HAVE_POSIX_SIGNALS */
  136.       kill (getpid (), sig);
  137.       /* Let the signal that we just sent through.  */
  138. #if defined (HAVE_POSIX_SIGNALS)
  139.       sigprocmask (SIG_SETMASK, &set, (sigset_t *)NULL);
  140. #else /* !HAVE_POSIX_SIGNALS */
  141. #  if defined (HAVE_BSD_SIGNALS)
  142.       sigsetmask (omask & ~(sigmask (sig)));
  143. #  endif /* HAVE_BSD_SIGNALS */
  144. #endif /* !HAVE_POSIX_SIGNALS */
  145.       rl_reset_after_signal ();
  146.     }
  147.   SIGHANDLER_RETURN;
  148. }
  149. #if defined (SIGWINCH)
  150. static RETSIGTYPE
  151. rl_sigwinch_handler (sig)
  152.      int sig;
  153. {
  154.   SigHandler *oh;
  155. #if defined (MUST_REINSTALL_SIGHANDLERS)
  156.   sighandler_cxt dummy_winch;
  157.   /* We don't want to change old_winch -- it holds the state of SIGWINCH
  158.      disposition set by the calling application.  We need this state
  159.      because we call the application's SIGWINCH handler after updating
  160.      our own idea of the screen size. */
  161.   rl_set_sighandler (SIGWINCH, rl_sigwinch_handler, &dummy_winch);
  162. #endif
  163.   rl_resize_terminal ();
  164.   /* If another sigwinch handler has been installed, call it. */
  165.   oh = (SigHandler *)old_winch.sa_handler;
  166.   if (oh &&  oh != (SigHandler *)SIG_IGN && oh != (SigHandler *)SIG_DFL)
  167.     (*oh) (sig);
  168.   SIGHANDLER_RETURN;
  169. }
  170. #endif  /* SIGWINCH */
  171. /* Functions to manage signal handling. */
  172. #if !defined (HAVE_POSIX_SIGNALS)
  173. static int
  174. rl_sigaction (sig, nh, oh)
  175.      int sig;
  176.      sighandler_cxt *nh, *oh;
  177. {
  178.   oh->sa_handler = signal (sig, nh->sa_handler);
  179.   return 0;
  180. }
  181. #endif /* !HAVE_POSIX_SIGNALS */
  182. /* Set up a readline-specific signal handler, saving the old signal
  183.    information in OHANDLER.  Return the old signal handler, like
  184.    signal(). */
  185. static SigHandler *
  186. rl_set_sighandler (sig, handler, ohandler)
  187.      int sig;
  188.      SigHandler *handler;
  189.      sighandler_cxt *ohandler;
  190. {
  191. #if defined (HAVE_POSIX_SIGNALS)
  192.   struct sigaction act;
  193.   act.sa_handler = handler;
  194.   act.sa_flags = 0;
  195.   sigemptyset (&act.sa_mask);
  196.   sigemptyset (&ohandler->sa_mask);
  197.   sigaction (sig, &act, ohandler);
  198. #else
  199.   ohandler->sa_handler = (SigHandler *)signal (sig, handler);
  200. #endif /* !HAVE_POSIX_SIGNALS */
  201.   return (ohandler->sa_handler);
  202. }
  203. static void
  204. rl_maybe_set_sighandler (sig, handler, ohandler)
  205.      int sig;
  206.      SigHandler *handler;
  207.      sighandler_cxt *ohandler;
  208. {
  209.   sighandler_cxt dummy;
  210.   SigHandler *oh;
  211.   sigemptyset (&dummy.sa_mask);
  212.   oh = rl_set_sighandler (sig, handler, ohandler);
  213.   if (oh == (SigHandler *)SIG_IGN)
  214.     rl_sigaction (sig, ohandler, &dummy);
  215. }
  216. int
  217. rl_set_signals ()
  218. {
  219.   sighandler_cxt dummy;
  220.   SigHandler *oh;
  221.   if (rl_catch_signals && signals_set_flag == 0)
  222.     {
  223.       rl_maybe_set_sighandler (SIGINT, rl_signal_handler, &old_int);
  224.       rl_maybe_set_sighandler (SIGTERM, rl_signal_handler, &old_term);
  225.       rl_maybe_set_sighandler (SIGQUIT, rl_signal_handler, &old_quit);
  226.       oh = rl_set_sighandler (SIGALRM, rl_signal_handler, &old_alrm);
  227.       if (oh == (SigHandler *)SIG_IGN)
  228. rl_sigaction (SIGALRM, &old_alrm, &dummy);
  229. #if defined (HAVE_POSIX_SIGNALS) && defined (SA_RESTART)
  230.       /* If the application using readline has already installed a signal
  231.  handler with SA_RESTART, SIGALRM will cause reads to be restarted
  232.  automatically, so readline should just get out of the way.  Since
  233.  we tested for SIG_IGN above, we can just test for SIG_DFL here. */
  234.       if (oh != (SigHandler *)SIG_DFL && (old_alrm.sa_flags & SA_RESTART))
  235. rl_sigaction (SIGALRM, &old_alrm, &dummy);
  236. #endif /* HAVE_POSIX_SIGNALS */
  237. #if defined (SIGTSTP)
  238.       rl_maybe_set_sighandler (SIGTSTP, rl_signal_handler, &old_tstp);
  239. #endif /* SIGTSTP */
  240. #if defined (SIGTTOU)
  241.       rl_maybe_set_sighandler (SIGTTOU, rl_signal_handler, &old_ttou);
  242. #endif /* SIGTTOU */
  243. #if defined (SIGTTIN)
  244.       rl_maybe_set_sighandler (SIGTTIN, rl_signal_handler, &old_ttin);
  245. #endif /* SIGTTIN */
  246.       signals_set_flag = 1;
  247.     }
  248. #if defined (SIGWINCH)
  249.   if (rl_catch_sigwinch && sigwinch_set_flag == 0)
  250.     {
  251.       rl_maybe_set_sighandler (SIGWINCH, rl_sigwinch_handler, &old_winch);
  252.       sigwinch_set_flag = 1;
  253.     }
  254. #endif /* SIGWINCH */
  255.   return 0;
  256. }
  257. int
  258. rl_clear_signals ()
  259. {
  260.   sighandler_cxt dummy;
  261.   if (rl_catch_signals && signals_set_flag == 1)
  262.     {
  263.       sigemptyset (&dummy.sa_mask);
  264.       rl_sigaction (SIGINT, &old_int, &dummy);
  265.       rl_sigaction (SIGTERM, &old_term, &dummy);
  266.       rl_sigaction (SIGQUIT, &old_quit, &dummy);
  267.       rl_sigaction (SIGALRM, &old_alrm, &dummy);
  268. #if defined (SIGTSTP)
  269.       rl_sigaction (SIGTSTP, &old_tstp, &dummy);
  270. #endif /* SIGTSTP */
  271. #if defined (SIGTTOU)
  272.       rl_sigaction (SIGTTOU, &old_ttou, &dummy);
  273. #endif /* SIGTTOU */
  274. #if defined (SIGTTIN)
  275.       rl_sigaction (SIGTTIN, &old_ttin, &dummy);
  276. #endif /* SIGTTIN */
  277.       signals_set_flag = 0;
  278.     }
  279. #if defined (SIGWINCH)
  280.   if (rl_catch_sigwinch && sigwinch_set_flag == 1)
  281.     {
  282.       sigemptyset (&dummy.sa_mask);
  283.       rl_sigaction (SIGWINCH, &old_winch, &dummy);
  284.       sigwinch_set_flag = 0;
  285.     }
  286. #endif
  287.   return 0;
  288. }
  289. /* Clean up the terminal and readline state after catching a signal, before
  290.    resending it to the calling application. */
  291. void
  292. rl_cleanup_after_signal ()
  293. {
  294.   _rl_clean_up_for_exit ();
  295.   (*rl_deprep_term_function) ();
  296.   rl_clear_signals ();
  297.   rl_pending_input = 0;
  298. }
  299. /* Reset the terminal and readline state after a signal handler returns. */
  300. void
  301. rl_reset_after_signal ()
  302. {
  303.   (*rl_prep_term_function) (_rl_meta_flag);
  304.   rl_set_signals ();
  305. }
  306. /* Free up the readline variable line state for the current line (undo list,
  307.    any partial history entry, any keyboard macros in progress, and any
  308.    numeric arguments in process) after catching a signal, before calling
  309.    rl_cleanup_after_signal(). */ 
  310. void
  311. rl_free_line_state ()
  312. {
  313.   register HIST_ENTRY *entry;
  314.   free_undo_list ();
  315.   entry = current_history ();
  316.   if (entry)
  317.     entry->data = (char *)NULL;
  318.   _rl_kill_kbd_macro ();
  319.   rl_clear_message ();
  320.   _rl_init_argument ();
  321. }
  322. #endif  /* HANDLE_SIGNALS */