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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [gdb/] [mi/] [mi-getopt.c] - Diff between revs 834 and 842

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

Rev 834 Rev 842
/* MI Command Set - MI Option Parser.
/* MI Command Set - MI Option Parser.
   Copyright (C) 2000, 2001, 2007, 2008, 2009, 2010
   Copyright (C) 2000, 2001, 2007, 2008, 2009, 2010
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
   Contributed by Cygnus Solutions (a Red Hat company).
   Contributed by Cygnus Solutions (a Red Hat company).
 
 
   This file is part of GDB.
   This file is part of GDB.
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
#include "defs.h"
#include "defs.h"
#include "mi-getopt.h"
#include "mi-getopt.h"
#include "gdb_string.h"
#include "gdb_string.h"
 
 
int
int
mi_getopt (const char *prefix,
mi_getopt (const char *prefix,
           int argc, char **argv,
           int argc, char **argv,
           struct mi_opt *opts,
           struct mi_opt *opts,
           int *optind, char **optarg)
           int *optind, char **optarg)
{
{
  char *arg;
  char *arg;
  struct mi_opt *opt;
  struct mi_opt *opt;
  /* We assume that argv/argc are ok. */
  /* We assume that argv/argc are ok. */
  if (*optind > argc || *optind < 0)
  if (*optind > argc || *optind < 0)
    internal_error (__FILE__, __LINE__,
    internal_error (__FILE__, __LINE__,
                    _("mi_getopt_long: optind out of bounds"));
                    _("mi_getopt_long: optind out of bounds"));
  if (*optind == argc)
  if (*optind == argc)
    return -1;
    return -1;
  arg = argv[*optind];
  arg = argv[*optind];
  /* ``--''? */
  /* ``--''? */
  if (strcmp (arg, "--") == 0)
  if (strcmp (arg, "--") == 0)
    {
    {
      *optind += 1;
      *optind += 1;
      *optarg = NULL;
      *optarg = NULL;
      return -1;
      return -1;
    }
    }
  /* End of option list. */
  /* End of option list. */
  if (arg[0] != '-')
  if (arg[0] != '-')
    {
    {
      *optarg = NULL;
      *optarg = NULL;
      return -1;
      return -1;
    }
    }
  /* Look the option up. */
  /* Look the option up. */
  for (opt = opts; opt->name != NULL; opt++)
  for (opt = opts; opt->name != NULL; opt++)
    {
    {
      if (strcmp (opt->name, arg + 1) != 0)
      if (strcmp (opt->name, arg + 1) != 0)
        continue;
        continue;
      if (opt->arg_p)
      if (opt->arg_p)
        {
        {
          /* A non-simple optarg option. */
          /* A non-simple optarg option. */
          if (argc < *optind + 2)
          if (argc < *optind + 2)
            error (_("%s: Option %s requires an argument"), prefix, arg);
            error (_("%s: Option %s requires an argument"), prefix, arg);
          *optarg = argv[(*optind) + 1];
          *optarg = argv[(*optind) + 1];
          *optind = (*optind) + 2;
          *optind = (*optind) + 2;
          return opt->index;
          return opt->index;
        }
        }
      else
      else
        {
        {
          *optarg = NULL;
          *optarg = NULL;
          *optind = (*optind) + 1;
          *optind = (*optind) + 1;
          return opt->index;
          return opt->index;
        }
        }
    }
    }
  error (_("%s: Unknown option ``%s''"), prefix, arg + 1);
  error (_("%s: Unknown option ``%s''"), prefix, arg + 1);
}
}
 
 
int
int
mi_valid_noargs (const char *prefix, int argc, char **argv)
mi_valid_noargs (const char *prefix, int argc, char **argv)
{
{
  int optind = 0;
  int optind = 0;
  char *optarg;
  char *optarg;
  static struct mi_opt opts[] =
  static struct mi_opt opts[] =
  {
  {
    { 0, 0, 0 }
    { 0, 0, 0 }
  };
  };
 
 
  if (mi_getopt (prefix, argc, argv, opts, &optind, &optarg) == -1)
  if (mi_getopt (prefix, argc, argv, opts, &optind, &optarg) == -1)
    return 1;
    return 1;
  else
  else
    return 0;
    return 0;
}
}
 
 

powered by: WebSVN 2.1.0

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