OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [VER_5_3/] [gdb-5.3/] [readline/] [examples/] [rl.c] - Diff between revs 1182 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 1182 Rev 1765
/*
/*
 * rl - command-line interface to read a line from the standard input
 * rl - command-line interface to read a line from the standard input
 *      (or another fd) using readline.
 *      (or another fd) using readline.
 *
 *
 * usage: rl [-p prompt] [-u unit] [-d default] [-n nchars]
 * usage: rl [-p prompt] [-u unit] [-d default] [-n nchars]
 */
 */
 
 
#if defined (HAVE_CONFIG_H)
#if defined (HAVE_CONFIG_H)
#  include <config.h>
#  include <config.h>
#endif
#endif
 
 
#include <stdio.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/types.h>
#include "posixstat.h"
#include "posixstat.h"
 
 
#if defined (READLINE_LIBRARY)
#if defined (READLINE_LIBRARY)
#  include "readline.h"
#  include "readline.h"
#  include "history.h"
#  include "history.h"
#else
#else
#  include <readline/readline.h>
#  include <readline/readline.h>
#  include <readline/history.h>
#  include <readline/history.h>
#endif
#endif
 
 
extern int optind;
extern int optind;
extern char *optarg;
extern char *optarg;
 
 
#if !defined (strchr) && !defined (__STDC__)
#if !defined (strchr) && !defined (__STDC__)
extern char *strrchr();
extern char *strrchr();
#endif
#endif
 
 
static char *progname;
static char *progname;
static char *deftext;
static char *deftext;
 
 
static int
static int
set_deftext ()
set_deftext ()
{
{
  if (deftext)
  if (deftext)
    {
    {
      rl_insert_text (deftext);
      rl_insert_text (deftext);
      deftext = (char *)NULL;
      deftext = (char *)NULL;
      rl_startup_hook = (Function *)NULL;
      rl_startup_hook = (Function *)NULL;
    }
    }
  return 0;
  return 0;
}
}
 
 
static void
static void
usage()
usage()
{
{
  fprintf (stderr, "%s: usage: %s [-p prompt] [-u unit] [-d default] [-n nchars]\n",
  fprintf (stderr, "%s: usage: %s [-p prompt] [-u unit] [-d default] [-n nchars]\n",
                progname, progname);
                progname, progname);
}
}
 
 
int
int
main (argc, argv)
main (argc, argv)
     int argc;
     int argc;
     char **argv;
     char **argv;
{
{
  char *temp, *prompt;
  char *temp, *prompt;
  struct stat sb;
  struct stat sb;
  int opt, fd, nch;
  int opt, fd, nch;
  FILE *ifp;
  FILE *ifp;
 
 
  progname = strrchr(argv[0], '/');
  progname = strrchr(argv[0], '/');
  if (progname == 0)
  if (progname == 0)
    progname = argv[0];
    progname = argv[0];
  else
  else
    progname++;
    progname++;
 
 
  /* defaults */
  /* defaults */
  prompt = "readline$ ";
  prompt = "readline$ ";
  fd = nch = 0;
  fd = nch = 0;
  deftext = (char *)0;
  deftext = (char *)0;
 
 
  while ((opt = getopt(argc, argv, "p:u:d:n:")) != EOF)
  while ((opt = getopt(argc, argv, "p:u:d:n:")) != EOF)
    {
    {
      switch (opt)
      switch (opt)
        {
        {
        case 'p':
        case 'p':
          prompt = optarg;
          prompt = optarg;
          break;
          break;
        case 'u':
        case 'u':
          fd = atoi(optarg);
          fd = atoi(optarg);
          if (fd < 0)
          if (fd < 0)
            {
            {
              fprintf (stderr, "%s: bad file descriptor `%s'\n", progname, optarg);
              fprintf (stderr, "%s: bad file descriptor `%s'\n", progname, optarg);
              exit (2);
              exit (2);
            }
            }
          break;
          break;
        case 'd':
        case 'd':
          deftext = optarg;
          deftext = optarg;
          break;
          break;
        case 'n':
        case 'n':
          nch = atoi(optarg);
          nch = atoi(optarg);
          if (nch < 0)
          if (nch < 0)
            {
            {
              fprintf (stderr, "%s: bad value for -n: `%s'\n", progname, optarg);
              fprintf (stderr, "%s: bad value for -n: `%s'\n", progname, optarg);
              exit (2);
              exit (2);
            }
            }
          break;
          break;
        default:
        default:
          usage ();
          usage ();
          exit (2);
          exit (2);
        }
        }
    }
    }
 
 
  if (fd != 0)
  if (fd != 0)
    {
    {
      if (fstat (fd, &sb) < 0)
      if (fstat (fd, &sb) < 0)
        {
        {
          fprintf (stderr, "%s: %d: bad file descriptor\n", progname, fd);
          fprintf (stderr, "%s: %d: bad file descriptor\n", progname, fd);
          exit (1);
          exit (1);
        }
        }
      ifp = fdopen (fd, "r");
      ifp = fdopen (fd, "r");
      rl_instream = ifp;
      rl_instream = ifp;
    }
    }
 
 
  if (deftext && *deftext)
  if (deftext && *deftext)
    rl_startup_hook = set_deftext;
    rl_startup_hook = set_deftext;
 
 
  if (nch > 0)
  if (nch > 0)
    rl_num_chars_to_read = nch;
    rl_num_chars_to_read = nch;
 
 
  temp = readline (prompt);
  temp = readline (prompt);
 
 
  /* Test for EOF. */
  /* Test for EOF. */
  if (temp == 0)
  if (temp == 0)
    exit (1);
    exit (1);
 
 
  puts (temp);
  puts (temp);
  exit (0);
  exit (0);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.