* harbour/bin/hb-func.sh
! restored default optimization flag (-O3) in hb* scripts
* harbour/harbour.spec
! fixed recent modification
* harbour/contrib/rddads/ads1.c
* harbour/contrib/rddads/adsfunc.c
* harbour/contrib/hbmisc/strfmt.c
* harbour/contrib/hbcrypt/sha1.c
! fixed wrongly used C reference operator
* harbour/contrib/hbwin/win_prn2.c
* harbour/contrib/hbwin/wapi_commctrl.c
* harbour/source/vm/maindllp.c
! fixes for unicode builds
* harbour/include/std.ch
+ added SET TIME FORMAT [TO] <f>
* harbour/include/set.ch
* harbour/include/hbset.h
* harbour/source/vm/set.c
+ added _SET_TIMEFORMAT
The folowing modifiers are supported:
hh - hours
mm - minutes
ss - seconds
fff - fraction part of seconds
p - 1-st letter from PM / AM signature. When used time is shown
in 12 hour format otherwise 24 hour format is used
ex: Set( __SET_TIMEFORMAT, "hh:mm pm" )
default _SET_TIMEFORMAT value is "hh:mm:ss:fff"
+ added C function: char * hb_setGetTimeFormat( void );
* harbour/include/hbpp.h
* harbour/source/pp/ppcore.c
+ added support for timestamp constant values in the form:
t"YYYY-MM-DD HH:MM:SS.fff"
The exact accepted timestamp pattern is is:
YYYY-MM-DD [H[H][:M[M][:S[S][.f[f[f[f]]]]]]] [PM|AM]
i.e.:
tValue := t"2009-03-21 5:31:45.437 PM"
or:
YYYY-MM-DDT[H[H][:M[M][:S[S][.f[f[f[f]]]]]]] [PM|AM]
with literal "T" as date and time part delimiters (XML timestamp
format), i.e.:
tValue := t"2009-03-21T17:31:45.437"
The folowing characters can be used as date delimiters: "-", "/", "."
if PM or AM is used HH is in range < 1 : 12 > otherwise
in range < 0 : 23 >
* harbour/source/compiler/complex.c
* harbour/source/compiler/harbour.y
* harbour/source/compiler/harbour.yyc
* harbour/source/compiler/harbour.yyh
+ added support for t"YYYY-MM-DD HH:MM:SS.fff" time stamp constant
to compiler
+ added support for VFP datetime constant values:
{ ^ [ YYYY-MM-DD [,] ] [ HH[:MM[:SS][.FFF]] [AM|PM] ] }
The following characters can be used as date delimiters: "-", "/".
Dot "." as date delimiter is not supported.
There is no limit on number of characters in YYYY, MM, DD, HH, MM,
SS, FFF parts. Important is only their value. This is the format
in semi PP notation:
{ ^ <YEAR> <sep:/-> <MONTH> <sep:/-> <DAY> [[<sep2:,>]
[ <HOUR> [ : <MIN> [ : <SEC> [ . <FRAQ> ] ] ] [AM|PP] ] }
In practice it allows to also parse xHarbour datetime constant
values with compatible conditions though xHarbour support onlu "/"
as date delimiter.
NOTE: there is one important difference to VFP and xHarbour in
decoding above format. In VFP and xHarbour when date part is
missing then it's set by default to: 1899-12-30 so this code:
{ ^ 12:00 }
gived the same results as:
{ ^ 1899/12/30 12:00 }
Harbour does not set any default date value when timestamp
constant value contains only time part.
If you want we can change it for strict VFP compatiblity.
Now this extension is enabled by default for testing. In the future
it will be probably covered by HB_COMPAT_FOXPRO macro.
* harbour/source/macro/macro.yyc
* harbour/source/macro/macro.y
* harbour/source/macro/macro.yyh
* harbour/source/macro/macrolex.c
+ added support for t"YYYY-MM-DD HH:MM:SS.fff" time stamp constant
to macro compiler
* harbour/include/hbmacro.h
* harbour/source/vm/macro.c
+ added new function:
void hb_macroGenPushTimeStamp( LONG lDate, LONG lTime, HB_COMP_DECL );
* harbour/include/hberrors.h
* harbour/source/compiler/hbgenerr.c
+ added new compile time error: "Invalid timestamp constant '%s'"
* harbour/source/compiler/cmdcheck.c
* use Harbour API timestamp functions instead of calling system
functions
* harbour/include/hbpcode.h
* harbour/source/compiler/hbfix.c
* harbour/source/compiler/hbpcode.c
* harbour/source/compiler/hbdead.c
* harbour/source/compiler/genc.c
* harbour/source/compiler/gencc.c
* harbour/source/compiler/hblbl.c
* harbour/source/compiler/hbstripl.c
* harbour/source/compiler/hbopt.c
+ added new PCODE HB_P_PUSHTIMESTAMP (replaced one unused PCODE value)
to store timestamp constant values in the PCODE
* harbour/include/hbcomp.h
* harbour/source/compiler/hbmain.c
+ added new function:
void hb_compGenPushTimeStamp( LONG lDate, LONG lTime, HB_COMP_DECL );
* harbour/include/hbexprop.h
* harbour/source/common/expropt1.c
+ added new C functions:
HB_EXPR_PTR hb_compExprNewTimeStamp( LONG, LONG, HB_COMP_DECL );
* harbour/include/hbexprb.c
* harbour/include/hbcompdf.h
* harbour/source/common/expropt2.c
+ added timestamp expressions support
+ added compile time optimization for timestamp expressions
* updated function optimization for timestamp expressions
* harbour/include/hbdate.h
* harbour/source/common/hbdate.c
* changed hb_dateMilliSeconds() to return UTC julian timestamp in
milliseconds
* changed existing seconds, time and timestamp functions to operate
on common OS specific functions to eliminate possible problems
with different OS time counters
+ added new functions to operates on time and timestamp values.
See source code for details.
+ harbour/source/rtl/cputime.c
* moved double hb_secondsCPU( int n ) function to separate file
* harbour/source/rtl/seconds.c
- removed old version of date/seconds functions
* harbour/source/vm/hashes.c
* harbour/source/vm/arrays.c
+ added support for timestamp values as hash item indexes
* harbour/source/vm/hashfunc.c
+ added support for find timestamp values in hash and array items
by simple date value in AScan(), hb_HScan(), hb_AScan() and hb_RAScan()
functions when exact comparison is not used.
* harbour/source/vm/asort.c
+ added support for sorting timestamp values
* harbour/source/vm/classes.c
+ added support for timestamp scallar classes
+ added support for timestamp typed instance variables
* harbour/source/vm/memvars.c
+ added support for timestamp values in .mem files
* harbour/source/vm/estack.c
+ show timestamp values in stack dump
* harbour/include/hbapi.h
* harbour/source/vm/arrays.c
+ added new C functions:
double hb_arrayGetTD( PHB_ITEM pArray, ULONG ulIndex );
BOOL hb_arraySetTD( PHB_ITEM pArray, ULONG ulIndex, double dTimeStamp )
BOOL hb_arrayGetTDT( PHB_ITEM pArray, ULONG ulIndex,
LONG * plJulian, LONG * plMilliSec );
BOOL hb_arraySetTDT( PHB_ITEM pArray, ULONG ulIndex,
LONG lJulian, LONG lMilliSec );
* harbour/include/hbapi.h
* harbour/source/vm/extend.c
+ accept timestamp items in date functions - use only date part of
timestamp value
+ added new C functions:
double hb_partd( int iParam, ... );
BOOL hb_partdt( LONG * plJulian, LONG * plMilliSec , int iParam, ... );
void hb_rettd( double dTimeStamp );
void hb_rettdt( LONG lJulian, LONG lMilliSec );
int hb_stortd( double dTimeStamp, int iParam, ... );
int hb_stortdt( LONG lJulian, LONG lMilliSec, int iParam, ... );
* harbour/include/hbapiitm.h
* harbour/source/vm/itemapi.c
+ accept timestamp items in date functions - use only date part of
timestamp value
+ added new C functions:
char * hb_itemGetTS( PHB_ITEM pItem, char * szDateTime );
PHB_ITEM hb_itemPutTS( PHB_ITEM pItem, const char * szDateTime );
double hb_itemGetTD( PHB_ITEM pItem );
PHB_ITEM hb_itemPutTD( PHB_ITEM pItem, double dTimeStamp )
BOOL hb_itemGetTDT( PHB_ITEM pItem, LONG * plJulian, LONG * plMilliSec );
PHB_ITEM hb_itemPutTDT( PHB_ITEM pItem, LONG lJulian, LONG lMilliSec );
+ support for timestamp items in hb_itemString(), hb_itemPadConv() and
hb_itemTypeStr() functions
* harbour/include/hbvm.h
* harbour/include/hbxvm.h
* harbour/include/hbapi.h
* harbour/source/vm/hvm.c
+ added HB_IT_TIMESTAMP items
* modified HB_IT_DATE internal item structure to use common structure
with HB_IT_TIMESTAMP - it simplifies HVM code and eliminates additional
RT conditions.
+ added HB_IS_TIMESTAMP() and ISTIMESTAMP() macros
+ added HB_IS_DATETIME() and ISDATETIME() macros - they return true
if item/parameter is DATE or TIMESTAMP type.
+ added void hb_vmPushTimeStamp( long lJulian, long lMilliSec );
and xhb_vmPushTimeStamp()
+ added support for timestamp values in relational operators:
<, <=, >, >=, =, ==
When two timestamp values are compared then VM compares date and
time parts in both values.
When date and timestamp values are used in <, <=, >, >=, = operations
then VM compares only date part in both values.
When date and timestamp values are used in == operation then VM
compares date part in both values and then check if time part
of timestamp value is 0.
+ added support for timestamp values in + and - math operations.
The following rules are used in timestamp arithmetic:
<t> + <t> => <t>
<t> - <t> => <n>
<t> + <n> => <t>
<n> + <t> => <t>
<t> - <n> => <t>
<d> + <t> => <t>
<t> + <d> => <t>
<d> - <t> => <n>
<t> - <d> => <n>
When number is result or argument of timestamp operation then the
its integer part is a number of day and fractional part is the time.
* harbour/source/rtl/dateshb.c
+ added new .prg functions to mange date and timestamp values:
HB_DATETIME() -> <tTimeStamp>
HB_CTOD( <cDate> [, <cDateFormat> ] ) -> <dDate>
HB_DTOC( <dDate> [, <cDateFormat> ] ) -> <cDate>
HB_NTOT( <nValue> ) -> <tTimeStamp>
HB_TTON( <tTimeStamp> ) -> <nValue>
HB_TTOC( <tTimeStamp>, [ <cDateFormat> ] [, <cTimeFormat> ] ) ->
<cTimeStamp>
HB_CTOT( <cTimeStamp>, [ <cDateFormat> ] [, <cTimeFormat> ] ) ->
<tTimeStamp>
HB_TTOS( <tTimeStamp> ) -> <cYYYYMMDDHHMMSSFFF>
HB_STOT( <cDateTime> ) -> <tTimeStamp>
<cDateTime> should be in one of the above form:
- "YYYYMMDDHHMMSSFFF"
- "YYYYMMDDHHMMSSFF"
- "YYYYMMDDHHMMSSF"
- "YYYYMMDDHHMMSS"
- "YYYYMMDDHHMM"
- "YYYYMMDDHH"
- "YYYYMMDD"
- "HHMMSSFFF"
- "HHMMSSF"
- "HHMMSS"
- "HHMM"
- "HH"
Important is number of digits.
HB_TSTOSTR( <tTimeStamp> ) -> <cTimeStamp> // YYYY-MM-DD HH:MM:SS.fff
HB_STRTOTS( <cTimeStamp> ) -> <tTimeStamp>
<cTimeStamp> should be in one of the above form:
YYYY-MM-DD [H[H][:M[M][:S[S][.f[f[f[f]]]]]]] [PM|AM]
YYYY-MM-DDT[H[H][:M[M][:S[S][.f[f[f[f]]]]]]] [PM|AM]
The folowing characters can be used as date delimiters: "-", "/", "."
T - is literal "T" - it's for XML timestamp format
if PM or AM is used HH is in range < 1 : 12 > otherwise
in range < 0 : 23 >
HB_HOUR( <tTimeStamp> ) -> <nHour>
HB_MINUTE( <tTimeStamp> ) -> <nMinute>
HB_SEC( <tTimeStamp> ) -> <nSeconds> // with milliseconds
* harbour/source/rtl/datec.c
+ accept timestamp parameters in CMONTH() and CDOW() functions
* harbour/source/rtl/empty.c
+ added support for timestamp items
* harbour/source/rtl/itemseri.c
+ added support for timestamp items serialization
* harbour/source/rtl/minmax.c
+ added support for timestamp values to MIN() and MAX() functions.
when only one of given parameters is timestamp value and other
is date value and date parts are equal then always date item
is returned as both MIN() or MAX() value.
* harbour/source/rtl/dates.c
+ added new C functions: hb_timeFormat(), hb_timeUnformat(),
hb_timeStampFormat(), hb_timeStampUnformat()
* harbour/source/rtl/valtype.c
+ added .prg functions: HB_ISDATETIME(), HB_ISTIMESTAMP()
* harbour/source/rtl/transfrm.c
+ added support for timestamp items formatting.
+ added new function modifier @T.
When @T is used without @D then only time part of timestamp value
is formatted and return.
When @D is used without @T then only date part of timestamp value
is formatted and return.
* harbour/source/rtl/tbrowse.prg
+ display timestamp values
* harbour/source/rtl/philes.c
+ accept timestamp value as second parameter of HB_FSETDATETIME()
function
+ store file data and time in second parameter of HB_FGETDATETIME()
as timestamp value.
Old parameters (2-dDate, 3-cTime) are still supported but please think
about removing them - they are redundant.
* harbour/source/rtl/filesys.c
* updated function names
* harbour/source/rdd/dbf1.c
+ added native support for time and timestamp fields
* harbour/include/hbrddcdx.h
* harbour/include/hbrddnsx.h
* harbour/source/rdd/dbfntx/dbfntx1.c
* harbour/source/rdd/dbfcdx/dbfcdx1.c
* harbour/source/rdd/dbfnsx/dbfnsx1.c
* harbour/source/rdd/dbffpt/dbffpt1.c
+ added support for indexing timestamp fields
+ added support for using DATE values with timestamp fields
which replicate HVM behavior.
SEEK and SEEKLAST with date value when active index is on
timestamp positions to 1-st or last record where date part
of indexed timesamp value is equal.
Settings scopes to date values when active index is on timestamp
value reduce the visible record range to these ones which have
date part of timestamp value in the range of dates values used
for scopes. It possible to mix date and timestamp values in scope
and set one scope to date value and the second to timesamp.
* harbour/source/rdd/sdf1.c
* harbour/source/rdd/delim1.c
+ added support for exporting timestamp fields
* harbour/source/rdd/dbsql.c
! fixed typo in logical value export
+ export timestamp fields.
Please update the format to given SQL syntax.
* harbour/contrib/hbct/files.c
+ changed SETFDATI() to optionally accept timestamp parameter
instead of two parameters dDate and cTime
* harbour/contrib/hbct/misc1.c
+ added timestamp support to XTOC() function
* harbour/contrib/hbct/misc2.c
+ added timestamp support to COMPLEMENT() function
* harbour/contrib/hbct/dattime2.c
+ accept timestamp values in ADDMONTH(), DOY(), ISLEAP(), QUARTER()
LASTDAYOM(), WEEK() functions
* harbour/contrib/hbmzip/hbmzip.c
+ updated HB_ZipFileCreate( hZip, cZipName, tDateTime, cTime, ... )
functions to optionaly accept timestamp value in 3-rd parameter
instead od dDate, and cTime in 3-rd and 4-th parameters.
+ updated HB_UnzipFileInfo( hUnzip, @cZipName, @tDateTime, @cTime, ... )
to return timestamp value in 3-rd parameter instead of date value.
TODO: Please think about removing 4-th parameter from:
HB_ZipFileCreate( hZip, cZipName, tDateTime, cTime, ... )
HB_UnzipFileInfo( hUnzip, @cZipName, @tDateTime, @cTime, ... )
Now it's redundant.
* harbour/contrib/hbmzip/readme.txt
* updated parameters description for above functions
* harbour/contrib/hbnf/descendn.c
+ added timestamp support to FT_DESCEND() function
* harbour/contrib/hbclipsm/date.c
+ accept timestamp values in DATEASAGE(), DATEASARRAY() and DATEISLEAP()
functions
* harbour/contrib/hbmisc/dates2.c
+ accept timestamp values in ISLEAPYEAR(), DAYSINMONTH(), EOM(), BOM(),
WOM(), WOY(), EOY() and BOY() functions
The following contrib files should be updated but I'm leaving it to
other developers who want to keep this code alive:
contrib/hbtip/utils.c
contrib/hbvpdf/hbvpdf.prg
contrib/hbvpdf/hbvpdft.prg
contrib/hbwin/win_dll.c
some minor cleanups if necessary and authors will find
timestamp values usable
contrib/hbole/ole2.c
contrib/hbwin/win_ole.c
add support for timestamp values in OLE
contrib/rddado/adordd.prg
contrib/rddads/ads1.c
contrib/rddads/adsx.c
contrib/rddsql/...
add support for timestamp values in RDDs
Warning: this implementation is not xHarbour compatible. There are many
important differences. Mostly on C level and used API. Please be careful
in porting xHarbour source code to Harbour.
687 lines
31 KiB
C
687 lines
31 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
*
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
#ifndef HB_PP_H_
|
|
#define HB_PP_H_
|
|
|
|
#include "hbapi.h"
|
|
#include "hbapifs.h"
|
|
|
|
HB_EXTERN_BEGIN
|
|
|
|
#define HB_BLOCK_MACRO 1
|
|
#define HB_BLOCK_LATEEVAL 2
|
|
#define HB_BLOCK_VPARAMS 4
|
|
#define HB_BLOCK_EXT 8
|
|
|
|
/* #pragma {__text,__stream,__cstream}|functionOut|functionEnd|functionStart */
|
|
#define HB_PP_STREAM_OFF 0 /* standard preprocessing */
|
|
#define HB_PP_STREAM_COMMENT 1 /* multiline comment */
|
|
#define HB_PP_STREAM_DUMP_C 2 /* pragma BEGINDUMP */
|
|
#define HB_PP_STREAM_CLIPPER 3 /* clipper compatible TEXT/ENDTEXT */
|
|
#define HB_PP_STREAM_PRG 4 /* TEXT/ENDTEXT lines joined with LF */
|
|
#define HB_PP_STREAM_C 5 /* TEXT/ENDTEXT lines joined and ESC seq processed */
|
|
#define HB_PP_STREAM_INLINE_C 6 /* hb_inLIne() {...} data, should not be preprocessed */
|
|
|
|
/* hb_inLine() states */
|
|
#define HB_PP_INLINE_OFF 0
|
|
#define HB_PP_INLINE_START 1
|
|
#define HB_PP_INLINE_PARAM 2
|
|
#define HB_PP_INLINE_BODY 3
|
|
#define HB_PP_INLINE_COMMENT 4
|
|
#define HB_PP_INLINE_QUOTE1 5
|
|
#define HB_PP_INLINE_QUOTE2 6
|
|
|
|
/* function to open included files */
|
|
#define HB_PP_OPEN_FUNC_( func ) FILE * func( void *, const char *, BOOL, BOOL *, char * )
|
|
typedef HB_PP_OPEN_FUNC_( HB_PP_OPEN_FUNC );
|
|
typedef HB_PP_OPEN_FUNC * PHB_PP_OPEN_FUNC;
|
|
|
|
/* function to close included files */
|
|
#define HB_PP_CLOSE_FUNC_( func ) void func( void *, FILE * )
|
|
typedef HB_PP_CLOSE_FUNC_( HB_PP_CLOSE_FUNC );
|
|
typedef HB_PP_CLOSE_FUNC * PHB_PP_CLOSE_FUNC;
|
|
|
|
/* function to generate errors */
|
|
#define HB_PP_ERROR_FUNC_( func ) void func( void *, const char **, char, int, const char *, const char * )
|
|
typedef HB_PP_ERROR_FUNC_( HB_PP_ERROR_FUNC );
|
|
typedef HB_PP_ERROR_FUNC * PHB_PP_ERROR_FUNC;
|
|
|
|
/* function to redirect stdout messages */
|
|
#define HB_PP_DISP_FUNC_( func ) void func( void *, const char * )
|
|
typedef HB_PP_DISP_FUNC_( HB_PP_DISP_FUNC );
|
|
typedef HB_PP_DISP_FUNC * PHB_PP_DISP_FUNC;
|
|
|
|
/* function for catching #pragma dump data */
|
|
#define HB_PP_DUMP_FUNC_( func ) void func( void *, char *, ULONG, int )
|
|
typedef HB_PP_DUMP_FUNC_( HB_PP_DUMP_FUNC );
|
|
typedef HB_PP_DUMP_FUNC * PHB_PP_DUMP_FUNC;
|
|
|
|
/* function for catching HB_INLINE(...){...} data */
|
|
#define HB_PP_INLINE_FUNC_( func ) void func( void *, char *, char *, ULONG, int )
|
|
typedef HB_PP_INLINE_FUNC_( HB_PP_INLINE_FUNC );
|
|
typedef HB_PP_INLINE_FUNC * PHB_PP_INLINE_FUNC;
|
|
|
|
/* function for catching #pragma dump data */
|
|
#define HB_PP_SWITCH_FUNC_( func ) BOOL func( void *, const char *, int )
|
|
typedef HB_PP_SWITCH_FUNC_( HB_PP_SWITCH_FUNC );
|
|
typedef HB_PP_SWITCH_FUNC * PHB_PP_SWITCH_FUNC;
|
|
|
|
|
|
/* preprocessor tokens */
|
|
#define HB_PP_TOKEN_NUL 0
|
|
|
|
#define HB_PP_MMARKER_REGULAR 1
|
|
#define HB_PP_MMARKER_LIST 2
|
|
#define HB_PP_MMARKER_RESTRICT 3
|
|
#define HB_PP_MMARKER_WILD 4
|
|
#define HB_PP_MMARKER_EXTEXP 5
|
|
#define HB_PP_MMARKER_NAME 6
|
|
#define HB_PP_MMARKER_OPTIONAL 7
|
|
|
|
#define HB_PP_RMARKER_REGULAR 11
|
|
#define HB_PP_RMARKER_STRDUMP 12
|
|
#define HB_PP_RMARKER_STRSTD 13
|
|
#define HB_PP_RMARKER_STRSMART 14
|
|
#define HB_PP_RMARKER_BLOCK 15
|
|
#define HB_PP_RMARKER_LOGICAL 16
|
|
#define HB_PP_RMARKER_NUL 17
|
|
#define HB_PP_RMARKER_OPTIONAL 18
|
|
#define HB_PP_RMARKER_DYNVAL 19
|
|
|
|
/* keywords, pseudo keywords and PP only tokens */
|
|
#define HB_PP_TOKEN_KEYWORD 21
|
|
#define HB_PP_TOKEN_MACROVAR 22
|
|
#define HB_PP_TOKEN_MACROTEXT 23
|
|
#define HB_PP_TOKEN_TEXT 24
|
|
#define HB_PP_TOKEN_OTHER 25 /* non keyword, text, or operator character */
|
|
#define HB_PP_TOKEN_BACKSLASH 26 /* "\\" */
|
|
#define HB_PP_TOKEN_PIPE 27 /* "|" */
|
|
#define HB_PP_TOKEN_DOT 28 /* "." */
|
|
#define HB_PP_TOKEN_COMMA 29 /* "," */
|
|
#define HB_PP_TOKEN_EOC 30 /* ";" */
|
|
#define HB_PP_TOKEN_EOL 31 /* "\n" */
|
|
#define HB_PP_TOKEN_HASH 32 /* "#" */
|
|
#define HB_PP_TOKEN_DIRECTIVE 33 /* direct # directive first token */
|
|
|
|
/* constant values */
|
|
#define HB_PP_TOKEN_STRING 41
|
|
#define HB_PP_TOKEN_NUMBER 42
|
|
#define HB_PP_TOKEN_DATE 43
|
|
#define HB_PP_TOKEN_TIMESTAMP 44
|
|
#define HB_PP_TOKEN_LOGICAL 45
|
|
|
|
/* operators */
|
|
#define HB_PP_TOKEN_LEFT_PB 50
|
|
#define HB_PP_TOKEN_RIGHT_PB 51
|
|
#define HB_PP_TOKEN_LEFT_SB 52
|
|
#define HB_PP_TOKEN_RIGHT_SB 53
|
|
#define HB_PP_TOKEN_LEFT_CB 54
|
|
#define HB_PP_TOKEN_RIGHT_CB 55
|
|
#define HB_PP_TOKEN_REFERENCE 56
|
|
#define HB_PP_TOKEN_AMPERSAND 57
|
|
#define HB_PP_TOKEN_SEND 58
|
|
#define HB_PP_TOKEN_ALIAS 59
|
|
|
|
#define HB_PP_TOKEN_ASSIGN 60
|
|
#define HB_PP_TOKEN_PLUSEQ 61
|
|
#define HB_PP_TOKEN_MINUSEQ 62
|
|
#define HB_PP_TOKEN_MULTEQ 63
|
|
#define HB_PP_TOKEN_DIVEQ 64
|
|
#define HB_PP_TOKEN_MODEQ 65
|
|
#define HB_PP_TOKEN_EXPEQ 66
|
|
|
|
#define HB_PP_TOKEN_INC 67
|
|
#define HB_PP_TOKEN_DEC 68
|
|
#define HB_PP_TOKEN_NOT 69
|
|
#define HB_PP_TOKEN_OR 70
|
|
#define HB_PP_TOKEN_AND 71
|
|
#define HB_PP_TOKEN_EQUAL 72
|
|
#define HB_PP_TOKEN_EQ 73
|
|
#define HB_PP_TOKEN_LT 74
|
|
#define HB_PP_TOKEN_GT 75
|
|
#define HB_PP_TOKEN_LE 76
|
|
#define HB_PP_TOKEN_GE 77
|
|
#define HB_PP_TOKEN_NE 78
|
|
#define HB_PP_TOKEN_IN 79
|
|
#define HB_PP_TOKEN_PLUS 80
|
|
#define HB_PP_TOKEN_MINUS 81
|
|
#define HB_PP_TOKEN_MULT 82
|
|
#define HB_PP_TOKEN_DIV 83
|
|
#define HB_PP_TOKEN_MOD 84
|
|
#define HB_PP_TOKEN_POWER 85
|
|
#define HB_PP_TOKEN_EPSILON 86
|
|
#define HB_PP_TOKEN_SHIFTL 87
|
|
#define HB_PP_TOKEN_SHIFTR 88
|
|
#define HB_PP_TOKEN_BITXOR 89
|
|
|
|
#define HB_PP_TOKEN_TYPE(t) ( (t) & 0xff )
|
|
/* bitfields */
|
|
/* #define HB_PP_TOKEN_UNARY 0x0100 */
|
|
/* #define HB_PP_TOKEN_BINARY 0x0200 */
|
|
/* #define HB_PP_TOKEN_JOINABLE 0x0400 */
|
|
#define HB_PP_TOKEN_MATCHMARKER 0x2000
|
|
#define HB_PP_TOKEN_STATIC 0x4000
|
|
#define HB_PP_TOKEN_PREDEFINED 0x8000
|
|
|
|
#define HB_PP_TOKEN_SETTYPE(t,n) do{ (t)->type = ( (t)->type & 0xff00 ) | (n); } while(0)
|
|
|
|
#define HB_PP_TOKEN_ALLOC(t) ( ( (t) & HB_PP_TOKEN_STATIC ) == 0 )
|
|
#define HB_PP_TOKEN_ISPREDEF(t) ( ( (t)->type & HB_PP_TOKEN_PREDEFINED ) != 0 )
|
|
|
|
/* These macros are very important for the PP behavior. They define what
|
|
and how will be translated. Their default definitions are not strictly
|
|
Clipper compatible to allow programmer using indirect # directive
|
|
EOL - end of line => '\n' or NULL
|
|
EOC - end of command => EOL or ';'
|
|
EOS - end of subst => EOL or ';' + '#'
|
|
EOP - end of pattern => EOL for direct and EOC for indirect
|
|
*/
|
|
|
|
/* End Of Line */
|
|
#define HB_PP_TOKEN_ISEOL(t) ( (t) == NULL || \
|
|
HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_EOL )
|
|
/* End Of Command */
|
|
#define HB_PP_TOKEN_ISEOC(t) ( HB_PP_TOKEN_ISEOL(t) || \
|
|
HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_EOC )
|
|
|
|
#ifdef HB_C52_STRICT
|
|
# define HB_PP_TOKEN_ISEOS(t) HB_PP_TOKEN_ISEOL(t)
|
|
# define HB_PP_TOKEN_ISEOP(t,l) HB_PP_TOKEN_ISEOL(t)
|
|
#else
|
|
/* End Of Subst - define how many tokens in line should be translated,
|
|
Clipper translate whole line */
|
|
# define HB_PP_TOKEN_ISEOS(t) ( HB_PP_TOKEN_ISEOL(t) || \
|
|
( HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_EOC && \
|
|
(t)->pNext && \
|
|
( HB_PP_TOKEN_TYPE((t)->pNext->type) == HB_PP_TOKEN_HASH || \
|
|
HB_PP_TOKEN_TYPE((t)->pNext->type) == HB_PP_TOKEN_DIRECTIVE ) ) )
|
|
/* End Of Pattern - the second paramter define if it's direct or indirect
|
|
pattern */
|
|
# define HB_PP_TOKEN_ISEOP(t,l) ( (l) ? HB_PP_TOKEN_ISEOL(t) : HB_PP_TOKEN_ISEOC(t) )
|
|
#endif
|
|
|
|
#define HB_PP_TOKEN_ISDIRECTIVE(t) ( HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_DIRECTIVE || \
|
|
HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_HASH )
|
|
|
|
#define HB_PP_TOKEN_CANJOIN(t) ( ! HB_PP_TOKEN_CLOSE_BR(t) && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_KEYWORD && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_MACROVAR && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_MACROTEXT && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_TEXT && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_STRING && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_NUMBER && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_DATE && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_TIMESTAMP && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_LOGICAL )
|
|
|
|
#define HB_PP_TOKEN_OPEN_BR(t) ( HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_LEFT_PB || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_LEFT_SB || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_LEFT_CB )
|
|
|
|
#define HB_PP_TOKEN_CLOSE_BR(t) ( HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_RIGHT_PB || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_RIGHT_SB || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_RIGHT_CB )
|
|
|
|
#define HB_PP_TOKEN_ISNEUTRAL(t) ( HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_DEC || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_INC )
|
|
|
|
#define HB_PP_TOKEN_NEEDLEFT(t) ( HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_ASSIGN || \
|
|
HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_PLUSEQ || \
|
|
HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_MINUSEQ || \
|
|
HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_MULTEQ || \
|
|
HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_DIVEQ || \
|
|
HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_MODEQ || \
|
|
HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_EXPEQ || \
|
|
HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_EQUAL || \
|
|
HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_EQ || \
|
|
( HB_PP_TOKEN_TYPE((t)->type) == HB_PP_TOKEN_SEND && \
|
|
(t)->spaces == 0 && (t)->pNext && \
|
|
( HB_PP_TOKEN_TYPE((t)->pNext->type) == HB_PP_TOKEN_KEYWORD || \
|
|
HB_PP_TOKEN_TYPE((t)->pNext->type) == HB_PP_TOKEN_MACROVAR || \
|
|
HB_PP_TOKEN_TYPE((t)->pNext->type) == HB_PP_TOKEN_MACROTEXT ) ) )
|
|
|
|
/* I do not want to replicate exactly Clipper PP behavior and check if
|
|
expression is valid.
|
|
it's wrong and causes that potentially valid expressions are not
|
|
properly parsed, f.e:
|
|
? 1 + + 2
|
|
does not work when
|
|
qout( 1 + + 2 )
|
|
perfectly does.
|
|
It this difference will be reason of some problems then please inform me
|
|
with a code example so I'll be able if it should be implemented or not.
|
|
Now I simply disabled HB_PP_TOKEN_NEEDRIGHT() macro.
|
|
*/
|
|
#ifndef HB_C52_STRICT
|
|
#define HB_PP_TOKEN_NEEDRIGHT(t) ( FALSE )
|
|
#else
|
|
#define HB_PP_TOKEN_NEEDRIGHT(t) ( HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_PLUS || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_MINUS || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_MULT || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_DIV || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_MOD || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_POWER )
|
|
#endif
|
|
|
|
#ifdef HB_C52_STRICT
|
|
# define HB_PP_TOKEN_ISUNARY(t) ( HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_MINUS || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_DEC || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_INC || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_AMPERSAND )
|
|
#else
|
|
# define HB_PP_TOKEN_ISUNARY(t) ( HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_MINUS || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_DEC || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_INC || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_AMPERSAND || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_PLUS || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_NOT || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_REFERENCE )
|
|
#endif
|
|
|
|
#define HB_PP_TOKEN_ISMATCH(t) ( (t) && ( (t)->type & HB_PP_TOKEN_MATCHMARKER ) != 0 )
|
|
|
|
#if 0
|
|
#define HB_PP_TOKEN_ISRESULT(t) ( HB_PP_TOKEN_TYPE(t) == HB_PP_RMARKER_REGULAR || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_RMARKER_STRDUMP || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_RMARKER_STRSTD || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_RMARKER_STRSMART || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_RMARKER_BLOCK || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_RMARKER_LOGICAL || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_RMARKER_NUL )
|
|
#endif
|
|
|
|
#define HB_PP_TOKEN_ISEXPVAL(t) ( HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_KEYWORD || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_MACROVAR || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_MACROTEXT || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_STRING || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_NUMBER || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_DATE || \
|
|
HB_PP_TOKEN_TYPE(t) == HB_PP_TOKEN_TIMESTAMP )
|
|
#define HB_PP_TOKEN_ISEXPTOKEN(t) ( HB_PP_TOKEN_ISEXPVAL( (t)->type ) || \
|
|
( (t)->pNext && HB_PP_TOKEN_ISUNARY( (t)->type ) && \
|
|
HB_PP_TOKEN_ISEXPVAL( (t)->pNext->type ) ) )
|
|
|
|
#ifdef HB_C52_STRICT
|
|
/* Clipper supports quoting by [] for 1-st token in the line so we
|
|
are not checking for HB_PP_TOKEN_NUL in this macro */
|
|
#define HB_PP_TOKEN_CANQUOTE(t) ( HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_KEYWORD && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_MACROVAR && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_MACROTEXT && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_RIGHT_PB && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_RIGHT_SB && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_RIGHT_CB )
|
|
#else
|
|
/* Disable string quoting by [] for next token if current one is
|
|
constant value - it's not Clipper compatible but we need it for
|
|
accessing string characters by array index operator or introduce
|
|
similar extensions for other types in the future */
|
|
#define HB_PP_TOKEN_CANQUOTE(t) ( HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_KEYWORD && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_MACROVAR && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_MACROTEXT && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_RIGHT_PB && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_RIGHT_SB && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_RIGHT_CB && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_STRING && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_NUMBER && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_DATE && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_TIMESTAMP && \
|
|
HB_PP_TOKEN_TYPE(t) != HB_PP_TOKEN_LOGICAL )
|
|
#endif
|
|
|
|
typedef struct _HB_PP_TOKEN
|
|
{
|
|
struct _HB_PP_TOKEN * pNext; /* next token pointer */
|
|
struct _HB_PP_TOKEN * pMTokens; /* restrict or optional marker token(s) */
|
|
|
|
const char * value; /* token value */
|
|
USHORT len; /* token value length */
|
|
USHORT spaces; /* leading spaces for stringify */
|
|
USHORT type; /* token type, see HB_PP_TOKEN_* */
|
|
USHORT index; /* index to match marker or 0 */
|
|
}
|
|
HB_PP_TOKEN, * PHB_PP_TOKEN;
|
|
|
|
|
|
#ifdef _HB_PP_INTERNAL
|
|
|
|
/* default maximum number of translations */
|
|
#define HB_PP_MAX_CYCLES 4096
|
|
/* maximum number of single token translations, in Clipper it's 18 + number
|
|
of used rules, we will use also constant but increased by total number
|
|
of rules of given type: define, [x]translate, [x]command */
|
|
#define HB_PP_MAX_REPEATS 128
|
|
|
|
/* Clipper allows only 16 nested includes */
|
|
#define HB_PP_MAX_INCLUDED_FILES 64
|
|
|
|
#define HB_PP_HASHID(t) ( ( UCHAR ) HB_PP_UPPER( (t)->value[0] ) )
|
|
#define HB_PP_HASHID_MAX 256
|
|
#define HB_PP_DEFINE 1
|
|
#define HB_PP_TRANSLATE 2
|
|
#define HB_PP_COMMAND 4
|
|
|
|
/* comparision modes */
|
|
#define HB_PP_CMP_ADDR 0 /* compare token addresses */
|
|
#define HB_PP_CMP_STD 1 /* standard comparison, ignore the case of the characters */
|
|
#define HB_PP_CMP_DBASE 2 /* dbase keyword comparison (accepts at least four character shortcuts) ignore the case of the characters */
|
|
#define HB_PP_CMP_CASE 3 /* case sensitive comparison */
|
|
|
|
#define HB_PP_CMP_MODE(t) ( (t) & 0xff )
|
|
#define HB_PP_STD_RULE 0x8000
|
|
|
|
|
|
/* conditional compilation */
|
|
#define HB_PP_COND_ELSE 1 /* preprocessing and output stopped until corresponding #else */
|
|
#define HB_PP_COND_DISABLE 2 /* preprocessing and output stopped until corresponding #endif(s) */
|
|
|
|
/* operation precedence for #if calculation */
|
|
#define HB_PP_PREC_NUL 0
|
|
#define HB_PP_PREC_LOG 1
|
|
#define HB_PP_PREC_NOT 2
|
|
#define HB_PP_PREC_REL 3
|
|
#define HB_PP_PREC_BIT 4
|
|
#define HB_PP_PREC_PLUS 5
|
|
#define HB_PP_PREC_MULT 6
|
|
#define HB_PP_PREC_NEG 7
|
|
|
|
/* For platforms which does not use ASCII based character tables this macros
|
|
have to be changed to use valid C functions, f.e.:
|
|
isalpha(), isdigit(), ... */
|
|
#ifdef HB_C52_STRICT
|
|
# define HB_PP_ISILLEGAL(c) ( (c) < 32 || (c) >= 126 )
|
|
#else
|
|
# define HB_PP_ISILLEGAL(c) ( (c) < 32 || (c) == 127 )
|
|
#endif
|
|
#define HB_PP_ISTEXTCHAR(c) ( (unsigned char) (c) >= 128 )
|
|
#define HB_PP_ISBLANK(c) ( (c) == ' ' || (c) == '\t' )
|
|
#define HB_PP_ISDIGIT(c) HB_ISDIGIT( c )
|
|
#define HB_PP_ISHEX(c) HB_ISXDIGIT( c )
|
|
#define HB_PP_ISTRUE(c) ( (c) == 'T' || (c) == 't' || \
|
|
(c) == 'Y' || (c) == 'y' )
|
|
#define HB_PP_ISFALSE(c) ( (c) == 'F' || (c) == 'f' || \
|
|
(c) == 'N' || (c) == 'n' )
|
|
#define HB_PP_ISFIRSTIDCHAR(c) HB_ISFIRSTIDCHAR( c )
|
|
#define HB_PP_ISNEXTIDCHAR(c) HB_ISNEXTIDCHAR( c )
|
|
#define HB_PP_UPPER(c) HB_TOUPPER( c )
|
|
|
|
typedef struct _HB_PP_RESULT
|
|
{
|
|
struct _HB_PP_RESULT * pNext;
|
|
PHB_PP_TOKEN pFirstToken;
|
|
PHB_PP_TOKEN pNextExpr;
|
|
}
|
|
HB_PP_RESULT, * PHB_PP_RESULT;
|
|
|
|
typedef struct _HB_PP_MARKERPTR
|
|
{
|
|
struct _HB_PP_MARKERPTR * pNext;
|
|
PHB_PP_TOKEN pToken;
|
|
PHB_PP_TOKEN pMTokens;
|
|
USHORT type;
|
|
}
|
|
HB_PP_MARKERPTR, * PHB_PP_MARKERPTR;
|
|
|
|
typedef struct _HB_PP_MARKERLST
|
|
{
|
|
struct _HB_PP_MARKERLST * pNext;
|
|
PHB_PP_MARKERPTR pMatchMarkers;
|
|
USHORT canrepeat;
|
|
USHORT index;
|
|
}
|
|
HB_PP_MARKERLST, * PHB_PP_MARKERLST;
|
|
|
|
typedef struct
|
|
{
|
|
USHORT canrepeat;
|
|
/* filled when pattern matches for substitution, cleared after */
|
|
USHORT matches;
|
|
PHB_PP_RESULT pResult;
|
|
}
|
|
HB_PP_MARKER, * PHB_PP_MARKER;
|
|
|
|
typedef struct _HB_PP_RULE
|
|
{
|
|
struct _HB_PP_RULE * pPrev; /* previous rule */
|
|
PHB_PP_TOKEN pMatch; /* match patern or NULL */
|
|
PHB_PP_TOKEN pResult; /* result patern or NULL */
|
|
USHORT mode; /* comparison mode HB_PP_CMP_* */
|
|
USHORT markers; /* number of markers in marker table */
|
|
/* filled when pattern matches for substitution, cleared after */
|
|
PHB_PP_MARKER pMarkers; /* marker table */
|
|
PHB_PP_TOKEN pNextExpr; /* next expression after match pattern */
|
|
}
|
|
HB_PP_RULE, * PHB_PP_RULE;
|
|
|
|
typedef struct _HB_PP_DEFRULE
|
|
{
|
|
PHB_PP_TOKEN pMatch;
|
|
PHB_PP_TOKEN pResult;
|
|
USHORT mode;
|
|
USHORT markers;
|
|
ULONG repeatbits;
|
|
}
|
|
HB_PP_DEFRULE, * PHB_PP_DEFRULE;
|
|
|
|
typedef struct
|
|
{
|
|
const char * name; /* input name */
|
|
ULONG len; /* input name length */
|
|
const char * value; /* output name */
|
|
USHORT type; /* HB_PP_TOKEN_* */
|
|
}
|
|
HB_PP_OPERATOR, * PHB_PP_OPERATOR;
|
|
|
|
typedef struct
|
|
{
|
|
char * pBufPtr;
|
|
ULONG ulLen;
|
|
ULONG ulAllocated;
|
|
}
|
|
HB_MEM_BUFFER, * PHB_MEM_BUFFER;
|
|
|
|
typedef struct _HB_PP_FILE
|
|
{
|
|
char * szFileName; /* input file name */
|
|
FILE * file_in; /* input file handle */
|
|
PHB_PP_TOKEN pTokenList; /* current line decoded to tokens */
|
|
int iCurrentLine; /* current line in file */
|
|
int iLastLine; /* last non empty generated line */
|
|
int iLastDisp; /* last shown line number */
|
|
int iTokens; /* number of decoded tokens */
|
|
BOOL fGenLineInfo; /* #line information should be generated */
|
|
BOOL fEof; /* the end of file reached */
|
|
|
|
const char * pLineBuf; /* buffer for parsing external lines */
|
|
ULONG ulLineBufLen; /* size of external line buffer */
|
|
|
|
struct _HB_PP_FILE * pPrev; /* previous file, the one which included this file */
|
|
}
|
|
HB_PP_FILE, * PHB_PP_FILE;
|
|
|
|
typedef struct
|
|
{
|
|
/* common for all included files */
|
|
PHB_PP_OPERATOR pOperators; /* user defined operators */
|
|
PHB_PP_RULE pDefinitions; /* #define table */
|
|
PHB_PP_RULE pTranslations; /* #[x]translate table */
|
|
PHB_PP_RULE pCommands; /* #[x]command table */
|
|
int iOperators; /* number of user defined operators */
|
|
int iDefinitions; /* number of rules in pDefinitions */
|
|
int iTranslations; /* number of rules in pTranslations */
|
|
int iCommands; /* number of rules in pCommands */
|
|
BYTE pMap[ HB_PP_HASHID_MAX ]; /* translation map */
|
|
|
|
PHB_PP_TOKEN pTokenOut; /* preprocessed tokens */
|
|
PHB_PP_TOKEN * pNextTokenPtr; /* pointer to the last NULL pointer in token list */
|
|
|
|
PHB_MEM_BUFFER pDumpBuffer; /* buffer for dump output */
|
|
PHB_MEM_BUFFER pOutputBuffer; /* buffer for preprocessed line */
|
|
|
|
int iLineTot; /* total number of parsed lines */
|
|
int iCycle; /* translation counter */
|
|
int iMaxCycles; /* maximum number of translations */
|
|
int iHideStrings; /* hidden string mode */
|
|
BOOL fTracePragmas; /* display information about set pragmas */
|
|
BOOL fWritePreprocesed; /* write preprocessed data to file (.ppo) */
|
|
BOOL fWriteTrace; /* write translation to file (.ppt) */
|
|
|
|
HB_PATHNAMES * pIncludePath; /* search path(s) for included files */
|
|
|
|
char * szOutFileName; /* output file name */
|
|
FILE * file_out; /* output file handle */
|
|
char * szTraceFileName; /* trace output file name */
|
|
FILE * file_trace; /* trace output file handle */
|
|
|
|
BOOL fQuiet; /* do not show standard information */
|
|
BOOL fEscStr; /* use \ in strings as escape character */
|
|
BOOL fError; /* indicates error in last operation */
|
|
int iErrors; /* number of error during preprocessing */
|
|
int iCondCompile; /* current conditional compilation flag, when not 0 disable preprocessing and output */
|
|
int iCondCount; /* number of nested #if[n]def directive */
|
|
int iCondStackSize; /* size of conditional compilation stack */
|
|
int * pCondStack; /* conditional compilation stack */
|
|
|
|
/* used to divide line per tokens and tokens manipulations */
|
|
PHB_MEM_BUFFER pBuffer; /* buffer for input and output line */
|
|
int iSpaces; /* leading spaces for next token */
|
|
int iSpacesNL; /* leading spaces ';' token (fCanNextLine) if it will not be line concatenator */
|
|
int iSpacesMin; /* minimal number of leading spaces for next token */
|
|
USHORT usLastType; /* last token type */
|
|
BOOL fCanNextLine; /* ';' token found and we do not know yet if it's command separator or line concatenator */
|
|
BOOL fDirective; /* # directives is parsed */
|
|
BOOL fNewStatement; /* set to TRUE at line begining or after each ';' token */
|
|
PHB_PP_TOKEN pFuncOut; /* function used for each line in HB_PP_STREAM_* dumping */
|
|
PHB_PP_TOKEN pFuncEnd; /* end function for HB_PP_STREAM_* dumping */
|
|
PHB_MEM_BUFFER pStreamBuffer; /* buffer for stream output */
|
|
int iStreamDump; /* stream output, see HB_PP_STREAM_* */
|
|
int iDumpLine; /* line where current dump output begins */
|
|
int iInLineCount; /* number of hb_inLine() functions */
|
|
int iInLineState; /* hb_inLine() state */
|
|
int iInLineBraces; /* braces counter for hb_inLine() */
|
|
int iNestedBlock; /* nested extended block counter */
|
|
int iBlockState; /* state of extended block declaration */
|
|
|
|
PHB_PP_FILE pFile; /* currently preprocessed file structure */
|
|
int iFiles; /* number of open files */
|
|
|
|
void * cargo; /* parameter passed to user functions */
|
|
PHB_PP_OPEN_FUNC pOpenFunc; /* function to open files */
|
|
PHB_PP_CLOSE_FUNC pCloseFunc; /* function to close files */
|
|
PHB_PP_ERROR_FUNC pErrorFunc; /* function to generate errors */
|
|
PHB_PP_DISP_FUNC pDispFunc; /* function to redirect stdout messages */
|
|
PHB_PP_DUMP_FUNC pDumpFunc; /* function for catching #pragma dump data */
|
|
PHB_PP_INLINE_FUNC pInLineFunc; /* function for hb_inLine(...) {...} blocks */
|
|
PHB_PP_SWITCH_FUNC pSwitchFunc; /* function for compiler switches with #pragma ... */
|
|
}
|
|
HB_PP_STATE, * PHB_PP_STATE;
|
|
|
|
extern void hb_pp_initRules( PHB_PP_RULE * pRulesPtr, int * piRules,
|
|
const HB_PP_DEFRULE pDefRules[], int iDefRules );
|
|
|
|
|
|
#else
|
|
|
|
typedef void * PHB_PP_STATE;
|
|
|
|
#endif /* _HB_PP_INTERNAL */
|
|
|
|
/* public functions */
|
|
extern PHB_PP_STATE hb_pp_new( void );
|
|
extern void hb_pp_free( PHB_PP_STATE pState );
|
|
extern void hb_pp_reset( PHB_PP_STATE pState );
|
|
extern void hb_pp_init( PHB_PP_STATE pState, BOOL fQuiet,
|
|
int iCycles, void * cargo,
|
|
PHB_PP_OPEN_FUNC pOpenFunc, PHB_PP_CLOSE_FUNC pCloseFunc,
|
|
PHB_PP_ERROR_FUNC pErrorFunc, PHB_PP_DISP_FUNC pDispFunc,
|
|
PHB_PP_DUMP_FUNC pDumpFunc, PHB_PP_INLINE_FUNC pInLineFunc,
|
|
PHB_PP_SWITCH_FUNC pSwitchFunc );
|
|
extern void hb_pp_initDynDefines( PHB_PP_STATE pState );
|
|
extern void hb_pp_readRules( PHB_PP_STATE pState, const char * szRulesFile );
|
|
extern void hb_pp_setStdRules( PHB_PP_STATE pState );
|
|
extern void hb_pp_setStdBase( PHB_PP_STATE pState );
|
|
extern void hb_pp_setStream( PHB_PP_STATE pState, int iMode );
|
|
extern void hb_pp_addSearchPath( PHB_PP_STATE pState, const char * szPath, BOOL fReplace );
|
|
extern BOOL hb_pp_inBuffer( PHB_PP_STATE pState, const char * pBuffer, ULONG ulLen );
|
|
extern BOOL hb_pp_inFile( PHB_PP_STATE pState, const char * szFileName, BOOL fSearchPath, FILE * file_in, BOOL fError );
|
|
extern BOOL hb_pp_outFile( PHB_PP_STATE pState, const char * szOutFileName, FILE * file_out );
|
|
extern BOOL hb_pp_traceFile( PHB_PP_STATE pState, const char * szTraceFileName, FILE * file_trace );
|
|
extern char * hb_pp_fileName( PHB_PP_STATE pState );
|
|
extern int hb_pp_line( PHB_PP_STATE pState );
|
|
extern BOOL hb_pp_eof( PHB_PP_STATE pState );
|
|
extern int hb_pp_lineTot( PHB_PP_STATE pState );
|
|
extern char * hb_pp_outFileName( PHB_PP_STATE pState );
|
|
extern char * hb_pp_traceFileName( PHB_PP_STATE pState );
|
|
extern char * hb_pp_nextLine( PHB_PP_STATE pState, ULONG * pulLen );
|
|
extern char * hb_pp_parseLine( PHB_PP_STATE pState, const char * pLine, ULONG * pulLen );
|
|
extern void hb_pp_addDefine( PHB_PP_STATE pState, const char * szDefName, const char * szDefValue );
|
|
extern void hb_pp_delDefine( PHB_PP_STATE pState, const char * szDefName );
|
|
extern BOOL hb_pp_lasterror( PHB_PP_STATE pState );
|
|
extern int hb_pp_errorCount( PHB_PP_STATE pState );
|
|
extern BOOL hb_pp_eof( PHB_PP_STATE pState );
|
|
|
|
extern void hb_pp_tokenUpper( PHB_PP_TOKEN pToken );
|
|
extern void hb_pp_tokenToString( PHB_PP_STATE pState, PHB_PP_TOKEN pToken );
|
|
extern char * hb_pp_tokenBlockString( PHB_PP_STATE pState, PHB_PP_TOKEN pToken, int * piType, int * piLen );
|
|
extern PHB_PP_STATE hb_pp_lexNew( const char * pString, ULONG ulLen );
|
|
extern PHB_PP_TOKEN hb_pp_lexGet( PHB_PP_STATE pState );
|
|
extern PHB_PP_TOKEN hb_pp_tokenGet( PHB_PP_STATE pState );
|
|
extern BOOL hb_pp_tokenNextExp( PHB_PP_TOKEN * pTokenPtr );
|
|
|
|
/* PP lib helper functions */
|
|
extern PHB_PP_STATE hb_pp_Param( int iParam );
|
|
|
|
|
|
HB_EXTERN_END
|
|
|
|
#endif /* HB_PP_H_ */
|