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

MySQL数据库

开发平台:

Visual C++

  1. /* shell.c -- readline utility functions that are normally provided by
  2.       bash when readline is linked as part of the shell. */
  3. /* Copyright (C) 1997 Free Software Foundation, Inc.
  4.    This file is part of the GNU Readline Library, a library for
  5.    reading lines of text with interactive input and history editing.
  6.    The GNU Readline Library is free software; you can redistribute it
  7.    and/or modify it under the terms of the GNU General Public License
  8.    as published by the Free Software Foundation; either version 1, or
  9.    (at your option) any later version.
  10.    The GNU Readline Library is distributed in the hope that it will be
  11.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  12.    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.    GNU General Public License for more details.
  14.    The GNU General Public License is often shipped with GNU software, and
  15.    is generally kept in a file called COPYING or LICENSE.  If you do not
  16.    have a copy of the license, write to the Free Software Foundation,
  17.    675 Mass Ave, Cambridge, MA 02139, USA. */
  18. #define READLINE_LIBRARY
  19. #if defined (HAVE_CONFIG_H)
  20. #  include <config.h>
  21. #endif
  22. #include <sys/types.h>
  23. #if defined (HAVE_UNISTD_H)
  24. #  include <unistd.h>
  25. #endif /* HAVE_UNISTD_H */
  26. #if defined (HAVE_STDLIB_H)
  27. #  include <stdlib.h>
  28. #else
  29. #  include "ansi_stdlib.h"
  30. #endif /* HAVE_STDLIB_H */
  31. #if defined (HAVE_STDIO_H)
  32. #  include <stdio.h>
  33. #endif /* HAVE_STDIO_H */
  34. #if defined (HAVE_STRING_H)
  35. #  include <string.h>
  36. #else
  37. #  include <strings.h>
  38. #endif /* !HAVE_STRING_H */
  39. #include <pwd.h>
  40. #if !defined (HAVE_GETPW_DECLS)
  41. extern struct passwd *getpwuid ();
  42. #endif /* !HAVE_GETPW_DECLS */
  43. extern char *xmalloc ();
  44. /* All of these functions are resolved from bash if we are linking readline
  45.    as part of bash. */
  46. /* Does shell-like quoting using single quotes. */
  47. char *
  48. single_quote (string)
  49.      char *string;
  50. {
  51.   register int c;
  52.   char *result, *r, *s;
  53.   result = (char *)xmalloc (3 + (3 * strlen (string)));
  54.   r = result;
  55.   *r++ = ''';
  56.   for (s = string; s && (c = *s); s++)
  57.     {
  58.       *r++ = c;
  59.       if (c == ''')
  60. {
  61.   *r++ = '\'; /* insert escaped single quote */
  62.   *r++ = ''';
  63.   *r++ = '''; /* start new quoted string */
  64. }
  65.     }
  66.   *r++ = ''';
  67.   *r = '';
  68.   return (result);
  69. }
  70. /* Set the environment variables LINES and COLUMNS to lines and cols,
  71.    respectively. */
  72. void
  73. set_lines_and_columns (lines, cols)
  74.      int lines, cols;
  75. {
  76.   char *b;
  77. #if defined (HAVE_PUTENV)
  78.   b = xmalloc (24);
  79.   sprintf (b, "LINES=%d", lines);
  80.   putenv (b);
  81.   b = xmalloc (24);
  82.   sprintf (b, "COLUMNS=%d", cols);
  83.   putenv (b);
  84. #else /* !HAVE_PUTENV */
  85. #  if defined (HAVE_SETENV)
  86.   b = xmalloc (8);
  87.   sprintf (b, "%d", lines);
  88.   setenv ("LINES", b, 1);
  89.   b = xmalloc (8);
  90.   sprintf (b, "%d", cols);
  91.   setenv ("COLUMNS", b, 1);
  92. #  endif /* HAVE_SETENV */
  93. #endif /* !HAVE_PUTENV */
  94. }
  95. char *
  96. get_env_value (varname)
  97.      char *varname;
  98. {
  99.   return ((char *)getenv (varname));
  100. }
  101. char *
  102. get_home_dir ()
  103. {
  104.   char *home_dir;
  105.   struct passwd *entry;
  106.   home_dir = (char *)NULL;
  107.   entry = getpwuid (getuid ());
  108.   if (entry)
  109.     home_dir = entry->pw_dir;
  110.   return (home_dir);
  111. }