parse.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 353 行
C
353 行
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: Command line parsing for RC clone tool.
*
****************************************************************************/
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include "cmdline.h"
#include "cmdscan.h"
#include "context.h"
#include "error.h"
#include "file.h"
#include "memory.h"
#include "message.h"
#include "parse.h"
#include "pathconv.h"
#include "rc.h"
/*
* Initialize the OPT_STORAGE structure.
*/
void InitParse( OPT_STORAGE *cmdOpts )
/************************************/
{
OPT_INIT( cmdOpts );
}
/*
* Destroy the OPT_STORAGE structure.
*/
void FiniParse( OPT_STORAGE *cmdOpts )
/************************************/
{
OPT_FINI( cmdOpts );
}
/*
* Gripe about a command line error.
*/
static void cmd_line_error( void )
/********************************/
{
char * str;
GoToMarkContext();
str = CmdScanString();
Warning( "Ignoring invalid option '%s'", str );
}
/*
* Parse the command string contained in the current context.
*/
void CmdStringParse( OPT_STORAGE *cmdOpts, int *itemsParsed )
/***********************************************************/
{
int ch;
char * filename;
for( ;; ) {
/*** Find the start of the next item ***/
CmdScanWhitespace();
ch = GetCharContext();
if( ch == '\0' ) break;
MarkPosContext(); /* mark start of switch */
/*** Handle switches, command files, and input files ***/
if( ch == '-' || ch == '/' ) { /* switch */
for( ;; ) {
ch = GetCharContext();
if( isspace( ch ) || ch == '\0' ) {
break;
} else {
UngetCharContext();
}
if( OPT_PROCESS( cmdOpts ) != 0 ) {
cmd_line_error();
}
if( cmdOpts->gotlongoption ) {
cmdOpts->gotlongoption = 0;
break;
}
}
} else { /* input file */
UngetCharContext();
filename = CmdScanFileName();
AddFile( TYPE_DEFAULT_FILE, filename );
FreeMem( filename );
}
(*itemsParsed)++;
}
CloseContext();
}
/*
* Destroy an OPT_STRING.
*/
static void OPT_CLEAN_STRING( OPT_STRING **p )
/********************************************/
{
OPT_STRING * s;
while( *p != NULL ) {
s = *p;
*p = s->next;
FreeMem( s );
}
}
/*
* Add another string to an OPT_STRING.
*/
static void add_string( OPT_STRING **p, char *str )
/*************************************************/
{
OPT_STRING * buf;
OPT_STRING * curElem;
/*** Make a new list item ***/
buf = AllocMem( sizeof(OPT_STRING) + strlen(str) );
strcpy( buf->data, str );
buf->next = NULL;
/*** Put it at the end of the list ***/
if( *p == NULL ) {
*p = buf;
} else {
curElem = *p;
while( curElem->next != NULL ) curElem = curElem->next;
curElem->next = buf;
}
}
/*
* For the /optName option, read in a string and store the string into the
* given OPT_STRING. If onlyOne is non-zero, any previous string in p will
* be deleted.
*/
static int do_string_parse( OPT_STRING **p, char *optName, int onlyOne )
/**********************************************************************/
{
char * str;
CmdScanWhitespace();
str = CmdScanString();
if( str == NULL ) {
FatalError( "/%s requires an argument", optName );
return( 0 );
}
if( onlyOne ) OPT_CLEAN_STRING( p );
add_string( p, str );
return( 1 );
}
/*
* Parse the /c option.
*/
static int parse_c( OPT_STRING **p )
/**********************************/
{
return( do_string_parse( p, "c", 1 ) );
}
/*
* Parse the /d option.
*/
static int parse_d( OPT_STRING **p )
/**********************************/
{
return( do_string_parse( p, "d", 0 ) );
}
/*
* Parse the /fo option.
*/
static int parse_fo( OPT_STRING **p )
/***********************************/
{
int retcode;
char * newstr;
retcode = do_string_parse( p, "fo", 1 );
if( retcode ) {
newstr = PathConvert( (*p)->data, '"' );
OPT_CLEAN_STRING( p );
add_string( p, newstr );
}
return( retcode );
}
/*
* Parse the /i option.
*/
static int parse_i( OPT_STRING **p )
/**********************************/
{
return( do_string_parse( p, "i", 0 ) );
}
/*
* Parse the /l option.
*/
static int parse_l( OPT_STRING **p )
/**********************************/
{
return( do_string_parse( p, "l", 1 ) );
}
/*
* Parse the /passwopts option.
*/
static int parse_passwopts( OPT_STRING **p )
{
char *str;
char *src;
char *dst;
if (!CmdScanRecogChar(':'))
{
FatalError("/passwopts:{argument} requires an argument");
return 0;
}
str = CmdScanString();
if (str == NULL)
{
FatalError("/passwopts requires an argument");
return 0;
}
/*
* If quoted, stip out the quote characters.
*/
if (*str == '\"')
{
for (dst = str, src = str + 1; *src && (*src != '\"'); )
{
*dst++ = *src++;
}
if (*src != '\"')
{
FatalError("/passwopts argument is missing closing quote");
return 0;
}
*dst = 0x00;
}
add_string( p, str );
return( 1 );
} /* parse_passwopts() */
/*
* Signal that an option longer than one character was parsed. This info
* is used for chaining of options.
*/
static void handle_long_option( OPT_STORAGE *cmdOpts, int x )
/***********************************************************/
{
x = x;
cmdOpts->gotlongoption = 1;
}
/*
* Suppress warning messages.
*/
static void handle_nowwarn( OPT_STORAGE *cmdOpts, int x )
/*******************************************************/
{
x = x;
cmdOpts = cmdOpts;
DisableWarnings( 1 );
}
/*
* Return the next character (forced to lowercase since RC's options are
* not case-sensitive) and advance to the next one.
*/
static int OPT_GET_LOWER( void )
/******************************/
{
return( tolower( GetCharContext() ) );
}
/*
* If the next character is ch (in either uppercase or lowercase form), it
* is consumed and a non-zero value is returned; otherwise, it is not
* consumed and zero is returned.
*/
static int OPT_RECOG_LOWER( int ch )
/**********************************/
{
return( CmdScanRecogChar( ch ) );
}
/*
* Back up one character.
*/
static void OPT_UNGET( void )
/***************************/
{
UngetCharContext();
}
/* Include after all static functions were declared */
#include "optparsc.gh"
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?