| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | /***********************************************************
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:08:09 +00:00
										 |  |  | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, | 
					
						
							|  |  |  | The Netherlands. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         All Rights Reserved | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Permission to use, copy, modify, and distribute this software and its | 
					
						
							|  |  |  | documentation for any purpose and without fee is hereby granted, | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | provided that the above copyright notice appear in all copies and that | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | both that copyright notice and this permission notice appear in | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | supporting documentation, and that the names of Stichting Mathematisch | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Centrum or CWI or Corporation for National Research Initiatives or | 
					
						
							|  |  |  | CNRI not be used in advertising or publicity pertaining to | 
					
						
							|  |  |  | distribution of the software without specific, written prior | 
					
						
							|  |  |  | permission. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | While CWI is the initial source for this software, a modified version | 
					
						
							|  |  |  | is made available by the Corporation for National Research Initiatives | 
					
						
							|  |  |  | (CNRI) at the Internet address ftp://ftp.python.org.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH | 
					
						
							|  |  |  | REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF | 
					
						
							|  |  |  | MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH | 
					
						
							|  |  |  | CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL | 
					
						
							|  |  |  | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | 
					
						
							|  |  |  | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | 
					
						
							|  |  |  | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | 
					
						
							|  |  |  | PERFORMANCE OF THIS SOFTWARE. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ******************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /* Parser generator main program */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | /* This expects a filename containing the grammar as argv[1] (UNIX)
 | 
					
						
							|  |  |  |    or asks the console for such a file name (THINK C). | 
					
						
							|  |  |  |    It writes its output on two files in the current directory: | 
					
						
							|  |  |  |    - "graminit.c" gets the grammar as a bunch of initialized data | 
					
						
							|  |  |  |    - "graminit.h" gets the grammar's non-terminals as #defines. | 
					
						
							|  |  |  |    Error messages and status info during the generation process are | 
					
						
							|  |  |  |    written to stdout, or sometimes to stderr. */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | /* XXX TO DO:
 | 
					
						
							|  |  |  |    - check for duplicate definitions of names (instead of fatal err) | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | #include "pgenheaders.h"
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | #include "grammar.h"
 | 
					
						
							|  |  |  | #include "node.h"
 | 
					
						
							|  |  |  | #include "parsetok.h"
 | 
					
						
							|  |  |  | #include "pgen.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | int Py_DebugFlag; | 
					
						
							| 
									
										
										
										
											1998-04-10 19:34:15 +00:00
										 |  |  | int Py_VerboseFlag; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | /* Forward */ | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | grammar *getgrammar Py_PROTO((char *filename)); | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | #ifdef THINK_C
 | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | int main Py_PROTO((int, char **)); | 
					
						
							|  |  |  | char *askfile Py_PROTO((void)); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-07-05 10:31:29 +00:00
										 |  |  | void | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | Py_Exit(sts) | 
					
						
							| 
									
										
										
										
											1993-07-05 10:31:29 +00:00
										 |  |  | 	int sts; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	exit(sts); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | int | 
					
						
							|  |  |  | main(argc, argv) | 
					
						
							|  |  |  | 	int argc; | 
					
						
							|  |  |  | 	char **argv; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	grammar *g; | 
					
						
							|  |  |  | 	FILE *fp; | 
					
						
							|  |  |  | 	char *filename; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | #ifdef THINK_C
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	filename = askfile(); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	if (argc != 2) { | 
					
						
							|  |  |  | 		fprintf(stderr, "usage: %s grammar\n", argv[0]); | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 		Py_Exit(2); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	filename = argv[1]; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	g = getgrammar(filename); | 
					
						
							|  |  |  | 	fp = fopen("graminit.c", "w"); | 
					
						
							|  |  |  | 	if (fp == NULL) { | 
					
						
							|  |  |  | 		perror("graminit.c"); | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 		Py_Exit(1); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	printf("Writing graminit.c ...\n"); | 
					
						
							|  |  |  | 	printgrammar(g, fp); | 
					
						
							|  |  |  | 	fclose(fp); | 
					
						
							|  |  |  | 	fp = fopen("graminit.h", "w"); | 
					
						
							|  |  |  | 	if (fp == NULL) { | 
					
						
							|  |  |  | 		perror("graminit.h"); | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 		Py_Exit(1); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	printf("Writing graminit.h ...\n"); | 
					
						
							|  |  |  | 	printnonterminals(g, fp); | 
					
						
							|  |  |  | 	fclose(fp); | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 	Py_Exit(0); | 
					
						
							| 
									
										
										
										
											1996-12-02 18:27:33 +00:00
										 |  |  | 	return 0; /* Make gcc -Wall happy */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | grammar * | 
					
						
							|  |  |  | getgrammar(filename) | 
					
						
							|  |  |  | 	char *filename; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	FILE *fp; | 
					
						
							|  |  |  | 	node *n; | 
					
						
							|  |  |  | 	grammar *g0, *g; | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	perrdetail err; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	fp = fopen(filename, "r"); | 
					
						
							|  |  |  | 	if (fp == NULL) { | 
					
						
							|  |  |  | 		perror(filename); | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 		Py_Exit(1); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	g0 = meta_grammar(); | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 	n = PyParser_ParseFile(fp, filename, g0, g0->g_start, | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 		      (char *)NULL, (char *)NULL, &err); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	fclose(fp); | 
					
						
							|  |  |  | 	if (n == NULL) { | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 		fprintf(stderr, "Parsing error %d, line %d.\n", | 
					
						
							|  |  |  | 			err.error, err.lineno); | 
					
						
							|  |  |  | 		if (err.text != NULL) { | 
					
						
							|  |  |  | 			int i; | 
					
						
							|  |  |  | 			fprintf(stderr, "%s", err.text); | 
					
						
							|  |  |  | 			i = strlen(err.text); | 
					
						
							|  |  |  | 			if (i == 0 || err.text[i-1] != '\n') | 
					
						
							|  |  |  | 				fprintf(stderr, "\n"); | 
					
						
							|  |  |  | 			for (i = 0; i < err.offset; i++) { | 
					
						
							|  |  |  | 				if (err.text[i] == '\t') | 
					
						
							|  |  |  | 					putc('\t', stderr); | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 					putc(' ', stderr); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			fprintf(stderr, "^\n"); | 
					
						
							|  |  |  | 			free(err.text); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 		Py_Exit(1); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	g = pgen(n); | 
					
						
							|  |  |  | 	if (g == NULL) { | 
					
						
							|  |  |  | 		printf("Bad grammar.\n"); | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 		Py_Exit(1); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return g; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | #ifdef THINK_C
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | char * | 
					
						
							|  |  |  | askfile() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char buf[256]; | 
					
						
							|  |  |  | 	static char name[256]; | 
					
						
							|  |  |  | 	printf("Input file name: "); | 
					
						
							|  |  |  | 	if (fgets(buf, sizeof buf, stdin) == NULL) { | 
					
						
							|  |  |  | 		printf("EOF\n"); | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 		Py_Exit(1); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1990-12-20 23:11:02 +00:00
										 |  |  | 	/* XXX The (unsigned char *) case is needed by THINK C 3.0 */ | 
					
						
							|  |  |  | 	if (sscanf(/*(unsigned char *)*/buf, " %s ", name) != 1) { | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 		printf("No file\n"); | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 		Py_Exit(1); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	return name; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | Py_FatalError(msg) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	char *msg; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	fprintf(stderr, "pgen: FATAL ERROR: %s\n", msg); | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 	Py_Exit(1); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-03-27 17:31:35 +00:00
										 |  |  | #ifdef macintosh
 | 
					
						
							|  |  |  | /* ARGSUSED */ | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | guesstabsize(path) | 
					
						
							|  |  |  | 	char *path; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return 4; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | /* No-nonsense my_readline() for tokenizer.c */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char * | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | PyOS_Readline(prompt) | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	char *prompt; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int n = 1000; | 
					
						
							|  |  |  | 	char *p = malloc(n); | 
					
						
							|  |  |  | 	char *q; | 
					
						
							|  |  |  | 	if (p == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	fprintf(stderr, "%s", prompt); | 
					
						
							|  |  |  | 	q = fgets(p, n, stdin); | 
					
						
							|  |  |  | 	if (q == NULL) { | 
					
						
							|  |  |  | 		*p = '\0'; | 
					
						
							|  |  |  | 		return p; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	n = strlen(p); | 
					
						
							|  |  |  | 	if (n > 0 && p[n-1] != '\n') | 
					
						
							|  |  |  | 		p[n-1] = '\n'; | 
					
						
							|  |  |  | 	return realloc(p, n+1); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-08-25 18:12:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef HAVE_STDARG_PROTOTYPES
 | 
					
						
							|  |  |  | #include <stdarg.h>
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #include <varargs.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | #ifdef HAVE_STDARG_PROTOTYPES
 | 
					
						
							|  |  |  | PySys_WriteStderr(const char *format, ...) | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | PySys_WriteStderr(va_alist) | 
					
						
							|  |  |  | 	va_dcl | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	va_list va; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef HAVE_STDARG_PROTOTYPES
 | 
					
						
							|  |  |  | 	va_start(va, format); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	char *format; | 
					
						
							|  |  |  | 	va_start(va); | 
					
						
							|  |  |  | 	format = va_arg(va, char *); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	vfprintf(stderr, format, va); | 
					
						
							|  |  |  | 	va_end(va); | 
					
						
							|  |  |  | } |