- contrib/hbmisc/dbftools.c
* contrib/hbmisc/common.mak
* contrib/hbmisc/Makefile
- Removed to avoid collision with similar file in hbct.
Notice the content was also similar, except that
in hbct it was updated and extended. There was also
FIELDTYPE() implemented which was colliding with
function with the same name in core.
* include/hbextern.ch
* source/rdd/dbcmd.c
* source/rdd/dbdrop.c
* source/rdd/dbexists.c
* source/rdd/fieldhb.c
+ Added HB_ prefixed versions of DBDROP(),
DBEXISTS(), FIELDDEC(), FIELDLEN(), FIELDTYPE()
* source/rdd/rddinfo.c
! Comment.
* tests/multifnc/Makefile
! Updated lib names.
* contrib/hbapollo/apollo.c
! Fixed MSVC errors.
* contrib/mtpl_b32.bat
* contrib/mtpl_vc.bat
! Removed one obsolete line.
+ Now defines _HB_MAKELOG.
* contrib/hbapollo/make_b32.bat
* contrib/hbapollo/make_vc.bat
* contrib/hbfimage/make_b32.bat
* contrib/hbgd/make_b32.bat
* contrib/hbhpdf/make_b32.bat
* contrib/hbmysql/make_b32.bat
* contrib/hbodbc/make_b32.bat
* contrib/hbodbc/make_vc.bat
* contrib/hbpgsql/make_b32.bat
* contrib/hbpgsql/make_vc.bat
* contrib/hbw32ddr/make_b32.bat
* contrib/hbw32ddr/make_vc.bat
* contrib/hbzlib/make_b32.bat
* contrib/rddads/make_b32.bat
+ Redirects .lib creation (implib, lib) output to log file.
* contrib/xhb/hbcompat.ch
+ Added some more converions for xhb code.
* contrib/rddads/ads1.c
+ Added two TODOs. (to adsDrop and adsExists)
* source/pp/hbppgen.c
! MSVC warning fixed.
* make_vc.mak
! Typo in prev commit.
636 lines
18 KiB
C
636 lines
18 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* preprocessor static rules generator.
|
|
* It creates .c file with tables for defines/[x]translates/[x]commands
|
|
* found in given .ch or .prg file
|
|
*
|
|
* Copyright 2006 Przemyslaw Czerpak <druzus / at / priv.onet.pl>
|
|
* www - http://www.harbour-project.org
|
|
*
|
|
* 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
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
|
*
|
|
* As a special exception, the Harbour Project gives permission for
|
|
* additional uses of the text contained in its release of Harbour.
|
|
*
|
|
* The exception is that, if you link the Harbour libraries with other
|
|
* files to produce an executable, this does not by itself cause the
|
|
* resulting executable to be covered by the GNU General Public License.
|
|
* Your use of that executable is in no way restricted on account of
|
|
* linking the Harbour library code into it.
|
|
*
|
|
* This exception does not however invalidate any other reasons why
|
|
* the executable file might be covered by the GNU General Public License.
|
|
*
|
|
* This exception applies only to the code released by the Harbour
|
|
* Project under the name Harbour. If you copy code from other
|
|
* Harbour Project or Free Software Foundation releases into a copy of
|
|
* Harbour, as the General Public License permits, the exception does
|
|
* not apply to the code that you add in this way. To avoid misleading
|
|
* anyone as to the status of such modified files, you must delete
|
|
* this exception notice from them.
|
|
*
|
|
* If you write modifications of your own for Harbour, it is your choice
|
|
* whether to permit this exception to apply to your modifications.
|
|
* If you do not wish that, delete this exception notice.
|
|
*
|
|
*/
|
|
|
|
#include "ppcore.c"
|
|
#include "hbset.h"
|
|
|
|
#if defined(__MINGW32CE__) || defined(HB_WINCE)
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
/*
|
|
* library functions used by PP core code
|
|
* necessary to create stand alone binries
|
|
*/
|
|
void * hb_xgrab( ULONG ulSize ) { return malloc( ulSize ); }
|
|
void * hb_xrealloc( void * pMem, ULONG ulSize ) { return realloc( pMem, ulSize ); }
|
|
void hb_xfree( void * pMem ) { free( pMem ); }
|
|
BYTE * hb_fsNameConv( BYTE * szFileName, BOOL * pfFree ) { if( pfFree ) * pfFree = FALSE; return szFileName; }
|
|
int hb_setGetDirSeparator( void ) { return OS_PATH_DELIMITER; }
|
|
int hb_verSvnID( void ) { return 0; }
|
|
|
|
/*
|
|
* functions to create .c files with rules defined in given PP context
|
|
*/
|
|
static int hb_pp_writeTokenCount( PHB_PP_TOKEN pToken )
|
|
{
|
|
int iToken = 0;
|
|
while( pToken )
|
|
{
|
|
iToken += hb_pp_writeTokenCount( pToken->pMTokens ) + 1;
|
|
pToken = pToken->pNext;
|
|
}
|
|
return iToken;
|
|
}
|
|
|
|
static void hb_pp_writeToken( FILE * fout, PHB_PP_TOKEN pToken,
|
|
char * szName, int iToken, BOOL fLast )
|
|
{
|
|
while( pToken )
|
|
{
|
|
int iOptional = hb_pp_writeTokenCount( pToken->pMTokens ), i;
|
|
|
|
i = strlen( szName );
|
|
if( pToken->pNext )
|
|
fprintf( fout, " { %s +%2d", szName, iToken + iOptional + 1 );
|
|
else
|
|
fprintf( fout, " { NULL%*s", i, "" );
|
|
if( iOptional )
|
|
fprintf( fout, ", %s +%2d", szName, iToken + 1 );
|
|
else
|
|
fprintf( fout, ", NULL%*s", i, "" );
|
|
|
|
i = 16 - strlen( pToken->value );
|
|
fprintf( fout, ", \"%s\", %*s %2d,%2d, 0x%04x, %d }%s\n",
|
|
pToken->value,
|
|
i < 0 ? 0 : i, "",
|
|
pToken->len, pToken->spaces,
|
|
pToken->type | HB_PP_TOKEN_STATIC | HB_PP_TOKEN_PREDEFINED,
|
|
pToken->index,
|
|
fLast && !pToken->pNext && iOptional == 0 ? "" : "," );
|
|
|
|
if( iOptional )
|
|
hb_pp_writeToken( fout, pToken->pMTokens, szName, iToken + 1,
|
|
pToken->pNext == NULL && fLast );
|
|
|
|
iToken += iOptional + 1;
|
|
pToken = pToken->pNext;
|
|
}
|
|
}
|
|
|
|
static void hb_pp_writeTokenList( FILE * fout, PHB_PP_TOKEN pTokenLst, char * szName )
|
|
{
|
|
int iTokens;
|
|
|
|
iTokens = hb_pp_writeTokenCount( pTokenLst );
|
|
if( iTokens )
|
|
{
|
|
fprintf( fout, "static HB_PP_TOKEN %s[ %d ] = {\n",
|
|
szName, iTokens );
|
|
hb_pp_writeToken( fout, pTokenLst, szName, 0, TRUE );
|
|
fprintf( fout, "};\n" );
|
|
}
|
|
}
|
|
|
|
static int hb_pp_writeRules( FILE * fout, PHB_PP_RULE pFirst, char * szName )
|
|
{
|
|
char szMatch[ 16 ], szResult[ 16 ];
|
|
ULONG ulRepeatBits, ulBit;
|
|
PHB_PP_RULE pRule;
|
|
int iRule;
|
|
USHORT u;
|
|
|
|
iRule = 0;
|
|
pRule = pFirst;
|
|
while( pRule )
|
|
{
|
|
++iRule;
|
|
if( pRule->pMatch )
|
|
{
|
|
snprintf( szMatch, sizeof( szMatch ), "s_%cm%03d", szName[0], iRule );
|
|
hb_pp_writeTokenList( fout, pRule->pMatch, szMatch );
|
|
}
|
|
|
|
if( pRule->pResult )
|
|
{
|
|
snprintf( szResult, sizeof( szResult ), "s_%cr%03d", szName[0], iRule );
|
|
hb_pp_writeTokenList( fout, pRule->pResult, szResult );
|
|
}
|
|
pRule = pRule->pPrev;
|
|
}
|
|
|
|
fprintf( fout, "static const HB_PP_DEFRULE s_%s[ %d ] = {\n",
|
|
szName, iRule );
|
|
|
|
iRule = 0;
|
|
pRule = pFirst;
|
|
while( pRule )
|
|
{
|
|
++iRule;
|
|
if( pRule->pMatch )
|
|
snprintf( szMatch, sizeof( szMatch ), "s_%cm%03d", szName[0], iRule );
|
|
else
|
|
strncpy( szMatch, "NULL ", sizeof( szResult ) );
|
|
if( pRule->pResult )
|
|
snprintf( szResult, sizeof( szResult ), "s_%cr%03d", szName[0], iRule );
|
|
else
|
|
strncpy( szResult, "NULL ", sizeof( szResult ) );
|
|
|
|
ulRepeatBits = 0;
|
|
for( u = 0, ulBit = 1; u < pRule->markers; ++u, ulBit <<= 1 )
|
|
{
|
|
if( pRule->pMarkers[ u ].canrepeat )
|
|
ulRepeatBits |= ulBit;
|
|
}
|
|
fprintf( fout, " { %s, %s, %d,%2d, 0x%04lx }%s\n",
|
|
szMatch, szResult, HB_PP_CMP_MODE( pRule->mode ),
|
|
pRule->markers, ulRepeatBits, pRule->pPrev ? "," : "" );
|
|
pRule = pRule->pPrev;
|
|
}
|
|
fprintf( fout, "};\n\n" );
|
|
return iRule;
|
|
}
|
|
|
|
static void hb_pp_generateInitFunc( FILE * fout, int iRules,
|
|
char * szVar, char * szRule )
|
|
{
|
|
fprintf( fout, " hb_pp_initRules( &pState->p%s, &pState->i%s, ",
|
|
szVar, szVar );
|
|
if( iRules )
|
|
fprintf( fout, "s_%s, %d );\n", szRule, iRules );
|
|
else
|
|
fprintf( fout, "NULL, 0 );\n" );
|
|
}
|
|
|
|
static void hb_pp_generateRules( FILE * fout, PHB_PP_STATE pState )
|
|
{
|
|
int iDefs = 0, iTrans = 0, iCmds = 0;
|
|
|
|
fprintf( fout, "/*\n * $Id$\n */\n\n/*\n"
|
|
" * Harbour Project source code:\n"
|
|
" * Build in preprocessor rules.\n"
|
|
" *\n"
|
|
" * Copyright 2006 Przemyslaw Czerpak <druzus / at / priv.onet.pl>\n"
|
|
" * www - http://www.harbour-project.org\n"
|
|
" *\n"
|
|
" * This file is generated automatically by Harbour preprocessor\n"
|
|
" * and is covered by the same license as Harbour PP\n"
|
|
" */\n\n#define _HB_PP_INTERNAL\n#include \"hbpp.h\"\n\n" );
|
|
|
|
if( pState->pDefinitions )
|
|
iDefs = hb_pp_writeRules( fout, pState->pDefinitions, "def" );
|
|
if( pState->pTranslations )
|
|
iTrans = hb_pp_writeRules( fout, pState->pTranslations, "trs" );
|
|
if( pState->pCommands )
|
|
iCmds = hb_pp_writeRules( fout, pState->pCommands, "cmd" );
|
|
|
|
fprintf( fout, "\nvoid hb_pp_setStdRules( PHB_PP_STATE pState )\n{\n" );
|
|
hb_pp_generateInitFunc( fout, iDefs, "Definitions", "def" );
|
|
hb_pp_generateInitFunc( fout, iTrans, "Translations", "trs" );
|
|
hb_pp_generateInitFunc( fout, iCmds, "Commands", "cmd" );
|
|
fprintf( fout, "}\n" );
|
|
}
|
|
|
|
static void hb_pp_undefCompilerRules( PHB_PP_STATE pState )
|
|
{
|
|
int i;
|
|
PHB_PP_RULE * pRulePtr, pRule;
|
|
char * szRules[] = { "__HARBOUR__",
|
|
"__DATE__",
|
|
"__TIME__",
|
|
"__HB_MAIN__",
|
|
"__ARCH16BIT__",
|
|
"__ARCH32BIT__",
|
|
"__ARCH64BIT__",
|
|
"__LITTLE_ENDIAN__",
|
|
"__BIG_ENDIAN__",
|
|
"__PDP_ENDIAN__",
|
|
NULL };
|
|
|
|
for( i = 0; szRules[ i ]; ++i )
|
|
hb_pp_delDefine( pState, szRules[ i ] );
|
|
|
|
pRulePtr = &pState->pDefinitions;
|
|
while( * pRulePtr )
|
|
{
|
|
pRule = *pRulePtr;
|
|
if( !pRule->pMatch->pNext &&
|
|
strncmp( pRule->pMatch->value, "__PLATFORM__", 12 ) == 0 )
|
|
{
|
|
* pRulePtr = pRule->pPrev;
|
|
hb_pp_ruleFree( pRule );
|
|
pState->iDefinitions--;
|
|
}
|
|
else
|
|
pRulePtr = &pRule->pPrev;
|
|
}
|
|
}
|
|
|
|
static int hb_pp_preprocesfile( PHB_PP_STATE pState, char * szRuleFile )
|
|
{
|
|
int iResult = 0;
|
|
ULONG ulLen;
|
|
|
|
while( hb_pp_nextLine( pState, &ulLen ) != NULL && ulLen );
|
|
|
|
if( szRuleFile )
|
|
{
|
|
FILE * foutr;
|
|
|
|
foutr = hb_fopen( szRuleFile, "w" );
|
|
if( !foutr )
|
|
{
|
|
#if !defined(__MINGW32CE__) && !defined(HB_WINCE)
|
|
perror( szRuleFile );
|
|
#endif
|
|
iResult = 1;
|
|
}
|
|
else
|
|
{
|
|
hb_pp_undefCompilerRules( pState );
|
|
hb_pp_generateRules( foutr, pState );
|
|
fclose( foutr );
|
|
}
|
|
}
|
|
|
|
return iResult;
|
|
}
|
|
|
|
static int hb_pp_generateVerInfo( char * szVerFile, int iSVNID, char * szChangeLogID, char * szLastEntry )
|
|
{
|
|
int iResult = 0;
|
|
char * pszEnv;
|
|
FILE * fout;
|
|
|
|
fout = hb_fopen( szVerFile, "w" );
|
|
if( !fout )
|
|
{
|
|
#if !defined(__MINGW32CE__) && !defined(HB_WINCE)
|
|
perror( szVerFile );
|
|
#endif
|
|
iResult = 1;
|
|
}
|
|
else
|
|
{
|
|
fprintf( fout, "/*\n * $Id$\n */\n\n/*\n"
|
|
" * Harbour Project source code:\n"
|
|
" * Version information and build time switches.\n"
|
|
" *\n"
|
|
" * Copyright 2008 Przemyslaw Czerpak <druzus / at / priv.onet.pl>\n"
|
|
" * www - http://www.harbour-project.org\n"
|
|
" *\n"
|
|
" * This file is generated automatically by Harbour preprocessor\n"
|
|
" * and is covered by the same license as Harbour PP\n"
|
|
" */\n\n" );
|
|
|
|
if( iSVNID )
|
|
fprintf( fout, "\n#define HB_VER_SVNID %d\n", iSVNID );
|
|
|
|
if( szChangeLogID )
|
|
fprintf( fout, "\n#define HB_VER_CHLID \"%s\"\n", szChangeLogID );
|
|
|
|
if( szLastEntry )
|
|
fprintf( fout, "\n#define HB_VER_LENTRY \"%s\"\n", szLastEntry );
|
|
|
|
pszEnv = hb_getenv( "C_USR" );
|
|
if( pszEnv )
|
|
{
|
|
fprintf( fout, "\n#define HB_VER_C_USR \"%s\"\n", pszEnv );
|
|
hb_xfree( pszEnv );
|
|
}
|
|
|
|
pszEnv = hb_getenv( "L_USR" );
|
|
if( pszEnv )
|
|
{
|
|
fprintf( fout, "\n#define HB_VER_L_USR \"%s\"\n", pszEnv );
|
|
hb_xfree( pszEnv );
|
|
}
|
|
|
|
pszEnv = hb_getenv( "PRG_USR" );
|
|
if( pszEnv )
|
|
{
|
|
fprintf( fout, "\n#define HB_VER_PRG_USR \"%s\"\n", pszEnv );
|
|
hb_xfree( pszEnv );
|
|
}
|
|
|
|
fclose( fout );
|
|
}
|
|
|
|
return iResult;
|
|
}
|
|
|
|
static int hb_pp_parseChangelog( PHB_PP_STATE pState, const char * pszFileName,
|
|
BOOL fQuiet, int * piSVNID,
|
|
char ** pszChangeLogID, char ** pszLastEntry )
|
|
{
|
|
int iResult = 0;
|
|
const char * pszFile;
|
|
FILE * file_in;
|
|
|
|
pszFile = pszFileName ? pszFileName : "../../../../ChangeLog";
|
|
|
|
if( !pszFileName )
|
|
{
|
|
while( *pszFile == '.' )
|
|
{
|
|
if( hb_fsFileExists( pszFile ) )
|
|
break;
|
|
pszFile += 3;
|
|
}
|
|
}
|
|
file_in = hb_fopen( pszFile, "r" );
|
|
if( !file_in )
|
|
{
|
|
if( !fQuiet )
|
|
{
|
|
#if !defined(__MINGW32CE__) && !defined(HB_WINCE)
|
|
perror( pszFile );
|
|
#else
|
|
fprintf( stderr, "Cannot open the %s file.\n", pszFile );
|
|
#endif
|
|
}
|
|
iResult = 1;
|
|
}
|
|
else
|
|
{
|
|
char szLine[ 256 ];
|
|
char szId[ 128 ];
|
|
char szLog[ 128 ];
|
|
char * szFrom, *szTo;
|
|
int iLen;
|
|
|
|
*szId = *szLog = '\0';
|
|
|
|
do
|
|
{
|
|
if( !fgets( szLine, sizeof( szLine ), file_in ) )
|
|
break;
|
|
|
|
if( !*szId )
|
|
{
|
|
szFrom = strstr( szLine, "$Id: " );
|
|
if( szFrom )
|
|
{
|
|
szFrom += 5;
|
|
szTo = strstr( szFrom, " $" );
|
|
if( szTo )
|
|
{
|
|
*szTo = 0;
|
|
hb_strncpy( szId, szFrom, sizeof( szId ) - 1 );
|
|
}
|
|
}
|
|
}
|
|
else if( !*szLog )
|
|
{
|
|
if( szLine[ 4 ] == '-' && szLine[ 7 ] == '-' &&
|
|
szLine[ 10 ] == ' ' && szLine[ 13 ] == ':' )
|
|
{
|
|
int iLen;
|
|
hb_strncpy( szLog, szLine, sizeof( szLog ) - 1 );
|
|
iLen = strlen( szLog );
|
|
while( iLen-- && HB_ISSPACE( szLog[ iLen ] ) )
|
|
szLog[ iLen ] = '\0';
|
|
}
|
|
}
|
|
}
|
|
while( !*szLog );
|
|
|
|
fclose( file_in );
|
|
|
|
if( !*szLog )
|
|
{
|
|
if( !fQuiet )
|
|
fprintf( stderr, "Cannot find valid $Id end log entry in the %s file.\n", pszFile );
|
|
iResult = 1;
|
|
}
|
|
else
|
|
{
|
|
*szLine = '"';
|
|
hb_strncpy( szLine + 1, szLog, sizeof( szLine ) - 3 );
|
|
iLen = strlen( szLine );
|
|
szLine[ iLen ] = '"';
|
|
szLine[ ++iLen ] = '\0';
|
|
hb_pp_addDefine( pState, "HB_VER_LENTRY", szLine );
|
|
*pszLastEntry = hb_strdup( szLog );
|
|
|
|
hb_strncpy( szLine + 1, szId, sizeof( szLine ) - 3 );
|
|
iLen = strlen( szLine );
|
|
szLine[ iLen ] = '"';
|
|
szLine[ ++iLen ] = '\0';
|
|
hb_pp_addDefine( pState, "HB_VER_CHLID", szLine );
|
|
*pszChangeLogID = hb_strdup( szId );
|
|
|
|
szFrom = strchr( szLine, ' ' );
|
|
if( szFrom )
|
|
{
|
|
while( *szFrom == ' ' )
|
|
++szFrom;
|
|
iLen = 0;
|
|
while( HB_PP_ISDIGIT( szFrom[ iLen ] ) )
|
|
++iLen;
|
|
if( iLen && szFrom[ iLen ] == ' ' )
|
|
szFrom[ iLen ] ='\0';
|
|
else
|
|
szFrom = NULL;
|
|
}
|
|
if( szFrom )
|
|
{
|
|
hb_pp_addDefine( pState, "HB_VER_SVNID", szFrom );
|
|
*piSVNID = ( int ) hb_strValInt( szFrom, &iLen );
|
|
}
|
|
else
|
|
{
|
|
if( !fQuiet )
|
|
fprintf( stderr, "Unrecognized Id entry in the %s file.\n", pszFile );
|
|
iResult = 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
return iResult;
|
|
}
|
|
|
|
/*
|
|
* ppgen only functions
|
|
*/
|
|
static void hb_pp_usage( char * szName )
|
|
{
|
|
printf( "Syntax: %s <file>[.prg] [options]\n\n", szName );
|
|
printf( "Options: -i<path> \tadd #include file search path\n"
|
|
" -c[<file>]\tlook for ChangeLog file\n"
|
|
" -o<file> \tcreates .c file with PP rules\n"
|
|
" -v<file> \tcreates .h file with version information\n"
|
|
" -w \twrite preprocessed (.ppo) input file\n"
|
|
" -q \tdisable information messages\n" );
|
|
}
|
|
|
|
int main( int argc, char * argv[] )
|
|
{
|
|
char * szFile = NULL, * szRuleFile = NULL, * szVerFile = NULL;
|
|
char * szLogFile = NULL;
|
|
BOOL fQuiet = FALSE, fWrite = FALSE, fChgLog = FALSE;
|
|
char * szChangeLogID = NULL, * szLastEntry = NULL;
|
|
int iSVNID = 0, iResult = 0, i;
|
|
PHB_PP_STATE pState;
|
|
|
|
pState = hb_pp_new();
|
|
|
|
if( argc >= 2 )
|
|
{
|
|
szFile = argv[1];
|
|
for( i = 2; szFile && i < argc; i++ )
|
|
{
|
|
if( !HB_ISOPTSEP( argv[i][0] ) )
|
|
szFile = NULL;
|
|
else
|
|
{
|
|
switch( argv[i][1] )
|
|
{
|
|
case 'q':
|
|
case 'Q':
|
|
if( argv[i][2] )
|
|
szFile = NULL;
|
|
else
|
|
fQuiet = TRUE;
|
|
break;
|
|
|
|
case 'w':
|
|
case 'W':
|
|
if( argv[i][2] )
|
|
szFile = NULL;
|
|
else
|
|
fWrite = TRUE;
|
|
break;
|
|
|
|
case 'c':
|
|
case 'C':
|
|
fChgLog = TRUE;
|
|
if( argv[i][2] )
|
|
szLogFile = argv[i] + 2;
|
|
break;
|
|
|
|
case 'i':
|
|
case 'I':
|
|
if( argv[i][2] )
|
|
hb_pp_addSearchPath( pState, argv[i] + 2, FALSE );
|
|
else
|
|
szFile = NULL;
|
|
break;
|
|
|
|
case 'o':
|
|
case 'O':
|
|
if( argv[i][2] )
|
|
szRuleFile = argv[i] + 2;
|
|
else
|
|
szFile = NULL;
|
|
break;
|
|
|
|
case 'v':
|
|
case 'V':
|
|
if( argv[i][2] )
|
|
szVerFile = argv[i] + 2;
|
|
else
|
|
szFile = NULL;
|
|
break;
|
|
|
|
default:
|
|
szFile = NULL;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if( szFile )
|
|
{
|
|
hb_pp_init( pState, fQuiet, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL );
|
|
if( hb_pp_inFile( pState, szFile, TRUE, NULL, TRUE ) )
|
|
{
|
|
if( fWrite )
|
|
{
|
|
char szFileName[ _POSIX_PATH_MAX + 1 ];
|
|
PHB_FNAME pFileName;
|
|
|
|
pFileName = hb_fsFNameSplit( szFile );
|
|
pFileName->szExtension = ".ppo";
|
|
hb_fsFNameMerge( szFileName, pFileName );
|
|
hb_xfree( pFileName );
|
|
|
|
hb_pp_outFile( pState, szFileName, NULL );
|
|
}
|
|
|
|
if( fChgLog )
|
|
iResult = hb_pp_parseChangelog( pState, szLogFile, fQuiet,
|
|
&iSVNID, &szChangeLogID, &szLastEntry );
|
|
|
|
if( iResult == 0 )
|
|
iResult = hb_pp_preprocesfile( pState, szRuleFile );
|
|
|
|
if( iResult == 0 && szVerFile )
|
|
iResult = hb_pp_generateVerInfo( szVerFile, iSVNID,
|
|
szChangeLogID, szLastEntry );
|
|
}
|
|
else
|
|
iResult = 1;
|
|
}
|
|
else
|
|
{
|
|
hb_pp_usage( argv[0] );
|
|
iResult = 1;
|
|
}
|
|
|
|
if( szChangeLogID )
|
|
hb_xfree( szChangeLogID );
|
|
if( szLastEntry )
|
|
hb_xfree( szLastEntry );
|
|
|
|
hb_pp_free( pState );
|
|
|
|
return iResult;
|
|
}
|
|
|
|
#if defined( HB_WINCE ) && !defined( __CEGCC__ )
|
|
# include "hbwmain.c"
|
|
#endif
|