]>
git.saurik.com Git - bison.git/blob - src/vmsgetargs.c
   1 /* VMS version of getargs; Uses DCL command parsing. 
   2    Copyright 1989, 1992 Free Software Foundation, Inc. 
   4 This file is part of Bison, the GNU Compiler Compiler. 
   6 Bison is free software; you can redistribute it and/or modify 
   7 it under the terms of the GNU General Public License as published by 
   8 the Free Software Foundation; either version 2, or (at your option) 
  11 Bison is distributed in the hope that it will be useful, 
  12 but WITHOUT ANY WARRANTY; without even the implied warranty of 
  13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
  14 GNU General Public License for more details. 
  16 You should have received a copy of the GNU General Public License 
  17 along with Bison; see the file COPYING.  If not, write to 
  18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 
  19 Boston, MA 02111-1307, USA.  */ 
  27  *      VMS version of getargs: Uses DCL command parsing 
  28  *              (argc and argv are ignored) 
  34 extern int no_parser_flag
; 
  35 extern int token_table_flag
; 
  38 extern char * version_string
; 
  40 getargs (int argc
, char *argv
[]) 
  43   static char Input_File
[256]; 
  44   static char output_spec
[256], name_prefix_spec
[256], file_prefix_spec
[256]; 
  56    *    Check for /VERBOSE qualifier 
  58   if (cli_present("BISON$VERBOSE")) verbose_flag 
= 1; 
  60    *    Check for /DEFINES qualifier 
  62   if (cli_present("BISON$DEFINES")) defines_flag 
= 1; 
  64    *    Check for /FIXED_OUTFILES qualifier 
  66   if (cli_present("BISON$FIXED_OUTFILES")) yacc_flag 
= 1; 
  67   if (cli_present("BISON$YACC")) yacc_flag 
= 1; 
  69    *    Check for /VERSION qualifier 
  71   if (cli_present("BISON$VERSION")) printf("%s",version_string
); 
  73    *    Check for /NOLINES qualifier 
  75   if (cli_present("BISON$NOLINES")) no_lines_flag 
= 1; 
  77    *    Check for /NOPARSER qualifier 
  79   if (cli_present("BISON$NOPARSER")) no_parser_flag 
= 1; 
  81    *    Check for /RAW qualifier 
  83   if (cli_present("BISON$RAW")) raw_flag 
= 1; 
  85    *    Check for /TOKEN_TABLE qualifier 
  87   if (cli_present("BISON$TOKEN_TABLE")) token_table_flag 
= 1; 
  89    *    Check for /DEBUG qualifier 
  91   if (cli_present("BISON$DEBUG")) debug_flag 
= 1; 
  95   cli_get_value("BISON$INFILE", Input_File
, sizeof(Input_File
)); 
  97    *    Lowercaseify the input filename 
 102       if (isupper(*cp
)) *cp 
= tolower(*cp
); 
 107    *    Get the output file 
 109   if (cli_present("BISON$OUTPUT")) 
 111       cli_get_value("BISON$OUTPUT", output_spec
, sizeof(output_spec
)); 
 112       for (cp 
= spec_outfile 
= output_spec
; *cp
; cp
++) 
 117    *    Get the output file 
 119   if (cli_present("BISON$FILE_PREFIX")) 
 121       cli_get_value("BISON$FILE_PREFIX", file_prefix_spec
, 
 122                      sizeof(file_prefix_spec
)); 
 123       for (cp 
= spec_file_prefix 
= file_prefix_spec
; *cp
; cp
++) 
 128    *    Get the output file 
 130   if (cli_present("BISON$NAME_PREFIX")) 
 132       cli_get_value("BISON$NAME_PREFIX", name_prefix_spec
, 
 133                      sizeof(name_prefix_spec
)); 
 134       for (cp 
= spec_name_prefix 
= name_prefix_spec
; *cp
; cp
++) 
 140 /************           DCL PARSING ROUTINES            **********/ 
 143  *      See if "NAME" is present 
 146 cli_present (char *Name
) 
 148   struct {int Size
; char *Ptr
;} Descr
; 
 151   Descr
.Size 
= strlen(Name
); 
 152   return (cli$
present(&Descr
) & 1) ? 1 : 0; 
 156  *      Get value of "NAME" 
 159 cli_get_value (char *Name
, char *Buffer
, int Size
) 
 161   struct {int Size
; char *Ptr
;} Descr1
,Descr2
; 
 164   Descr1
.Size 
= strlen(Name
); 
 166   Descr2
.Size 
= Size
-1; 
 167   if (cli$
get_value(&Descr1
,&Descr2
,&Descr2
.Size
) & 1) { 
 168     Buffer
[Descr2
.Size
] = 0;