X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=x2p%2Fa2p.h;h=2db5f36ebcaf758da600b629ce9c9536d9031aa2;hb=1703fc653cb30651ac3f8ba2ece6bb5cce4847f5;hp=a805e79a90d3bb22bb0431ff625fde91acf42190;hpb=378cc40b38293ffc7298c6a7ed3cd740ad79be52;p=p5sagit%2Fp5-mst-13.2.git diff --git a/x2p/a2p.h b/x2p/a2p.h index a805e79..2db5f36 100644 --- a/x2p/a2p.h +++ b/x2p/a2p.h @@ -1,20 +1,156 @@ -/* $Header: a2p.h,v 2.0 88/06/05 00:15:33 root Exp $ +/* $RCSfile: a2p.h,v $$Revision: 4.1 $$Date: 92/08/07 18:29:09 $ + * + * Copyright (c) 1991-1997, Larry Wall + * + * You may distribute under the terms of either the GNU General Public + * License or the Artistic License, as specified in the README file. * * $Log: a2p.h,v $ - * Revision 2.0 88/06/05 00:15:33 root - * Baseline version 2.0. - * */ #define VOIDUSED 1 -#include "../config.h" -#ifndef BCOPY -# define bcopy(s1,s2,l) memcpy(s2,s1,l); -# define bzero(s,l) memset(s,0,l); +#ifdef WIN32 +#define _INC_WIN32_PERL5 /* kludge around win32 stdio layer */ +#endif + +#ifdef VMS +# include "config.h" +#else +# include "../config.h" +#endif + +#if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus) +# define STANDARD_C 1 +#endif + +#ifdef WIN32 +#undef USE_STDIO_PTR /* XXX fast gets won't work, must investigate */ +# ifndef STANDARD_C +# define STANDARD_C +# endif +# if defined(__BORLANDC__) +# pragma warn -ccc +# pragma warn -rch +# pragma warn -sig +# pragma warn -pia +# pragma warn -par +# pragma warn -aus +# pragma warn -use +# pragma warn -csu +# pragma warn -pro +# elif defined(_MSC_VER) +# elif defined(__MINGW32__) +# endif +#endif + +/* Use all the "standard" definitions? */ +#if defined(STANDARD_C) && defined(I_STDLIB) +# include +#endif /* STANDARD_C */ + +#include + +#ifdef I_MATH +#include +#endif + +#ifdef I_SYS_TYPES +# include +#endif + +#ifdef USE_NEXT_CTYPE + +#if NX_CURRENT_COMPILER_RELEASE >= 400 +#include +#else /* NX_CURRENT_COMPILER_RELEASE < 400 */ +#include +#endif /* NX_CURRENT_COMPILER_RELEASE >= 400 */ + +#else /* !USE_NEXT_CTYPE */ +#include +#endif /* USE_NEXT_CTYPE */ + +#define MEM_SIZE Size_t + +#ifdef STANDARD_C +# include +#else + Malloc_t malloc _((MEM_SIZE nbytes)); + Malloc_t calloc _((MEM_SIZE elements, MEM_SIZE size)); + Malloc_t realloc _((Malloc_t where, MEM_SIZE nbytes)); + Free_t free _((Malloc_t where)); +#endif + +#if defined(I_STRING) || defined(__cplusplus) +# include +#else +# include +#endif + +#if !defined(HAS_BCOPY) || defined(__cplusplus) +# define bcopy(s1,s2,l) memcpy(s2,s1,l) +#endif +#if !defined(HAS_BZERO) || defined(__cplusplus) +# define bzero(s,l) memset(s,0,l) +#endif + +#if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr) +#define strchr index +#define strrchr rindex #endif -#include "handy.h" + +#ifdef I_TIME +# include +#endif + +#ifdef I_SYS_TIME +# ifdef I_SYS_TIME_KERNEL +# define KERNEL +# endif +# include +# ifdef I_SYS_TIME_KERNEL +# undef KERNEL +# endif +#endif + +#ifndef MSDOS +# if defined(HAS_TIMES) && defined(I_SYS_TIMES) +# include +# endif +#endif + +#ifdef DOSISH +# if defined(OS2) +# include "../os2ish.h" +# else +# include "../dosish.h" +# endif +#else +# if defined(VMS) +# define NO_PERL_TYPEDEFS +# include "vmsish.h" +# endif +#endif + +#ifndef STANDARD_C +/* All of these are in stdlib.h or time.h for ANSI C */ +Time_t time(); +struct tm *gmtime(), *localtime(); +char *strchr(), *strrchr(); +char *strcpy(), *strcat(); +#endif /* ! STANDARD_C */ + +#ifdef VMS +# include "handy.h" +#else +# include "../handy.h" +#endif + +#undef Nullfp +#define Nullfp Null(FILE*) + #define Nullop 0 #define OPROG 1 @@ -38,7 +174,7 @@ #define OCONCAT 19 #define OASSIGN 20 #define OADD 21 -#define OSUB 22 +#define OSUBTRACT 22 #define OMULT 23 #define ODIV 24 #define OMOD 25 @@ -86,6 +222,25 @@ #define OEXP 67 #define OSQRT 68 #define OINT 69 +#define ODO 70 +#define OPOW 71 +#define OSUB 72 +#define OGSUB 73 +#define OMATCH 74 +#define OUSERFUN 75 +#define OUSERDEF 76 +#define OCLOSE 77 +#define OATAN2 78 +#define OSIN 79 +#define OCOS 80 +#define ORAND 81 +#define OSRAND 82 +#define ODELETE 83 +#define OSYSTEM 84 +#define OCOND 85 +#define ORETURN 86 +#define ODEFINED 87 +#define OSTAR 88 #ifdef DOINIT char *opname[] = { @@ -111,7 +266,7 @@ char *opname[] = { "CONCAT", "ASSIGN", "ADD", - "SUB", + "SUBTRACT", "MULT", "DIV", "MOD", @@ -159,23 +314,43 @@ char *opname[] = { "EXP", "SQRT", "INT", - "70" + "DO", + "POW", + "SUB", + "GSUB", + "MATCH", + "USERFUN", + "USERDEF", + "CLOSE", + "ATAN2", + "SIN", + "COS", + "RAND", + "SRAND", + "DELETE", + "SYSTEM", + "COND", + "RETURN", + "DEFINED", + "STAR", + "89" }; #else extern char *opname[]; #endif -union { - int ival; - char *cval; -} ops[50000]; /* hope they have 200k to spare */ - EXT int mop INIT(1); -#define DEBUGGING - -#include -#include +union u_ops { + int ival; + char *cval; +}; +#if defined(iAPX286) || defined(M_I286) || defined(I80286) /* 80286 hack */ +#define OPSMAX (64000/sizeof(union u_ops)) /* approx. max segment size */ +#else +#define OPSMAX 50000 +#endif /* 80286 hack */ +EXT union u_ops ops[OPSMAX]; typedef struct string STR; typedef struct htbl HASH; @@ -183,6 +358,7 @@ typedef struct htbl HASH; #include "str.h" #include "hash.h" + /* A string is TRUE if not "" or "0". */ #define True(val) (tmps = (val), (*tmps && !(*tmps == '0' && !tmps[1]))) EXT char *Yes INIT("1"); @@ -197,22 +373,38 @@ EXT STR *Str; #define GROWSTR(pp,lp,len) if (*(lp) < (len)) growstr(pp,lp,len) -STR *str_new(); - -char *scanpat(); -char *scannum(); - -void str_free(); +/* Prototypes for things in a2p.c */ +int aryrefarg _(( int arg )); +int bl _(( int arg, int maybe )); +void dump _(( int branch )); +int fixfargs _(( int name, int arg, int prevargs )); +int fixrargs _(( char *name, int arg, int prevargs )); +void fixup _(( STR *str )); +int numary _(( int arg )); +int oper0 _(( int type )); +int oper1 _(( int type, int arg1 )); +int oper2 _(( int type, int arg1, int arg2 )); +int oper3 _(( int type, int arg1, int arg2, int arg3 )); +int oper4 _(( int type, int arg1, int arg2, int arg3, int arg4 )); +int oper5 _(( int type, int arg1, int arg2, int arg3, int arg4, int arg5 )); +void putlines _(( STR *str )); +void putone _(( void )); +int rememberargs _(( int arg )); +char * scannum _(( char *s )); +char * scanpat _(( char *s )); +int string _(( char *ptr, int len )); +void yyerror _(( char *s )); +int yylex _(( void )); EXT int line INIT(0); EXT FILE *rsfp; -EXT char buf[1024]; +EXT char buf[2048]; EXT char *bufptr INIT(buf); EXT STR *linestr INIT(Nullstr); -EXT char tokenbuf[256]; +EXT char tokenbuf[2048]; EXT int expectterm INIT(TRUE); #ifdef DEBUGGING @@ -241,16 +433,46 @@ EXT bool lval_field INIT(FALSE); EXT bool do_chop INIT(FALSE); EXT bool need_entire INIT(FALSE); EXT bool absmaxfld INIT(FALSE); +EXT bool saw_altinput INIT(FALSE); + +EXT bool nomemok INIT(FALSE); EXT char const_FS INIT(0); EXT char *namelist INIT(Nullch); EXT char fswitch INIT(0); +EXT bool old_awk INIT(0); EXT int saw_FS INIT(0); EXT int maxfld INIT(0); EXT int arymax INIT(0); -char *nameary[100]; +EXT char *nameary[100]; EXT STR *opens; EXT HASH *symtab; +EXT HASH *curarghash; + +#define P_MIN 0 +#define P_LISTOP 5 +#define P_COMMA 10 +#define P_ASSIGN 15 +#define P_COND 20 +#define P_DOTDOT 25 +#define P_OROR 30 +#define P_ANDAND 35 +#define P_OR 40 +#define P_AND 45 +#define P_EQ 50 +#define P_REL 55 +#define P_UNI 60 +#define P_FILETEST 65 +#define P_SHIFT 70 +#define P_ADD 75 +#define P_MUL 80 +#define P_MATCH 85 +#define P_UNARY 90 +#define P_POW 95 +#define P_AUTO 100 +#define P_MAX 999 + +EXT int an;