| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  parsermodule.c
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |  *  Copyright 1995-1996 by Fred L. Drake, Jr. and Virginia Polytechnic | 
					
						
							|  |  |  |  *  Institute and State University, Blacksburg, Virginia, USA. | 
					
						
							|  |  |  |  *  Portions copyright 1991-1995 by Stichting Mathematisch Centrum, | 
					
						
							|  |  |  |  *  Amsterdam, The Netherlands.  Copying is permitted under the terms | 
					
						
							|  |  |  |  *  associated with the main Python distribution, with the additional | 
					
						
							|  |  |  |  *  restriction that this additional notice be included and maintained | 
					
						
							|  |  |  |  *  on all distributed copies. | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |  *  This module serves to replace the original parser module written | 
					
						
							|  |  |  |  *  by Guido.  The functionality is not matched precisely, but the | 
					
						
							|  |  |  |  *  original may be implemented on top of this.  This is desirable | 
					
						
							|  |  |  |  *  since the source of the text to be parsed is now divorced from | 
					
						
							|  |  |  |  *  this interface. | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |  *  Unlike the prior interface, the ability to give a parse tree | 
					
						
							|  |  |  |  *  produced by Python code as a tuple to the compiler is enabled by | 
					
						
							|  |  |  |  *  this module.  See the documentation for more details. | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  *  I've added some annotations that help with the lint code-checking | 
					
						
							|  |  |  |  *  program, but they're not complete by a long shot.  The real errors | 
					
						
							|  |  |  |  *  that lint detects are gone, but there are still warnings with | 
					
						
							|  |  |  |  *  Py_[X]DECREF() and Py_[X]INCREF() macros.  The lint annotations | 
					
						
							|  |  |  |  *  look like "NOTE(...)". | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "Python.h"			/* general Python API		  */
 | 
					
						
							|  |  |  | #include "graminit.h"			/* symbols defined in the grammar */
 | 
					
						
							|  |  |  | #include "node.h"			/* internal parser structure	  */
 | 
					
						
							|  |  |  | #include "token.h"			/* token definitions		  */
 | 
					
						
							|  |  |  | 					/* ISTERMINAL() / ISNONTERMINAL() */ | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | #include "compile.h"			/* PyNode_Compile()		  */
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | #ifdef lint
 | 
					
						
							|  |  |  | #include <note.h>
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define NOTE(x)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-28 16:10:19 +00:00
										 |  |  | #ifdef macintosh
 | 
					
						
							|  |  |  | char *strdup Py_PROTO((char *)); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*  String constants used to initialize module attributes.
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static char* | 
					
						
							|  |  |  | parser_copyright_string | 
					
						
							| 
									
										
										
										
											1996-08-21 21:55:43 +00:00
										 |  |  | = "Copyright 1995-1996 by Virginia Polytechnic Institute & State\n\
 | 
					
						
							|  |  |  | University, Blacksburg, Virginia, USA, and Fred L. Drake, Jr., Reston,\n\ | 
					
						
							|  |  |  | Virginia, USA.  Portions copyright 1991-1995 by Stichting Mathematisch\n\ | 
					
						
							|  |  |  | Centrum, Amsterdam, The Netherlands."; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static char* | 
					
						
							|  |  |  | parser_doc_string | 
					
						
							|  |  |  | = "This is an interface to Python's internal parser."; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static char* | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | parser_version_string = "0.4"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 21:55:43 +00:00
										 |  |  | typedef PyObject* (*SeqMaker) Py_PROTO((int length)); | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | typedef int (*SeqInserter) Py_PROTO((PyObject* sequence, | 
					
						
							|  |  |  | 				     int index, | 
					
						
							|  |  |  | 				     PyObject* element)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  The function below is copyrigthed by Stichting Mathematisch Centrum.  The
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |  *  original copyright statement is included below, and continues to apply | 
					
						
							|  |  |  |  *  in full to the function immediately following.  All other material is | 
					
						
							|  |  |  |  *  original, copyrighted by Fred L. Drake, Jr. and Virginia Polytechnic | 
					
						
							|  |  |  |  *  Institute and State University.  Changes were made to comply with the | 
					
						
							| 
									
										
										
										
											1996-08-21 21:55:43 +00:00
										 |  |  |  *  new naming conventions.  Added arguments to provide support for creating | 
					
						
							|  |  |  |  *  lists as well as tuples, and optionally including the line numbers. | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | Permission to use, copy, modify, and distribute this software and its | 
					
						
							|  |  |  | documentation for any purpose and without fee is hereby granted, | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | provided that the above copyright notice appear in all copies and that | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | both that copyright notice and this permission notice appear in | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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. | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ******************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | node2tuple(n, mkseq, addelem, lineno) | 
					
						
							|  |  |  |      node *n;				/* node to convert		 */ | 
					
						
							|  |  |  |      SeqMaker mkseq;			/* create sequence		 */ | 
					
						
							|  |  |  |      SeqInserter addelem;		/* func. to add elem. in seq.	 */ | 
					
						
							|  |  |  |      int lineno;			/* include line numbers?	 */ | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (n == NULL) { | 
					
						
							|  |  |  | 	Py_INCREF(Py_None); | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	return (Py_None); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (ISNONTERMINAL(TYPE(n))) { | 
					
						
							|  |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	PyObject *v; | 
					
						
							|  |  |  | 	PyObject *w; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	v = mkseq(1 + NCH(n)); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	if (v == NULL) | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	    return (v); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	w = PyInt_FromLong(TYPE(n)); | 
					
						
							|  |  |  | 	if (w == NULL) { | 
					
						
							|  |  |  | 	    Py_DECREF(v); | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	    return ((PyObject*) NULL); | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) addelem(v, 0, w); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	for (i = 0; i < NCH(n); i++) { | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	    w = node2tuple(CHILD(n, i), mkseq, addelem, lineno); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    if (w == NULL) { | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 		return ((PyObject*) NULL); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	    (void) addelem(v, i+1, w); | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	return (v); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     else if (ISTERMINAL(TYPE(n))) { | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	PyObject *result = mkseq(2 + lineno); | 
					
						
							|  |  |  | 	if (result != NULL) { | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	    (void) addelem(result, 0, PyInt_FromLong(TYPE(n))); | 
					
						
							|  |  |  | 	    (void) addelem(result, 1, PyString_FromString(STR(n))); | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	    if (lineno == 1) | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 		(void) addelem(result, 2, PyInt_FromLong(n->n_lineno)); | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return (result); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  | 	PyErr_SetString(PyExc_SystemError, | 
					
						
							|  |  |  | 			"unrecognized parse tree node type"); | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	return ((PyObject*) NULL); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | }   /* node2tuple() */ | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  End of material copyrighted by Stichting Mathematisch Centrum. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  There are two types of intermediate objects we're interested in:
 | 
					
						
							|  |  |  |  *  'eval' and 'exec' types.  These constants can be used in the ast_type | 
					
						
							|  |  |  |  *  field of the object type to identify which any given object represents. | 
					
						
							|  |  |  |  *  These should probably go in an external header to allow other extensions | 
					
						
							|  |  |  |  *  to use them, but then, we really should be using C++ too.  ;-) | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |  *  The PyAST_FRAGMENT type is not currently supported.  Maybe not useful? | 
					
						
							|  |  |  |  *  Haven't decided yet. | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PyAST_EXPR	1
 | 
					
						
							|  |  |  | #define PyAST_SUITE	2
 | 
					
						
							|  |  |  | #define PyAST_FRAGMENT	3
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  These are the internal objects and definitions required to implement the
 | 
					
						
							|  |  |  |  *  AST type.  Most of the internal names are more reminiscent of the 'old' | 
					
						
							|  |  |  |  *  naming style, but the code uses the new naming convention. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser_error = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct _PyAST_Object { | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     PyObject_HEAD			/* standard object header	    */ | 
					
						
							|  |  |  |     node* ast_node;			/* the node* returned by the parser */ | 
					
						
							|  |  |  |     int	  ast_type;			/* EXPR or SUITE ?		    */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } PyAST_Object; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | staticforward void | 
					
						
							|  |  |  | parser_free Py_PROTO((PyAST_Object *ast)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | staticforward int | 
					
						
							|  |  |  | parser_compare Py_PROTO((PyAST_Object *left, PyAST_Object *right)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | staticforward PyObject * | 
					
						
							|  |  |  | parser_getattr Py_PROTO((PyObject *self, char *name)); | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | PyTypeObject PyAST_Type = { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-29 02:58:20 +00:00
										 |  |  |     PyObject_HEAD_INIT(NULL) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     0, | 
					
						
							|  |  |  |     "ast",				/* tp_name		*/ | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  |     (int) sizeof(PyAST_Object),		/* tp_basicsize		*/ | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     0,					/* tp_itemsize		*/ | 
					
						
							|  |  |  |     (destructor)parser_free,		/* tp_dealloc		*/ | 
					
						
							|  |  |  |     0,					/* tp_print		*/ | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |     parser_getattr,			/* tp_getattr		*/ | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     0,					/* tp_setattr		*/ | 
					
						
							|  |  |  |     (cmpfunc)parser_compare,		/* tp_compare		*/ | 
					
						
							|  |  |  |     0,					/* tp_repr		*/ | 
					
						
							|  |  |  |     0,					/* tp_as_number		*/ | 
					
						
							|  |  |  |     0,					/* tp_as_sequence	*/ | 
					
						
							|  |  |  |     0,					/* tp_as_mapping	*/ | 
					
						
							|  |  |  |     0,					/* tp_hash		*/ | 
					
						
							|  |  |  |     0,					/* tp_call		*/ | 
					
						
							| 
									
										
										
										
											1997-05-23 04:04:17 +00:00
										 |  |  |     0,					/* tp_str		*/ | 
					
						
							|  |  |  |     0,					/* tp_getattro		*/ | 
					
						
							|  |  |  |     0,					/* tp_setattro		*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Functions to access object as input/output buffer */ | 
					
						
							|  |  |  |     0,					/* tp_as_buffer		*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Space for future expansion */ | 
					
						
							|  |  |  |     0,					/* tp_xxx4		*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* __doc__ */ | 
					
						
							|  |  |  |     "Intermediate representation of a Python parse tree." | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | };  /* PyAST_Type */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | parser_compare_nodes(left, right) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      node *left; | 
					
						
							|  |  |  |      node *right; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int j; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (TYPE(left) < TYPE(right)) | 
					
						
							|  |  |  | 	return (-1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (TYPE(right) < TYPE(left)) | 
					
						
							|  |  |  | 	return (1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ISTERMINAL(TYPE(left))) | 
					
						
							|  |  |  | 	return (strcmp(STR(left), STR(right))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (NCH(left) < NCH(right)) | 
					
						
							|  |  |  | 	return (-1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (NCH(right) < NCH(left)) | 
					
						
							|  |  |  | 	return (1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (j = 0; j < NCH(left); ++j) { | 
					
						
							|  |  |  | 	int v = parser_compare_nodes(CHILD(left, j), CHILD(right, j)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-11 03:31:16 +00:00
										 |  |  | 	if (v != 0) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    return (v); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* parser_compare_nodes() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  int parser_compare(PyAST_Object* left, PyAST_Object* right)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Comparison function used by the Python operators ==, !=, <, >, <=, >= | 
					
						
							|  |  |  |  *  This really just wraps a call to parser_compare_nodes() with some easy | 
					
						
							|  |  |  |  *  checks and protection code. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | parser_compare(left, right) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      PyAST_Object *left; | 
					
						
							|  |  |  |      PyAST_Object *right; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     if (left == right) | 
					
						
							|  |  |  | 	return (0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((left == 0) || (right == 0)) | 
					
						
							|  |  |  | 	return (-1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (parser_compare_nodes(left->ast_node, right->ast_node)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* parser_compare() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  parser_newastobject(node* ast)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Allocates a new Python object representing an AST.  This is simply the | 
					
						
							|  |  |  |  *  'wrapper' object that holds a node* and allows it to be passed around in | 
					
						
							|  |  |  |  *  Python code. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser_newastobject(ast, type) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      node *ast; | 
					
						
							|  |  |  |      int type; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     PyAST_Object* o = PyObject_NEW(PyAST_Object, &PyAST_Type); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (o != 0) { | 
					
						
							|  |  |  | 	o->ast_node = ast; | 
					
						
							|  |  |  | 	o->ast_type = type; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  |     else { | 
					
						
							|  |  |  | 	PyNode_Free(ast); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return ((PyObject*)o); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* parser_newastobject() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  void parser_free(PyAST_Object* ast)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This is called by a del statement that reduces the reference count to 0. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | parser_free(ast) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      PyAST_Object *ast; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     PyNode_Free(ast->ast_node); | 
					
						
							|  |  |  |     PyMem_DEL(ast); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* parser_free() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  parser_ast2tuple(PyObject* self, PyObject* args)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This provides conversion from a node* to a tuple object that can be | 
					
						
							|  |  |  |  *  returned to the Python-level caller.  The AST object is not modified. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser_ast2tuple(self, args) | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |      PyAST_Object *self; | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      PyObject *args; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *line_option = 0; | 
					
						
							|  |  |  |     PyObject *res = 0; | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |     int ok; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  |     if (self == NULL) { | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  | 	ok = PyArg_ParseTuple( | 
					
						
							|  |  |  | 		args, "O!|O:ast2tuple", &PyAST_Type, &self, &line_option); | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |     else | 
					
						
							|  |  |  | 	ok = PyArg_ParseTuple(args, "|O:totuple", &line_option); | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  |     if (ok != 0) { | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	int lineno = 0; | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  | 	if (line_option != NULL) { | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	    lineno = (PyObject_IsTrue(line_option) != 0) ? 1 : 0; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 *  Convert AST into a tuple representation.  Use Guido's function, | 
					
						
							|  |  |  | 	 *  since it's known to work already. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  | 	res = node2tuple(((PyAST_Object*)self)->ast_node, | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 			 PyTuple_New, PyTuple_SetItem, lineno); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* parser_ast2tuple() */ | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | /*  parser_ast2tuple(PyObject* self, PyObject* args)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This provides conversion from a node* to a tuple object that can be | 
					
						
							|  |  |  |  *  returned to the Python-level caller.  The AST object is not modified. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser_ast2list(self, args) | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |      PyAST_Object *self; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |      PyObject *args; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *line_option = 0; | 
					
						
							|  |  |  |     PyObject *res = 0; | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |     int ok; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |     if (self == NULL) | 
					
						
							|  |  |  | 	ok = PyArg_ParseTuple( | 
					
						
							|  |  |  | 		args, "O!|O:ast2list", &PyAST_Type, &self, &line_option); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | 	ok = PyArg_ParseTuple(args, "|O:tolist", &line_option); | 
					
						
							|  |  |  |     if (ok) { | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	int lineno = 0; | 
					
						
							|  |  |  | 	if (line_option != 0) { | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  | 	    lineno = PyObject_IsTrue(line_option) ? 1 : 0; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 *  Convert AST into a tuple representation.  Use Guido's function, | 
					
						
							|  |  |  | 	 *  since it's known to work already. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	res = node2tuple(self->ast_node, | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 			 PyList_New, PyList_SetItem, lineno); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | }   /* parser_ast2list() */ | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  parser_compileast(PyObject* self, PyObject* args)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This function creates code objects from the parse tree represented by | 
					
						
							|  |  |  |  *  the passed-in data object.  An optional file name is passed in as well. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser_compileast(self, args) | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |      PyAST_Object *self; | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      PyObject *args; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     PyObject*     res = 0; | 
					
						
							|  |  |  |     char*	  str = "<ast>"; | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |     int ok; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |     if (self == NULL) | 
					
						
							|  |  |  | 	ok = PyArg_ParseTuple( | 
					
						
							|  |  |  | 		args, "O!|s:compileast", &PyAST_Type, &self, &str); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | 	ok = PyArg_ParseTuple(args, "|s:compile", &str); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ok) | 
					
						
							|  |  |  | 	res = (PyObject *)PyNode_Compile(self->ast_node, str); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* parser_compileast() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  PyObject* parser_isexpr(PyObject* self, PyObject* args)
 | 
					
						
							|  |  |  |  *  PyObject* parser_issuite(PyObject* self, PyObject* args) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Checks the passed-in AST object to determine if it is an expression or | 
					
						
							|  |  |  |  *  a statement suite, respectively.  The return is a Python truth value. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser_isexpr(self, args) | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |      PyAST_Object *self; | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      PyObject *args; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     PyObject* res = 0; | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |     int ok; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |     if (self == NULL) | 
					
						
							|  |  |  | 	ok = PyArg_ParseTuple(args, "O!:isexpr", &PyAST_Type, &self); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | 	ok = PyArg_ParseTuple(args, ":isexpr"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ok) { | 
					
						
							|  |  |  | 	/* Check to see if the AST represents an expression or not. */ | 
					
						
							|  |  |  | 	res = (self->ast_type == PyAST_EXPR) ? Py_True : Py_False; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	Py_INCREF(res); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* parser_isexpr() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser_issuite(self, args) | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |      PyAST_Object *self; | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      PyObject *args; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     PyObject* res = 0; | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |     int ok; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |     if (self == NULL) | 
					
						
							|  |  |  | 	ok = PyArg_ParseTuple(args, "O!:issuite", &PyAST_Type, &self); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | 	ok = PyArg_ParseTuple(args, ":issuite"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ok) { | 
					
						
							|  |  |  | 	/* Check to see if the AST represents an expression or not. */ | 
					
						
							|  |  |  | 	res = (self->ast_type == PyAST_EXPR) ? Py_False : Py_True; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	Py_INCREF(res); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* parser_issuite() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  | static PyMethodDef | 
					
						
							|  |  |  | parser_methods[] = { | 
					
						
							| 
									
										
										
										
											1998-04-21 22:31:45 +00:00
										 |  |  |     {"compile",		(PyCFunction)parser_compileast,	METH_VARARGS, | 
					
						
							|  |  |  | 	"Compile this AST object into a code object."}, | 
					
						
							|  |  |  |     {"isexpr",		(PyCFunction)parser_isexpr,	METH_VARARGS, | 
					
						
							|  |  |  | 	"Determines if this AST object was created from an expression."}, | 
					
						
							|  |  |  |     {"issuite",		(PyCFunction)parser_issuite,	METH_VARARGS, | 
					
						
							|  |  |  | 	"Determines if this AST object was created from a suite."}, | 
					
						
							|  |  |  |     {"tolist",		(PyCFunction)parser_ast2list,	METH_VARARGS, | 
					
						
							|  |  |  | 	"Creates a list-tree representation of this AST."}, | 
					
						
							|  |  |  |     {"totuple",		(PyCFunction)parser_ast2tuple,	METH_VARARGS, | 
					
						
							|  |  |  | 	"Creates a tuple-tree representation of this AST."}, | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  |     {NULL, NULL, 0, NULL} | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser_method_list = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser_getattr(self, name) | 
					
						
							|  |  |  |      PyObject *self; | 
					
						
							|  |  |  |      char *name; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (strcmp(name, "__methods__") == 0) { | 
					
						
							|  |  |  | 	Py_INCREF(parser_method_list); | 
					
						
							|  |  |  | 	return (parser_method_list); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (Py_FindMethod(parser_methods, self, name)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* parser_getattr() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  err_string(char* message)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Sets the error string for an exception of type ParserError. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | err_string(message) | 
					
						
							|  |  |  |      char *message; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     PyErr_SetString(parser_error, message); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }  /* err_string() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | /*  PyObject* parser_do_parse(PyObject* args, int type)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Internal function to actually execute the parse and return the result if | 
					
						
							|  |  |  |  *  successful, or set an exception if not. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser_do_parse(args, type) | 
					
						
							|  |  |  |      PyObject *args; | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      int type; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     char*     string = 0; | 
					
						
							|  |  |  |     PyObject* res    = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (PyArg_ParseTuple(args, "s", &string)) { | 
					
						
							|  |  |  | 	node* n = PyParser_SimpleParseString(string, | 
					
						
							|  |  |  | 					     (type == PyAST_EXPR) | 
					
						
							|  |  |  | 					     ? eval_input : file_input); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (n != 0) | 
					
						
							|  |  |  | 	    res = parser_newastobject(n, type); | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    err_string("Could not parse string."); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }  /* parser_do_parse() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  PyObject* parser_expr(PyObject* self, PyObject* args)
 | 
					
						
							|  |  |  |  *  PyObject* parser_suite(PyObject* self, PyObject* args) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  External interfaces to the parser itself.  Which is called determines if | 
					
						
							|  |  |  |  *  the parser attempts to recognize an expression ('eval' form) or statement | 
					
						
							|  |  |  |  *  suite ('exec' form).  The real work is done by parser_do_parse() above. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser_expr(self, args) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      PyObject *self; | 
					
						
							|  |  |  |      PyObject *args; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  |     NOTE(ARGUNUSED(self)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (parser_do_parse(args, PyAST_EXPR)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* parser_expr() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser_suite(self, args) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      PyObject *self; | 
					
						
							|  |  |  |      PyObject *args; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  |     NOTE(ARGUNUSED(self)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (parser_do_parse(args, PyAST_SUITE)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* parser_suite() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  This is the messy part of the code.  Conversion from a tuple to an AST
 | 
					
						
							|  |  |  |  *  object requires that the input tuple be valid without having to rely on | 
					
						
							|  |  |  |  *  catching an exception from the compiler.  This is done to allow the | 
					
						
							|  |  |  |  *  compiler itself to remain fast, since most of its input will come from | 
					
						
							|  |  |  |  *  the parser directly, and therefore be known to be syntactically correct. | 
					
						
							|  |  |  |  *  This validation is done to ensure that we don't core dump the compile | 
					
						
							|  |  |  |  *  phase, returning an exception instead. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Two aspects can be broken out in this code:  creating a node tree from | 
					
						
							|  |  |  |  *  the tuple passed in, and verifying that it is indeed valid.  It may be | 
					
						
							|  |  |  |  *  advantageous to expand the number of AST types to include funcdefs and | 
					
						
							|  |  |  |  *  lambdadefs to take advantage of the optimizer, recognizing those ASTs | 
					
						
							|  |  |  |  *  here.  They are not necessary, and not quite as useful in a raw form. | 
					
						
							|  |  |  |  *  For now, let's get expressions and suites working reliably. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 21:55:43 +00:00
										 |  |  | staticforward node* build_node_tree Py_PROTO((PyObject *tuple)); | 
					
						
							|  |  |  | staticforward int   validate_expr_tree Py_PROTO((node *tree)); | 
					
						
							|  |  |  | staticforward int   validate_file_input Py_PROTO((node *tree)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  PyObject* parser_tuple2ast(PyObject* self, PyObject* args)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This is the public function, called from the Python code.  It receives a | 
					
						
							|  |  |  |  *  single tuple object from the caller, and creates an AST object if the | 
					
						
							|  |  |  |  *  tuple can be validated.  It does this by checking the first code of the | 
					
						
							|  |  |  |  *  tuple, and, if acceptable, builds the internal representation.  If this | 
					
						
							|  |  |  |  *  step succeeds, the internal representation is validated as fully as | 
					
						
							|  |  |  |  *  possible with the various validate_*() routines defined below. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This function must be changed if support is to be added for PyAST_FRAGMENT | 
					
						
							|  |  |  |  *  AST objects. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser_tuple2ast(self, args) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      PyObject *self; | 
					
						
							|  |  |  |      PyObject *args; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  |     NOTE(ARGUNUSED(self)) | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     PyObject *ast = 0; | 
					
						
							|  |  |  |     PyObject *tuple = 0; | 
					
						
							|  |  |  |     PyObject *temp = 0; | 
					
						
							|  |  |  |     int ok; | 
					
						
							| 
									
										
										
										
											1996-12-05 23:43:35 +00:00
										 |  |  |     int start_sym = 0; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "O:tuple2ast", &tuple)) | 
					
						
							|  |  |  | 	return (0); | 
					
						
							|  |  |  |     if (!PySequence_Check(tuple)) { | 
					
						
							|  |  |  | 	PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 			"tuple2ast() requires a single sequence argument"); | 
					
						
							|  |  |  | 	return (0); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      *	This mess of tests is written this way so we can use the abstract | 
					
						
							|  |  |  |      *	object interface (AOI).  Unfortunately, the AOI increments reference | 
					
						
							|  |  |  |      *	counts, which requires that we store a pointer to retrieved object | 
					
						
							|  |  |  |      *	so we can DECREF it after the check.  But we really should accept | 
					
						
							|  |  |  |      *	lists as well as tuples at the very least. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     ok = PyObject_Length(tuple) >= 2; | 
					
						
							|  |  |  |     if (ok) { | 
					
						
							|  |  |  | 	temp = PySequence_GetItem(tuple, 0); | 
					
						
							|  |  |  | 	ok = (temp != NULL) && PyInt_Check(temp); | 
					
						
							|  |  |  | 	if (ok) | 
					
						
							|  |  |  | 	    /* this is used after the initial checks: */ | 
					
						
							|  |  |  | 	    start_sym = PyInt_AsLong(temp); | 
					
						
							|  |  |  | 	Py_XDECREF(temp); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ok) { | 
					
						
							|  |  |  | 	temp = PySequence_GetItem(tuple, 1); | 
					
						
							|  |  |  | 	ok = (temp != NULL) && PySequence_Check(temp); | 
					
						
							|  |  |  | 	Py_XDECREF(temp); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ok) { | 
					
						
							|  |  |  | 	temp = PySequence_GetItem(tuple, 1); | 
					
						
							|  |  |  | 	ok = (temp != NULL) && PyObject_Length(temp) >= 2; | 
					
						
							|  |  |  | 	if (ok) { | 
					
						
							|  |  |  | 	    PyObject *temp2 = PySequence_GetItem(temp, 0); | 
					
						
							|  |  |  | 	    if (temp2 != NULL) { | 
					
						
							|  |  |  | 		ok = PyInt_Check(temp2); | 
					
						
							|  |  |  | 		Py_DECREF(temp2); | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	Py_XDECREF(temp); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* If we've failed at some point, get out of here. */ | 
					
						
							|  |  |  |     if (!ok) { | 
					
						
							|  |  |  | 	err_string("malformed sequence for tuple2ast()"); | 
					
						
							|  |  |  | 	return (0); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      *  This might be a valid parse tree, but let's do a quick check | 
					
						
							|  |  |  |      *  before we jump the gun. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (start_sym == eval_input) { | 
					
						
							|  |  |  | 	/*  Might be an eval form.  */ | 
					
						
							|  |  |  | 	node* expression = build_node_tree(tuple); | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	if ((expression != 0) && validate_expr_tree(expression)) | 
					
						
							|  |  |  | 	    ast = parser_newastobject(expression, PyAST_EXPR); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (start_sym == file_input) { | 
					
						
							|  |  |  | 	/*  This looks like an exec form so far.  */ | 
					
						
							|  |  |  | 	node* suite_tree = build_node_tree(tuple); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	if ((suite_tree != 0) && validate_file_input(suite_tree)) | 
					
						
							|  |  |  | 	    ast = parser_newastobject(suite_tree, PyAST_SUITE); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	/*  This is a fragment, and is not yet supported.  Maybe they
 | 
					
						
							|  |  |  | 	 *  will be if I find a use for them. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	err_string("Fragmentary parse trees not supported."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*  Make sure we throw an exception on all errors.  We should never
 | 
					
						
							|  |  |  |      *  get this, but we'd do well to be sure something is done. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if ((ast == 0) && !PyErr_Occurred()) | 
					
						
							|  |  |  | 	err_string("Unspecified ast error occurred."); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (ast); | 
					
						
							| 
									
										
										
										
											1993-11-10 12:53:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | }   /* parser_tuple2ast() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  int check_terminal_tuple()
 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |  *  Check a tuple to determine that it is indeed a valid terminal | 
					
						
							|  |  |  |  *  node.  The node is known to be required as a terminal, so we throw | 
					
						
							|  |  |  |  *  an exception if there is a failure. | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |  *  The format of an acceptable terminal tuple is "(is[i])": the fact | 
					
						
							|  |  |  |  *  that elem is a tuple and the integer is a valid terminal symbol | 
					
						
							|  |  |  |  *  has been established before this function is called.  We must | 
					
						
							|  |  |  |  *  check the length of the tuple and the type of the second element | 
					
						
							|  |  |  |  *  and optional third element.  We do *NOT* check the actual text of | 
					
						
							|  |  |  |  *  the string element, which we could do in many cases.  This is done | 
					
						
							|  |  |  |  *  by the validate_*() functions which operate on the internal | 
					
						
							|  |  |  |  *  representation. | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | check_terminal_tuple(elem) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      PyObject *elem; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int   len = PyObject_Length(elem); | 
					
						
							|  |  |  |     int   res = 1; | 
					
						
							|  |  |  |     char* str = "Illegal terminal symbol; bad node length."; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     if ((len == 2) || (len == 3)) { | 
					
						
							|  |  |  | 	PyObject *temp = PySequence_GetItem(elem, 1); | 
					
						
							|  |  |  | 	res = PyString_Check(temp); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	str = "Illegal terminal symbol; expected a string."; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	if (res && (len == 3)) { | 
					
						
							|  |  |  | 	    PyObject* third = PySequence_GetItem(elem, 2); | 
					
						
							|  |  |  | 	    res = PyInt_Check(third); | 
					
						
							|  |  |  | 	    str = "Invalid third element of terminal node."; | 
					
						
							|  |  |  | 	    Py_XDECREF(third); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	Py_XDECREF(temp); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  | 	res = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!res) { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	elem = Py_BuildValue("(os)", elem, str); | 
					
						
							|  |  |  | 	PyErr_SetObject(parser_error, elem); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* check_terminal_tuple() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  node* build_node_children()
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Iterate across the children of the current non-terminal node and build | 
					
						
							|  |  |  |  *  their structures.  If successful, return the root of this portion of | 
					
						
							|  |  |  |  *  the tree, otherwise, 0.  Any required exception will be specified already, | 
					
						
							|  |  |  |  *  and no memory will have been deallocated. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static node* | 
					
						
							|  |  |  | build_node_children(tuple, root, line_num) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      PyObject *tuple; | 
					
						
							|  |  |  |      node *root; | 
					
						
							|  |  |  |      int *line_num; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int len = PyObject_Length(tuple); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 1; i < len; ++i) { | 
					
						
							|  |  |  | 	/* elem must always be a tuple, however simple */ | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	PyObject* elem = PySequence_GetItem(tuple, i); | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	int ok = elem != NULL; | 
					
						
							|  |  |  | 	long  type = 0; | 
					
						
							|  |  |  | 	char *strn = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ok) | 
					
						
							|  |  |  | 	    ok = PySequence_Check(elem); | 
					
						
							|  |  |  | 	if (ok) { | 
					
						
							|  |  |  | 	    PyObject *temp = PySequence_GetItem(elem, 0); | 
					
						
							|  |  |  | 	    if (temp == NULL) | 
					
						
							|  |  |  | 		ok = 0; | 
					
						
							|  |  |  | 	    else { | 
					
						
							|  |  |  | 		ok = PyInt_Check(temp); | 
					
						
							|  |  |  | 		if (ok) | 
					
						
							|  |  |  | 		    type = PyInt_AsLong(temp); | 
					
						
							|  |  |  | 		Py_DECREF(temp); | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (!ok) { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    PyErr_SetObject(parser_error, | 
					
						
							|  |  |  | 			    Py_BuildValue("(os)", elem, | 
					
						
							|  |  |  | 					  "Illegal node construct.")); | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	    Py_XDECREF(elem); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    return (0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (ISTERMINAL(type)) { | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	    if (check_terminal_tuple(elem)) { | 
					
						
							|  |  |  | 		PyObject *temp = PySequence_GetItem(elem, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-10-09 16:29:31 +00:00
										 |  |  | 		/* check_terminal_tuple() already verified it's a string */ | 
					
						
							|  |  |  | 		strn = (char *)malloc(PyString_GET_SIZE(temp) + 1); | 
					
						
							|  |  |  | 		if (strn != NULL) | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 		    (void) strcpy(strn, PyString_AS_STRING(temp)); | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 		Py_XDECREF(temp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (PyObject_Length(elem) == 3) { | 
					
						
							|  |  |  | 		    PyObject* temp = PySequence_GetItem(elem, 2); | 
					
						
							|  |  |  | 		    *line_num = PyInt_AsLong(temp); | 
					
						
							|  |  |  | 		    Py_DECREF(temp); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    else { | 
					
						
							|  |  |  | 		Py_XDECREF(elem); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 		return (0); | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else if (!ISNONTERMINAL(type)) { | 
					
						
							|  |  |  | 	    /*
 | 
					
						
							|  |  |  | 	     *  It has to be one or the other; this is an error. | 
					
						
							|  |  |  | 	     *  Throw an exception. | 
					
						
							|  |  |  | 	     */ | 
					
						
							|  |  |  | 	    PyErr_SetObject(parser_error, | 
					
						
							|  |  |  | 			    Py_BuildValue("(os)", elem, | 
					
						
							|  |  |  | 					  "Unknown node type.")); | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	    Py_XDECREF(elem); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    return (0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	PyNode_AddChild(root, type, strn, *line_num); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ISNONTERMINAL(type)) { | 
					
						
							|  |  |  | 	    node* new_child = CHILD(root, i - 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	    if (new_child != build_node_children(elem, new_child, line_num)) { | 
					
						
							|  |  |  | 		Py_XDECREF(elem); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 		return (0); | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	else if (type == NEWLINE) {	/* It's true:  we increment the     */ | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    ++(*line_num);		/* line number *after* the newline! */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	Py_XDECREF(elem); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return (root); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* build_node_children() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static node* | 
					
						
							|  |  |  | build_node_tree(tuple) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      PyObject *tuple; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     node* res = 0; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     PyObject *temp = PySequence_GetItem(tuple, 0); | 
					
						
							|  |  |  |     long  num = -1; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     if (temp != NULL) | 
					
						
							|  |  |  | 	num = PyInt_AsLong(temp); | 
					
						
							|  |  |  |     Py_XDECREF(temp); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     if (ISTERMINAL(num)) { | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 *  The tuple is simple, but it doesn't start with a start symbol. | 
					
						
							|  |  |  | 	 *  Throw an exception now and be done with it. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	tuple = Py_BuildValue("(os)", tuple, | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 		    "Illegal ast tuple; cannot start with terminal symbol."); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	PyErr_SetObject(parser_error, tuple); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (ISNONTERMINAL(num)) { | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 *  Not efficient, but that can be handled later. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	int line_num = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res = PyNode_New(num); | 
					
						
							|  |  |  | 	if (res != build_node_children(tuple, res, &line_num)) { | 
					
						
							|  |  |  | 	    PyNode_Free(res); | 
					
						
							|  |  |  | 	    res = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     else | 
					
						
							|  |  |  | 	/*  The tuple is illegal -- if the number is neither TERMINAL nor
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	 *  NONTERMINAL, we can't use it. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	PyErr_SetObject(parser_error, | 
					
						
							|  |  |  | 			Py_BuildValue("(os)", tuple, | 
					
						
							|  |  |  | 				      "Illegal component tuple.")); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* build_node_tree() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 19:04:10 +00:00
										 |  |  | #ifdef HAVE_OLD_CPP
 | 
					
						
							| 
									
										
										
										
											1996-08-21 21:55:43 +00:00
										 |  |  | #define VALIDATER(n)    static int validate_/**/n Py_PROTO((node *tree))
 | 
					
						
							| 
									
										
										
										
											1996-08-21 19:04:10 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											1996-08-21 21:55:43 +00:00
										 |  |  | #define	VALIDATER(n)	static int validate_##n Py_PROTO((node *tree))
 | 
					
						
							| 
									
										
										
										
											1996-08-21 19:04:10 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  *  Validation routines used within the validation section: | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 21:55:43 +00:00
										 |  |  | staticforward int validate_terminal Py_PROTO((node *terminal, | 
					
						
							|  |  |  | 					      int type, char *string)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define	validate_ampersand(ch)	validate_terminal(ch,	   AMPER, "&")
 | 
					
						
							|  |  |  | #define	validate_circumflex(ch)	validate_terminal(ch, CIRCUMFLEX, "^")
 | 
					
						
							|  |  |  | #define validate_colon(ch)	validate_terminal(ch,	   COLON, ":")
 | 
					
						
							|  |  |  | #define validate_comma(ch)	validate_terminal(ch,	   COMMA, ",")
 | 
					
						
							|  |  |  | #define validate_dedent(ch)	validate_terminal(ch,	  DEDENT, "")
 | 
					
						
							|  |  |  | #define	validate_equal(ch)	validate_terminal(ch,	   EQUAL, "=")
 | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | #define validate_indent(ch)	validate_terminal(ch,	  INDENT, (char*)NULL)
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | #define validate_lparen(ch)	validate_terminal(ch,	    LPAR, "(")
 | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | #define	validate_newline(ch)	validate_terminal(ch,	 NEWLINE, (char*)NULL)
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | #define validate_rparen(ch)	validate_terminal(ch,	    RPAR, ")")
 | 
					
						
							|  |  |  | #define validate_semi(ch)	validate_terminal(ch,	    SEMI, ";")
 | 
					
						
							|  |  |  | #define	validate_star(ch)	validate_terminal(ch,	    STAR, "*")
 | 
					
						
							|  |  |  | #define	validate_vbar(ch)	validate_terminal(ch,	    VBAR, "|")
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | #define validate_doublestar(ch)	validate_terminal(ch, DOUBLESTAR, "**")
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | #define validate_dot(ch)	validate_terminal(ch,	     DOT, ".")
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | #define	validate_name(ch, str)	validate_terminal(ch,	    NAME, str)
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | VALIDATER(node);		VALIDATER(small_stmt); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | VALIDATER(class);		VALIDATER(node); | 
					
						
							|  |  |  | VALIDATER(parameters);		VALIDATER(suite); | 
					
						
							|  |  |  | VALIDATER(testlist);		VALIDATER(varargslist); | 
					
						
							|  |  |  | VALIDATER(fpdef);		VALIDATER(fplist); | 
					
						
							|  |  |  | VALIDATER(stmt);		VALIDATER(simple_stmt); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | VALIDATER(expr_stmt);		VALIDATER(power); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | VALIDATER(print_stmt);		VALIDATER(del_stmt); | 
					
						
							|  |  |  | VALIDATER(return_stmt); | 
					
						
							|  |  |  | VALIDATER(raise_stmt);		VALIDATER(import_stmt); | 
					
						
							| 
									
										
										
										
											1996-08-21 21:55:43 +00:00
										 |  |  | VALIDATER(global_stmt); | 
					
						
							| 
									
										
										
										
											1997-04-02 05:32:13 +00:00
										 |  |  | VALIDATER(assert_stmt); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | VALIDATER(exec_stmt);		VALIDATER(compound_stmt); | 
					
						
							|  |  |  | VALIDATER(while);		VALIDATER(for); | 
					
						
							|  |  |  | VALIDATER(try);			VALIDATER(except_clause); | 
					
						
							|  |  |  | VALIDATER(test);		VALIDATER(and_test); | 
					
						
							|  |  |  | VALIDATER(not_test);		VALIDATER(comparison); | 
					
						
							|  |  |  | VALIDATER(comp_op);		VALIDATER(expr); | 
					
						
							|  |  |  | VALIDATER(xor_expr);		VALIDATER(and_expr); | 
					
						
							|  |  |  | VALIDATER(shift_expr);		VALIDATER(arith_expr); | 
					
						
							|  |  |  | VALIDATER(term);		VALIDATER(factor); | 
					
						
							|  |  |  | VALIDATER(atom);		VALIDATER(lambdef); | 
					
						
							|  |  |  | VALIDATER(trailer);		VALIDATER(subscript); | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | VALIDATER(subscriptlist);	VALIDATER(sliceop); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | VALIDATER(exprlist);		VALIDATER(dictmaker); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | VALIDATER(arglist);		VALIDATER(argument); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define	is_even(n)	(((n) & 1) == 0)
 | 
					
						
							|  |  |  | #define	is_odd(n)	(((n) & 1) == 1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | validate_ntype(n, t) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      node *n; | 
					
						
							|  |  |  |      int t; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int res = (TYPE(n) == t); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!res) { | 
					
						
							|  |  |  | 	char buffer[128]; | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) sprintf(buffer, "Expected node type %d, got %d.", t, TYPE(n)); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	err_string(buffer); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_ntype() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | validate_numnodes(n, num, name) | 
					
						
							|  |  |  |      node *n; | 
					
						
							|  |  |  |      int num; | 
					
						
							|  |  |  |      const char *const name; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (NCH(n) != num) { | 
					
						
							|  |  |  | 	char buff[60]; | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) sprintf(buff, "Illegal number of children for %s node.", name); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	err_string(buff); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (NCH(n) == num); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_numnodes() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | validate_terminal(terminal, type, string) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |      node *terminal; | 
					
						
							|  |  |  |      int type; | 
					
						
							|  |  |  |      char *string; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(terminal, type) | 
					
						
							|  |  |  | 	       && ((string == 0) || (strcmp(string, STR(terminal)) == 0))); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (!res && !PyErr_Occurred()) { | 
					
						
							|  |  |  | 	char buffer[60]; | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) sprintf(buffer, "Illegal terminal: expected \"%s\"", string); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	err_string(buffer); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_terminal() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | /*  X (',' X) [',']
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | validate_repeating_list(tree, ntype, vfunc, name) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  |     int ntype; | 
					
						
							|  |  |  |     int (*vfunc)(); | 
					
						
							|  |  |  |     const char *const name; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							|  |  |  |     int res = (nch && validate_ntype(tree, ntype) | 
					
						
							|  |  |  | 	       && vfunc(CHILD(tree, 0))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!res && !PyErr_Occurred()) | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) validate_numnodes(tree, 1, name); | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     else { | 
					
						
							|  |  |  | 	if (is_even(nch)) | 
					
						
							|  |  |  | 	    res = validate_comma(CHILD(tree, --nch)); | 
					
						
							|  |  |  | 	if (res && nch > 1) { | 
					
						
							|  |  |  | 	    int pos = 1; | 
					
						
							|  |  |  | 	    for ( ; res && pos < nch; pos += 2) | 
					
						
							|  |  |  | 		res = (validate_comma(CHILD(tree, pos)) | 
					
						
							|  |  |  | 		       && vfunc(CHILD(tree, pos + 1))); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_repeating_list() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  VALIDATE(class)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  classdef: | 
					
						
							|  |  |  |  *	'class' NAME ['(' testlist ')'] ':' suite | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_class(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = validate_ntype(tree, classdef) && ((nch == 4) || (nch == 7)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res) { | 
					
						
							|  |  |  | 	res = (validate_name(CHILD(tree, 0), "class") | 
					
						
							|  |  |  | 	       && validate_ntype(CHILD(tree, 1), NAME) | 
					
						
							|  |  |  | 	       && validate_colon(CHILD(tree, nch - 2)) | 
					
						
							|  |  |  | 	       && validate_suite(CHILD(tree, nch - 1))); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) validate_numnodes(tree, 4, "class"); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res && (nch == 7)) { | 
					
						
							|  |  |  | 	res = (validate_lparen(CHILD(tree, 2)) | 
					
						
							|  |  |  | 	       && validate_testlist(CHILD(tree, 3)) | 
					
						
							|  |  |  | 	       && validate_rparen(CHILD(tree, 4))); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_class() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  if_stmt:
 | 
					
						
							|  |  |  |  *	'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite] | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_if(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, if_stmt) | 
					
						
							|  |  |  | 	       && (nch >= 4) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_name(CHILD(tree, 0), "if") | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	       && validate_test(CHILD(tree, 1)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_colon(CHILD(tree, 2)) | 
					
						
							|  |  |  | 	       && validate_suite(CHILD(tree, 3))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (res && ((nch % 4) == 3)) { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	/*  ... 'else' ':' suite  */ | 
					
						
							|  |  |  | 	res = (validate_name(CHILD(tree, nch - 3), "else") | 
					
						
							|  |  |  | 	       && validate_colon(CHILD(tree, nch - 2)) | 
					
						
							|  |  |  | 	       && validate_suite(CHILD(tree, nch - 1))); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	nch -= 3; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     else if (!res && !PyErr_Occurred()) | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) validate_numnodes(tree, 4, "if"); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     if ((nch % 4) != 0) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	/* Will catch the case for nch < 4 */ | 
					
						
							|  |  |  | 	res = validate_numnodes(tree, 0, "if"); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     else if (res && (nch > 4)) { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	/*  ... ('elif' test ':' suite)+ ...  */ | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	int j = 4; | 
					
						
							|  |  |  | 	while ((j < nch) && res) { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    res = (validate_name(CHILD(tree, j), "elif") | 
					
						
							|  |  |  | 		   && validate_colon(CHILD(tree, j + 2)) | 
					
						
							|  |  |  | 		   && validate_test(CHILD(tree, j + 1)) | 
					
						
							|  |  |  | 		   && validate_suite(CHILD(tree, j + 3))); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    j += 4; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_if() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  parameters:
 | 
					
						
							|  |  |  |  *	'(' [varargslist] ')' | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_parameters(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = validate_ntype(tree, parameters) && ((nch == 2) || (nch == 3)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res) { | 
					
						
							|  |  |  | 	res = (validate_lparen(CHILD(tree, 0)) | 
					
						
							|  |  |  | 	       && validate_rparen(CHILD(tree, nch - 1))); | 
					
						
							|  |  |  | 	if (res && (nch == 3)) | 
					
						
							|  |  |  | 	    res = validate_varargslist(CHILD(tree, 1)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) validate_numnodes(tree, 2, "parameters"); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_parameters() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  VALIDATE(suite)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  suite: | 
					
						
							|  |  |  |  *	simple_stmt | 
					
						
							|  |  |  |  *    | NEWLINE INDENT stmt+ DEDENT | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_suite(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, suite) && ((nch == 1) || (nch >= 4))); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res && (nch == 1)) | 
					
						
							|  |  |  | 	res = validate_simple_stmt(CHILD(tree, 0)); | 
					
						
							|  |  |  |     else if (res) { | 
					
						
							|  |  |  | 	/*  NEWLINE INDENT stmt+ DEDENT  */ | 
					
						
							|  |  |  | 	res = (validate_newline(CHILD(tree, 0)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_indent(CHILD(tree, 1)) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	       && validate_stmt(CHILD(tree, 2)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_dedent(CHILD(tree, nch - 1))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	if (res && (nch > 4)) { | 
					
						
							|  |  |  | 	    int i = 3; | 
					
						
							|  |  |  | 	    --nch;			/* forget the DEDENT	 */ | 
					
						
							|  |  |  | 	    for ( ; res && (i < nch); ++i) | 
					
						
							|  |  |  | 		res = validate_stmt(CHILD(tree, i)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	else if (nch < 4) | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	    res = validate_numnodes(tree, 4, "suite"); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_suite() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_testlist(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     return (validate_repeating_list(tree, testlist, | 
					
						
							|  |  |  | 				    validate_test, "testlist")); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_testlist() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  VALIDATE(varargslist)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  varargslist: | 
					
						
							|  |  |  |  *	(fpdef ['=' test] ',')* ('*' NAME [',' '*' '*' NAME] | '*' '*' NAME) | 
					
						
							|  |  |  |  *    | fpdef ['=' test] (',' fpdef ['=' test])* [','] | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *      (fpdef ['=' test] ',')* | 
					
						
							|  |  |  |  *           ('*' NAME [',' ('**'|'*' '*') NAME] | 
					
						
							|  |  |  |  *         | ('**'|'*' '*') NAME) | 
					
						
							|  |  |  |  *    | fpdef ['=' test] (',' fpdef ['=' test])* [','] | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_varargslist(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = validate_ntype(tree, varargslist) && (nch != 0); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res && (nch >= 2) && (TYPE(CHILD(tree, nch - 1)) == NAME)) { | 
					
						
							|  |  |  | 	/*  (fpdef ['=' test] ',')*
 | 
					
						
							|  |  |  | 	 *  ('*' NAME [',' '*' '*' NAME] | '*' '*' NAME) | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	int pos = 0; | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	int remaining = nch; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	while (res && (TYPE(CHILD(tree, pos)) == fpdef)) { | 
					
						
							|  |  |  | 	    res = validate_fpdef(CHILD(tree, pos)); | 
					
						
							|  |  |  | 	    if (res) { | 
					
						
							|  |  |  | 		if (TYPE(CHILD(tree, pos + 1)) == EQUAL) { | 
					
						
							|  |  |  | 		    res = validate_test(CHILD(tree, pos + 2)); | 
					
						
							|  |  |  | 		    pos += 2; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		res = res && validate_comma(CHILD(tree, pos + 1)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 		pos += 2; | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (res) { | 
					
						
							|  |  |  | 	    remaining = nch - pos; | 
					
						
							|  |  |  | 	    res = ((remaining == 2) || (remaining == 3) | 
					
						
							|  |  |  | 		   || (remaining == 5) || (remaining == 6)); | 
					
						
							|  |  |  | 	    if (!res) | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 		(void) validate_numnodes(tree, 2, "varargslist"); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    else if (TYPE(CHILD(tree, pos)) == DOUBLESTAR) | 
					
						
							|  |  |  | 		return ((remaining == 2) | 
					
						
							|  |  |  | 			&& validate_ntype(CHILD(tree, pos+1), NAME)); | 
					
						
							|  |  |  | 	    else { | 
					
						
							|  |  |  | 		res = validate_star(CHILD(tree, pos++)); | 
					
						
							|  |  |  | 		--remaining; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    } | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	if (res) { | 
					
						
							|  |  |  | 	    if (remaining == 2) { | 
					
						
							|  |  |  | 		res = (validate_star(CHILD(tree, pos)) | 
					
						
							|  |  |  | 		       && validate_ntype(CHILD(tree, pos + 1), NAME)); | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    else { | 
					
						
							|  |  |  | 		res = validate_ntype(CHILD(tree, pos++), NAME); | 
					
						
							|  |  |  | 		if (res && (remaining >= 4)) { | 
					
						
							|  |  |  | 		    res = validate_comma(CHILD(tree, pos)); | 
					
						
							|  |  |  | 		    if (--remaining == 3) | 
					
						
							| 
									
										
										
										
											1996-09-11 21:58:26 +00:00
										 |  |  | 			res = (validate_star(CHILD(tree, pos + 1)) | 
					
						
							|  |  |  | 			       && validate_star(CHILD(tree, pos + 2))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 		    else | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 			res = validate_ntype(CHILD(tree, pos + 1), DOUBLESTAR); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (!res && !PyErr_Occurred()) | 
					
						
							|  |  |  | 	    err_string("Incorrect validation of variable arguments list."); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     else if (res) { | 
					
						
							|  |  |  | 	/*  fpdef ['=' test] (',' fpdef ['=' test])* [',']  */ | 
					
						
							|  |  |  | 	if (TYPE(CHILD(tree, nch - 1)) == COMMA) | 
					
						
							|  |  |  | 	    --nch; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	/*  fpdef ['=' test] (',' fpdef ['=' test])*  */ | 
					
						
							|  |  |  | 	res = (is_odd(nch) | 
					
						
							|  |  |  | 	       && validate_fpdef(CHILD(tree, 0))); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	if (res && (nch > 1)) { | 
					
						
							|  |  |  | 	    int pos = 1; | 
					
						
							|  |  |  | 	    if (TYPE(CHILD(tree, 1)) == EQUAL) { | 
					
						
							|  |  |  | 		res = validate_test(CHILD(tree, 2)); | 
					
						
							|  |  |  | 		pos += 2; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    /*  ... (',' fpdef ['=' test])*  */ | 
					
						
							|  |  |  | 	    for ( ; res && (pos < nch); pos += 2) { | 
					
						
							|  |  |  | 		/* ',' fpdef */ | 
					
						
							|  |  |  | 		res = (validate_comma(CHILD(tree, pos)) | 
					
						
							|  |  |  | 		       && validate_fpdef(CHILD(tree, pos + 1))); | 
					
						
							|  |  |  | 		if (res | 
					
						
							|  |  |  | 		    && ((nch - pos) > 2) | 
					
						
							|  |  |  | 		    && (TYPE(CHILD(tree, pos + 2)) == EQUAL)) { | 
					
						
							|  |  |  | 		    /* ['=' test] */ | 
					
						
							|  |  |  | 		    res = validate_test(CHILD(tree, pos + 3)); | 
					
						
							|  |  |  | 		    pos += 2; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     else | 
					
						
							|  |  |  | 	err_string("Improperly formed argument list."); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_varargslist() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  VALIDATE(fpdef)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  fpdef: | 
					
						
							|  |  |  |  *	NAME | 
					
						
							|  |  |  |  *    | '(' fplist ')' | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_fpdef(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = validate_ntype(tree, fpdef); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res) { | 
					
						
							|  |  |  | 	if (nch == 1) | 
					
						
							|  |  |  | 	    res = validate_ntype(CHILD(tree, 0), NAME); | 
					
						
							|  |  |  | 	else if (nch == 3) | 
					
						
							|  |  |  | 	    res = (validate_lparen(CHILD(tree, 0)) | 
					
						
							|  |  |  | 		   && validate_fplist(CHILD(tree, 1)) | 
					
						
							|  |  |  | 		   && validate_rparen(CHILD(tree, 2))); | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	    res = validate_numnodes(tree, 1, "fpdef"); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | } /* validate_fpdef() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_fplist(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     return (validate_repeating_list(tree, fplist, | 
					
						
							|  |  |  | 				    validate_fpdef, "fplist")); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_fplist() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  simple_stmt | compound_stmt
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_stmt(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int res = (validate_ntype(tree, stmt) | 
					
						
							|  |  |  | 	       && validate_numnodes(tree, 1, "stmt")); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res) { | 
					
						
							|  |  |  | 	tree = CHILD(tree, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (TYPE(tree) == simple_stmt) | 
					
						
							|  |  |  | 	    res = validate_simple_stmt(tree); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	    res = validate_compound_stmt(tree); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_stmt() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  small_stmt (';' small_stmt)* [';'] NEWLINE
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_simple_stmt(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, simple_stmt) | 
					
						
							|  |  |  | 	       && (nch >= 2) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_small_stmt(CHILD(tree, 0)) | 
					
						
							|  |  |  | 	       && validate_newline(CHILD(tree, nch - 1))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (nch < 2) | 
					
						
							|  |  |  | 	res = validate_numnodes(tree, 2, "simple_stmt"); | 
					
						
							|  |  |  |     --nch;				/* forget the NEWLINE	 */ | 
					
						
							|  |  |  |     if (res && is_even(nch)) | 
					
						
							|  |  |  | 	res = validate_semi(CHILD(tree, --nch)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     if (res && (nch > 2)) { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	for (i = 1; res && (i < nch); i += 2) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    res = (validate_semi(CHILD(tree, i)) | 
					
						
							|  |  |  | 		   && validate_small_stmt(CHILD(tree, i + 1))); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_simple_stmt() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_small_stmt(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							|  |  |  |     int	res = (validate_numnodes(tree, 1, "small_stmt") | 
					
						
							|  |  |  | 	       && ((TYPE(CHILD(tree, 0)) == expr_stmt) | 
					
						
							|  |  |  | 		   || (TYPE(CHILD(tree, 0)) == print_stmt) | 
					
						
							|  |  |  | 		   || (TYPE(CHILD(tree, 0)) == del_stmt) | 
					
						
							|  |  |  | 		   || (TYPE(CHILD(tree, 0)) == pass_stmt) | 
					
						
							|  |  |  | 		   || (TYPE(CHILD(tree, 0)) == flow_stmt) | 
					
						
							|  |  |  | 		   || (TYPE(CHILD(tree, 0)) == import_stmt) | 
					
						
							|  |  |  | 		   || (TYPE(CHILD(tree, 0)) == global_stmt) | 
					
						
							| 
									
										
										
										
											1997-04-02 05:32:13 +00:00
										 |  |  | 		   || (TYPE(CHILD(tree, 0)) == assert_stmt) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 		   || (TYPE(CHILD(tree, 0)) == exec_stmt))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (res) | 
					
						
							|  |  |  | 	res = validate_node(CHILD(tree, 0)); | 
					
						
							|  |  |  |     else if (nch == 1) { | 
					
						
							|  |  |  | 	char buffer[60]; | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) sprintf(buffer, "Unrecognized child node of small_stmt: %d.", | 
					
						
							|  |  |  | 		       TYPE(CHILD(tree, 0))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	err_string(buffer); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_small_stmt */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  compound_stmt:
 | 
					
						
							|  |  |  |  *	if_stmt | while_stmt | for_stmt | try_stmt | funcdef | classdef | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_compound_stmt(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int res = (validate_ntype(tree, compound_stmt) | 
					
						
							|  |  |  | 	       && validate_numnodes(tree, 1, "compound_stmt")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!res) | 
					
						
							|  |  |  | 	return (0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tree = CHILD(tree, 0); | 
					
						
							|  |  |  |     res = ((TYPE(tree) == if_stmt) | 
					
						
							|  |  |  | 	   || (TYPE(tree) == while_stmt) | 
					
						
							|  |  |  | 	   || (TYPE(tree) == for_stmt) | 
					
						
							|  |  |  | 	   || (TYPE(tree) == try_stmt) | 
					
						
							|  |  |  | 	   || (TYPE(tree) == funcdef) | 
					
						
							|  |  |  | 	   || (TYPE(tree) == classdef)); | 
					
						
							|  |  |  |     if (res) | 
					
						
							|  |  |  | 	res = validate_node(tree); | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  | 	char buffer[60]; | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) sprintf(buffer, "Illegal compound statement type: %d.", | 
					
						
							|  |  |  | 		       TYPE(tree)); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	err_string(buffer); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_compound_stmt() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_expr_stmt(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int j; | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, expr_stmt) | 
					
						
							|  |  |  | 	       && is_odd(nch) | 
					
						
							|  |  |  | 	       && validate_testlist(CHILD(tree, 0))); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     for (j = 1; res && (j < nch); j += 2) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = (validate_equal(CHILD(tree, j)) | 
					
						
							|  |  |  | 	       && validate_testlist(CHILD(tree, j + 1))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_expr_stmt() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  print_stmt:
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	'print' (test ',')* [test] | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_print_stmt(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int j; | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, print_stmt) | 
					
						
							|  |  |  | 	       && (nch != 0) | 
					
						
							|  |  |  | 	       && validate_name(CHILD(tree, 0), "print")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (res && is_even(nch)) { | 
					
						
							|  |  |  | 	res = validate_test(CHILD(tree, nch - 1)); | 
					
						
							|  |  |  | 	--nch; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     else if (!res && !PyErr_Occurred()) | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) validate_numnodes(tree, 1, "print_stmt"); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     for (j = 1; res && (j < nch); j += 2) | 
					
						
							|  |  |  | 	res = (validate_test(CHILD(tree, j)) | 
					
						
							|  |  |  | 	       && validate_ntype(CHILD(tree, j + 1), COMMA)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_print_stmt() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_del_stmt(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return (validate_numnodes(tree, 2, "del_stmt") | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    && validate_name(CHILD(tree, 0), "del") | 
					
						
							|  |  |  | 	    && validate_exprlist(CHILD(tree, 1))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_del_stmt() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_return_stmt(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, return_stmt) | 
					
						
							|  |  |  | 	       && ((nch == 1) || (nch == 2)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_name(CHILD(tree, 0), "return")); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res && (nch == 2)) | 
					
						
							|  |  |  | 	res = validate_testlist(CHILD(tree, 1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_return_stmt() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_raise_stmt(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, raise_stmt) | 
					
						
							| 
									
										
										
										
											1998-04-10 04:43:28 +00:00
										 |  |  | 	       && ((nch == 1) || (nch == 2) || (nch == 4) || (nch == 6))); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res) { | 
					
						
							| 
									
										
										
										
											1998-04-10 04:43:28 +00:00
										 |  |  | 	res = validate_name(CHILD(tree, 0), "raise"); | 
					
						
							|  |  |  | 	if (res && (nch >= 2)) | 
					
						
							|  |  |  | 	    res = validate_test(CHILD(tree, 1)); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	if (res && nch > 2) { | 
					
						
							|  |  |  | 	    res = (validate_comma(CHILD(tree, 2)) | 
					
						
							|  |  |  | 		   && validate_test(CHILD(tree, 3))); | 
					
						
							|  |  |  | 	    if (res && (nch > 4)) | 
					
						
							|  |  |  | 		res = (validate_comma(CHILD(tree, 4)) | 
					
						
							|  |  |  | 		       && validate_test(CHILD(tree, 5))); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) validate_numnodes(tree, 2, "raise"); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res && (nch == 4)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = (validate_comma(CHILD(tree, 2)) | 
					
						
							|  |  |  | 	       && validate_test(CHILD(tree, 3))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_raise_stmt() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  import_stmt:
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *    'import' dotted_name (',' dotted_name)* | 
					
						
							|  |  |  |  *  | 'from' dotted_name 'import' ('*' | NAME (',' NAME)*) | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_import_stmt(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, import_stmt) | 
					
						
							|  |  |  | 	       && (nch >= 2) && is_even(nch) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_ntype(CHILD(tree, 0), NAME) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	       && validate_ntype(CHILD(tree, 1), dotted_name)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (res && (strcmp(STR(CHILD(tree, 0)), "import") == 0)) { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	int j; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	for (j = 2; res && (j < nch); j += 2) | 
					
						
							|  |  |  | 	    res = (validate_comma(CHILD(tree, j)) | 
					
						
							|  |  |  | 		   && validate_ntype(CHILD(tree, j + 1), dotted_name)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     else if (res && validate_name(CHILD(tree, 0), "from")) { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	res = ((nch >= 4) && is_even(nch) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_name(CHILD(tree, 2), "import")); | 
					
						
							|  |  |  | 	if (nch == 4) { | 
					
						
							|  |  |  | 	    res = ((TYPE(CHILD(tree, 3)) == NAME) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 		   || (TYPE(CHILD(tree, 3)) == STAR)); | 
					
						
							|  |  |  | 	    if (!res) | 
					
						
							|  |  |  | 		err_string("Illegal import statement."); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    /*  'from' NAME 'import' NAME (',' NAME)+  */ | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    int j; | 
					
						
							|  |  |  | 	    res = validate_ntype(CHILD(tree, 3), NAME); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    for (j = 4; res && (j < nch); j += 2) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 		res = (validate_comma(CHILD(tree, j)) | 
					
						
							|  |  |  | 		       && validate_ntype(CHILD(tree, j + 1), NAME)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = 0; | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_import_stmt() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_global_stmt(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int j; | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, global_stmt) | 
					
						
							|  |  |  | 	       && is_even(nch) && (nch >= 2)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res) | 
					
						
							|  |  |  | 	res = (validate_name(CHILD(tree, 0), "global") | 
					
						
							|  |  |  | 	       && validate_ntype(CHILD(tree, 1), NAME)); | 
					
						
							|  |  |  |     for (j = 2; res && (j < nch); j += 2) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = (validate_comma(CHILD(tree, j)) | 
					
						
							|  |  |  | 	       && validate_ntype(CHILD(tree, j + 1), NAME)); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_global_stmt() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  exec_stmt:
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  'exec' expr ['in' test [',' test]] | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_exec_stmt(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, exec_stmt) | 
					
						
							|  |  |  | 	       && ((nch == 2) || (nch == 4) || (nch == 6)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_name(CHILD(tree, 0), "exec") | 
					
						
							|  |  |  | 	       && validate_expr(CHILD(tree, 1))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (!res && !PyErr_Occurred()) | 
					
						
							|  |  |  | 	err_string("Illegal exec statement."); | 
					
						
							|  |  |  |     if (res && (nch > 2)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = (validate_name(CHILD(tree, 2), "in") | 
					
						
							|  |  |  | 	       && validate_test(CHILD(tree, 3))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res && (nch == 6)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = (validate_comma(CHILD(tree, 4)) | 
					
						
							|  |  |  | 	       && validate_test(CHILD(tree, 5))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_exec_stmt() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-02 05:32:13 +00:00
										 |  |  | /*  assert_stmt:
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  'assert' test [',' test] | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | validate_assert_stmt(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							|  |  |  |     int res = (validate_ntype(tree, assert_stmt) | 
					
						
							|  |  |  | 	       && ((nch == 2) || (nch == 4)) | 
					
						
							|  |  |  | 	       && (validate_name(CHILD(tree, 0), "__assert__") || | 
					
						
							|  |  |  | 		   validate_name(CHILD(tree, 0), "assert")) | 
					
						
							|  |  |  | 	       && validate_test(CHILD(tree, 1))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!res && !PyErr_Occurred()) | 
					
						
							|  |  |  | 	err_string("Illegal assert statement."); | 
					
						
							|  |  |  |     if (res && (nch > 2)) | 
					
						
							|  |  |  | 	res = (validate_comma(CHILD(tree, 2)) | 
					
						
							|  |  |  | 	       && validate_test(CHILD(tree, 3))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_assert_stmt() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_while(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, while_stmt) | 
					
						
							|  |  |  | 	       && ((nch == 4) || (nch == 7)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_name(CHILD(tree, 0), "while") | 
					
						
							|  |  |  | 	       && validate_test(CHILD(tree, 1)) | 
					
						
							|  |  |  | 	       && validate_colon(CHILD(tree, 2)) | 
					
						
							|  |  |  | 	       && validate_suite(CHILD(tree, 3))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res && (nch == 7)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = (validate_name(CHILD(tree, 4), "else") | 
					
						
							|  |  |  | 	       && validate_colon(CHILD(tree, 5)) | 
					
						
							|  |  |  | 	       && validate_suite(CHILD(tree, 6))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_while() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_for(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, for_stmt) | 
					
						
							|  |  |  | 	       && ((nch == 6) || (nch == 9)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_name(CHILD(tree, 0), "for") | 
					
						
							|  |  |  | 	       && validate_exprlist(CHILD(tree, 1)) | 
					
						
							|  |  |  | 	       && validate_name(CHILD(tree, 2), "in") | 
					
						
							|  |  |  | 	       && validate_testlist(CHILD(tree, 3)) | 
					
						
							|  |  |  | 	       && validate_colon(CHILD(tree, 4)) | 
					
						
							|  |  |  | 	       && validate_suite(CHILD(tree, 5))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res && (nch == 9)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = (validate_name(CHILD(tree, 6), "else") | 
					
						
							|  |  |  | 	       && validate_colon(CHILD(tree, 7)) | 
					
						
							|  |  |  | 	       && validate_suite(CHILD(tree, 8))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_for() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  try_stmt:
 | 
					
						
							|  |  |  |  *	'try' ':' suite (except_clause ':' suite)+ ['else' ':' suite] | 
					
						
							|  |  |  |  *    | 'try' ':' suite 'finally' ':' suite | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_try(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int pos = 3; | 
					
						
							|  |  |  |     int res = (validate_ntype(tree, try_stmt) | 
					
						
							|  |  |  | 	       && (nch >= 6) && ((nch % 3) == 0)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (res) | 
					
						
							|  |  |  | 	res = (validate_name(CHILD(tree, 0), "try") | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_colon(CHILD(tree, 1)) | 
					
						
							|  |  |  | 	       && validate_suite(CHILD(tree, 2)) | 
					
						
							|  |  |  | 	       && validate_colon(CHILD(tree, nch - 2)) | 
					
						
							|  |  |  | 	       && validate_suite(CHILD(tree, nch - 1))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     else { | 
					
						
							|  |  |  | 	const char* name = "execpt"; | 
					
						
							|  |  |  | 	char buffer[60]; | 
					
						
							|  |  |  | 	if (TYPE(CHILD(tree, nch - 3)) != except_clause) | 
					
						
							|  |  |  | 	    name = STR(CHILD(tree, nch - 3)); | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) sprintf(buffer, | 
					
						
							|  |  |  | 		       "Illegal number of children for try/%s node.", name); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	err_string(buffer); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /*	Skip past except_clause sections:  */ | 
					
						
							|  |  |  |     while (res && (TYPE(CHILD(tree, pos)) == except_clause)) { | 
					
						
							|  |  |  | 	res = (validate_except_clause(CHILD(tree, pos)) | 
					
						
							|  |  |  | 	       && validate_colon(CHILD(tree, pos + 1)) | 
					
						
							|  |  |  | 	       && validate_suite(CHILD(tree, pos + 2))); | 
					
						
							|  |  |  | 	pos += 3; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (res && (pos < nch)) { | 
					
						
							|  |  |  | 	res = validate_ntype(CHILD(tree, pos), NAME); | 
					
						
							|  |  |  | 	if (res && (strcmp(STR(CHILD(tree, pos)), "finally") == 0)) | 
					
						
							|  |  |  | 	    res = (validate_numnodes(tree, 6, "try/finally") | 
					
						
							|  |  |  | 		   && validate_colon(CHILD(tree, 4)) | 
					
						
							|  |  |  | 		   && validate_suite(CHILD(tree, 5))); | 
					
						
							| 
									
										
										
										
											1998-04-10 22:27:42 +00:00
										 |  |  | 	else if (res) { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    if (nch == (pos + 3)) { | 
					
						
							|  |  |  | 		res = ((strcmp(STR(CHILD(tree, pos)), "except") == 0) | 
					
						
							|  |  |  | 		       || (strcmp(STR(CHILD(tree, pos)), "else") == 0)); | 
					
						
							|  |  |  | 		if (!res) | 
					
						
							|  |  |  | 		    err_string("Illegal trailing triple in try statement."); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											1998-04-10 22:27:42 +00:00
										 |  |  | 	    else if (nch == (pos + 6)) { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 		res = (validate_name(CHILD(tree, pos), "except") | 
					
						
							|  |  |  | 		       && validate_colon(CHILD(tree, pos + 1)) | 
					
						
							|  |  |  | 		       && validate_suite(CHILD(tree, pos + 2)) | 
					
						
							|  |  |  | 		       && validate_name(CHILD(tree, pos + 3), "else")); | 
					
						
							| 
									
										
										
										
											1998-04-10 22:27:42 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    else | 
					
						
							|  |  |  | 		res = validate_numnodes(tree, pos + 3, "try/except"); | 
					
						
							| 
									
										
										
										
											1998-04-10 22:27:42 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_try() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_except_clause(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, except_clause) | 
					
						
							|  |  |  | 	       && ((nch == 1) || (nch == 2) || (nch == 4)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_name(CHILD(tree, 0), "except")); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res && (nch > 1)) | 
					
						
							|  |  |  | 	res = validate_test(CHILD(tree, 1)); | 
					
						
							|  |  |  |     if (res && (nch == 4)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = (validate_comma(CHILD(tree, 2)) | 
					
						
							|  |  |  | 	       && validate_test(CHILD(tree, 3))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_except_clause() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_test(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = validate_ntype(tree, test) && is_odd(nch); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res && (TYPE(CHILD(tree, 0)) == lambdef)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = ((nch == 1) | 
					
						
							|  |  |  | 	       && validate_lambdef(CHILD(tree, 0))); | 
					
						
							|  |  |  |     else if (res) { | 
					
						
							|  |  |  | 	int pos; | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	res = validate_and_test(CHILD(tree, 0)); | 
					
						
							|  |  |  | 	for (pos = 1; res && (pos < nch); pos += 2) | 
					
						
							|  |  |  | 	    res = (validate_name(CHILD(tree, pos), "or") | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 		   && validate_and_test(CHILD(tree, pos + 1))); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_test() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_and_test(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int pos; | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, and_test) | 
					
						
							|  |  |  | 	       && is_odd(nch) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_not_test(CHILD(tree, 0))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     for (pos = 1; res && (pos < nch); pos += 2) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = (validate_name(CHILD(tree, pos), "and") | 
					
						
							|  |  |  | 	       && validate_not_test(CHILD(tree, 0))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_and_test() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_not_test(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = validate_ntype(tree, not_test) && ((nch == 1) || (nch == 2)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res) { | 
					
						
							|  |  |  | 	if (nch == 2) | 
					
						
							|  |  |  | 	    res = (validate_name(CHILD(tree, 0), "not") | 
					
						
							|  |  |  | 		   && validate_not_test(CHILD(tree, 1))); | 
					
						
							|  |  |  | 	else if (nch == 1) | 
					
						
							|  |  |  | 	    res = validate_comparison(CHILD(tree, 0)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_not_test() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_comparison(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int pos; | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, comparison) | 
					
						
							|  |  |  | 	       && is_odd(nch) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_expr(CHILD(tree, 0))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     for (pos = 1; res && (pos < nch); pos += 2) | 
					
						
							|  |  |  | 	res = (validate_comp_op(CHILD(tree, pos)) | 
					
						
							|  |  |  | 	       && validate_expr(CHILD(tree, pos + 1))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_comparison() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_comp_op(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int res = 0; | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (!validate_ntype(tree, comp_op)) | 
					
						
							|  |  |  | 	return (0); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     if (nch == 1) { | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 *  Only child will be a terminal with a well-defined symbolic name | 
					
						
							|  |  |  | 	 *  or a NAME with a string of either 'is' or 'in' | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	tree = CHILD(tree, 0); | 
					
						
							|  |  |  | 	switch (TYPE(tree)) { | 
					
						
							|  |  |  | 	    case LESS: | 
					
						
							|  |  |  | 	    case GREATER: | 
					
						
							|  |  |  | 	    case EQEQUAL: | 
					
						
							|  |  |  | 	    case EQUAL: | 
					
						
							|  |  |  | 	    case LESSEQUAL: | 
					
						
							|  |  |  | 	    case GREATEREQUAL: | 
					
						
							|  |  |  | 	    case NOTEQUAL: | 
					
						
							|  |  |  | 	      res = 1; | 
					
						
							|  |  |  | 	      break; | 
					
						
							|  |  |  | 	    case NAME: | 
					
						
							|  |  |  | 	      res = ((strcmp(STR(tree), "in") == 0) | 
					
						
							|  |  |  | 		     || (strcmp(STR(tree), "is") == 0)); | 
					
						
							|  |  |  | 	      if (!res) { | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 		  char buff[128]; | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 		  (void) sprintf(buff, "Illegal operator: '%s'.", STR(tree)); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 		  err_string(buff); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	      } | 
					
						
							|  |  |  | 	      break; | 
					
						
							|  |  |  | 	  default: | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	      err_string("Illegal comparison operator type."); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	      break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1996-12-05 23:43:35 +00:00
										 |  |  |     else if ((res = validate_numnodes(tree, 2, "comp_op")) != 0) { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = (validate_ntype(CHILD(tree, 0), NAME) | 
					
						
							|  |  |  | 	       && validate_ntype(CHILD(tree, 1), NAME) | 
					
						
							|  |  |  | 	       && (((strcmp(STR(CHILD(tree, 0)), "is") == 0) | 
					
						
							|  |  |  | 		    && (strcmp(STR(CHILD(tree, 1)), "not") == 0)) | 
					
						
							|  |  |  | 		   || ((strcmp(STR(CHILD(tree, 0)), "not") == 0) | 
					
						
							|  |  |  | 		       && (strcmp(STR(CHILD(tree, 1)), "in") == 0)))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	if (!res && !PyErr_Occurred()) | 
					
						
							|  |  |  | 	    err_string("Unknown comparison operator."); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_comp_op() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_expr(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int j; | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, expr) | 
					
						
							|  |  |  | 	       && is_odd(nch) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_xor_expr(CHILD(tree, 0))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     for (j = 2; res && (j < nch); j += 2) | 
					
						
							|  |  |  | 	res = (validate_xor_expr(CHILD(tree, j)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_vbar(CHILD(tree, j - 1))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_expr() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_xor_expr(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int j; | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, xor_expr) | 
					
						
							|  |  |  | 	       && is_odd(nch) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_and_expr(CHILD(tree, 0))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     for (j = 2; res && (j < nch); j += 2) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = (validate_circumflex(CHILD(tree, j - 1)) | 
					
						
							|  |  |  | 	       && validate_and_expr(CHILD(tree, j))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_xor_expr() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_and_expr(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int pos; | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, and_expr) | 
					
						
							|  |  |  | 	       && is_odd(nch) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_shift_expr(CHILD(tree, 0))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     for (pos = 1; res && (pos < nch); pos += 2) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = (validate_ampersand(CHILD(tree, pos)) | 
					
						
							|  |  |  | 	       && validate_shift_expr(CHILD(tree, pos + 1))); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_and_expr() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_chain_two_ops(tree, termvalid, op1, op2) | 
					
						
							|  |  |  |      node *tree; | 
					
						
							|  |  |  |      int (*termvalid)(); | 
					
						
							|  |  |  |      int op1; | 
					
						
							|  |  |  |      int op2; | 
					
						
							|  |  |  |  { | 
					
						
							|  |  |  |     int pos = 1; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							|  |  |  |     int res = (is_odd(nch) | 
					
						
							|  |  |  | 	       && (*termvalid)(CHILD(tree, 0))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     for ( ; res && (pos < nch); pos += 2) { | 
					
						
							|  |  |  | 	if (TYPE(CHILD(tree, pos)) != op1) | 
					
						
							|  |  |  | 	    res = validate_ntype(CHILD(tree, pos), op2); | 
					
						
							|  |  |  | 	if (res) | 
					
						
							|  |  |  | 	    res = (*termvalid)(CHILD(tree, pos + 1)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_chain_two_ops() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_shift_expr(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return (validate_ntype(tree, shift_expr) | 
					
						
							|  |  |  | 	    && validate_chain_two_ops(tree, validate_arith_expr, | 
					
						
							|  |  |  | 				      LEFTSHIFT, RIGHTSHIFT)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_shift_expr() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_arith_expr(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return (validate_ntype(tree, arith_expr) | 
					
						
							|  |  |  | 	    && validate_chain_two_ops(tree, validate_term, PLUS, MINUS)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_arith_expr() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_term(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int pos = 1; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, term) | 
					
						
							|  |  |  | 	       && is_odd(nch) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_factor(CHILD(tree, 0))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     for ( ; res && (pos < nch); pos += 2) | 
					
						
							|  |  |  | 	res = (((TYPE(CHILD(tree, pos)) == STAR) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       || (TYPE(CHILD(tree, pos)) == SLASH) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	       || (TYPE(CHILD(tree, pos)) == PERCENT)) | 
					
						
							|  |  |  | 	       && validate_factor(CHILD(tree, pos + 1))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_term() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  factor:
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  factor: ('+'|'-'|'~') factor | power | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_factor(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, factor) | 
					
						
							|  |  |  | 	       && (((nch == 2) | 
					
						
							|  |  |  | 		    && ((TYPE(CHILD(tree, 0)) == PLUS) | 
					
						
							|  |  |  | 		        || (TYPE(CHILD(tree, 0)) == MINUS) | 
					
						
							|  |  |  | 		        || (TYPE(CHILD(tree, 0)) == TILDE)) | 
					
						
							|  |  |  | 		    && validate_factor(CHILD(tree, 1))) | 
					
						
							|  |  |  | 		   || ((nch == 1) | 
					
						
							|  |  |  | 		       && validate_power(CHILD(tree, 0))))); | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_factor() */ | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*  power:
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  power: atom trailer* ('**' factor)* | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_power(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int pos = 1; | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							|  |  |  |     int res = (validate_ntype(tree, power) && (nch >= 1) | 
					
						
							|  |  |  | 	       && validate_atom(CHILD(tree, 0))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (res && (pos < nch) && (TYPE(CHILD(tree, pos)) == trailer)) | 
					
						
							|  |  |  | 	res = validate_trailer(CHILD(tree, pos++)); | 
					
						
							|  |  |  |     if (res && (pos < nch)) { | 
					
						
							|  |  |  | 	if (!is_even(nch - pos)) { | 
					
						
							|  |  |  | 	    err_string("Illegal number of nodes for 'power'."); | 
					
						
							|  |  |  | 	    return (0); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	for ( ; res && (pos < (nch - 1)); pos += 2) | 
					
						
							|  |  |  | 	    res = (validate_doublestar(CHILD(tree, pos)) | 
					
						
							|  |  |  | 		   && validate_factor(CHILD(tree, pos + 1))); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | }   /* validate_power() */ | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_atom(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int pos; | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = validate_ntype(tree, atom) && (nch >= 1); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (res) { | 
					
						
							|  |  |  | 	switch (TYPE(CHILD(tree, 0))) { | 
					
						
							|  |  |  | 	  case LPAR: | 
					
						
							|  |  |  | 	    res = ((nch <= 3) | 
					
						
							|  |  |  | 		   && (validate_rparen(CHILD(tree, nch - 1)))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    if (res && (nch == 3)) | 
					
						
							|  |  |  | 		res = validate_testlist(CHILD(tree, 1)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    break; | 
					
						
							|  |  |  | 	  case LSQB: | 
					
						
							|  |  |  | 	    res = ((nch <= 3) | 
					
						
							|  |  |  | 		   && validate_ntype(CHILD(tree, nch - 1), RSQB)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    if (res && (nch == 3)) | 
					
						
							|  |  |  | 		res = validate_testlist(CHILD(tree, 1)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    break; | 
					
						
							|  |  |  | 	  case LBRACE: | 
					
						
							|  |  |  | 	    res = ((nch <= 3) | 
					
						
							|  |  |  | 		   && validate_ntype(CHILD(tree, nch - 1), RBRACE)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    if (res && (nch == 3)) | 
					
						
							|  |  |  | 		res = validate_dictmaker(CHILD(tree, 1)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    break; | 
					
						
							|  |  |  | 	  case BACKQUOTE: | 
					
						
							|  |  |  | 	    res = ((nch == 3) | 
					
						
							|  |  |  | 		   && validate_testlist(CHILD(tree, 1)) | 
					
						
							|  |  |  | 		   && validate_ntype(CHILD(tree, 2), BACKQUOTE)); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case NAME: | 
					
						
							|  |  |  | 	  case NUMBER: | 
					
						
							|  |  |  | 	    res = (nch == 1); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case STRING: | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    for (pos = 1; res && (pos < nch); ++pos) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 		res = validate_ntype(CHILD(tree, pos), STRING); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  default: | 
					
						
							|  |  |  | 	    res = 0; | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_atom() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  funcdef:
 | 
					
						
							|  |  |  |  *	'def' NAME parameters ':' suite | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_funcdef(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return (validate_ntype(tree, funcdef) | 
					
						
							|  |  |  | 	    && validate_numnodes(tree, 5, "funcdef") | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    && validate_name(CHILD(tree, 0), "def") | 
					
						
							|  |  |  | 	    && validate_ntype(CHILD(tree, 1), NAME) | 
					
						
							|  |  |  | 	    && validate_colon(CHILD(tree, 3)) | 
					
						
							|  |  |  | 	    && validate_parameters(CHILD(tree, 2)) | 
					
						
							|  |  |  | 	    && validate_suite(CHILD(tree, 4))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_funcdef() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_lambdef(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, lambdef) | 
					
						
							|  |  |  | 	       && ((nch == 3) || (nch == 4)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_name(CHILD(tree, 0), "lambda") | 
					
						
							|  |  |  | 	       && validate_colon(CHILD(tree, nch - 2)) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	       && validate_test(CHILD(tree, nch - 1))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (res && (nch == 4)) | 
					
						
							|  |  |  | 	res = validate_varargslist(CHILD(tree, 1)); | 
					
						
							|  |  |  |     else if (!res && !PyErr_Occurred()) | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) validate_numnodes(tree, 3, "lambdef"); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_lambdef() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  arglist:
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  argument (',' argument)* [','] | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_arglist(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     return (validate_repeating_list(tree, arglist, | 
					
						
							|  |  |  | 				    validate_argument, "arglist")); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_arglist() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  argument:
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  [test '='] test | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_argument(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							|  |  |  |     int res = (validate_ntype(tree, argument) | 
					
						
							|  |  |  | 	       && ((nch == 1) || (nch == 3)) | 
					
						
							|  |  |  | 	       && validate_test(CHILD(tree, 0))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (res && (nch == 3)) | 
					
						
							|  |  |  | 	res = (validate_equal(CHILD(tree, 1)) | 
					
						
							|  |  |  | 	       && validate_test(CHILD(tree, 2))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_argument() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*  trailer:
 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |  *  '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_trailer(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							|  |  |  |     int res = validate_ntype(tree, trailer) && ((nch == 2) || (nch == 3)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (res) { | 
					
						
							|  |  |  | 	switch (TYPE(CHILD(tree, 0))) { | 
					
						
							|  |  |  | 	  case LPAR: | 
					
						
							|  |  |  | 	    res = validate_rparen(CHILD(tree, nch - 1)); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    if (res && (nch == 3)) | 
					
						
							|  |  |  | 		res = validate_arglist(CHILD(tree, 1)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    break; | 
					
						
							|  |  |  | 	  case LSQB: | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    res = (validate_numnodes(tree, 3, "trailer") | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 		   && validate_subscriptlist(CHILD(tree, 1)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 		   && validate_ntype(CHILD(tree, 2), RSQB)); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case DOT: | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    res = (validate_numnodes(tree, 2, "trailer") | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 		   && validate_ntype(CHILD(tree, 1), NAME)); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  default: | 
					
						
							|  |  |  | 	    res = 0; | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	(void) validate_numnodes(tree, 2, "trailer"); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_trailer() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | /*  subscriptlist:
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  subscript (',' subscript)* [','] | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | validate_subscriptlist(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return (validate_repeating_list(tree, subscriptlist, | 
					
						
							|  |  |  | 				    validate_subscript, "subscriptlist")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_subscriptlist() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  subscript:
 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |  *  '.' '.' '.' | test | [test] ':' [test] [sliceop] | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_subscript(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     int offset = 0; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     int res = validate_ntype(tree, subscript) && (nch >= 1) && (nch <= 4); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     if (!res) { | 
					
						
							|  |  |  | 	if (!PyErr_Occurred()) | 
					
						
							|  |  |  | 	    err_string("invalid number of arguments for subscript node"); | 
					
						
							|  |  |  | 	return (0); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     if (TYPE(CHILD(tree, 0)) == DOT) | 
					
						
							|  |  |  | 	/* take care of ('.' '.' '.') possibility */ | 
					
						
							|  |  |  | 	return (validate_numnodes(tree, 3, "subscript") | 
					
						
							|  |  |  | 		&& validate_dot(CHILD(tree, 0)) | 
					
						
							|  |  |  | 		&& validate_dot(CHILD(tree, 1)) | 
					
						
							|  |  |  | 		&& validate_dot(CHILD(tree, 2))); | 
					
						
							|  |  |  |     if (nch == 1) { | 
					
						
							|  |  |  | 	if (TYPE(CHILD(tree, 0)) == test) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    res = validate_test(CHILD(tree, 0)); | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	    res = validate_colon(CHILD(tree, 0)); | 
					
						
							|  |  |  | 	return (res); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /*	Must be [test] ':' [test] [sliceop],
 | 
					
						
							|  |  |  |      *	but at least one of the optional components will | 
					
						
							|  |  |  |      *	be present, but we don't know which yet. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if ((TYPE(CHILD(tree, 0)) != COLON) || (nch == 4)) { | 
					
						
							|  |  |  | 	res = validate_test(CHILD(tree, 0)); | 
					
						
							|  |  |  | 	offset = 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (res) | 
					
						
							|  |  |  | 	res = validate_colon(CHILD(tree, offset)); | 
					
						
							|  |  |  |     if (res) { | 
					
						
							|  |  |  | 	int rem = nch - ++offset; | 
					
						
							|  |  |  | 	if (rem) { | 
					
						
							|  |  |  | 	    if (TYPE(CHILD(tree, offset)) == test) { | 
					
						
							|  |  |  | 		res = validate_test(CHILD(tree, offset)); | 
					
						
							|  |  |  | 		++offset; | 
					
						
							|  |  |  | 		--rem; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    if (res && rem) | 
					
						
							|  |  |  | 		res = validate_sliceop(CHILD(tree, offset)); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_subscript() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | validate_sliceop(tree) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     int res = ((nch == 1) || validate_numnodes(tree, 2, "sliceop")) | 
					
						
							|  |  |  | 	      && validate_ntype(tree, sliceop); | 
					
						
							|  |  |  |     if (!res && !PyErr_Occurred()) { | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	res = validate_numnodes(tree, 1, "sliceop"); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  |     if (res) | 
					
						
							|  |  |  | 	res = validate_colon(CHILD(tree, 0)); | 
					
						
							|  |  |  |     if (res && (nch == 2)) | 
					
						
							|  |  |  | 	res = validate_test(CHILD(tree, 1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | }   /* validate_sliceop() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | validate_exprlist(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return (validate_repeating_list(tree, exprlist, | 
					
						
							|  |  |  | 				    validate_expr, "exprlist")); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | }   /* validate_exprlist() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_dictmaker(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, dictmaker) | 
					
						
							|  |  |  | 	       && (nch >= 3) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_test(CHILD(tree, 0)) | 
					
						
							|  |  |  | 	       && validate_colon(CHILD(tree, 1)) | 
					
						
							|  |  |  | 	       && validate_test(CHILD(tree, 2))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     if (res && ((nch % 4) == 0)) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = validate_comma(CHILD(tree, --nch)); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     else if (res) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = ((nch % 4) == 3); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     if (res && (nch > 3)) { | 
					
						
							|  |  |  | 	int pos = 3; | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	/*  ( ',' test ':' test )*  */ | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	while (res && (pos < nch)) { | 
					
						
							|  |  |  | 	    res = (validate_comma(CHILD(tree, pos)) | 
					
						
							|  |  |  | 		   && validate_test(CHILD(tree, pos + 1)) | 
					
						
							|  |  |  | 		   && validate_colon(CHILD(tree, pos + 2)) | 
					
						
							|  |  |  | 		   && validate_test(CHILD(tree, pos + 3))); | 
					
						
							|  |  |  | 	    pos += 4; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_dictmaker() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_eval_input(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int pos; | 
					
						
							|  |  |  |     int nch = NCH(tree); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     int res = (validate_ntype(tree, eval_input) | 
					
						
							|  |  |  | 	       && (nch >= 2) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	       && validate_testlist(CHILD(tree, 0)) | 
					
						
							|  |  |  | 	       && validate_ntype(CHILD(tree, nch - 1), ENDMARKER)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     for (pos = 1; res && (pos < (nch - 1)); ++pos) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	res = validate_ntype(CHILD(tree, pos), NEWLINE); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_eval_input() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_node(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     int   nch  = 0;			/* num. children on current node  */ | 
					
						
							|  |  |  |     int   res  = 1;			/* result value			  */ | 
					
						
							|  |  |  |     node* next = 0;			/* node to process after this one */ | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     while (res & (tree != 0)) { | 
					
						
							|  |  |  | 	nch  = NCH(tree); | 
					
						
							|  |  |  | 	next = 0; | 
					
						
							|  |  |  | 	switch (TYPE(tree)) { | 
					
						
							|  |  |  | 	    /*
 | 
					
						
							|  |  |  | 	     *  Definition nodes. | 
					
						
							|  |  |  | 	     */ | 
					
						
							|  |  |  | 	  case funcdef: | 
					
						
							|  |  |  | 	    res = validate_funcdef(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case classdef: | 
					
						
							|  |  |  | 	    res = validate_class(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	    /*
 | 
					
						
							|  |  |  | 	     *  "Trivial" parse tree nodes. | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	     *  (Why did I call these trivial?) | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	     */ | 
					
						
							|  |  |  | 	  case stmt: | 
					
						
							|  |  |  | 	    res = validate_stmt(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case small_stmt: | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    /*
 | 
					
						
							|  |  |  | 	     *  expr_stmt | print_stmt  | del_stmt | pass_stmt | flow_stmt | 
					
						
							| 
									
										
										
										
											1997-04-02 05:32:13 +00:00
										 |  |  | 	     *  | import_stmt | global_stmt | exec_stmt | assert_stmt | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	     */ | 
					
						
							|  |  |  | 	    res = validate_small_stmt(tree); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    break; | 
					
						
							|  |  |  | 	  case flow_stmt: | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    res  = (validate_numnodes(tree, 1, "flow_stmt") | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 		    && ((TYPE(CHILD(tree, 0)) == break_stmt) | 
					
						
							|  |  |  | 			|| (TYPE(CHILD(tree, 0)) == continue_stmt) | 
					
						
							|  |  |  | 			|| (TYPE(CHILD(tree, 0)) == return_stmt) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 			|| (TYPE(CHILD(tree, 0)) == raise_stmt))); | 
					
						
							|  |  |  | 	    if (res) | 
					
						
							|  |  |  | 		next = CHILD(tree, 0); | 
					
						
							|  |  |  | 	    else if (nch == 1) | 
					
						
							|  |  |  | 		err_string("Illegal flow_stmt type."); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    break; | 
					
						
							|  |  |  | 	    /*
 | 
					
						
							|  |  |  | 	     *  Compound statements. | 
					
						
							|  |  |  | 	     */ | 
					
						
							|  |  |  | 	  case simple_stmt: | 
					
						
							|  |  |  | 	    res = validate_simple_stmt(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case compound_stmt: | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    res = validate_compound_stmt(tree); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    break; | 
					
						
							|  |  |  | 	    /*
 | 
					
						
							|  |  |  | 	     *  Fundemental statements. | 
					
						
							|  |  |  | 	     */ | 
					
						
							|  |  |  | 	  case expr_stmt: | 
					
						
							|  |  |  | 	    res = validate_expr_stmt(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case print_stmt: | 
					
						
							|  |  |  | 	    res = validate_print_stmt(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case del_stmt: | 
					
						
							|  |  |  | 	    res = validate_del_stmt(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case pass_stmt: | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    res = (validate_numnodes(tree, 1, "pass") | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 		   && validate_name(CHILD(tree, 0), "pass")); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case break_stmt: | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    res = (validate_numnodes(tree, 1, "break") | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 		   && validate_name(CHILD(tree, 0), "break")); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case continue_stmt: | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    res = (validate_numnodes(tree, 1, "continue") | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 		   && validate_name(CHILD(tree, 0), "continue")); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case return_stmt: | 
					
						
							|  |  |  | 	    res = validate_return_stmt(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case raise_stmt: | 
					
						
							|  |  |  | 	    res = validate_raise_stmt(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case import_stmt: | 
					
						
							|  |  |  | 	    res = validate_import_stmt(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case global_stmt: | 
					
						
							|  |  |  | 	    res = validate_global_stmt(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case exec_stmt: | 
					
						
							|  |  |  | 	    res = validate_exec_stmt(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							| 
									
										
										
										
											1997-04-02 05:32:13 +00:00
										 |  |  | 	  case assert_stmt: | 
					
						
							|  |  |  | 	    res = validate_assert_stmt(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	  case if_stmt: | 
					
						
							|  |  |  | 	    res = validate_if(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case while_stmt: | 
					
						
							|  |  |  | 	    res = validate_while(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case for_stmt: | 
					
						
							|  |  |  | 	    res = validate_for(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case try_stmt: | 
					
						
							|  |  |  | 	    res = validate_try(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case suite: | 
					
						
							|  |  |  | 	    res = validate_suite(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	    /*
 | 
					
						
							|  |  |  | 	     *  Expression nodes. | 
					
						
							|  |  |  | 	     */ | 
					
						
							|  |  |  | 	  case testlist: | 
					
						
							|  |  |  | 	    res = validate_testlist(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case test: | 
					
						
							|  |  |  | 	    res = validate_test(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case and_test: | 
					
						
							|  |  |  | 	    res = validate_and_test(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case not_test: | 
					
						
							|  |  |  | 	    res = validate_not_test(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case comparison: | 
					
						
							|  |  |  | 	    res = validate_comparison(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case exprlist: | 
					
						
							|  |  |  | 	    res = validate_exprlist(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	  case comp_op: | 
					
						
							|  |  |  | 	    res = validate_comp_op(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	  case expr: | 
					
						
							|  |  |  | 	    res = validate_expr(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case xor_expr: | 
					
						
							|  |  |  | 	    res = validate_xor_expr(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case and_expr: | 
					
						
							|  |  |  | 	    res = validate_and_expr(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case shift_expr: | 
					
						
							|  |  |  | 	    res = validate_shift_expr(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case arith_expr: | 
					
						
							|  |  |  | 	    res = validate_arith_expr(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case term: | 
					
						
							|  |  |  | 	    res = validate_term(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	  case factor: | 
					
						
							|  |  |  | 	    res = validate_factor(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	  case power: | 
					
						
							|  |  |  | 	    res = validate_power(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	  case atom: | 
					
						
							|  |  |  | 	    res = validate_atom(tree); | 
					
						
							|  |  |  | 	    break; | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	  default: | 
					
						
							|  |  |  | 	    /* Hopefully never reached! */ | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	    err_string("Unrecogniged node type."); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 	    res = 0; | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	tree = next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_node() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_expr_tree(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int res = validate_eval_input(tree); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!res && !PyErr_Occurred()) | 
					
						
							|  |  |  | 	err_string("Could not validate expression tuple."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (res); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | }   /* validate_expr_tree() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | /*  file_input:
 | 
					
						
							|  |  |  |  *	(NEWLINE | stmt)* ENDMARKER | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | validate_file_input(tree) | 
					
						
							|  |  |  |     node *tree; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int j   = 0; | 
					
						
							|  |  |  |     int nch = NCH(tree) - 1; | 
					
						
							|  |  |  |     int res = ((nch >= 0) | 
					
						
							|  |  |  | 	       && validate_ntype(CHILD(tree, nch), ENDMARKER)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for ( ; res && (j < nch); ++j) { | 
					
						
							|  |  |  | 	if (TYPE(CHILD(tree, j)) == stmt) | 
					
						
							|  |  |  | 	    res = validate_stmt(CHILD(tree, j)); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	    res = validate_newline(CHILD(tree, j)); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     /*	This stays in to prevent any internal failues from getting to the
 | 
					
						
							|  |  |  |      *	user.  Hopefully, this won't be needed.  If a user reports getting | 
					
						
							|  |  |  |      *	this, we have some debugging to do. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!res && !PyErr_Occurred()) | 
					
						
							|  |  |  | 	err_string("VALIDATION FAILURE: report this to the maintainer!."); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     return (res); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 21:55:43 +00:00
										 |  |  | }   /* validate_file_input() */ | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-13 16:25:46 +00:00
										 |  |  | static PyObject* | 
					
						
							|  |  |  | pickle_constructor = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | parser__pickler(self, args) | 
					
						
							|  |  |  |     PyObject *self; | 
					
						
							|  |  |  |     PyObject *args; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  |     NOTE(ARGUNUSED(self)) | 
					
						
							| 
									
										
										
										
											1998-04-13 16:25:46 +00:00
										 |  |  |     PyObject *result = NULL; | 
					
						
							|  |  |  |     PyObject *ast = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (PyArg_ParseTuple(args, "O!:_pickler", &PyAST_Type, &ast)) { | 
					
						
							|  |  |  | 	PyObject *newargs; | 
					
						
							|  |  |  | 	PyObject *tuple; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((newargs = Py_BuildValue("Oi", ast, 1)) == NULL) | 
					
						
							|  |  |  | 	    goto finally; | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  | 	tuple = parser_ast2tuple((PyAST_Object*)NULL, newargs); | 
					
						
							| 
									
										
										
										
											1998-04-13 16:25:46 +00:00
										 |  |  | 	if (tuple != NULL) { | 
					
						
							|  |  |  | 	    result = Py_BuildValue("O(O)", pickle_constructor, tuple); | 
					
						
							|  |  |  | 	    Py_DECREF(tuple); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-08-04 15:58:10 +00:00
										 |  |  | 	Py_DECREF(newargs); | 
					
						
							| 
									
										
										
										
											1998-04-13 16:25:46 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |   finally: | 
					
						
							|  |  |  |     return (result); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }   /* parser__pickler() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | /*  Functions exported by this module.  Most of this should probably
 | 
					
						
							|  |  |  |  *  be converted into an AST object with methods, but that is better | 
					
						
							|  |  |  |  *  done directly in Python, allowing subclasses to be created directly. | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |  *  We'd really have to write a wrapper around it all anyway to allow | 
					
						
							|  |  |  |  *  inheritance. | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | static PyMethodDef parser_functions[] =  { | 
					
						
							| 
									
										
										
										
											1998-04-21 22:31:45 +00:00
										 |  |  |     {"ast2tuple",	(PyCFunction)parser_ast2tuple,	METH_VARARGS, | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	"Creates a tuple-tree representation of an AST."}, | 
					
						
							| 
									
										
										
										
											1998-04-21 22:31:45 +00:00
										 |  |  |     {"ast2list",	(PyCFunction)parser_ast2list,	METH_VARARGS, | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	"Creates a list-tree representation of an AST."}, | 
					
						
							| 
									
										
										
										
											1998-04-21 22:31:45 +00:00
										 |  |  |     {"compileast",	(PyCFunction)parser_compileast,	METH_VARARGS, | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	"Compiles an AST object into a code object."}, | 
					
						
							| 
									
										
										
										
											1998-04-21 22:31:45 +00:00
										 |  |  |     {"expr",		(PyCFunction)parser_expr,	METH_VARARGS, | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	"Creates an AST object from an expression."}, | 
					
						
							| 
									
										
										
										
											1998-04-21 22:31:45 +00:00
										 |  |  |     {"isexpr",		(PyCFunction)parser_isexpr,	METH_VARARGS, | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	"Determines if an AST object was created from an expression."}, | 
					
						
							| 
									
										
										
										
											1998-04-21 22:31:45 +00:00
										 |  |  |     {"issuite",		(PyCFunction)parser_issuite,	METH_VARARGS, | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	"Determines if an AST object was created from a suite."}, | 
					
						
							| 
									
										
										
										
											1998-04-21 22:31:45 +00:00
										 |  |  |     {"suite",		(PyCFunction)parser_suite,	METH_VARARGS, | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	"Creates an AST object from a suite."}, | 
					
						
							| 
									
										
										
										
											1998-04-21 22:31:45 +00:00
										 |  |  |     {"sequence2ast",	(PyCFunction)parser_tuple2ast,	METH_VARARGS, | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	"Creates an AST object from a tree representation."}, | 
					
						
							| 
									
										
										
										
											1998-04-21 22:31:45 +00:00
										 |  |  |     {"tuple2ast",	(PyCFunction)parser_tuple2ast,	METH_VARARGS, | 
					
						
							| 
									
										
										
										
											1996-08-21 14:32:37 +00:00
										 |  |  | 	"Creates an AST object from a tree representation."}, | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-13 16:25:46 +00:00
										 |  |  |     /* private stuff: support pickle module */ | 
					
						
							| 
									
										
										
										
											1998-04-21 22:31:45 +00:00
										 |  |  |     {"_pickler",	(PyCFunction)parser__pickler,	METH_VARARGS, | 
					
						
							| 
									
										
										
										
											1998-04-13 16:25:46 +00:00
										 |  |  |         "Returns the pickle magic to allow ast objects to be pickled."}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-29 14:16:32 +00:00
										 |  |  |     {NULL, NULL, 0, NULL} | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-04 18:50:17 +00:00
										 |  |  | DL_EXPORT(void) | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | initparser() | 
					
						
							|  |  |  |  { | 
					
						
							| 
									
										
										
										
											1997-01-23 23:29:44 +00:00
										 |  |  |     PyObject* module; | 
					
						
							|  |  |  |     PyObject* dict; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  |     PyAST_Type.ob_type = &PyType_Type; | 
					
						
							|  |  |  |     module = Py_InitModule("parser", parser_functions); | 
					
						
							|  |  |  |     dict = PyModule_GetDict(module); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-10-07 19:32:00 +00:00
										 |  |  |     parser_error = PyErr_NewException("parser.ParserError", NULL, NULL); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((parser_error == 0) | 
					
						
							|  |  |  | 	|| (PyDict_SetItemString(dict, "ParserError", parser_error) != 0)) { | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 *  This is serious. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  | 	Py_FatalError("can't define parser.ParserError"); | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      *  Nice to have, but don't cry if we fail. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:56 +00:00
										 |  |  |     Py_INCREF(&PyAST_Type); | 
					
						
							|  |  |  |     PyDict_SetItemString(dict, "ASTType", (PyObject*)&PyAST_Type); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  |     PyDict_SetItemString(dict, "__copyright__", | 
					
						
							|  |  |  | 			 PyString_FromString(parser_copyright_string)); | 
					
						
							|  |  |  |     PyDict_SetItemString(dict, "__doc__", | 
					
						
							|  |  |  | 			 PyString_FromString(parser_doc_string)); | 
					
						
							|  |  |  |     PyDict_SetItemString(dict, "__version__", | 
					
						
							|  |  |  | 			 PyString_FromString(parser_version_string)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-13 18:45:18 +00:00
										 |  |  |     parser_method_list = PyList_New(0); | 
					
						
							|  |  |  |     if (parser_method_list != NULL) { | 
					
						
							|  |  |  | 	PyMethodDef *mdef = parser_methods; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (mdef->ml_name != NULL) { | 
					
						
							|  |  |  | 	    PyObject *temp = PyString_FromString(mdef->ml_name); | 
					
						
							|  |  |  | 	    if (temp != NULL) { | 
					
						
							|  |  |  | 		PyList_Append(parser_method_list, temp); | 
					
						
							|  |  |  | 		Py_DECREF(temp); | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    ++mdef; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-13 16:25:46 +00:00
										 |  |  |     /* register to support pickling */ | 
					
						
							|  |  |  |     module = PyImport_ImportModule("copy_reg"); | 
					
						
							|  |  |  |     if (module != NULL) { | 
					
						
							| 
									
										
										
										
											1998-04-21 22:31:45 +00:00
										 |  |  | 	PyObject *func, *pickler; | 
					
						
							| 
									
										
										
										
											1998-04-13 16:25:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	func = PyObject_GetAttrString(module, "pickle"); | 
					
						
							|  |  |  | 	pickle_constructor = PyDict_GetItemString(dict, "sequence2ast"); | 
					
						
							|  |  |  | 	pickler = PyDict_GetItemString(dict, "_pickler"); | 
					
						
							|  |  |  | 	Py_XINCREF(pickle_constructor); | 
					
						
							|  |  |  | 	if ((func != NULL) && (pickle_constructor != NULL) | 
					
						
							|  |  |  | 	    && (pickler != NULL)) { | 
					
						
							|  |  |  | 	    PyObject *res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	    res = PyObject_CallFunction( | 
					
						
							|  |  |  | 		    func, "OOO", &PyAST_Type, pickler, pickle_constructor); | 
					
						
							|  |  |  | 	    Py_XDECREF(res); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	Py_XDECREF(func); | 
					
						
							|  |  |  | 	Py_DECREF(module); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1995-10-11 17:35:38 +00:00
										 |  |  | }   /* initparser() */ |