2012-04-04 07:30:07 +04:00
|
|
|
/******************************************************************************
|
|
|
|
Copyright (c) 1993 - 2011 Daniel Stenberg
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
2018-12-09 03:40:58 +03:00
|
|
|
|
2012-04-04 07:30:07 +04:00
|
|
|
#include "cppdef.h"
|
|
|
|
#include "cpp.h"
|
|
|
|
|
|
|
|
#if defined(AMIGA)
|
2018-12-09 03:40:58 +03:00
|
|
|
#include <dos.h>
|
2012-04-04 07:30:07 +04:00
|
|
|
#if defined(SHARED)
|
|
|
|
int _OSERR=0;
|
|
|
|
char *_ProgramName="junk";
|
|
|
|
void __stdargs _XCEXIT(long a) { return; }
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2018-04-25 06:07:38 +03:00
|
|
|
FILE_LOCAL ReturnCode fpp_output(struct Global *, int); /* Output one character */
|
|
|
|
FILE_LOCAL void fpp_sharp(struct Global *);
|
|
|
|
INLINE FILE_LOCAL ReturnCode fpp_cppmain(struct Global *);
|
2012-04-04 07:30:07 +04:00
|
|
|
|
|
|
|
int fppPreProcess(struct fppTag *tags)
|
|
|
|
{
|
2013-03-21 08:44:17 +04:00
|
|
|
size_t i=0;
|
2012-04-04 07:30:07 +04:00
|
|
|
ReturnCode ret; /* cpp return code */
|
2018-01-13 21:08:03 +03:00
|
|
|
int retVal; /* fppPreProcess return code */
|
2012-04-04 07:30:07 +04:00
|
|
|
struct Global *global;
|
|
|
|
|
|
|
|
global=(struct Global *)malloc(sizeof(struct Global));
|
|
|
|
if(!global)
|
|
|
|
return(FPP_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
memset(global, 0, sizeof(struct Global));
|
|
|
|
|
|
|
|
global->infile=NULL;
|
|
|
|
global->line=0;
|
|
|
|
global->wrongline=0;
|
|
|
|
global->errors=0;
|
|
|
|
global->recursion=0;
|
2018-04-25 06:07:38 +03:00
|
|
|
global->rec_recover=FPP_TRUE;
|
|
|
|
global->instring=FPP_FALSE;
|
|
|
|
global->inmacro=FPP_FALSE;
|
2012-04-04 07:30:07 +04:00
|
|
|
global->workp=NULL;
|
2018-04-25 06:07:38 +03:00
|
|
|
global->keepcomments = FPP_FALSE; /* Write out comments flag */
|
|
|
|
global->cflag = FPP_FALSE; /* -C option (keep comments) */
|
|
|
|
global->eflag = FPP_FALSE; /* -E option (never fail) */
|
2012-04-04 07:30:07 +04:00
|
|
|
global->nflag = 0; /* -N option (no predefines) */
|
2018-04-25 06:07:38 +03:00
|
|
|
global->wflag = FPP_FALSE; /* -W option (write #defines) */
|
2012-04-04 07:30:07 +04:00
|
|
|
|
2018-04-25 06:07:38 +03:00
|
|
|
global->ifstack[0]=FPP_TRUE; /* #if information */
|
2012-04-04 07:30:07 +04:00
|
|
|
global->ifptr = global->ifstack;
|
|
|
|
global->incend = global->incdir;
|
|
|
|
|
|
|
|
/* names defined at cpp start */
|
|
|
|
global->preset[0]="frexxcpp"; /* This is the Frexx cpp program */
|
|
|
|
#if defined( amiga )
|
|
|
|
global->preset[1]="amiga";
|
|
|
|
global->preset[2]="m68000";
|
|
|
|
global->preset[3]="amigados";
|
|
|
|
global->preset[4]= NULL; /* Must be last */
|
|
|
|
#elif defined( unix )
|
|
|
|
global->preset[1]="unix";
|
|
|
|
global->preset[2]= NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Note: order is important */
|
|
|
|
global->magic[0] = "__LINE__";
|
|
|
|
global->magic[1] = "__FILE__";
|
|
|
|
global->magic[2] = "__FUNCTION__";
|
|
|
|
global->magic[3] = "__FUNC_LINE__";
|
|
|
|
global->magic[4] = NULL; /* Must be last */
|
|
|
|
|
|
|
|
global->funcline = 0;
|
|
|
|
|
|
|
|
global->cplusplus=1;
|
|
|
|
global->sharpfilename=NULL;
|
|
|
|
|
|
|
|
global->parmp=NULL;
|
|
|
|
global->nargs=0;
|
|
|
|
|
|
|
|
global->macro=NULL;
|
|
|
|
global->evalue=0;
|
|
|
|
|
2012-06-27 07:55:33 +04:00
|
|
|
global->depends=NULL;
|
2012-04-04 07:30:07 +04:00
|
|
|
global->input=NULL;
|
|
|
|
global->output=NULL;
|
|
|
|
global->error=NULL;
|
|
|
|
global->first_file=NULL;
|
|
|
|
global->userdata=NULL;
|
|
|
|
|
2018-04-25 06:07:38 +03:00
|
|
|
global->linelines=FPP_TRUE;
|
|
|
|
global->warnillegalcpp = FPP_FALSE;
|
|
|
|
global->outputLINE = FPP_TRUE;
|
|
|
|
global->warnnoinclude = FPP_TRUE;
|
|
|
|
global->showversion = FPP_TRUE;
|
|
|
|
global->showincluded = FPP_FALSE;
|
|
|
|
global->showspace = FPP_FALSE;
|
|
|
|
global->nestcomments = FPP_FALSE;
|
|
|
|
global->warnnestcomments = FPP_FALSE;
|
|
|
|
global->outputfile = FPP_TRUE;
|
2012-04-04 07:30:07 +04:00
|
|
|
global->included = 0;
|
|
|
|
|
2018-04-25 06:07:38 +03:00
|
|
|
global->comment = FPP_FALSE;
|
|
|
|
global->rightconcat = FPP_FALSE;
|
2012-04-04 07:30:07 +04:00
|
|
|
global->work[0] = '\0';
|
|
|
|
global->initialfunc = NULL;
|
2018-04-25 06:07:38 +03:00
|
|
|
global->allowincludelocal = FPP_TRUE;
|
2012-04-04 07:30:07 +04:00
|
|
|
|
|
|
|
memset(global->symtab, 0, SBSIZE * sizeof(DEFBUF *));
|
|
|
|
|
2018-04-25 06:07:38 +03:00
|
|
|
ret=fpp_initdefines(global); /* O.S. specific def's */
|
2012-04-04 07:30:07 +04:00
|
|
|
if(ret)
|
|
|
|
return(ret);
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_dooptions(global, tags); /* Command line -flags */
|
|
|
|
ret=fpp_addfile(global, stdin, global->work); /* "open" main input file */
|
2012-04-04 07:30:07 +04:00
|
|
|
|
|
|
|
global->out = global->outputfile;
|
|
|
|
|
|
|
|
if(!ret)
|
2018-04-25 06:07:38 +03:00
|
|
|
ret=fpp_cppmain(global); /* Process main file */
|
2012-04-04 07:30:07 +04:00
|
|
|
if ((i = (global->ifptr - global->ifstack)) != 0) {
|
|
|
|
#if OLD_PREPROCESSOR
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_cwarn(global, ERROR_IFDEF_DEPTH, i);
|
2012-04-04 07:30:07 +04:00
|
|
|
#else
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_cerror(global, ERROR_IFDEF_DEPTH, i);
|
2012-04-04 07:30:07 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
fflush(stdout);
|
2015-06-28 19:48:35 +03:00
|
|
|
// BK - fclose(stdout);
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_delalldefines(global);
|
2012-04-04 07:30:07 +04:00
|
|
|
|
2018-01-13 21:08:03 +03:00
|
|
|
retVal = IO_NORMAL;
|
2012-04-04 07:30:07 +04:00
|
|
|
if (global->errors > 0 && !global->eflag)
|
2018-01-13 21:08:03 +03:00
|
|
|
retVal = IO_ERROR;
|
|
|
|
free(global->tokenbuf);
|
|
|
|
free(global->functionname);
|
|
|
|
free(global->spacebuf);
|
|
|
|
free(global);
|
|
|
|
return retVal; /* No errors or -E option set */
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
INLINE FILE_LOCAL
|
2018-04-25 06:07:38 +03:00
|
|
|
ReturnCode fpp_cppmain(struct Global *global)
|
2012-04-04 07:30:07 +04:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Main process for cpp -- copies tokens from the current input
|
|
|
|
* stream (main file, include file, or a macro) to the output
|
|
|
|
* file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int c; /* Current character */
|
|
|
|
int counter; /* newlines and spaces */
|
|
|
|
ReturnCode ret; /* return code variable type */
|
|
|
|
|
|
|
|
long bracelevel = 0;
|
|
|
|
long parenlevel = 0;
|
|
|
|
long bracketlevel = 0;
|
|
|
|
int fake = 0;
|
|
|
|
|
|
|
|
#define MAX_FUNC_LENGTH 50
|
|
|
|
|
|
|
|
char tempfunc[MAX_FUNC_LENGTH + 1];
|
|
|
|
char tempfunc2[MAX_FUNC_LENGTH + 1];
|
|
|
|
char define = 0; /* probability of a function define phase in the program */
|
|
|
|
char prev = 0; /* previous type */
|
|
|
|
char go = 0;
|
2018-04-25 06:07:38 +03:00
|
|
|
unsigned include = 0;
|
2012-04-04 07:30:07 +04:00
|
|
|
char initfunc = 0;
|
|
|
|
|
|
|
|
/* Initialize for reading tokens */
|
|
|
|
global->tokenbsize = 50;
|
|
|
|
global->tokenbuf = malloc(global->tokenbsize + 1);
|
|
|
|
if(!global->tokenbuf)
|
|
|
|
return(FPP_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
global->functionname = malloc(global->tokenbsize + 1);
|
|
|
|
if(!global->functionname)
|
|
|
|
return(FPP_OUT_OF_MEMORY);
|
|
|
|
global->functionname[0] = '\0';
|
|
|
|
|
|
|
|
if(global->showspace) {
|
|
|
|
global->spacebuf = (char *)malloc(MAX_SPACE_SIZE);
|
|
|
|
if(!global->spacebuf)
|
|
|
|
return(FPP_OUT_OF_MEMORY);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(global->showversion)
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Error(global, VERSION_TEXT);
|
2012-04-04 07:30:07 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Explicitly output a #line at the start of cpp output so
|
|
|
|
* that lint (etc.) knows the name of the original source
|
|
|
|
* file. If we don't do this explicitly, we may get
|
|
|
|
* the name of the first #include file instead.
|
|
|
|
*/
|
|
|
|
if(global->linelines) /* if #line lines are wanted! */
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_sharp(global);
|
2012-04-04 07:30:07 +04:00
|
|
|
/*
|
|
|
|
* This loop is started "from the top" at the beginning of each line
|
2018-04-25 06:07:38 +03:00
|
|
|
* wrongline is set FPP_TRUE in many places if it is necessary to write
|
2012-04-04 07:30:07 +04:00
|
|
|
* a #line record. (But we don't write them when expanding macros.)
|
|
|
|
*
|
|
|
|
* The counter variable has two different uses: at
|
|
|
|
* the start of a line, it counts the number of blank lines that
|
|
|
|
* have been skipped over. These are then either output via
|
|
|
|
* #line records or by outputting explicit blank lines.
|
|
|
|
* When expanding tokens within a line, the counter remembers
|
|
|
|
* whether a blank/tab has been output. These are dropped
|
|
|
|
* at the end of the line, and replaced by a single blank
|
|
|
|
* within lines.
|
|
|
|
*/
|
|
|
|
|
|
|
|
include = global->included;
|
|
|
|
|
|
|
|
while(include--) {
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_openinclude(global, global->include[(unsigned)include], FPP_TRUE);
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
counter = 0; /* Count empty lines */
|
|
|
|
for (;;) { /* For each line, ... */
|
2018-04-25 06:07:38 +03:00
|
|
|
global->comment = FPP_FALSE; /* No comment yet! */
|
2012-04-04 07:30:07 +04:00
|
|
|
global->chpos = 0; /* Count whitespaces */
|
2018-04-25 06:07:38 +03:00
|
|
|
while (type[(c = fpp_get(global))] == SPA) /* Skip leading blanks */
|
2012-04-04 07:30:07 +04:00
|
|
|
if(global->showspace) {
|
|
|
|
if(global->chpos<MAX_SPACE_SIZE-1)
|
|
|
|
/* we still have buffer to store this! */
|
|
|
|
global->spacebuf[global->chpos++]=(char)c;
|
|
|
|
}
|
|
|
|
if (c == '\n') { /* If line's all blank, */
|
|
|
|
if(global->comment) {
|
|
|
|
/* A comment was output! */
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putchar(global, '\n');
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
++counter; /* Do nothing now */
|
|
|
|
}
|
|
|
|
else if (c == '#') { /* Is 1st non-space '#' */
|
2018-04-25 06:07:38 +03:00
|
|
|
global->keepcomments = FPP_FALSE; /* Don't pass comments */
|
|
|
|
ret = fpp_control(global, &counter); /* Yes, do a #command */
|
2012-04-04 07:30:07 +04:00
|
|
|
if(ret)
|
|
|
|
return(ret);
|
|
|
|
global->keepcomments = (global->cflag && compiling);
|
|
|
|
}
|
|
|
|
else if (c == EOF_CHAR) /* At end of file? */
|
|
|
|
break;
|
|
|
|
else if (!compiling) { /* #ifdef false? */
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_skipnl(global); /* Skip to newline */
|
2012-04-04 07:30:07 +04:00
|
|
|
counter++; /* Count it, too. */
|
|
|
|
} else {
|
|
|
|
break; /* Actual token */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (c == EOF_CHAR) /* Exit process at */
|
|
|
|
break; /* End of file */
|
|
|
|
/*
|
|
|
|
* If the loop didn't terminate because of end of file, we
|
|
|
|
* know there is a token to compile. First, clean up after
|
|
|
|
* absorbing newlines. counter has the number we skipped.
|
|
|
|
*/
|
|
|
|
if(global->linelines) { /* if #line lines are wanted! */
|
|
|
|
if ((global->wrongline && global->infile->fp != NULL) || counter > 4)
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_sharp(global); /* Output # line number */
|
2012-04-04 07:30:07 +04:00
|
|
|
else { /* If just a few, stuff */
|
|
|
|
while (--counter >= 0) /* them out ourselves */
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putchar(global, (int)'\n');
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(global->showspace) {
|
|
|
|
/* Show all whitespaces! */
|
|
|
|
global->spacebuf[global->chpos] = '\0';
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putstring(global, global->spacebuf);
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process each token on this line.
|
|
|
|
*/
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_unget(global); /* Reread the char. */
|
2012-04-04 07:30:07 +04:00
|
|
|
for (;;) { /* For the whole line, */
|
|
|
|
do { /* Token concat. loop */
|
2018-04-25 06:07:38 +03:00
|
|
|
for (global->chpos = counter = 0; (type[(c = fpp_get(global))] == SPA);) {
|
2012-04-04 07:30:07 +04:00
|
|
|
#if COMMENT_INVISIBLE
|
|
|
|
if (c != COM_SEP)
|
|
|
|
counter++;
|
|
|
|
#else
|
|
|
|
if(global->showspace && global->chpos < MAX_SPACE_SIZE-1) {
|
|
|
|
global->spacebuf[global->chpos++]=(char)c;
|
|
|
|
}
|
|
|
|
counter++; /* Skip over blanks */
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (c == EOF_CHAR || c == '\n')
|
|
|
|
break; /* Exit line loop */
|
|
|
|
else if (counter > 0) { /* If we got any spaces */
|
|
|
|
if(!global->showspace) /* We don't output all spaces */
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putchar(global, (int)' ');/* Output one space */
|
2012-04-04 07:30:07 +04:00
|
|
|
else {
|
|
|
|
global->spacebuf[global->chpos] = '\0';
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putstring(global, global->spacebuf); /* Output all whitespaces */
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
}
|
2018-04-25 06:07:38 +03:00
|
|
|
if((ret=fpp_macroid(global, &c))) /* Grab the token */
|
2012-04-04 07:30:07 +04:00
|
|
|
return(ret);
|
2018-04-25 06:07:38 +03:00
|
|
|
} while (type[c] == LET && fpp_catenate(global, 0, &ret) && !ret);
|
2012-04-04 07:30:07 +04:00
|
|
|
if(ret)
|
|
|
|
/* If the loop was broken because of a fatal error! */
|
|
|
|
return(ret);
|
|
|
|
if (c == EOF_CHAR || c == '\n') /* From macro exp error */
|
|
|
|
break; /* Exit line loop */
|
|
|
|
go++;
|
|
|
|
switch (type[c]) {
|
|
|
|
case LET:
|
|
|
|
go =0;
|
|
|
|
/* Quite ordinary token */
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putstring(global, global->tokenbuf);
|
2012-04-04 07:30:07 +04:00
|
|
|
|
|
|
|
if(!define) {
|
|
|
|
/* Copy the name */
|
|
|
|
strncpy(tempfunc, global->tokenbuf, MAX_FUNC_LENGTH);
|
|
|
|
tempfunc[MAX_FUNC_LENGTH]=0;
|
|
|
|
}
|
|
|
|
/* fputs(global->tokenbuf, stdout); */
|
|
|
|
break;
|
|
|
|
case DIG: /* Output a number */
|
|
|
|
case DOT: /* Dot may begin floats */
|
|
|
|
go = 0;
|
2018-04-25 06:07:38 +03:00
|
|
|
ret=fpp_scannumber(global, c, (ReturnCode(*)(struct Global *, int))fpp_output);
|
|
|
|
if(ret)
|
|
|
|
return(ret);
|
|
|
|
fpp_catenate(global, 1, &ret); /* Check to see if the number is the lhs of a macro concat */
|
2012-04-04 07:30:07 +04:00
|
|
|
if(ret)
|
|
|
|
return(ret);
|
|
|
|
break;
|
|
|
|
case QUO: /* char or string const */
|
|
|
|
go = 0;
|
|
|
|
/* Copy it to output */
|
|
|
|
if(!global->webmode) {
|
2018-04-25 06:07:38 +03:00
|
|
|
ret=fpp_scanstring(global, c,
|
|
|
|
(ReturnCode(*)(struct Global *, int))fpp_output);
|
2012-04-04 07:30:07 +04:00
|
|
|
if(ret)
|
|
|
|
return(ret);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
default: /* Some other character */
|
|
|
|
|
|
|
|
define++;
|
|
|
|
switch(c) {
|
|
|
|
case '{':
|
|
|
|
if(! bracelevel++ && define > 2) {
|
|
|
|
/*
|
|
|
|
* This is a starting brace. If there is a probability of a
|
|
|
|
* function defining, we copy the `tempfunc' function name to
|
|
|
|
* `global->functionname'.
|
|
|
|
*/
|
|
|
|
strcpy(global->functionname, tempfunc2);
|
|
|
|
global->funcline = global->line;
|
|
|
|
|
|
|
|
if(global->outputfunctions) {
|
|
|
|
/*
|
|
|
|
* Output the discovered function name to stderr!
|
|
|
|
*/
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Error(global, "#> Function defined at line %d: %s <#\n",
|
2012-04-04 07:30:07 +04:00
|
|
|
global->line,
|
|
|
|
global->functionname);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(global->initialfunc) {
|
|
|
|
int a;
|
|
|
|
for(a=0; a<global->excluded; a++) {
|
|
|
|
/* check for excluded functions */
|
|
|
|
if(!strcmp(global->functionname,
|
|
|
|
global->excludedinit[a]))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(a==global->excluded) {
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_expstuff(global, "__brace__", "{");
|
|
|
|
fpp_expstuff(global, "__init_func__", global->initialfunc);
|
|
|
|
initfunc = FPP_TRUE;
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '}':
|
|
|
|
go = 0;
|
|
|
|
if( (--bracelevel == initfunc) &&
|
|
|
|
strcmp(global->infile->filename, "__init_func__") ) {
|
|
|
|
/* we just stepped out of the function! */
|
|
|
|
global->functionname[0] = '\0';
|
|
|
|
global->funcline = 0;
|
|
|
|
define = 1;
|
|
|
|
|
|
|
|
if(initfunc) {
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putchar(global, '}');
|
2012-04-04 07:30:07 +04:00
|
|
|
bracelevel--;
|
|
|
|
initfunc=0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fake = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ';':
|
|
|
|
case ',':
|
|
|
|
if(go == 2) {
|
|
|
|
define = 1;
|
|
|
|
fake = 0;
|
|
|
|
go--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '(':
|
|
|
|
if(! parenlevel++ && !bracelevel) {
|
|
|
|
if(go == 2) {
|
|
|
|
/* foobar(text) -> "(" is found. This can't be a
|
|
|
|
function */
|
|
|
|
go--;
|
|
|
|
define = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if( define < 2 && prev == LET) {
|
|
|
|
/* This is the first parenthesis on the ground brace
|
|
|
|
level, and we did previously not have a probable
|
|
|
|
function name */
|
|
|
|
strncpy(tempfunc2, global->tokenbuf, MAX_FUNC_LENGTH);
|
|
|
|
tempfunc2[MAX_FUNC_LENGTH]=0;
|
|
|
|
define++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* we have a fake start */
|
|
|
|
fake++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ')':
|
|
|
|
if(! --parenlevel && !bracelevel && define>1 && !fake) {
|
|
|
|
/*
|
|
|
|
* The starting parentheses level and
|
|
|
|
* the starting brace level.
|
|
|
|
* This might be the start of a function defining coming
|
|
|
|
* up!
|
|
|
|
*/
|
|
|
|
define++; /* increase probability */
|
|
|
|
fake = 0;
|
|
|
|
go = 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '[':
|
|
|
|
bracketlevel++;
|
|
|
|
break;
|
|
|
|
case ']':
|
|
|
|
bracketlevel--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
define--; /* decrease function probability */
|
|
|
|
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putchar(global, c); /* Just output it */
|
2012-04-04 07:30:07 +04:00
|
|
|
break;
|
|
|
|
} /* Switch ends */
|
|
|
|
prev = type[c];
|
|
|
|
} /* Line for loop */
|
|
|
|
|
|
|
|
if (c == '\n') { /* Compiling at EOL? */
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putchar(global, '\n'); /* Output newline, if */
|
2012-04-04 07:30:07 +04:00
|
|
|
if (global->infile->fp == NULL) /* Expanding a macro, */
|
2018-04-25 06:07:38 +03:00
|
|
|
global->wrongline = FPP_TRUE; /* Output # line later */
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
} /* Continue until EOF */
|
|
|
|
|
|
|
|
if(global->showbalance) {
|
|
|
|
if(bracketlevel) {
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_cwarn(global, WARN_BRACKET_DEPTH, bracketlevel);
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
if(parenlevel) {
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_cwarn(global, WARN_PAREN_DEPTH, parenlevel);
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
if(bracelevel) {
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_cwarn(global, WARN_BRACE_DEPTH, bracelevel);
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (global->wflag) {
|
2018-04-25 06:07:38 +03:00
|
|
|
global->out = FPP_TRUE; /* enable fpp_output */
|
|
|
|
fpp_outdefines(global); /* Write out #defines */
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
return(FPP_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE_LOCAL
|
2018-04-25 06:07:38 +03:00
|
|
|
ReturnCode fpp_output(struct Global *global, int c)
|
2012-04-04 07:30:07 +04:00
|
|
|
{
|
|
|
|
/*
|
2018-04-25 06:07:38 +03:00
|
|
|
* Output one character to stdout -- fpp_output() is passed as an
|
|
|
|
* argument to fpp_scanstring()
|
2012-04-04 07:30:07 +04:00
|
|
|
*/
|
|
|
|
#if COMMENT_INVISIBLE
|
|
|
|
if (c != TOK_SEP && c != COM_SEP)
|
|
|
|
#else
|
|
|
|
if (c != TOK_SEP)
|
|
|
|
#endif
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putchar(global, c);
|
2012-04-04 07:30:07 +04:00
|
|
|
return(FPP_OK);
|
|
|
|
}
|
|
|
|
|
2018-04-25 06:07:38 +03:00
|
|
|
void fpp_Putchar(struct Global *global, int c)
|
2012-04-04 07:30:07 +04:00
|
|
|
{
|
|
|
|
/*
|
2018-04-25 06:07:38 +03:00
|
|
|
* Output one character to stdout or to fpp_output function!
|
2012-04-04 07:30:07 +04:00
|
|
|
*/
|
|
|
|
if(!global->out)
|
|
|
|
return;
|
|
|
|
#if defined(UNIX)
|
|
|
|
if(global->output)
|
|
|
|
global->output(c, global->userdata);
|
|
|
|
else
|
|
|
|
putchar(c);
|
|
|
|
#else /* amiga */
|
|
|
|
global->output(c, global->userdata);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-04-25 06:07:38 +03:00
|
|
|
void fpp_Putstring(struct Global *global, char *string)
|
2012-04-04 07:30:07 +04:00
|
|
|
{
|
|
|
|
/*
|
2018-04-25 06:07:38 +03:00
|
|
|
* Output a string! One letter at a time to the fpp_Putchar routine!
|
2012-04-04 07:30:07 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
if(!string)
|
|
|
|
return;
|
|
|
|
|
|
|
|
while(*string)
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putchar(global, *string++);
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
|
2018-04-25 06:07:38 +03:00
|
|
|
void fpp_Putint(struct Global *global, int number)
|
2012-04-04 07:30:07 +04:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Output the number as a string.
|
|
|
|
*/
|
|
|
|
|
|
|
|
char buffer[16]; /* an integer can't be that big! */
|
|
|
|
char *point=buffer;
|
|
|
|
|
|
|
|
sprintf(buffer, "%d", number);
|
|
|
|
|
|
|
|
while(*point)
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putchar(global, *point++);
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FILE_LOCAL
|
2018-04-25 06:07:38 +03:00
|
|
|
void fpp_sharp(struct Global *global)
|
2012-04-04 07:30:07 +04:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Output a line number line.
|
|
|
|
*/
|
|
|
|
|
|
|
|
char *name;
|
|
|
|
if (global->keepcomments) /* Make sure # comes on */
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putchar(global, '\n'); /* a fresh, new line. */
|
2012-04-04 07:30:07 +04:00
|
|
|
/* printf("#%s %d", LINE_PREFIX, global->line); */
|
|
|
|
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putchar(global, '#');
|
2012-04-04 07:30:07 +04:00
|
|
|
if(global->outputLINE)
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putstring(global, LINE_PREFIX);
|
|
|
|
fpp_Putchar(global, ' ');
|
|
|
|
fpp_Putint(global, global->line);
|
2012-04-04 07:30:07 +04:00
|
|
|
|
|
|
|
if (global->infile->fp != NULL) {
|
|
|
|
name = (global->infile->progname != NULL)
|
|
|
|
? global->infile->progname : global->infile->filename;
|
|
|
|
if (global->sharpfilename == NULL
|
|
|
|
|| (global->sharpfilename != NULL && !streq(name, global->sharpfilename))) {
|
|
|
|
if (global->sharpfilename != NULL)
|
|
|
|
free(global->sharpfilename);
|
2018-04-25 06:07:38 +03:00
|
|
|
global->sharpfilename = fpp_savestring(global, name);
|
2012-04-04 07:30:07 +04:00
|
|
|
/* printf(" \"%s\"", name); */
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putstring(global, " \"");
|
|
|
|
fpp_Putstring(global, name);
|
|
|
|
fpp_Putchar(global, '\"');
|
2012-04-04 07:30:07 +04:00
|
|
|
}
|
|
|
|
}
|
2018-04-25 06:07:38 +03:00
|
|
|
fpp_Putchar(global, '\n');
|
|
|
|
global->wrongline = FPP_FALSE;
|
2012-04-04 07:30:07 +04:00
|
|
|
return;
|
|
|
|
}
|