| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | /***********************************************************
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:10:35 +00:00
										 |  |  | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, | 
					
						
							|  |  |  | The Netherlands. | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         All Rights Reserved | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Permission to use, copy, modify, and distribute this software and its  | 
					
						
							|  |  |  | documentation for any purpose and without fee is hereby granted,  | 
					
						
							|  |  |  | provided that the above copyright notice appear in all copies and that | 
					
						
							|  |  |  | both that copyright notice and this permission notice appear in  | 
					
						
							|  |  |  | supporting documentation, and that the names of Stichting Mathematisch | 
					
						
							|  |  |  | Centrum or CWI not be used in advertising or publicity pertaining to | 
					
						
							|  |  |  | distribution of the software without specific, written prior permission. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO | 
					
						
							|  |  |  | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND | 
					
						
							|  |  |  | FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM 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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ******************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | /* Raw interface to the parser. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | #include "allobjects.h"
 | 
					
						
							|  |  |  | #include "node.h"
 | 
					
						
							|  |  |  | #include "token.h"
 | 
					
						
							|  |  |  | #include "pythonrun.h"
 | 
					
						
							|  |  |  | #include "graminit.h"
 | 
					
						
							|  |  |  | #include "errcode.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-17 16:13:48 +00:00
										 |  |  | static object * | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | node2tuple(n) | 
					
						
							|  |  |  | 	node *n; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (n == NULL) { | 
					
						
							|  |  |  | 		INCREF(None); | 
					
						
							|  |  |  | 		return None; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (ISNONTERMINAL(TYPE(n))) { | 
					
						
							|  |  |  | 		int i; | 
					
						
							|  |  |  | 		object *v, *w; | 
					
						
							|  |  |  | 		v = newtupleobject(1 + NCH(n)); | 
					
						
							|  |  |  | 		if (v == NULL) | 
					
						
							|  |  |  | 			return v; | 
					
						
							|  |  |  | 		w = newintobject(TYPE(n)); | 
					
						
							|  |  |  | 		if (w == NULL) { | 
					
						
							|  |  |  | 			DECREF(v); | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		settupleitem(v, 0, w); | 
					
						
							|  |  |  | 		for (i = 0; i < NCH(n); i++) { | 
					
						
							|  |  |  | 			w = node2tuple(CHILD(n, i)); | 
					
						
							|  |  |  | 			if (w == NULL) { | 
					
						
							|  |  |  | 				DECREF(v); | 
					
						
							|  |  |  | 				return NULL; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			settupleitem(v, i+1, w); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return v; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (ISTERMINAL(TYPE(n))) { | 
					
						
							|  |  |  | 		return mkvalue("(is)", TYPE(n), STR(n)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		err_setstr(SystemError, "unrecognized parse tree node type"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							|  |  |  | parser_parsefile(self, args) | 
					
						
							|  |  |  | 	object *self; | 
					
						
							|  |  |  | 	object *args; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char *filename; | 
					
						
							|  |  |  | 	FILE *fp; | 
					
						
							|  |  |  | 	node *n = NULL; | 
					
						
							|  |  |  | 	object *res; | 
					
						
							|  |  |  | 	if (!getargs(args, "s", &filename)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	fp = fopen(filename, "r"); | 
					
						
							|  |  |  | 	if (fp == NULL) { | 
					
						
							|  |  |  | 		err_errno(IOError); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	n = parse_file(fp, filename, file_input); | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | 	fclose(fp); | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	if (n == NULL) | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	res = node2tuple(n); | 
					
						
							|  |  |  | 	freetree(n); | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct methodlist parser_methods[] = { | 
					
						
							|  |  |  | 	{"parsefile", parser_parsefile}, | 
					
						
							|  |  |  | 	{0, 0} /* Sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | initparser() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	initmodule("parser", parser_methods); | 
					
						
							|  |  |  | } |