blob: 35c5dee01ad108c7d2ad4a14f59c3ae18a627b54 [file] [log] [blame]
Guido van Rossum3d602e31996-07-21 02:33:56 +00001/* parsermodule.c
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002 *
Guido van Rossum47478871996-08-21 14:32:37 +00003 * Copyright 1995-1996 by Fred L. Drake, Jr. and Virginia Polytechnic
4 * Institute and State University, Blacksburg, Virginia, USA.
5 * Portions copyright 1991-1995 by Stichting Mathematisch Centrum,
6 * Amsterdam, The Netherlands. Copying is permitted under the terms
7 * associated with the main Python distribution, with the additional
8 * restriction that this additional notice be included and maintained
9 * on all distributed copies.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000010 *
Guido van Rossum47478871996-08-21 14:32:37 +000011 * This module serves to replace the original parser module written
12 * by Guido. The functionality is not matched precisely, but the
13 * original may be implemented on top of this. This is desirable
14 * since the source of the text to be parsed is now divorced from
15 * this interface.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000016 *
Guido van Rossum47478871996-08-21 14:32:37 +000017 * Unlike the prior interface, the ability to give a parse tree
18 * produced by Python code as a tuple to the compiler is enabled by
19 * this module. See the documentation for more details.
Fred Drake268397f1998-04-29 14:16:32 +000020 *
21 * I've added some annotations that help with the lint code-checking
22 * program, but they're not complete by a long shot. The real errors
23 * that lint detects are gone, but there are still warnings with
24 * Py_[X]DECREF() and Py_[X]INCREF() macros. The lint annotations
25 * look like "NOTE(...)".
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000026 */
27
Fred Drakeff9ea482000-04-19 13:54:15 +000028#include "Python.h" /* general Python API */
29#include "graminit.h" /* symbols defined in the grammar */
30#include "node.h" /* internal parser structure */
Fred Drake8b55b2d2001-12-05 22:10:44 +000031#include "errcode.h" /* error codes for PyNode_*() */
Fred Drakeff9ea482000-04-19 13:54:15 +000032#include "token.h" /* token definitions */
33 /* ISTERMINAL() / ISNONTERMINAL() */
34#include "compile.h" /* PyNode_Compile() */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000035
Fred Drake268397f1998-04-29 14:16:32 +000036#ifdef lint
37#include <note.h>
38#else
39#define NOTE(x)
40#endif
41
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000042/* String constants used to initialize module attributes.
43 *
44 */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000045static char parser_copyright_string[] =
46"Copyright 1995-1996 by Virginia Polytechnic Institute & State\n\
Guido van Rossum2a288461996-08-21 21:55:43 +000047University, Blacksburg, Virginia, USA, and Fred L. Drake, Jr., Reston,\n\
48Virginia, USA. Portions copyright 1991-1995 by Stichting Mathematisch\n\
49Centrum, Amsterdam, The Netherlands.";
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000050
51
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000052PyDoc_STRVAR(parser_doc_string,
53"This is an interface to Python's internal parser.");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000054
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000055static char parser_version_string[] = "0.5";
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000056
57
Fred Drakeff9ea482000-04-19 13:54:15 +000058typedef PyObject* (*SeqMaker) (int length);
59typedef int (*SeqInserter) (PyObject* sequence,
60 int index,
61 PyObject* element);
Guido van Rossum47478871996-08-21 14:32:37 +000062
Thomas Wouters7e474022000-07-16 12:04:32 +000063/* The function below is copyrighted by Stichting Mathematisch Centrum. The
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000064 * original copyright statement is included below, and continues to apply
65 * in full to the function immediately following. All other material is
66 * original, copyrighted by Fred L. Drake, Jr. and Virginia Polytechnic
67 * Institute and State University. Changes were made to comply with the
Guido van Rossum2a288461996-08-21 21:55:43 +000068 * new naming conventions. Added arguments to provide support for creating
69 * lists as well as tuples, and optionally including the line numbers.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000070 */
71
Guido van Rossum52f2c051993-11-10 12:53:24 +000072
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000073static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +000074node2tuple(node *n, /* node to convert */
75 SeqMaker mkseq, /* create sequence */
76 SeqInserter addelem, /* func. to add elem. in seq. */
77 int lineno) /* include line numbers? */
Guido van Rossum47478871996-08-21 14:32:37 +000078{
Guido van Rossum3d602e31996-07-21 02:33:56 +000079 if (n == NULL) {
Fred Drakeff9ea482000-04-19 13:54:15 +000080 Py_INCREF(Py_None);
81 return (Py_None);
Guido van Rossum3d602e31996-07-21 02:33:56 +000082 }
83 if (ISNONTERMINAL(TYPE(n))) {
Fred Drakeff9ea482000-04-19 13:54:15 +000084 int i;
85 PyObject *v;
86 PyObject *w;
Fred Drake268397f1998-04-29 14:16:32 +000087
Jeremy Hyltonaccb62b2002-12-31 18:17:44 +000088 v = mkseq(1 + NCH(n) + (TYPE(n) == encoding_decl));
Fred Drakeff9ea482000-04-19 13:54:15 +000089 if (v == NULL)
90 return (v);
91 w = PyInt_FromLong(TYPE(n));
92 if (w == NULL) {
93 Py_DECREF(v);
94 return ((PyObject*) NULL);
95 }
96 (void) addelem(v, 0, w);
97 for (i = 0; i < NCH(n); i++) {
98 w = node2tuple(CHILD(n, i), mkseq, addelem, lineno);
99 if (w == NULL) {
100 Py_DECREF(v);
101 return ((PyObject*) NULL);
102 }
103 (void) addelem(v, i+1, w);
104 }
Tim Peters6a627252003-07-21 14:25:23 +0000105
Jeremy Hyltonaccb62b2002-12-31 18:17:44 +0000106 if (TYPE(n) == encoding_decl)
107 (void) addelem(v, i+1, PyString_FromString(STR(n)));
Fred Drakeff9ea482000-04-19 13:54:15 +0000108 return (v);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000109 }
110 else if (ISTERMINAL(TYPE(n))) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000111 PyObject *result = mkseq(2 + lineno);
112 if (result != NULL) {
113 (void) addelem(result, 0, PyInt_FromLong(TYPE(n)));
114 (void) addelem(result, 1, PyString_FromString(STR(n)));
115 if (lineno == 1)
116 (void) addelem(result, 2, PyInt_FromLong(n->n_lineno));
117 }
118 return (result);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000119 }
120 else {
Fred Drakeff9ea482000-04-19 13:54:15 +0000121 PyErr_SetString(PyExc_SystemError,
122 "unrecognized parse tree node type");
123 return ((PyObject*) NULL);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000124 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000125}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000126/*
127 * End of material copyrighted by Stichting Mathematisch Centrum.
128 */
Guido van Rossum52f2c051993-11-10 12:53:24 +0000129
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000130
131
132/* There are two types of intermediate objects we're interested in:
Fred Drakec2683dd2001-07-17 19:32:05 +0000133 * 'eval' and 'exec' types. These constants can be used in the st_type
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000134 * field of the object type to identify which any given object represents.
135 * These should probably go in an external header to allow other extensions
136 * to use them, but then, we really should be using C++ too. ;-)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000137 */
138
Fred Drakec2683dd2001-07-17 19:32:05 +0000139#define PyST_EXPR 1
140#define PyST_SUITE 2
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000141
142
143/* These are the internal objects and definitions required to implement the
Fred Drakec2683dd2001-07-17 19:32:05 +0000144 * ST type. Most of the internal names are more reminiscent of the 'old'
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000145 * naming style, but the code uses the new naming convention.
146 */
147
148static PyObject*
149parser_error = 0;
150
151
Fred Drakec2683dd2001-07-17 19:32:05 +0000152typedef struct {
Fred Drakeff9ea482000-04-19 13:54:15 +0000153 PyObject_HEAD /* standard object header */
Fred Drakec2683dd2001-07-17 19:32:05 +0000154 node* st_node; /* the node* returned by the parser */
155 int st_type; /* EXPR or SUITE ? */
156} PyST_Object;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000157
158
Jeremy Hylton938ace62002-07-17 16:30:39 +0000159static void parser_free(PyST_Object *st);
160static int parser_compare(PyST_Object *left, PyST_Object *right);
161static PyObject *parser_getattr(PyObject *self, char *name);
Fred Drake503d8d61998-04-13 18:45:18 +0000162
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000163
Fred Drake268397f1998-04-29 14:16:32 +0000164static
Fred Drakec2683dd2001-07-17 19:32:05 +0000165PyTypeObject PyST_Type = {
Guido van Rossum3c8c5981998-05-29 02:58:20 +0000166 PyObject_HEAD_INIT(NULL)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000167 0,
Guido van Rossum14648392001-12-08 18:02:58 +0000168 "parser.st", /* tp_name */
Fred Drakec2683dd2001-07-17 19:32:05 +0000169 (int) sizeof(PyST_Object), /* tp_basicsize */
Fred Drakeff9ea482000-04-19 13:54:15 +0000170 0, /* tp_itemsize */
171 (destructor)parser_free, /* tp_dealloc */
172 0, /* tp_print */
173 parser_getattr, /* tp_getattr */
174 0, /* tp_setattr */
175 (cmpfunc)parser_compare, /* tp_compare */
176 0, /* tp_repr */
177 0, /* tp_as_number */
178 0, /* tp_as_sequence */
179 0, /* tp_as_mapping */
180 0, /* tp_hash */
181 0, /* tp_call */
182 0, /* tp_str */
183 0, /* tp_getattro */
184 0, /* tp_setattro */
Fred Drake69b9ae41997-05-23 04:04:17 +0000185
186 /* Functions to access object as input/output buffer */
Fred Drakeff9ea482000-04-19 13:54:15 +0000187 0, /* tp_as_buffer */
Fred Drake69b9ae41997-05-23 04:04:17 +0000188
Fred Drakeff9ea482000-04-19 13:54:15 +0000189 Py_TPFLAGS_DEFAULT, /* tp_flags */
Fred Drake69b9ae41997-05-23 04:04:17 +0000190
191 /* __doc__ */
192 "Intermediate representation of a Python parse tree."
Fred Drakec2683dd2001-07-17 19:32:05 +0000193}; /* PyST_Type */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000194
195
196static int
Fred Drakeff9ea482000-04-19 13:54:15 +0000197parser_compare_nodes(node *left, node *right)
Guido van Rossum47478871996-08-21 14:32:37 +0000198{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000199 int j;
Guido van Rossum52f2c051993-11-10 12:53:24 +0000200
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000201 if (TYPE(left) < TYPE(right))
Fred Drakeff9ea482000-04-19 13:54:15 +0000202 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000203
204 if (TYPE(right) < TYPE(left))
Fred Drakeff9ea482000-04-19 13:54:15 +0000205 return (1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000206
207 if (ISTERMINAL(TYPE(left)))
Fred Drakeff9ea482000-04-19 13:54:15 +0000208 return (strcmp(STR(left), STR(right)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000209
210 if (NCH(left) < NCH(right))
Fred Drakeff9ea482000-04-19 13:54:15 +0000211 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000212
213 if (NCH(right) < NCH(left))
Fred Drakeff9ea482000-04-19 13:54:15 +0000214 return (1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000215
216 for (j = 0; j < NCH(left); ++j) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000217 int v = parser_compare_nodes(CHILD(left, j), CHILD(right, j));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000218
Fred Drakeff9ea482000-04-19 13:54:15 +0000219 if (v != 0)
220 return (v);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000221 }
222 return (0);
Fred Drakeff9ea482000-04-19 13:54:15 +0000223}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000224
225
Fred Drakec2683dd2001-07-17 19:32:05 +0000226/* int parser_compare(PyST_Object* left, PyST_Object* right)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000227 *
228 * Comparison function used by the Python operators ==, !=, <, >, <=, >=
229 * This really just wraps a call to parser_compare_nodes() with some easy
230 * checks and protection code.
231 *
232 */
233static int
Fred Drakec2683dd2001-07-17 19:32:05 +0000234parser_compare(PyST_Object *left, PyST_Object *right)
Guido van Rossum47478871996-08-21 14:32:37 +0000235{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000236 if (left == right)
Fred Drakeff9ea482000-04-19 13:54:15 +0000237 return (0);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000238
239 if ((left == 0) || (right == 0))
Fred Drakeff9ea482000-04-19 13:54:15 +0000240 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000241
Fred Drakec2683dd2001-07-17 19:32:05 +0000242 return (parser_compare_nodes(left->st_node, right->st_node));
Fred Drakeff9ea482000-04-19 13:54:15 +0000243}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000244
245
Fred Drakec2683dd2001-07-17 19:32:05 +0000246/* parser_newstobject(node* st)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000247 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000248 * Allocates a new Python object representing an ST. This is simply the
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000249 * 'wrapper' object that holds a node* and allows it to be passed around in
250 * Python code.
251 *
252 */
253static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000254parser_newstobject(node *st, int type)
Guido van Rossum47478871996-08-21 14:32:37 +0000255{
Fred Drakec2683dd2001-07-17 19:32:05 +0000256 PyST_Object* o = PyObject_New(PyST_Object, &PyST_Type);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000257
258 if (o != 0) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000259 o->st_node = st;
260 o->st_type = type;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000261 }
Fred Drake268397f1998-04-29 14:16:32 +0000262 else {
Fred Drakec2683dd2001-07-17 19:32:05 +0000263 PyNode_Free(st);
Fred Drake268397f1998-04-29 14:16:32 +0000264 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000265 return ((PyObject*)o);
Fred Drakeff9ea482000-04-19 13:54:15 +0000266}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000267
268
Fred Drakec2683dd2001-07-17 19:32:05 +0000269/* void parser_free(PyST_Object* st)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000270 *
271 * This is called by a del statement that reduces the reference count to 0.
272 *
273 */
274static void
Fred Drakec2683dd2001-07-17 19:32:05 +0000275parser_free(PyST_Object *st)
Guido van Rossum47478871996-08-21 14:32:37 +0000276{
Fred Drakec2683dd2001-07-17 19:32:05 +0000277 PyNode_Free(st->st_node);
278 PyObject_Del(st);
Fred Drakeff9ea482000-04-19 13:54:15 +0000279}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000280
281
Fred Drakec2683dd2001-07-17 19:32:05 +0000282/* parser_st2tuple(PyObject* self, PyObject* args, PyObject* kw)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000283 *
284 * This provides conversion from a node* to a tuple object that can be
Fred Drakec2683dd2001-07-17 19:32:05 +0000285 * returned to the Python-level caller. The ST object is not modified.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000286 *
287 */
288static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000289parser_st2tuple(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000290{
Guido van Rossum47478871996-08-21 14:32:37 +0000291 PyObject *line_option = 0;
292 PyObject *res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000293 int ok;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000294
Fred Drake7a15ba51999-09-09 14:21:52 +0000295 static char *keywords[] = {"ast", "line_info", NULL};
296
Fred Drake268397f1998-04-29 14:16:32 +0000297 if (self == NULL) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000298 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|O:st2tuple", keywords,
299 &PyST_Type, &self, &line_option);
Fred Drake268397f1998-04-29 14:16:32 +0000300 }
Fred Drake503d8d61998-04-13 18:45:18 +0000301 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000302 ok = PyArg_ParseTupleAndKeywords(args, kw, "|O:totuple", &keywords[1],
Fred Drake7a15ba51999-09-09 14:21:52 +0000303 &line_option);
Fred Drake268397f1998-04-29 14:16:32 +0000304 if (ok != 0) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000305 int lineno = 0;
306 if (line_option != NULL) {
307 lineno = (PyObject_IsTrue(line_option) != 0) ? 1 : 0;
308 }
309 /*
Fred Drakec2683dd2001-07-17 19:32:05 +0000310 * Convert ST into a tuple representation. Use Guido's function,
Fred Drakeff9ea482000-04-19 13:54:15 +0000311 * since it's known to work already.
312 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000313 res = node2tuple(((PyST_Object*)self)->st_node,
Fred Drakeff9ea482000-04-19 13:54:15 +0000314 PyTuple_New, PyTuple_SetItem, lineno);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000315 }
316 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000317}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000318
319
Fred Drakec2683dd2001-07-17 19:32:05 +0000320/* parser_st2list(PyObject* self, PyObject* args, PyObject* kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000321 *
Fred Drake2a6875e1999-09-20 22:32:18 +0000322 * This provides conversion from a node* to a list object that can be
Fred Drakec2683dd2001-07-17 19:32:05 +0000323 * returned to the Python-level caller. The ST object is not modified.
Guido van Rossum47478871996-08-21 14:32:37 +0000324 *
325 */
326static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000327parser_st2list(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000328{
Guido van Rossum47478871996-08-21 14:32:37 +0000329 PyObject *line_option = 0;
330 PyObject *res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000331 int ok;
Guido van Rossum47478871996-08-21 14:32:37 +0000332
Fred Drake7a15ba51999-09-09 14:21:52 +0000333 static char *keywords[] = {"ast", "line_info", NULL};
334
Fred Drake503d8d61998-04-13 18:45:18 +0000335 if (self == NULL)
Fred Drakec2683dd2001-07-17 19:32:05 +0000336 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|O:st2list", keywords,
337 &PyST_Type, &self, &line_option);
Fred Drake503d8d61998-04-13 18:45:18 +0000338 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000339 ok = PyArg_ParseTupleAndKeywords(args, kw, "|O:tolist", &keywords[1],
Fred Drake7a15ba51999-09-09 14:21:52 +0000340 &line_option);
Fred Drake503d8d61998-04-13 18:45:18 +0000341 if (ok) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000342 int lineno = 0;
343 if (line_option != 0) {
344 lineno = PyObject_IsTrue(line_option) ? 1 : 0;
345 }
346 /*
Fred Drakec2683dd2001-07-17 19:32:05 +0000347 * Convert ST into a tuple representation. Use Guido's function,
Fred Drakeff9ea482000-04-19 13:54:15 +0000348 * since it's known to work already.
349 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000350 res = node2tuple(self->st_node,
Fred Drakeff9ea482000-04-19 13:54:15 +0000351 PyList_New, PyList_SetItem, lineno);
Guido van Rossum47478871996-08-21 14:32:37 +0000352 }
353 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000354}
Guido van Rossum47478871996-08-21 14:32:37 +0000355
356
Fred Drakec2683dd2001-07-17 19:32:05 +0000357/* parser_compilest(PyObject* self, PyObject* args)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000358 *
359 * This function creates code objects from the parse tree represented by
360 * the passed-in data object. An optional file name is passed in as well.
361 *
362 */
363static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000364parser_compilest(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000365{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000366 PyObject* res = 0;
Fred Drakec2683dd2001-07-17 19:32:05 +0000367 char* str = "<syntax-tree>";
Fred Drake503d8d61998-04-13 18:45:18 +0000368 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000369
Fred Drake7a15ba51999-09-09 14:21:52 +0000370 static char *keywords[] = {"ast", "filename", NULL};
371
Fred Drake503d8d61998-04-13 18:45:18 +0000372 if (self == NULL)
Fred Drakec2683dd2001-07-17 19:32:05 +0000373 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|s:compilest", keywords,
374 &PyST_Type, &self, &str);
Fred Drake503d8d61998-04-13 18:45:18 +0000375 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000376 ok = PyArg_ParseTupleAndKeywords(args, kw, "|s:compile", &keywords[1],
Fred Drake7a15ba51999-09-09 14:21:52 +0000377 &str);
Fred Drake503d8d61998-04-13 18:45:18 +0000378
379 if (ok)
Fred Drakec2683dd2001-07-17 19:32:05 +0000380 res = (PyObject *)PyNode_Compile(self->st_node, str);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000381
382 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000383}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000384
385
386/* PyObject* parser_isexpr(PyObject* self, PyObject* args)
387 * PyObject* parser_issuite(PyObject* self, PyObject* args)
388 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000389 * Checks the passed-in ST object to determine if it is an expression or
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000390 * a statement suite, respectively. The return is a Python truth value.
391 *
392 */
393static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000394parser_isexpr(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000395{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000396 PyObject* res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000397 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000398
Fred Drake7a15ba51999-09-09 14:21:52 +0000399 static char *keywords[] = {"ast", NULL};
400
Fred Drake503d8d61998-04-13 18:45:18 +0000401 if (self == NULL)
Fred Drakeff9ea482000-04-19 13:54:15 +0000402 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:isexpr", keywords,
Fred Drakec2683dd2001-07-17 19:32:05 +0000403 &PyST_Type, &self);
Fred Drake503d8d61998-04-13 18:45:18 +0000404 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000405 ok = PyArg_ParseTupleAndKeywords(args, kw, ":isexpr", &keywords[1]);
Fred Drake503d8d61998-04-13 18:45:18 +0000406
407 if (ok) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000408 /* Check to see if the ST represents an expression or not. */
409 res = (self->st_type == PyST_EXPR) ? Py_True : Py_False;
Fred Drakeff9ea482000-04-19 13:54:15 +0000410 Py_INCREF(res);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000411 }
412 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000413}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000414
415
416static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000417parser_issuite(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000418{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000419 PyObject* res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000420 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000421
Fred Drake7a15ba51999-09-09 14:21:52 +0000422 static char *keywords[] = {"ast", NULL};
423
Fred Drake503d8d61998-04-13 18:45:18 +0000424 if (self == NULL)
Fred Drakeff9ea482000-04-19 13:54:15 +0000425 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:issuite", keywords,
Fred Drakec2683dd2001-07-17 19:32:05 +0000426 &PyST_Type, &self);
Fred Drake503d8d61998-04-13 18:45:18 +0000427 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000428 ok = PyArg_ParseTupleAndKeywords(args, kw, ":issuite", &keywords[1]);
Fred Drake503d8d61998-04-13 18:45:18 +0000429
430 if (ok) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000431 /* Check to see if the ST represents an expression or not. */
432 res = (self->st_type == PyST_EXPR) ? Py_False : Py_True;
Fred Drakeff9ea482000-04-19 13:54:15 +0000433 Py_INCREF(res);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000434 }
435 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000436}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000437
438
Fred Drake7a15ba51999-09-09 14:21:52 +0000439#define PUBLIC_METHOD_TYPE (METH_VARARGS|METH_KEYWORDS)
440
Fred Drake503d8d61998-04-13 18:45:18 +0000441static PyMethodDef
442parser_methods[] = {
Fred Drakec2683dd2001-07-17 19:32:05 +0000443 {"compile", (PyCFunction)parser_compilest, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +0000444 PyDoc_STR("Compile this ST object into a code object.")},
Fred Drakeff9ea482000-04-19 13:54:15 +0000445 {"isexpr", (PyCFunction)parser_isexpr, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +0000446 PyDoc_STR("Determines if this ST object was created from an expression.")},
Fred Drakeff9ea482000-04-19 13:54:15 +0000447 {"issuite", (PyCFunction)parser_issuite, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +0000448 PyDoc_STR("Determines if this ST object was created from a suite.")},
Fred Drakec2683dd2001-07-17 19:32:05 +0000449 {"tolist", (PyCFunction)parser_st2list, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +0000450 PyDoc_STR("Creates a list-tree representation of this ST.")},
Fred Drakec2683dd2001-07-17 19:32:05 +0000451 {"totuple", (PyCFunction)parser_st2tuple, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +0000452 PyDoc_STR("Creates a tuple-tree representation of this ST.")},
Fred Drake503d8d61998-04-13 18:45:18 +0000453
Fred Drake268397f1998-04-29 14:16:32 +0000454 {NULL, NULL, 0, NULL}
Fred Drake503d8d61998-04-13 18:45:18 +0000455};
456
Fred Drake503d8d61998-04-13 18:45:18 +0000457
458static PyObject*
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +0000459parser_getattr(PyObject *self, char *name)
Fred Drake503d8d61998-04-13 18:45:18 +0000460{
Fred Drake503d8d61998-04-13 18:45:18 +0000461 return (Py_FindMethod(parser_methods, self, name));
Fred Drakeff9ea482000-04-19 13:54:15 +0000462}
Fred Drake503d8d61998-04-13 18:45:18 +0000463
464
Guido van Rossum3d602e31996-07-21 02:33:56 +0000465/* err_string(char* message)
466 *
467 * Sets the error string for an exception of type ParserError.
468 *
469 */
470static void
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +0000471err_string(char *message)
Guido van Rossum47478871996-08-21 14:32:37 +0000472{
Guido van Rossum3d602e31996-07-21 02:33:56 +0000473 PyErr_SetString(parser_error, message);
Fred Drakeff9ea482000-04-19 13:54:15 +0000474}
Guido van Rossum3d602e31996-07-21 02:33:56 +0000475
476
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000477/* PyObject* parser_do_parse(PyObject* args, int type)
478 *
479 * Internal function to actually execute the parse and return the result if
Jeremy Hyltonaccb62b2002-12-31 18:17:44 +0000480 * successful or set an exception if not.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000481 *
482 */
483static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +0000484parser_do_parse(PyObject *args, PyObject *kw, char *argspec, int type)
Guido van Rossum47478871996-08-21 14:32:37 +0000485{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000486 char* string = 0;
487 PyObject* res = 0;
488
Fred Drake7a15ba51999-09-09 14:21:52 +0000489 static char *keywords[] = {"source", NULL};
490
491 if (PyArg_ParseTupleAndKeywords(args, kw, argspec, keywords, &string)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000492 node* n = PyParser_SimpleParseString(string,
Fred Drakec2683dd2001-07-17 19:32:05 +0000493 (type == PyST_EXPR)
Fred Drakeff9ea482000-04-19 13:54:15 +0000494 ? eval_input : file_input);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000495
Jeremy Hyltonaccb62b2002-12-31 18:17:44 +0000496 if (n)
497 res = parser_newstobject(n, type);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000498 }
499 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000500}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000501
502
503/* PyObject* parser_expr(PyObject* self, PyObject* args)
504 * PyObject* parser_suite(PyObject* self, PyObject* args)
505 *
506 * External interfaces to the parser itself. Which is called determines if
507 * the parser attempts to recognize an expression ('eval' form) or statement
508 * suite ('exec' form). The real work is done by parser_do_parse() above.
509 *
510 */
511static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000512parser_expr(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000513{
Fred Drake268397f1998-04-29 14:16:32 +0000514 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000515 return (parser_do_parse(args, kw, "s:expr", PyST_EXPR));
Fred Drakeff9ea482000-04-19 13:54:15 +0000516}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000517
518
519static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000520parser_suite(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000521{
Fred Drake268397f1998-04-29 14:16:32 +0000522 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000523 return (parser_do_parse(args, kw, "s:suite", PyST_SUITE));
Fred Drakeff9ea482000-04-19 13:54:15 +0000524}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000525
526
527
Fred Drakec2683dd2001-07-17 19:32:05 +0000528/* This is the messy part of the code. Conversion from a tuple to an ST
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000529 * object requires that the input tuple be valid without having to rely on
530 * catching an exception from the compiler. This is done to allow the
531 * compiler itself to remain fast, since most of its input will come from
532 * the parser directly, and therefore be known to be syntactically correct.
533 * This validation is done to ensure that we don't core dump the compile
534 * phase, returning an exception instead.
535 *
536 * Two aspects can be broken out in this code: creating a node tree from
537 * the tuple passed in, and verifying that it is indeed valid. It may be
Fred Drakec2683dd2001-07-17 19:32:05 +0000538 * advantageous to expand the number of ST types to include funcdefs and
539 * lambdadefs to take advantage of the optimizer, recognizing those STs
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000540 * here. They are not necessary, and not quite as useful in a raw form.
541 * For now, let's get expressions and suites working reliably.
542 */
543
544
Jeremy Hylton938ace62002-07-17 16:30:39 +0000545static node* build_node_tree(PyObject *tuple);
546static int validate_expr_tree(node *tree);
547static int validate_file_input(node *tree);
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000548static int validate_encoding_decl(node *tree);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000549
Fred Drakec2683dd2001-07-17 19:32:05 +0000550/* PyObject* parser_tuple2st(PyObject* self, PyObject* args)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000551 *
552 * This is the public function, called from the Python code. It receives a
Fred Drakec2683dd2001-07-17 19:32:05 +0000553 * single tuple object from the caller, and creates an ST object if the
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000554 * tuple can be validated. It does this by checking the first code of the
555 * tuple, and, if acceptable, builds the internal representation. If this
556 * step succeeds, the internal representation is validated as fully as
557 * possible with the various validate_*() routines defined below.
558 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000559 * This function must be changed if support is to be added for PyST_FRAGMENT
560 * ST objects.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000561 *
562 */
563static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000564parser_tuple2st(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000565{
Fred Drake268397f1998-04-29 14:16:32 +0000566 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000567 PyObject *st = 0;
Fred Drake0ac9b072000-09-12 21:58:06 +0000568 PyObject *tuple;
569 node *tree;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000570
Fred Drake7a15ba51999-09-09 14:21:52 +0000571 static char *keywords[] = {"sequence", NULL};
572
Fred Drakec2683dd2001-07-17 19:32:05 +0000573 if (!PyArg_ParseTupleAndKeywords(args, kw, "O:sequence2st", keywords,
Fred Drake7a15ba51999-09-09 14:21:52 +0000574 &tuple))
Fred Drakeff9ea482000-04-19 13:54:15 +0000575 return (0);
Guido van Rossum47478871996-08-21 14:32:37 +0000576 if (!PySequence_Check(tuple)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000577 PyErr_SetString(PyExc_ValueError,
Fred Drakec2683dd2001-07-17 19:32:05 +0000578 "sequence2st() requires a single sequence argument");
Fred Drakeff9ea482000-04-19 13:54:15 +0000579 return (0);
Guido van Rossum47478871996-08-21 14:32:37 +0000580 }
581 /*
Fred Drake0ac9b072000-09-12 21:58:06 +0000582 * Convert the tree to the internal form before checking it.
Guido van Rossum47478871996-08-21 14:32:37 +0000583 */
Fred Drake0ac9b072000-09-12 21:58:06 +0000584 tree = build_node_tree(tuple);
585 if (tree != 0) {
586 int start_sym = TYPE(tree);
587 if (start_sym == eval_input) {
588 /* Might be an eval form. */
589 if (validate_expr_tree(tree))
Fred Drakec2683dd2001-07-17 19:32:05 +0000590 st = parser_newstobject(tree, PyST_EXPR);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000591 else
592 PyNode_Free(tree);
Fred Drakeff9ea482000-04-19 13:54:15 +0000593 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000594 else if (start_sym == file_input) {
595 /* This looks like an exec form so far. */
596 if (validate_file_input(tree))
Fred Drakec2683dd2001-07-17 19:32:05 +0000597 st = parser_newstobject(tree, PyST_SUITE);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000598 else
599 PyNode_Free(tree);
Fred Drake0ac9b072000-09-12 21:58:06 +0000600 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000601 else if (start_sym == encoding_decl) {
602 /* This looks like an encoding_decl so far. */
603 if (validate_encoding_decl(tree))
604 st = parser_newstobject(tree, PyST_SUITE);
605 else
606 PyNode_Free(tree);
607 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000608 else {
609 /* This is a fragment, at best. */
610 PyNode_Free(tree);
Fred Drake661ea262000-10-24 19:57:45 +0000611 err_string("parse tree does not use a valid start symbol");
Fred Drake0ac9b072000-09-12 21:58:06 +0000612 }
Guido van Rossum47478871996-08-21 14:32:37 +0000613 }
Guido van Rossum47478871996-08-21 14:32:37 +0000614 /* Make sure we throw an exception on all errors. We should never
615 * get this, but we'd do well to be sure something is done.
616 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000617 if (st == NULL && !PyErr_Occurred())
618 err_string("unspecified ST error occurred");
Guido van Rossum3d602e31996-07-21 02:33:56 +0000619
Fred Drakec2683dd2001-07-17 19:32:05 +0000620 return st;
Fred Drakeff9ea482000-04-19 13:54:15 +0000621}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000622
623
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000624/* node* build_node_children()
625 *
626 * Iterate across the children of the current non-terminal node and build
627 * their structures. If successful, return the root of this portion of
628 * the tree, otherwise, 0. Any required exception will be specified already,
629 * and no memory will have been deallocated.
630 *
631 */
632static node*
Fred Drakeff9ea482000-04-19 13:54:15 +0000633build_node_children(PyObject *tuple, node *root, int *line_num)
Guido van Rossum47478871996-08-21 14:32:37 +0000634{
Jeremy Hylton03657cf2000-07-12 13:05:33 +0000635 int len = PyObject_Size(tuple);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000636 int i, err;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000637
638 for (i = 1; i < len; ++i) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000639 /* elem must always be a sequence, however simple */
Fred Drakeff9ea482000-04-19 13:54:15 +0000640 PyObject* elem = PySequence_GetItem(tuple, i);
641 int ok = elem != NULL;
642 long type = 0;
643 char *strn = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000644
Fred Drakeff9ea482000-04-19 13:54:15 +0000645 if (ok)
646 ok = PySequence_Check(elem);
647 if (ok) {
648 PyObject *temp = PySequence_GetItem(elem, 0);
649 if (temp == NULL)
650 ok = 0;
651 else {
652 ok = PyInt_Check(temp);
653 if (ok)
654 type = PyInt_AS_LONG(temp);
655 Py_DECREF(temp);
656 }
657 }
658 if (!ok) {
659 PyErr_SetObject(parser_error,
Fred Drake0ac9b072000-09-12 21:58:06 +0000660 Py_BuildValue("os", elem,
Fred Drakeff9ea482000-04-19 13:54:15 +0000661 "Illegal node construct."));
662 Py_XDECREF(elem);
663 return (0);
664 }
665 if (ISTERMINAL(type)) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000666 int len = PyObject_Size(elem);
667 PyObject *temp;
Guido van Rossum47478871996-08-21 14:32:37 +0000668
Fred Drake0ac9b072000-09-12 21:58:06 +0000669 if ((len != 2) && (len != 3)) {
Fred Drake661ea262000-10-24 19:57:45 +0000670 err_string("terminal nodes must have 2 or 3 entries");
Fred Drake0ac9b072000-09-12 21:58:06 +0000671 return 0;
672 }
673 temp = PySequence_GetItem(elem, 1);
674 if (temp == NULL)
675 return 0;
676 if (!PyString_Check(temp)) {
677 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +0000678 "second item in terminal node must be a string,"
679 " found %s",
Guido van Rossumfc296462003-04-09 17:53:22 +0000680 temp->ob_type->tp_name);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000681 Py_DECREF(temp);
Fred Drake0ac9b072000-09-12 21:58:06 +0000682 return 0;
683 }
684 if (len == 3) {
685 PyObject *o = PySequence_GetItem(elem, 2);
686 if (o != NULL) {
687 if (PyInt_Check(o))
688 *line_num = PyInt_AS_LONG(o);
689 else {
690 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +0000691 "third item in terminal node must be an"
692 " integer, found %s",
Guido van Rossumfc296462003-04-09 17:53:22 +0000693 temp->ob_type->tp_name);
Fred Drake0ac9b072000-09-12 21:58:06 +0000694 Py_DECREF(o);
695 Py_DECREF(temp);
696 return 0;
697 }
698 Py_DECREF(o);
Fred Drakeff9ea482000-04-19 13:54:15 +0000699 }
700 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000701 len = PyString_GET_SIZE(temp) + 1;
702 strn = (char *)PyMem_MALLOC(len);
703 if (strn != NULL)
704 (void) memcpy(strn, PyString_AS_STRING(temp), len);
705 Py_DECREF(temp);
Fred Drakeff9ea482000-04-19 13:54:15 +0000706 }
707 else if (!ISNONTERMINAL(type)) {
708 /*
709 * It has to be one or the other; this is an error.
710 * Throw an exception.
711 */
712 PyErr_SetObject(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +0000713 Py_BuildValue("os", elem, "unknown node type."));
Fred Drakeff9ea482000-04-19 13:54:15 +0000714 Py_XDECREF(elem);
715 return (0);
716 }
Fred Drake8b55b2d2001-12-05 22:10:44 +0000717 err = PyNode_AddChild(root, type, strn, *line_num);
718 if (err == E_NOMEM) {
719 PyMem_DEL(strn);
720 return (node *) PyErr_NoMemory();
721 }
722 if (err == E_OVERFLOW) {
723 PyMem_DEL(strn);
724 PyErr_SetString(PyExc_ValueError,
725 "unsupported number of child nodes");
726 return NULL;
727 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000728
Fred Drakeff9ea482000-04-19 13:54:15 +0000729 if (ISNONTERMINAL(type)) {
730 node* new_child = CHILD(root, i - 1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000731
Fred Drakeff9ea482000-04-19 13:54:15 +0000732 if (new_child != build_node_children(elem, new_child, line_num)) {
733 Py_XDECREF(elem);
734 return (0);
735 }
736 }
737 else if (type == NEWLINE) { /* It's true: we increment the */
738 ++(*line_num); /* line number *after* the newline! */
739 }
740 Py_XDECREF(elem);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000741 }
742 return (root);
Fred Drakeff9ea482000-04-19 13:54:15 +0000743}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000744
745
746static node*
Fred Drakeff9ea482000-04-19 13:54:15 +0000747build_node_tree(PyObject *tuple)
Guido van Rossum47478871996-08-21 14:32:37 +0000748{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000749 node* res = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000750 PyObject *temp = PySequence_GetItem(tuple, 0);
Fred Drake0ac9b072000-09-12 21:58:06 +0000751 long num = -1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000752
Guido van Rossum47478871996-08-21 14:32:37 +0000753 if (temp != NULL)
Fred Drakeff9ea482000-04-19 13:54:15 +0000754 num = PyInt_AsLong(temp);
Guido van Rossum47478871996-08-21 14:32:37 +0000755 Py_XDECREF(temp);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000756 if (ISTERMINAL(num)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000757 /*
758 * The tuple is simple, but it doesn't start with a start symbol.
759 * Throw an exception now and be done with it.
760 */
Fred Drake0ac9b072000-09-12 21:58:06 +0000761 tuple = Py_BuildValue("os", tuple,
Fred Drakec2683dd2001-07-17 19:32:05 +0000762 "Illegal syntax-tree; cannot start with terminal symbol.");
Fred Drakeff9ea482000-04-19 13:54:15 +0000763 PyErr_SetObject(parser_error, tuple);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000764 }
765 else if (ISNONTERMINAL(num)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000766 /*
767 * Not efficient, but that can be handled later.
768 */
769 int line_num = 0;
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000770 PyObject *encoding = NULL;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000771
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000772 if (num == encoding_decl) {
773 encoding = PySequence_GetItem(tuple, 2);
774 /* tuple isn't borrowed anymore here, need to DECREF */
775 tuple = PySequence_GetSlice(tuple, 0, 2);
776 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000777 res = PyNode_New(num);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000778 if (res != NULL) {
779 if (res != build_node_children(tuple, res, &line_num)) {
780 PyNode_Free(res);
781 res = NULL;
782 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000783 if (res && encoding) {
784 int len;
785 len = PyString_GET_SIZE(encoding) + 1;
786 res->n_str = (char *)PyMem_MALLOC(len);
787 if (res->n_str != NULL)
788 (void) memcpy(res->n_str, PyString_AS_STRING(encoding), len);
789 Py_DECREF(encoding);
790 Py_DECREF(tuple);
791 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000792 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000793 }
Guido van Rossum3d602e31996-07-21 02:33:56 +0000794 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000795 /* The tuple is illegal -- if the number is neither TERMINAL nor
Fred Drake0ac9b072000-09-12 21:58:06 +0000796 * NONTERMINAL, we can't use it. Not sure the implementation
797 * allows this condition, but the API doesn't preclude it.
Fred Drakeff9ea482000-04-19 13:54:15 +0000798 */
799 PyErr_SetObject(parser_error,
Fred Drake0ac9b072000-09-12 21:58:06 +0000800 Py_BuildValue("os", tuple,
Fred Drakeff9ea482000-04-19 13:54:15 +0000801 "Illegal component tuple."));
Guido van Rossum3d602e31996-07-21 02:33:56 +0000802
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000803 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000804}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000805
806
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000807/*
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000808 * Validation routines used within the validation section:
809 */
Jeremy Hylton938ace62002-07-17 16:30:39 +0000810static int validate_terminal(node *terminal, int type, char *string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000811
Fred Drakeff9ea482000-04-19 13:54:15 +0000812#define validate_ampersand(ch) validate_terminal(ch, AMPER, "&")
813#define validate_circumflex(ch) validate_terminal(ch, CIRCUMFLEX, "^")
814#define validate_colon(ch) validate_terminal(ch, COLON, ":")
815#define validate_comma(ch) validate_terminal(ch, COMMA, ",")
816#define validate_dedent(ch) validate_terminal(ch, DEDENT, "")
817#define validate_equal(ch) validate_terminal(ch, EQUAL, "=")
818#define validate_indent(ch) validate_terminal(ch, INDENT, (char*)NULL)
819#define validate_lparen(ch) validate_terminal(ch, LPAR, "(")
820#define validate_newline(ch) validate_terminal(ch, NEWLINE, (char*)NULL)
821#define validate_rparen(ch) validate_terminal(ch, RPAR, ")")
822#define validate_semi(ch) validate_terminal(ch, SEMI, ";")
823#define validate_star(ch) validate_terminal(ch, STAR, "*")
824#define validate_vbar(ch) validate_terminal(ch, VBAR, "|")
825#define validate_doublestar(ch) validate_terminal(ch, DOUBLESTAR, "**")
826#define validate_dot(ch) validate_terminal(ch, DOT, ".")
827#define validate_name(ch, str) validate_terminal(ch, NAME, str)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000828
Fred Drake0ac9b072000-09-12 21:58:06 +0000829#define VALIDATER(n) static int validate_##n(node *tree)
830
Fred Drakeff9ea482000-04-19 13:54:15 +0000831VALIDATER(node); VALIDATER(small_stmt);
832VALIDATER(class); VALIDATER(node);
833VALIDATER(parameters); VALIDATER(suite);
834VALIDATER(testlist); VALIDATER(varargslist);
835VALIDATER(fpdef); VALIDATER(fplist);
836VALIDATER(stmt); VALIDATER(simple_stmt);
837VALIDATER(expr_stmt); VALIDATER(power);
838VALIDATER(print_stmt); VALIDATER(del_stmt);
Fred Drakecff283c2000-08-21 22:24:43 +0000839VALIDATER(return_stmt); VALIDATER(list_iter);
Fred Drakeff9ea482000-04-19 13:54:15 +0000840VALIDATER(raise_stmt); VALIDATER(import_stmt);
Fred Drakecff283c2000-08-21 22:24:43 +0000841VALIDATER(global_stmt); VALIDATER(list_if);
842VALIDATER(assert_stmt); VALIDATER(list_for);
Fred Drakeff9ea482000-04-19 13:54:15 +0000843VALIDATER(exec_stmt); VALIDATER(compound_stmt);
844VALIDATER(while); VALIDATER(for);
845VALIDATER(try); VALIDATER(except_clause);
846VALIDATER(test); VALIDATER(and_test);
847VALIDATER(not_test); VALIDATER(comparison);
848VALIDATER(comp_op); VALIDATER(expr);
849VALIDATER(xor_expr); VALIDATER(and_expr);
850VALIDATER(shift_expr); VALIDATER(arith_expr);
851VALIDATER(term); VALIDATER(factor);
852VALIDATER(atom); VALIDATER(lambdef);
853VALIDATER(trailer); VALIDATER(subscript);
854VALIDATER(subscriptlist); VALIDATER(sliceop);
855VALIDATER(exprlist); VALIDATER(dictmaker);
856VALIDATER(arglist); VALIDATER(argument);
Fred Drake02126f22001-07-17 02:59:15 +0000857VALIDATER(listmaker); VALIDATER(yield_stmt);
Raymond Hettinger354433a2004-05-19 08:20:33 +0000858VALIDATER(testlist1); VALIDATER(gen_for);
859VALIDATER(gen_iter); VALIDATER(gen_if);
860VALIDATER(testlist_gexp);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000861
Fred Drake0ac9b072000-09-12 21:58:06 +0000862#undef VALIDATER
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000863
Fred Drakeff9ea482000-04-19 13:54:15 +0000864#define is_even(n) (((n) & 1) == 0)
865#define is_odd(n) (((n) & 1) == 1)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000866
867
868static int
Fred Drakeff9ea482000-04-19 13:54:15 +0000869validate_ntype(node *n, int t)
Guido van Rossum47478871996-08-21 14:32:37 +0000870{
Fred Drake0ac9b072000-09-12 21:58:06 +0000871 if (TYPE(n) != t) {
872 PyErr_Format(parser_error, "Expected node type %d, got %d.",
873 t, TYPE(n));
874 return 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000875 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000876 return 1;
Fred Drakeff9ea482000-04-19 13:54:15 +0000877}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000878
879
Fred Drakee7ab64e2000-04-25 04:14:46 +0000880/* Verifies that the number of child nodes is exactly 'num', raising
881 * an exception if it isn't. The exception message does not indicate
882 * the exact number of nodes, allowing this to be used to raise the
883 * "right" exception when the wrong number of nodes is present in a
884 * specific variant of a statement's syntax. This is commonly used
885 * in that fashion.
886 */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000887static int
Fred Drakeff9ea482000-04-19 13:54:15 +0000888validate_numnodes(node *n, int num, const char *const name)
Guido van Rossum47478871996-08-21 14:32:37 +0000889{
Guido van Rossum3d602e31996-07-21 02:33:56 +0000890 if (NCH(n) != num) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000891 PyErr_Format(parser_error,
892 "Illegal number of children for %s node.", name);
893 return 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000894 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000895 return 1;
Fred Drakeff9ea482000-04-19 13:54:15 +0000896}
Guido van Rossum3d602e31996-07-21 02:33:56 +0000897
898
899static int
Fred Drakeff9ea482000-04-19 13:54:15 +0000900validate_terminal(node *terminal, int type, char *string)
Guido van Rossum47478871996-08-21 14:32:37 +0000901{
Guido van Rossum3d602e31996-07-21 02:33:56 +0000902 int res = (validate_ntype(terminal, type)
Fred Drakeff9ea482000-04-19 13:54:15 +0000903 && ((string == 0) || (strcmp(string, STR(terminal)) == 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +0000904
905 if (!res && !PyErr_Occurred()) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000906 PyErr_Format(parser_error,
907 "Illegal terminal: expected \"%s\"", string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000908 }
909 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000910}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000911
912
Guido van Rossum47478871996-08-21 14:32:37 +0000913/* X (',' X) [',']
914 */
915static int
Thomas Woutersbd4bc4e2000-07-22 23:57:55 +0000916validate_repeating_list(node *tree, int ntype, int (*vfunc)(node *),
Fred Drakeff9ea482000-04-19 13:54:15 +0000917 const char *const name)
Guido van Rossum47478871996-08-21 14:32:37 +0000918{
919 int nch = NCH(tree);
920 int res = (nch && validate_ntype(tree, ntype)
Fred Drakeff9ea482000-04-19 13:54:15 +0000921 && vfunc(CHILD(tree, 0)));
Guido van Rossum47478871996-08-21 14:32:37 +0000922
923 if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +0000924 (void) validate_numnodes(tree, 1, name);
Guido van Rossum47478871996-08-21 14:32:37 +0000925 else {
Fred Drakeff9ea482000-04-19 13:54:15 +0000926 if (is_even(nch))
927 res = validate_comma(CHILD(tree, --nch));
928 if (res && nch > 1) {
929 int pos = 1;
930 for ( ; res && pos < nch; pos += 2)
931 res = (validate_comma(CHILD(tree, pos))
932 && vfunc(CHILD(tree, pos + 1)));
933 }
Guido van Rossum47478871996-08-21 14:32:37 +0000934 }
935 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000936}
Guido van Rossum47478871996-08-21 14:32:37 +0000937
938
Fred Drakecff283c2000-08-21 22:24:43 +0000939/* validate_class()
Guido van Rossum3d602e31996-07-21 02:33:56 +0000940 *
941 * classdef:
Fred Drakeff9ea482000-04-19 13:54:15 +0000942 * 'class' NAME ['(' testlist ')'] ':' suite
Guido van Rossum3d602e31996-07-21 02:33:56 +0000943 */
Guido van Rossum47478871996-08-21 14:32:37 +0000944static int
Fred Drakeff9ea482000-04-19 13:54:15 +0000945validate_class(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +0000946{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000947 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000948 int res = validate_ntype(tree, classdef) && ((nch == 4) || (nch == 7));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000949
Guido van Rossum3d602e31996-07-21 02:33:56 +0000950 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000951 res = (validate_name(CHILD(tree, 0), "class")
952 && validate_ntype(CHILD(tree, 1), NAME)
953 && validate_colon(CHILD(tree, nch - 2))
954 && validate_suite(CHILD(tree, nch - 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +0000955 }
956 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000957 (void) validate_numnodes(tree, 4, "class");
Guido van Rossum3d602e31996-07-21 02:33:56 +0000958 if (res && (nch == 7)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000959 res = (validate_lparen(CHILD(tree, 2))
960 && validate_testlist(CHILD(tree, 3))
961 && validate_rparen(CHILD(tree, 4)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000962 }
963 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000964}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000965
966
Guido van Rossum3d602e31996-07-21 02:33:56 +0000967/* if_stmt:
Fred Drakeff9ea482000-04-19 13:54:15 +0000968 * 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
Guido van Rossum3d602e31996-07-21 02:33:56 +0000969 */
Guido van Rossum47478871996-08-21 14:32:37 +0000970static int
Fred Drakeff9ea482000-04-19 13:54:15 +0000971validate_if(node *tree)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000972{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000973 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000974 int res = (validate_ntype(tree, if_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +0000975 && (nch >= 4)
976 && validate_name(CHILD(tree, 0), "if")
977 && validate_test(CHILD(tree, 1))
978 && validate_colon(CHILD(tree, 2))
979 && validate_suite(CHILD(tree, 3)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000980
981 if (res && ((nch % 4) == 3)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000982 /* ... 'else' ':' suite */
983 res = (validate_name(CHILD(tree, nch - 3), "else")
984 && validate_colon(CHILD(tree, nch - 2))
985 && validate_suite(CHILD(tree, nch - 1)));
986 nch -= 3;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000987 }
Guido van Rossum3d602e31996-07-21 02:33:56 +0000988 else if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +0000989 (void) validate_numnodes(tree, 4, "if");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000990 if ((nch % 4) != 0)
Fred Drakeff9ea482000-04-19 13:54:15 +0000991 /* Will catch the case for nch < 4 */
992 res = validate_numnodes(tree, 0, "if");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000993 else if (res && (nch > 4)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000994 /* ... ('elif' test ':' suite)+ ... */
995 int j = 4;
996 while ((j < nch) && res) {
997 res = (validate_name(CHILD(tree, j), "elif")
998 && validate_colon(CHILD(tree, j + 2))
999 && validate_test(CHILD(tree, j + 1))
1000 && validate_suite(CHILD(tree, j + 3)));
1001 j += 4;
1002 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001003 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001004 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001005}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001006
1007
Guido van Rossum3d602e31996-07-21 02:33:56 +00001008/* parameters:
Fred Drakeff9ea482000-04-19 13:54:15 +00001009 * '(' [varargslist] ')'
Guido van Rossum3d602e31996-07-21 02:33:56 +00001010 *
1011 */
Guido van Rossum47478871996-08-21 14:32:37 +00001012static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001013validate_parameters(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001014{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001015 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001016 int res = validate_ntype(tree, parameters) && ((nch == 2) || (nch == 3));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001017
Guido van Rossum3d602e31996-07-21 02:33:56 +00001018 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001019 res = (validate_lparen(CHILD(tree, 0))
1020 && validate_rparen(CHILD(tree, nch - 1)));
1021 if (res && (nch == 3))
1022 res = validate_varargslist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001023 }
Fred Drakeff9ea482000-04-19 13:54:15 +00001024 else {
1025 (void) validate_numnodes(tree, 2, "parameters");
1026 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001027 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001028}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001029
1030
Fred Drakecff283c2000-08-21 22:24:43 +00001031/* validate_suite()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001032 *
1033 * suite:
Fred Drakeff9ea482000-04-19 13:54:15 +00001034 * simple_stmt
Guido van Rossum3d602e31996-07-21 02:33:56 +00001035 * | NEWLINE INDENT stmt+ DEDENT
1036 */
Guido van Rossum47478871996-08-21 14:32:37 +00001037static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001038validate_suite(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001039{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001040 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001041 int res = (validate_ntype(tree, suite) && ((nch == 1) || (nch >= 4)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001042
Guido van Rossum3d602e31996-07-21 02:33:56 +00001043 if (res && (nch == 1))
Fred Drakeff9ea482000-04-19 13:54:15 +00001044 res = validate_simple_stmt(CHILD(tree, 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001045 else if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001046 /* NEWLINE INDENT stmt+ DEDENT */
1047 res = (validate_newline(CHILD(tree, 0))
1048 && validate_indent(CHILD(tree, 1))
1049 && validate_stmt(CHILD(tree, 2))
1050 && validate_dedent(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001051
Fred Drakeff9ea482000-04-19 13:54:15 +00001052 if (res && (nch > 4)) {
1053 int i = 3;
1054 --nch; /* forget the DEDENT */
1055 for ( ; res && (i < nch); ++i)
1056 res = validate_stmt(CHILD(tree, i));
1057 }
1058 else if (nch < 4)
1059 res = validate_numnodes(tree, 4, "suite");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001060 }
1061 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001062}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001063
1064
Guido van Rossum47478871996-08-21 14:32:37 +00001065static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001066validate_testlist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001067{
Guido van Rossum47478871996-08-21 14:32:37 +00001068 return (validate_repeating_list(tree, testlist,
Fred Drakeff9ea482000-04-19 13:54:15 +00001069 validate_test, "testlist"));
1070}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001071
1072
Guido van Rossum1c917072001-10-15 15:44:05 +00001073static int
Guido van Rossum2d3b9862002-05-24 15:47:06 +00001074validate_testlist1(node *tree)
1075{
1076 return (validate_repeating_list(tree, testlist1,
1077 validate_test, "testlist1"));
1078}
1079
1080
1081static int
Guido van Rossum1c917072001-10-15 15:44:05 +00001082validate_testlist_safe(node *tree)
1083{
1084 return (validate_repeating_list(tree, testlist_safe,
1085 validate_test, "testlist_safe"));
1086}
1087
1088
Fred Drakecff283c2000-08-21 22:24:43 +00001089/* '*' NAME [',' '**' NAME] | '**' NAME
1090 */
1091static int
1092validate_varargslist_trailer(node *tree, int start)
1093{
1094 int nch = NCH(tree);
1095 int res = 0;
1096 int sym;
1097
1098 if (nch <= start) {
1099 err_string("expected variable argument trailer for varargslist");
1100 return 0;
1101 }
1102 sym = TYPE(CHILD(tree, start));
1103 if (sym == STAR) {
1104 /*
1105 * ('*' NAME [',' '**' NAME]
1106 */
1107 if (nch-start == 2)
1108 res = validate_name(CHILD(tree, start+1), NULL);
1109 else if (nch-start == 5)
1110 res = (validate_name(CHILD(tree, start+1), NULL)
1111 && validate_comma(CHILD(tree, start+2))
1112 && validate_doublestar(CHILD(tree, start+3))
1113 && validate_name(CHILD(tree, start+4), NULL));
1114 }
1115 else if (sym == DOUBLESTAR) {
1116 /*
1117 * '**' NAME
1118 */
1119 if (nch-start == 2)
1120 res = validate_name(CHILD(tree, start+1), NULL);
1121 }
1122 if (!res)
1123 err_string("illegal variable argument trailer for varargslist");
1124 return res;
1125}
1126
1127
1128/* validate_varargslist()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001129 *
1130 * varargslist:
Guido van Rossum3d602e31996-07-21 02:33:56 +00001131 * (fpdef ['=' test] ',')*
Fred Drakecff283c2000-08-21 22:24:43 +00001132 * ('*' NAME [',' '**' NAME]
1133 * | '**' NAME)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001134 * | fpdef ['=' test] (',' fpdef ['=' test])* [',']
1135 *
1136 */
Guido van Rossum47478871996-08-21 14:32:37 +00001137static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001138validate_varargslist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001139{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001140 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001141 int res = validate_ntype(tree, varargslist) && (nch != 0);
Fred Drakecff283c2000-08-21 22:24:43 +00001142 int sym;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001143
Fred Drakeb6429a22000-12-11 22:08:27 +00001144 if (!res)
1145 return 0;
Fred Drakecff283c2000-08-21 22:24:43 +00001146 if (nch < 1) {
1147 err_string("varargslist missing child nodes");
1148 return 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001149 }
Fred Drakecff283c2000-08-21 22:24:43 +00001150 sym = TYPE(CHILD(tree, 0));
1151 if (sym == STAR || sym == DOUBLESTAR)
Fred Drakeb6429a22000-12-11 22:08:27 +00001152 /* whole thing matches:
1153 * '*' NAME [',' '**' NAME] | '**' NAME
1154 */
Fred Drakecff283c2000-08-21 22:24:43 +00001155 res = validate_varargslist_trailer(tree, 0);
1156 else if (sym == fpdef) {
1157 int i = 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001158
Fred Drakecff283c2000-08-21 22:24:43 +00001159 sym = TYPE(CHILD(tree, nch-1));
1160 if (sym == NAME) {
1161 /*
1162 * (fpdef ['=' test] ',')+
1163 * ('*' NAME [',' '**' NAME]
1164 * | '**' NAME)
1165 */
1166 /* skip over (fpdef ['=' test] ',')+ */
1167 while (res && (i+2 <= nch)) {
1168 res = validate_fpdef(CHILD(tree, i));
1169 ++i;
1170 if (res && TYPE(CHILD(tree, i)) == EQUAL && (i+2 <= nch)) {
1171 res = (validate_equal(CHILD(tree, i))
1172 && validate_test(CHILD(tree, i+1)));
1173 if (res)
1174 i += 2;
Fred Drakeff9ea482000-04-19 13:54:15 +00001175 }
Fred Drakecff283c2000-08-21 22:24:43 +00001176 if (res && i < nch) {
1177 res = validate_comma(CHILD(tree, i));
Fred Drakeb6429a22000-12-11 22:08:27 +00001178 ++i;
1179 if (res && i < nch
1180 && (TYPE(CHILD(tree, i)) == DOUBLESTAR
1181 || TYPE(CHILD(tree, i)) == STAR))
1182 break;
Fred Drakecff283c2000-08-21 22:24:43 +00001183 }
1184 }
Fred Drakeb6429a22000-12-11 22:08:27 +00001185 /* ... '*' NAME [',' '**' NAME] | '**' NAME
1186 * i --^^^
1187 */
Fred Drakecff283c2000-08-21 22:24:43 +00001188 if (res)
1189 res = validate_varargslist_trailer(tree, i);
1190 }
1191 else {
1192 /*
1193 * fpdef ['=' test] (',' fpdef ['=' test])* [',']
1194 */
Fred Drakeb6429a22000-12-11 22:08:27 +00001195 /* strip trailing comma node */
Fred Drakecff283c2000-08-21 22:24:43 +00001196 if (sym == COMMA) {
1197 res = validate_comma(CHILD(tree, nch-1));
1198 if (!res)
1199 return 0;
1200 --nch;
1201 }
1202 /*
1203 * fpdef ['=' test] (',' fpdef ['=' test])*
1204 */
1205 res = validate_fpdef(CHILD(tree, 0));
1206 ++i;
Fred Drakeb6429a22000-12-11 22:08:27 +00001207 if (res && (i+2 <= nch) && TYPE(CHILD(tree, i)) == EQUAL) {
1208 res = (validate_equal(CHILD(tree, i))
1209 && validate_test(CHILD(tree, i+1)));
Fred Drakecff283c2000-08-21 22:24:43 +00001210 i += 2;
1211 }
1212 /*
1213 * ... (',' fpdef ['=' test])*
1214 * i ---^^^
1215 */
1216 while (res && (nch - i) >= 2) {
1217 res = (validate_comma(CHILD(tree, i))
1218 && validate_fpdef(CHILD(tree, i+1)));
1219 i += 2;
Fred Drakeb6429a22000-12-11 22:08:27 +00001220 if (res && (nch - i) >= 2 && TYPE(CHILD(tree, i)) == EQUAL) {
1221 res = (validate_equal(CHILD(tree, i))
Fred Drakecff283c2000-08-21 22:24:43 +00001222 && validate_test(CHILD(tree, i+1)));
Fred Drakeb6429a22000-12-11 22:08:27 +00001223 i += 2;
Fred Drakecff283c2000-08-21 22:24:43 +00001224 }
1225 }
1226 if (res && nch - i != 0) {
1227 res = 0;
1228 err_string("illegal formation for varargslist");
Fred Drakeff9ea482000-04-19 13:54:15 +00001229 }
1230 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001231 }
Fred Drakecff283c2000-08-21 22:24:43 +00001232 return res;
Fred Drakeff9ea482000-04-19 13:54:15 +00001233}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001234
1235
Fred Drakecff283c2000-08-21 22:24:43 +00001236/* list_iter: list_for | list_if
1237 */
1238static int
1239validate_list_iter(node *tree)
1240{
1241 int res = (validate_ntype(tree, list_iter)
1242 && validate_numnodes(tree, 1, "list_iter"));
1243 if (res && TYPE(CHILD(tree, 0)) == list_for)
1244 res = validate_list_for(CHILD(tree, 0));
1245 else
1246 res = validate_list_if(CHILD(tree, 0));
1247
1248 return res;
1249}
1250
Raymond Hettinger354433a2004-05-19 08:20:33 +00001251/* gen_iter: gen_for | gen_if
1252 */
1253static int
1254validate_gen_iter(node *tree)
1255{
1256 int res = (validate_ntype(tree, gen_iter)
1257 && validate_numnodes(tree, 1, "gen_iter"));
1258 if (res && TYPE(CHILD(tree, 0)) == gen_for)
1259 res = validate_gen_for(CHILD(tree, 0));
1260 else
1261 res = validate_gen_if(CHILD(tree, 0));
1262
1263 return res;
1264}
1265
Fred Drakecff283c2000-08-21 22:24:43 +00001266/* list_for: 'for' exprlist 'in' testlist [list_iter]
1267 */
1268static int
1269validate_list_for(node *tree)
1270{
1271 int nch = NCH(tree);
1272 int res;
1273
1274 if (nch == 5)
1275 res = validate_list_iter(CHILD(tree, 4));
1276 else
1277 res = validate_numnodes(tree, 4, "list_for");
1278
1279 if (res)
1280 res = (validate_name(CHILD(tree, 0), "for")
1281 && validate_exprlist(CHILD(tree, 1))
1282 && validate_name(CHILD(tree, 2), "in")
Guido van Rossum1c917072001-10-15 15:44:05 +00001283 && validate_testlist_safe(CHILD(tree, 3)));
Fred Drakecff283c2000-08-21 22:24:43 +00001284
1285 return res;
1286}
1287
Raymond Hettinger354433a2004-05-19 08:20:33 +00001288/* gen_for: 'for' exprlist 'in' test [gen_iter]
1289 */
1290static int
1291validate_gen_for(node *tree)
1292{
1293 int nch = NCH(tree);
1294 int res;
1295
1296 if (nch == 5)
1297 res = validate_gen_iter(CHILD(tree, 4));
1298 else
1299 res = validate_numnodes(tree, 4, "gen_for");
1300
1301 if (res)
1302 res = (validate_name(CHILD(tree, 0), "for")
1303 && validate_exprlist(CHILD(tree, 1))
1304 && validate_name(CHILD(tree, 2), "in")
1305 && validate_test(CHILD(tree, 3)));
1306
1307 return res;
1308}
1309
Fred Drakecff283c2000-08-21 22:24:43 +00001310/* list_if: 'if' test [list_iter]
1311 */
1312static int
1313validate_list_if(node *tree)
1314{
1315 int nch = NCH(tree);
1316 int res;
1317
1318 if (nch == 3)
1319 res = validate_list_iter(CHILD(tree, 2));
1320 else
1321 res = validate_numnodes(tree, 2, "list_if");
1322
1323 if (res)
1324 res = (validate_name(CHILD(tree, 0), "if")
1325 && validate_test(CHILD(tree, 1)));
1326
1327 return res;
1328}
1329
Raymond Hettinger354433a2004-05-19 08:20:33 +00001330/* gen_if: 'if' test [gen_iter]
1331 */
1332static int
1333validate_gen_if(node *tree)
1334{
1335 int nch = NCH(tree);
1336 int res;
1337
1338 if (nch == 3)
1339 res = validate_gen_iter(CHILD(tree, 2));
1340 else
1341 res = validate_numnodes(tree, 2, "gen_if");
1342
1343 if (res)
1344 res = (validate_name(CHILD(tree, 0), "if")
1345 && validate_test(CHILD(tree, 1)));
1346
1347 return res;
1348}
Fred Drakecff283c2000-08-21 22:24:43 +00001349
1350/* validate_fpdef()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001351 *
1352 * fpdef:
Fred Drakeff9ea482000-04-19 13:54:15 +00001353 * NAME
Guido van Rossum3d602e31996-07-21 02:33:56 +00001354 * | '(' fplist ')'
1355 */
Guido van Rossum47478871996-08-21 14:32:37 +00001356static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001357validate_fpdef(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001358{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001359 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001360 int res = validate_ntype(tree, fpdef);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001361
Guido van Rossum3d602e31996-07-21 02:33:56 +00001362 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001363 if (nch == 1)
1364 res = validate_ntype(CHILD(tree, 0), NAME);
1365 else if (nch == 3)
1366 res = (validate_lparen(CHILD(tree, 0))
1367 && validate_fplist(CHILD(tree, 1))
1368 && validate_rparen(CHILD(tree, 2)));
1369 else
1370 res = validate_numnodes(tree, 1, "fpdef");
Guido van Rossum3d602e31996-07-21 02:33:56 +00001371 }
1372 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001373}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001374
1375
Guido van Rossum47478871996-08-21 14:32:37 +00001376static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001377validate_fplist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001378{
Guido van Rossum47478871996-08-21 14:32:37 +00001379 return (validate_repeating_list(tree, fplist,
Fred Drakeff9ea482000-04-19 13:54:15 +00001380 validate_fpdef, "fplist"));
1381}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001382
1383
Guido van Rossum3d602e31996-07-21 02:33:56 +00001384/* simple_stmt | compound_stmt
1385 *
1386 */
Guido van Rossum47478871996-08-21 14:32:37 +00001387static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001388validate_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001389{
1390 int res = (validate_ntype(tree, stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001391 && validate_numnodes(tree, 1, "stmt"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001392
Guido van Rossum3d602e31996-07-21 02:33:56 +00001393 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001394 tree = CHILD(tree, 0);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001395
Fred Drakeff9ea482000-04-19 13:54:15 +00001396 if (TYPE(tree) == simple_stmt)
1397 res = validate_simple_stmt(tree);
1398 else
1399 res = validate_compound_stmt(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001400 }
1401 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001402}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001403
1404
Guido van Rossum3d602e31996-07-21 02:33:56 +00001405/* small_stmt (';' small_stmt)* [';'] NEWLINE
1406 *
1407 */
Guido van Rossum47478871996-08-21 14:32:37 +00001408static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001409validate_simple_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001410{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001411 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001412 int res = (validate_ntype(tree, simple_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001413 && (nch >= 2)
1414 && validate_small_stmt(CHILD(tree, 0))
1415 && validate_newline(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001416
Guido van Rossum3d602e31996-07-21 02:33:56 +00001417 if (nch < 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00001418 res = validate_numnodes(tree, 2, "simple_stmt");
1419 --nch; /* forget the NEWLINE */
Guido van Rossum3d602e31996-07-21 02:33:56 +00001420 if (res && is_even(nch))
Fred Drakeff9ea482000-04-19 13:54:15 +00001421 res = validate_semi(CHILD(tree, --nch));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001422 if (res && (nch > 2)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001423 int i;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001424
Fred Drakeff9ea482000-04-19 13:54:15 +00001425 for (i = 1; res && (i < nch); i += 2)
1426 res = (validate_semi(CHILD(tree, i))
1427 && validate_small_stmt(CHILD(tree, i + 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001428 }
1429 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001430}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001431
1432
Guido van Rossum47478871996-08-21 14:32:37 +00001433static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001434validate_small_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001435{
1436 int nch = NCH(tree);
Fred Drake0ac9b072000-09-12 21:58:06 +00001437 int res = validate_numnodes(tree, 1, "small_stmt");
Guido van Rossum3d602e31996-07-21 02:33:56 +00001438
Fred Drake0ac9b072000-09-12 21:58:06 +00001439 if (res) {
1440 int ntype = TYPE(CHILD(tree, 0));
1441
1442 if ( (ntype == expr_stmt)
1443 || (ntype == print_stmt)
1444 || (ntype == del_stmt)
1445 || (ntype == pass_stmt)
1446 || (ntype == flow_stmt)
1447 || (ntype == import_stmt)
1448 || (ntype == global_stmt)
1449 || (ntype == assert_stmt)
1450 || (ntype == exec_stmt))
1451 res = validate_node(CHILD(tree, 0));
1452 else {
1453 res = 0;
1454 err_string("illegal small_stmt child type");
1455 }
1456 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001457 else if (nch == 1) {
Fred Drake0ac9b072000-09-12 21:58:06 +00001458 res = 0;
1459 PyErr_Format(parser_error,
1460 "Unrecognized child node of small_stmt: %d.",
1461 TYPE(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001462 }
1463 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001464}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001465
1466
1467/* compound_stmt:
Fred Drakeff9ea482000-04-19 13:54:15 +00001468 * if_stmt | while_stmt | for_stmt | try_stmt | funcdef | classdef
Guido van Rossum3d602e31996-07-21 02:33:56 +00001469 */
Guido van Rossum47478871996-08-21 14:32:37 +00001470static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001471validate_compound_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001472{
1473 int res = (validate_ntype(tree, compound_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001474 && validate_numnodes(tree, 1, "compound_stmt"));
Fred Drake0ac9b072000-09-12 21:58:06 +00001475 int ntype;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001476
1477 if (!res)
Fred Drakeff9ea482000-04-19 13:54:15 +00001478 return (0);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001479
1480 tree = CHILD(tree, 0);
Fred Drake0ac9b072000-09-12 21:58:06 +00001481 ntype = TYPE(tree);
1482 if ( (ntype == if_stmt)
1483 || (ntype == while_stmt)
1484 || (ntype == for_stmt)
1485 || (ntype == try_stmt)
1486 || (ntype == funcdef)
1487 || (ntype == classdef))
Fred Drakeff9ea482000-04-19 13:54:15 +00001488 res = validate_node(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001489 else {
Fred Drake0ac9b072000-09-12 21:58:06 +00001490 res = 0;
1491 PyErr_Format(parser_error,
1492 "Illegal compound statement type: %d.", TYPE(tree));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001493 }
1494 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001495}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001496
1497
Guido van Rossum47478871996-08-21 14:32:37 +00001498static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001499validate_expr_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001500{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001501 int j;
1502 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001503 int res = (validate_ntype(tree, expr_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001504 && is_odd(nch)
1505 && validate_testlist(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001506
Fred Drake28f739a2000-08-25 22:42:40 +00001507 if (res && nch == 3
1508 && TYPE(CHILD(tree, 1)) == augassign) {
1509 res = (validate_numnodes(CHILD(tree, 1), 1, "augassign")
1510 && validate_testlist(CHILD(tree, 2)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001511
Fred Drake28f739a2000-08-25 22:42:40 +00001512 if (res) {
1513 char *s = STR(CHILD(CHILD(tree, 1), 0));
1514
1515 res = (strcmp(s, "+=") == 0
1516 || strcmp(s, "-=") == 0
1517 || strcmp(s, "*=") == 0
1518 || strcmp(s, "/=") == 0
Michael W. Hudson5e83b7a2003-01-29 14:20:23 +00001519 || strcmp(s, "//=") == 0
Fred Drake28f739a2000-08-25 22:42:40 +00001520 || strcmp(s, "%=") == 0
1521 || strcmp(s, "&=") == 0
1522 || strcmp(s, "|=") == 0
1523 || strcmp(s, "^=") == 0
1524 || strcmp(s, "<<=") == 0
1525 || strcmp(s, ">>=") == 0
1526 || strcmp(s, "**=") == 0);
1527 if (!res)
1528 err_string("illegal augmmented assignment operator");
1529 }
1530 }
1531 else {
1532 for (j = 1; res && (j < nch); j += 2)
1533 res = (validate_equal(CHILD(tree, j))
1534 && validate_testlist(CHILD(tree, j + 1)));
1535 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001536 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001537}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001538
1539
Guido van Rossum3d602e31996-07-21 02:33:56 +00001540/* print_stmt:
1541 *
Fred Drakecff283c2000-08-21 22:24:43 +00001542 * 'print' ( [ test (',' test)* [','] ]
1543 * | '>>' test [ (',' test)+ [','] ] )
Guido van Rossum3d602e31996-07-21 02:33:56 +00001544 */
Guido van Rossum47478871996-08-21 14:32:37 +00001545static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001546validate_print_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001547{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001548 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001549 int res = (validate_ntype(tree, print_stmt)
Fred Drakecff283c2000-08-21 22:24:43 +00001550 && (nch > 0)
Fred Drakeff9ea482000-04-19 13:54:15 +00001551 && validate_name(CHILD(tree, 0), "print"));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001552
Fred Drakecff283c2000-08-21 22:24:43 +00001553 if (res && nch > 1) {
1554 int sym = TYPE(CHILD(tree, 1));
1555 int i = 1;
1556 int allow_trailing_comma = 1;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001557
Fred Drakecff283c2000-08-21 22:24:43 +00001558 if (sym == test)
1559 res = validate_test(CHILD(tree, i++));
1560 else {
1561 if (nch < 3)
1562 res = validate_numnodes(tree, 3, "print_stmt");
1563 else {
1564 res = (validate_ntype(CHILD(tree, i), RIGHTSHIFT)
1565 && validate_test(CHILD(tree, i+1)));
1566 i += 2;
1567 allow_trailing_comma = 0;
1568 }
1569 }
1570 if (res) {
1571 /* ... (',' test)* [','] */
1572 while (res && i+2 <= nch) {
1573 res = (validate_comma(CHILD(tree, i))
1574 && validate_test(CHILD(tree, i+1)));
1575 allow_trailing_comma = 1;
1576 i += 2;
1577 }
1578 if (res && !allow_trailing_comma)
1579 res = validate_numnodes(tree, i, "print_stmt");
1580 else if (res && i < nch)
1581 res = validate_comma(CHILD(tree, i));
1582 }
1583 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001584 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001585}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001586
1587
Guido van Rossum47478871996-08-21 14:32:37 +00001588static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001589validate_del_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001590{
1591 return (validate_numnodes(tree, 2, "del_stmt")
Fred Drakeff9ea482000-04-19 13:54:15 +00001592 && validate_name(CHILD(tree, 0), "del")
1593 && validate_exprlist(CHILD(tree, 1)));
1594}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001595
1596
Guido van Rossum47478871996-08-21 14:32:37 +00001597static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001598validate_return_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001599{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001600 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001601 int res = (validate_ntype(tree, return_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001602 && ((nch == 1) || (nch == 2))
1603 && validate_name(CHILD(tree, 0), "return"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001604
Guido van Rossum3d602e31996-07-21 02:33:56 +00001605 if (res && (nch == 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00001606 res = validate_testlist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001607
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001608 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001609}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001610
1611
Guido van Rossum47478871996-08-21 14:32:37 +00001612static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001613validate_raise_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001614{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001615 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001616 int res = (validate_ntype(tree, raise_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001617 && ((nch == 1) || (nch == 2) || (nch == 4) || (nch == 6)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001618
Guido van Rossum3d602e31996-07-21 02:33:56 +00001619 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001620 res = validate_name(CHILD(tree, 0), "raise");
1621 if (res && (nch >= 2))
1622 res = validate_test(CHILD(tree, 1));
1623 if (res && nch > 2) {
1624 res = (validate_comma(CHILD(tree, 2))
1625 && validate_test(CHILD(tree, 3)));
1626 if (res && (nch > 4))
1627 res = (validate_comma(CHILD(tree, 4))
1628 && validate_test(CHILD(tree, 5)));
1629 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001630 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001631 else
Fred Drakeff9ea482000-04-19 13:54:15 +00001632 (void) validate_numnodes(tree, 2, "raise");
Guido van Rossum3d602e31996-07-21 02:33:56 +00001633 if (res && (nch == 4))
Fred Drakeff9ea482000-04-19 13:54:15 +00001634 res = (validate_comma(CHILD(tree, 2))
1635 && validate_test(CHILD(tree, 3)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001636
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001637 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001638}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001639
1640
Fred Drake02126f22001-07-17 02:59:15 +00001641/* yield_stmt: 'yield' testlist
1642 */
1643static int
1644validate_yield_stmt(node *tree)
1645{
1646 return (validate_ntype(tree, yield_stmt)
1647 && validate_numnodes(tree, 2, "yield_stmt")
1648 && validate_name(CHILD(tree, 0), "yield")
1649 && validate_testlist(CHILD(tree, 1)));
1650}
1651
1652
Fred Drakecff283c2000-08-21 22:24:43 +00001653static int
1654validate_import_as_name(node *tree)
1655{
1656 int nch = NCH(tree);
1657 int ok = validate_ntype(tree, import_as_name);
1658
1659 if (ok) {
1660 if (nch == 1)
1661 ok = validate_name(CHILD(tree, 0), NULL);
1662 else if (nch == 3)
1663 ok = (validate_name(CHILD(tree, 0), NULL)
1664 && validate_name(CHILD(tree, 1), "as")
1665 && validate_name(CHILD(tree, 2), NULL));
1666 else
1667 ok = validate_numnodes(tree, 3, "import_as_name");
1668 }
1669 return ok;
1670}
1671
1672
Fred Drake71137082001-01-07 05:59:59 +00001673/* dotted_name: NAME ("." NAME)*
1674 */
1675static int
1676validate_dotted_name(node *tree)
1677{
1678 int nch = NCH(tree);
1679 int res = (validate_ntype(tree, dotted_name)
1680 && is_odd(nch)
1681 && validate_name(CHILD(tree, 0), NULL));
1682 int i;
1683
1684 for (i = 1; res && (i < nch); i += 2) {
1685 res = (validate_dot(CHILD(tree, i))
1686 && validate_name(CHILD(tree, i+1), NULL));
1687 }
1688 return res;
1689}
1690
1691
Fred Drakecff283c2000-08-21 22:24:43 +00001692/* dotted_as_name: dotted_name [NAME NAME]
1693 */
1694static int
1695validate_dotted_as_name(node *tree)
1696{
1697 int nch = NCH(tree);
1698 int res = validate_ntype(tree, dotted_as_name);
1699
1700 if (res) {
1701 if (nch == 1)
Fred Drake71137082001-01-07 05:59:59 +00001702 res = validate_dotted_name(CHILD(tree, 0));
Fred Drakecff283c2000-08-21 22:24:43 +00001703 else if (nch == 3)
Fred Drake71137082001-01-07 05:59:59 +00001704 res = (validate_dotted_name(CHILD(tree, 0))
Fred Drakecff283c2000-08-21 22:24:43 +00001705 && validate_name(CHILD(tree, 1), "as")
1706 && validate_name(CHILD(tree, 2), NULL));
1707 else {
1708 res = 0;
Fred Drake661ea262000-10-24 19:57:45 +00001709 err_string("illegal number of children for dotted_as_name");
Fred Drakecff283c2000-08-21 22:24:43 +00001710 }
1711 }
1712 return res;
1713}
1714
1715
Guido van Rossum3d602e31996-07-21 02:33:56 +00001716/* import_stmt:
1717 *
Fred Drakecff283c2000-08-21 22:24:43 +00001718 * 'import' dotted_as_name (',' dotted_as_name)*
1719 * | 'from' dotted_name 'import' ('*' | import_as_name (',' import_as_name)*)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001720 */
Guido van Rossum47478871996-08-21 14:32:37 +00001721static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001722validate_import_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001723{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001724 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001725 int res = (validate_ntype(tree, import_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001726 && (nch >= 2) && is_even(nch)
Fred Drakecff283c2000-08-21 22:24:43 +00001727 && validate_ntype(CHILD(tree, 0), NAME));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001728
1729 if (res && (strcmp(STR(CHILD(tree, 0)), "import") == 0)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001730 int j;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001731
Fred Drakecff283c2000-08-21 22:24:43 +00001732 res = validate_dotted_as_name(CHILD(tree, 1));
Fred Drakeff9ea482000-04-19 13:54:15 +00001733 for (j = 2; res && (j < nch); j += 2)
1734 res = (validate_comma(CHILD(tree, j))
Fred Drake71137082001-01-07 05:59:59 +00001735 && validate_dotted_as_name(CHILD(tree, j + 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001736 }
Fred Drakecff283c2000-08-21 22:24:43 +00001737 else if (res && (res = validate_name(CHILD(tree, 0), "from"))) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001738 res = ((nch >= 4) && is_even(nch)
Fred Drake71137082001-01-07 05:59:59 +00001739 && validate_dotted_name(CHILD(tree, 1))
1740 && validate_name(CHILD(tree, 2), "import"));
Fred Drakeff9ea482000-04-19 13:54:15 +00001741 if (nch == 4) {
Fred Drakecff283c2000-08-21 22:24:43 +00001742 if (TYPE(CHILD(tree, 3)) == import_as_name)
1743 res = validate_import_as_name(CHILD(tree, 3));
1744 else
1745 res = validate_star(CHILD(tree, 3));
Fred Drakeff9ea482000-04-19 13:54:15 +00001746 }
1747 else {
Fred Drakecff283c2000-08-21 22:24:43 +00001748 /* 'from' dotted_name 'import' import_as_name
1749 * (',' import_as_name)+
1750 */
Fred Drakeff9ea482000-04-19 13:54:15 +00001751 int j;
Fred Drakecff283c2000-08-21 22:24:43 +00001752 res = validate_import_as_name(CHILD(tree, 3));
Fred Drakeff9ea482000-04-19 13:54:15 +00001753 for (j = 4; res && (j < nch); j += 2)
1754 res = (validate_comma(CHILD(tree, j))
Fred Drakecff283c2000-08-21 22:24:43 +00001755 && validate_import_as_name(CHILD(tree, j + 1)));
Fred Drakeff9ea482000-04-19 13:54:15 +00001756 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001757 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001758 else
Fred Drakeff9ea482000-04-19 13:54:15 +00001759 res = 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001760
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001761 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001762}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001763
1764
Guido van Rossum47478871996-08-21 14:32:37 +00001765static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001766validate_global_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001767{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001768 int j;
1769 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001770 int res = (validate_ntype(tree, global_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001771 && is_even(nch) && (nch >= 2));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001772
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00001773 if (!res && !PyErr_Occurred())
1774 err_string("illegal global statement");
1775
Guido van Rossum3d602e31996-07-21 02:33:56 +00001776 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00001777 res = (validate_name(CHILD(tree, 0), "global")
1778 && validate_ntype(CHILD(tree, 1), NAME));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001779 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00001780 res = (validate_comma(CHILD(tree, j))
1781 && validate_ntype(CHILD(tree, j + 1), NAME));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001782
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001783 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001784}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001785
1786
Guido van Rossum3d602e31996-07-21 02:33:56 +00001787/* exec_stmt:
1788 *
1789 * 'exec' expr ['in' test [',' test]]
1790 */
Guido van Rossum47478871996-08-21 14:32:37 +00001791static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001792validate_exec_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001793{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001794 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001795 int res = (validate_ntype(tree, exec_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001796 && ((nch == 2) || (nch == 4) || (nch == 6))
1797 && validate_name(CHILD(tree, 0), "exec")
1798 && validate_expr(CHILD(tree, 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001799
Guido van Rossum3d602e31996-07-21 02:33:56 +00001800 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00001801 err_string("illegal exec statement");
Guido van Rossum3d602e31996-07-21 02:33:56 +00001802 if (res && (nch > 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00001803 res = (validate_name(CHILD(tree, 2), "in")
1804 && validate_test(CHILD(tree, 3)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001805 if (res && (nch == 6))
Fred Drakeff9ea482000-04-19 13:54:15 +00001806 res = (validate_comma(CHILD(tree, 4))
1807 && validate_test(CHILD(tree, 5)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001808
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001809 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001810}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001811
1812
Guido van Rossum925e5471997-04-02 05:32:13 +00001813/* assert_stmt:
1814 *
1815 * 'assert' test [',' test]
1816 */
1817static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001818validate_assert_stmt(node *tree)
Guido van Rossum925e5471997-04-02 05:32:13 +00001819{
1820 int nch = NCH(tree);
1821 int res = (validate_ntype(tree, assert_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001822 && ((nch == 2) || (nch == 4))
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00001823 && (validate_name(CHILD(tree, 0), "assert"))
Fred Drakeff9ea482000-04-19 13:54:15 +00001824 && validate_test(CHILD(tree, 1)));
Guido van Rossum925e5471997-04-02 05:32:13 +00001825
1826 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00001827 err_string("illegal assert statement");
Guido van Rossum925e5471997-04-02 05:32:13 +00001828 if (res && (nch > 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00001829 res = (validate_comma(CHILD(tree, 2))
1830 && validate_test(CHILD(tree, 3)));
Guido van Rossum925e5471997-04-02 05:32:13 +00001831
1832 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001833}
Guido van Rossum925e5471997-04-02 05:32:13 +00001834
1835
Guido van Rossum47478871996-08-21 14:32:37 +00001836static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001837validate_while(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001838{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001839 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001840 int res = (validate_ntype(tree, while_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001841 && ((nch == 4) || (nch == 7))
1842 && validate_name(CHILD(tree, 0), "while")
1843 && validate_test(CHILD(tree, 1))
1844 && validate_colon(CHILD(tree, 2))
1845 && validate_suite(CHILD(tree, 3)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001846
Guido van Rossum3d602e31996-07-21 02:33:56 +00001847 if (res && (nch == 7))
Fred Drakeff9ea482000-04-19 13:54:15 +00001848 res = (validate_name(CHILD(tree, 4), "else")
1849 && validate_colon(CHILD(tree, 5))
1850 && validate_suite(CHILD(tree, 6)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001851
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001852 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001853}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001854
1855
Guido van Rossum47478871996-08-21 14:32:37 +00001856static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001857validate_for(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001858{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001859 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001860 int res = (validate_ntype(tree, for_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001861 && ((nch == 6) || (nch == 9))
1862 && validate_name(CHILD(tree, 0), "for")
1863 && validate_exprlist(CHILD(tree, 1))
1864 && validate_name(CHILD(tree, 2), "in")
1865 && validate_testlist(CHILD(tree, 3))
1866 && validate_colon(CHILD(tree, 4))
1867 && validate_suite(CHILD(tree, 5)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001868
Guido van Rossum3d602e31996-07-21 02:33:56 +00001869 if (res && (nch == 9))
Fred Drakeff9ea482000-04-19 13:54:15 +00001870 res = (validate_name(CHILD(tree, 6), "else")
1871 && validate_colon(CHILD(tree, 7))
1872 && validate_suite(CHILD(tree, 8)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001873
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001874 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001875}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001876
1877
Guido van Rossum3d602e31996-07-21 02:33:56 +00001878/* try_stmt:
Fred Drakeff9ea482000-04-19 13:54:15 +00001879 * 'try' ':' suite (except_clause ':' suite)+ ['else' ':' suite]
Guido van Rossum3d602e31996-07-21 02:33:56 +00001880 * | 'try' ':' suite 'finally' ':' suite
1881 *
1882 */
Guido van Rossum47478871996-08-21 14:32:37 +00001883static int
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +00001884validate_try(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001885{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001886 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001887 int pos = 3;
1888 int res = (validate_ntype(tree, try_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001889 && (nch >= 6) && ((nch % 3) == 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001890
1891 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00001892 res = (validate_name(CHILD(tree, 0), "try")
1893 && validate_colon(CHILD(tree, 1))
1894 && validate_suite(CHILD(tree, 2))
1895 && validate_colon(CHILD(tree, nch - 2))
1896 && validate_suite(CHILD(tree, nch - 1)));
Fred Drake0ac9b072000-09-12 21:58:06 +00001897 else if (!PyErr_Occurred()) {
Fred Drake22269b52000-07-03 18:07:43 +00001898 const char* name = "except";
Fred Drakeff9ea482000-04-19 13:54:15 +00001899 if (TYPE(CHILD(tree, nch - 3)) != except_clause)
1900 name = STR(CHILD(tree, nch - 3));
Fred Drake0ac9b072000-09-12 21:58:06 +00001901
1902 PyErr_Format(parser_error,
1903 "Illegal number of children for try/%s node.", name);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001904 }
Fred Drakeff9ea482000-04-19 13:54:15 +00001905 /* Skip past except_clause sections: */
Guido van Rossum3d602e31996-07-21 02:33:56 +00001906 while (res && (TYPE(CHILD(tree, pos)) == except_clause)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001907 res = (validate_except_clause(CHILD(tree, pos))
1908 && validate_colon(CHILD(tree, pos + 1))
1909 && validate_suite(CHILD(tree, pos + 2)));
1910 pos += 3;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001911 }
1912 if (res && (pos < nch)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001913 res = validate_ntype(CHILD(tree, pos), NAME);
1914 if (res && (strcmp(STR(CHILD(tree, pos)), "finally") == 0))
1915 res = (validate_numnodes(tree, 6, "try/finally")
1916 && validate_colon(CHILD(tree, 4))
1917 && validate_suite(CHILD(tree, 5)));
1918 else if (res) {
1919 if (nch == (pos + 3)) {
1920 res = ((strcmp(STR(CHILD(tree, pos)), "except") == 0)
1921 || (strcmp(STR(CHILD(tree, pos)), "else") == 0));
1922 if (!res)
Fred Drake661ea262000-10-24 19:57:45 +00001923 err_string("illegal trailing triple in try statement");
Fred Drakeff9ea482000-04-19 13:54:15 +00001924 }
1925 else if (nch == (pos + 6)) {
1926 res = (validate_name(CHILD(tree, pos), "except")
1927 && validate_colon(CHILD(tree, pos + 1))
1928 && validate_suite(CHILD(tree, pos + 2))
1929 && validate_name(CHILD(tree, pos + 3), "else"));
1930 }
1931 else
1932 res = validate_numnodes(tree, pos + 3, "try/except");
1933 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001934 }
1935 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001936}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001937
1938
Guido van Rossum47478871996-08-21 14:32:37 +00001939static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001940validate_except_clause(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001941{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001942 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001943 int res = (validate_ntype(tree, except_clause)
Fred Drakeff9ea482000-04-19 13:54:15 +00001944 && ((nch == 1) || (nch == 2) || (nch == 4))
1945 && validate_name(CHILD(tree, 0), "except"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001946
Guido van Rossum3d602e31996-07-21 02:33:56 +00001947 if (res && (nch > 1))
Fred Drakeff9ea482000-04-19 13:54:15 +00001948 res = validate_test(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001949 if (res && (nch == 4))
Fred Drakeff9ea482000-04-19 13:54:15 +00001950 res = (validate_comma(CHILD(tree, 2))
1951 && validate_test(CHILD(tree, 3)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001952
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001953 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001954}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001955
1956
Guido van Rossum47478871996-08-21 14:32:37 +00001957static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001958validate_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001959{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001960 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001961 int res = validate_ntype(tree, test) && is_odd(nch);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001962
Guido van Rossum3d602e31996-07-21 02:33:56 +00001963 if (res && (TYPE(CHILD(tree, 0)) == lambdef))
Fred Drakeff9ea482000-04-19 13:54:15 +00001964 res = ((nch == 1)
1965 && validate_lambdef(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001966 else if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001967 int pos;
1968 res = validate_and_test(CHILD(tree, 0));
1969 for (pos = 1; res && (pos < nch); pos += 2)
1970 res = (validate_name(CHILD(tree, pos), "or")
1971 && validate_and_test(CHILD(tree, pos + 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001972 }
1973 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001974}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001975
1976
Guido van Rossum47478871996-08-21 14:32:37 +00001977static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001978validate_and_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001979{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001980 int pos;
1981 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001982 int res = (validate_ntype(tree, and_test)
Fred Drakeff9ea482000-04-19 13:54:15 +00001983 && is_odd(nch)
1984 && validate_not_test(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001985
Guido van Rossum3d602e31996-07-21 02:33:56 +00001986 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00001987 res = (validate_name(CHILD(tree, pos), "and")
1988 && validate_not_test(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001989
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001990 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001991}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001992
1993
Guido van Rossum47478871996-08-21 14:32:37 +00001994static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001995validate_not_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001996{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001997 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001998 int res = validate_ntype(tree, not_test) && ((nch == 1) || (nch == 2));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001999
Guido van Rossum3d602e31996-07-21 02:33:56 +00002000 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002001 if (nch == 2)
2002 res = (validate_name(CHILD(tree, 0), "not")
2003 && validate_not_test(CHILD(tree, 1)));
2004 else if (nch == 1)
2005 res = validate_comparison(CHILD(tree, 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002006 }
2007 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002008}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002009
2010
Guido van Rossum47478871996-08-21 14:32:37 +00002011static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002012validate_comparison(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002013{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002014 int pos;
2015 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002016 int res = (validate_ntype(tree, comparison)
Fred Drakeff9ea482000-04-19 13:54:15 +00002017 && is_odd(nch)
2018 && validate_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002019
Guido van Rossum3d602e31996-07-21 02:33:56 +00002020 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002021 res = (validate_comp_op(CHILD(tree, pos))
2022 && validate_expr(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002023
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002024 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002025}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002026
2027
Guido van Rossum47478871996-08-21 14:32:37 +00002028static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002029validate_comp_op(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002030{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002031 int res = 0;
2032 int nch = NCH(tree);
2033
Guido van Rossum3d602e31996-07-21 02:33:56 +00002034 if (!validate_ntype(tree, comp_op))
Fred Drakeff9ea482000-04-19 13:54:15 +00002035 return (0);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002036 if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002037 /*
2038 * Only child will be a terminal with a well-defined symbolic name
2039 * or a NAME with a string of either 'is' or 'in'
2040 */
2041 tree = CHILD(tree, 0);
2042 switch (TYPE(tree)) {
2043 case LESS:
2044 case GREATER:
2045 case EQEQUAL:
2046 case EQUAL:
2047 case LESSEQUAL:
2048 case GREATEREQUAL:
2049 case NOTEQUAL:
2050 res = 1;
2051 break;
2052 case NAME:
2053 res = ((strcmp(STR(tree), "in") == 0)
2054 || (strcmp(STR(tree), "is") == 0));
2055 if (!res) {
Fred Drake0ac9b072000-09-12 21:58:06 +00002056 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +00002057 "illegal operator '%s'", STR(tree));
Fred Drakeff9ea482000-04-19 13:54:15 +00002058 }
2059 break;
2060 default:
Fred Drake661ea262000-10-24 19:57:45 +00002061 err_string("illegal comparison operator type");
Fred Drakeff9ea482000-04-19 13:54:15 +00002062 break;
2063 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002064 }
Guido van Rossuma376cc51996-12-05 23:43:35 +00002065 else if ((res = validate_numnodes(tree, 2, "comp_op")) != 0) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002066 res = (validate_ntype(CHILD(tree, 0), NAME)
2067 && validate_ntype(CHILD(tree, 1), NAME)
2068 && (((strcmp(STR(CHILD(tree, 0)), "is") == 0)
2069 && (strcmp(STR(CHILD(tree, 1)), "not") == 0))
2070 || ((strcmp(STR(CHILD(tree, 0)), "not") == 0)
2071 && (strcmp(STR(CHILD(tree, 1)), "in") == 0))));
2072 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00002073 err_string("unknown comparison operator");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002074 }
2075 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002076}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002077
2078
Guido van Rossum47478871996-08-21 14:32:37 +00002079static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002080validate_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002081{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002082 int j;
2083 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002084 int res = (validate_ntype(tree, expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002085 && is_odd(nch)
2086 && validate_xor_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002087
Guido van Rossum3d602e31996-07-21 02:33:56 +00002088 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002089 res = (validate_xor_expr(CHILD(tree, j))
2090 && validate_vbar(CHILD(tree, j - 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002091
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002092 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002093}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002094
2095
Guido van Rossum47478871996-08-21 14:32:37 +00002096static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002097validate_xor_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002098{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002099 int j;
2100 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002101 int res = (validate_ntype(tree, xor_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002102 && is_odd(nch)
2103 && validate_and_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002104
Guido van Rossum3d602e31996-07-21 02:33:56 +00002105 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002106 res = (validate_circumflex(CHILD(tree, j - 1))
2107 && validate_and_expr(CHILD(tree, j)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002108
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002109 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002110}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002111
2112
Guido van Rossum47478871996-08-21 14:32:37 +00002113static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002114validate_and_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002115{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002116 int pos;
2117 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002118 int res = (validate_ntype(tree, and_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002119 && is_odd(nch)
2120 && validate_shift_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002121
Guido van Rossum3d602e31996-07-21 02:33:56 +00002122 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002123 res = (validate_ampersand(CHILD(tree, pos))
2124 && validate_shift_expr(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002125
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002126 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002127}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002128
2129
2130static int
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +00002131validate_chain_two_ops(node *tree, int (*termvalid)(node *), int op1, int op2)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002132 {
2133 int pos = 1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002134 int nch = NCH(tree);
2135 int res = (is_odd(nch)
Fred Drakeff9ea482000-04-19 13:54:15 +00002136 && (*termvalid)(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002137
Guido van Rossum3d602e31996-07-21 02:33:56 +00002138 for ( ; res && (pos < nch); pos += 2) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002139 if (TYPE(CHILD(tree, pos)) != op1)
2140 res = validate_ntype(CHILD(tree, pos), op2);
2141 if (res)
2142 res = (*termvalid)(CHILD(tree, pos + 1));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002143 }
2144 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002145}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002146
2147
Guido van Rossum47478871996-08-21 14:32:37 +00002148static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002149validate_shift_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002150{
2151 return (validate_ntype(tree, shift_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002152 && validate_chain_two_ops(tree, validate_arith_expr,
2153 LEFTSHIFT, RIGHTSHIFT));
2154}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002155
2156
Guido van Rossum47478871996-08-21 14:32:37 +00002157static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002158validate_arith_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002159{
2160 return (validate_ntype(tree, arith_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002161 && validate_chain_two_ops(tree, validate_term, PLUS, MINUS));
2162}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002163
2164
Guido van Rossum47478871996-08-21 14:32:37 +00002165static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002166validate_term(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002167{
2168 int pos = 1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002169 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002170 int res = (validate_ntype(tree, term)
Fred Drakeff9ea482000-04-19 13:54:15 +00002171 && is_odd(nch)
2172 && validate_factor(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002173
Guido van Rossum3d602e31996-07-21 02:33:56 +00002174 for ( ; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002175 res = (((TYPE(CHILD(tree, pos)) == STAR)
2176 || (TYPE(CHILD(tree, pos)) == SLASH)
Michael W. Hudson5e83b7a2003-01-29 14:20:23 +00002177 || (TYPE(CHILD(tree, pos)) == DOUBLESLASH)
Fred Drakeff9ea482000-04-19 13:54:15 +00002178 || (TYPE(CHILD(tree, pos)) == PERCENT))
2179 && validate_factor(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002180
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002181 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002182}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002183
2184
Guido van Rossum3d602e31996-07-21 02:33:56 +00002185/* factor:
2186 *
2187 * factor: ('+'|'-'|'~') factor | power
2188 */
Guido van Rossum47478871996-08-21 14:32:37 +00002189static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002190validate_factor(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002191{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002192 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002193 int res = (validate_ntype(tree, factor)
Fred Drakeff9ea482000-04-19 13:54:15 +00002194 && (((nch == 2)
2195 && ((TYPE(CHILD(tree, 0)) == PLUS)
2196 || (TYPE(CHILD(tree, 0)) == MINUS)
2197 || (TYPE(CHILD(tree, 0)) == TILDE))
2198 && validate_factor(CHILD(tree, 1)))
2199 || ((nch == 1)
2200 && validate_power(CHILD(tree, 0)))));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002201 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002202}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002203
2204
Guido van Rossum3d602e31996-07-21 02:33:56 +00002205/* power:
2206 *
2207 * power: atom trailer* ('**' factor)*
2208 */
Guido van Rossum47478871996-08-21 14:32:37 +00002209static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002210validate_power(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002211{
2212 int pos = 1;
2213 int nch = NCH(tree);
2214 int res = (validate_ntype(tree, power) && (nch >= 1)
Fred Drakeff9ea482000-04-19 13:54:15 +00002215 && validate_atom(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002216
2217 while (res && (pos < nch) && (TYPE(CHILD(tree, pos)) == trailer))
Fred Drakeff9ea482000-04-19 13:54:15 +00002218 res = validate_trailer(CHILD(tree, pos++));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002219 if (res && (pos < nch)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002220 if (!is_even(nch - pos)) {
Fred Drake661ea262000-10-24 19:57:45 +00002221 err_string("illegal number of nodes for 'power'");
Fred Drakeff9ea482000-04-19 13:54:15 +00002222 return (0);
2223 }
2224 for ( ; res && (pos < (nch - 1)); pos += 2)
2225 res = (validate_doublestar(CHILD(tree, pos))
2226 && validate_factor(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002227 }
2228 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002229}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002230
2231
Guido van Rossum47478871996-08-21 14:32:37 +00002232static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002233validate_atom(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002234{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002235 int pos;
2236 int nch = NCH(tree);
Fred Drakecff283c2000-08-21 22:24:43 +00002237 int res = validate_ntype(tree, atom);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002238
Fred Drakecff283c2000-08-21 22:24:43 +00002239 if (res && nch < 1)
2240 res = validate_numnodes(tree, nch+1, "atom");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002241 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002242 switch (TYPE(CHILD(tree, 0))) {
2243 case LPAR:
2244 res = ((nch <= 3)
2245 && (validate_rparen(CHILD(tree, nch - 1))));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002246
Fred Drakeff9ea482000-04-19 13:54:15 +00002247 if (res && (nch == 3))
Raymond Hettinger354433a2004-05-19 08:20:33 +00002248 res = validate_testlist_gexp(CHILD(tree, 1));
Fred Drakeff9ea482000-04-19 13:54:15 +00002249 break;
2250 case LSQB:
Fred Drakecff283c2000-08-21 22:24:43 +00002251 if (nch == 2)
2252 res = validate_ntype(CHILD(tree, 1), RSQB);
2253 else if (nch == 3)
2254 res = (validate_listmaker(CHILD(tree, 1))
2255 && validate_ntype(CHILD(tree, 2), RSQB));
2256 else {
2257 res = 0;
2258 err_string("illegal list display atom");
2259 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002260 break;
2261 case LBRACE:
2262 res = ((nch <= 3)
2263 && validate_ntype(CHILD(tree, nch - 1), RBRACE));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002264
Fred Drakeff9ea482000-04-19 13:54:15 +00002265 if (res && (nch == 3))
2266 res = validate_dictmaker(CHILD(tree, 1));
2267 break;
2268 case BACKQUOTE:
2269 res = ((nch == 3)
Guido van Rossum2d3b9862002-05-24 15:47:06 +00002270 && validate_testlist1(CHILD(tree, 1))
Fred Drakeff9ea482000-04-19 13:54:15 +00002271 && validate_ntype(CHILD(tree, 2), BACKQUOTE));
2272 break;
2273 case NAME:
2274 case NUMBER:
2275 res = (nch == 1);
2276 break;
2277 case STRING:
2278 for (pos = 1; res && (pos < nch); ++pos)
2279 res = validate_ntype(CHILD(tree, pos), STRING);
2280 break;
2281 default:
2282 res = 0;
2283 break;
2284 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002285 }
2286 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002287}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002288
2289
Fred Drake85bf3bb2000-08-23 15:35:26 +00002290/* listmaker:
2291 * test ( list_for | (',' test)* [','] )
2292 */
Fred Drakecff283c2000-08-21 22:24:43 +00002293static int
2294validate_listmaker(node *tree)
2295{
2296 int nch = NCH(tree);
2297 int ok = nch;
2298
2299 if (nch == 0)
2300 err_string("missing child nodes of listmaker");
2301 else
2302 ok = validate_test(CHILD(tree, 0));
2303
2304 /*
Raymond Hettinger354433a2004-05-19 08:20:33 +00002305 * list_for | (',' test)* [',']
Fred Drakecff283c2000-08-21 22:24:43 +00002306 */
Fred Drake85bf3bb2000-08-23 15:35:26 +00002307 if (nch == 2 && TYPE(CHILD(tree, 1)) == list_for)
2308 ok = validate_list_for(CHILD(tree, 1));
Fred Drakecff283c2000-08-21 22:24:43 +00002309 else {
2310 /* (',' test)* [','] */
2311 int i = 1;
2312 while (ok && nch - i >= 2) {
2313 ok = (validate_comma(CHILD(tree, i))
2314 && validate_test(CHILD(tree, i+1)));
Fred Drake85bf3bb2000-08-23 15:35:26 +00002315 i += 2;
Fred Drakecff283c2000-08-21 22:24:43 +00002316 }
Fred Drake85bf3bb2000-08-23 15:35:26 +00002317 if (ok && i == nch-1)
2318 ok = validate_comma(CHILD(tree, i));
2319 else if (i != nch) {
2320 ok = 0;
2321 err_string("illegal trailing nodes for listmaker");
2322 }
Fred Drakecff283c2000-08-21 22:24:43 +00002323 }
2324 return ok;
2325}
2326
Raymond Hettinger354433a2004-05-19 08:20:33 +00002327/* testlist_gexp:
2328 * test ( gen_for | (',' test)* [','] )
2329 */
2330static int
2331validate_testlist_gexp(node *tree)
2332{
2333 int nch = NCH(tree);
2334 int ok = nch;
2335
2336 if (nch == 0)
2337 err_string("missing child nodes of testlist_gexp");
2338 else {
2339 ok = validate_test(CHILD(tree, 0));
2340 }
2341
2342 /*
2343 * gen_for | (',' test)* [',']
2344 */
2345 if (nch == 2 && TYPE(CHILD(tree, 1)) == gen_for)
2346 ok = validate_gen_for(CHILD(tree, 1));
2347 else {
2348 /* (',' test)* [','] */
2349 int i = 1;
2350 while (ok && nch - i >= 2) {
2351 ok = (validate_comma(CHILD(tree, i))
2352 && validate_test(CHILD(tree, i+1)));
2353 i += 2;
2354 }
2355 if (ok && i == nch-1)
2356 ok = validate_comma(CHILD(tree, i));
2357 else if (i != nch) {
2358 ok = 0;
2359 err_string("illegal trailing nodes for testlist_gexp");
2360 }
2361 }
2362 return ok;
2363}
Fred Drakecff283c2000-08-21 22:24:43 +00002364
Guido van Rossum3d602e31996-07-21 02:33:56 +00002365/* funcdef:
Fred Drakeff9ea482000-04-19 13:54:15 +00002366 * 'def' NAME parameters ':' suite
Guido van Rossum3d602e31996-07-21 02:33:56 +00002367 *
2368 */
Guido van Rossum47478871996-08-21 14:32:37 +00002369static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002370validate_funcdef(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002371{
2372 return (validate_ntype(tree, funcdef)
Fred Drakeff9ea482000-04-19 13:54:15 +00002373 && validate_numnodes(tree, 5, "funcdef")
2374 && validate_name(CHILD(tree, 0), "def")
2375 && validate_ntype(CHILD(tree, 1), NAME)
2376 && validate_colon(CHILD(tree, 3))
2377 && validate_parameters(CHILD(tree, 2))
2378 && validate_suite(CHILD(tree, 4)));
2379}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002380
2381
Guido van Rossum47478871996-08-21 14:32:37 +00002382static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002383validate_lambdef(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002384{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002385 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002386 int res = (validate_ntype(tree, lambdef)
Fred Drakeff9ea482000-04-19 13:54:15 +00002387 && ((nch == 3) || (nch == 4))
2388 && validate_name(CHILD(tree, 0), "lambda")
2389 && validate_colon(CHILD(tree, nch - 2))
2390 && validate_test(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002391
Guido van Rossum3d602e31996-07-21 02:33:56 +00002392 if (res && (nch == 4))
Fred Drakeff9ea482000-04-19 13:54:15 +00002393 res = validate_varargslist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002394 else if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +00002395 (void) validate_numnodes(tree, 3, "lambdef");
Guido van Rossum3d602e31996-07-21 02:33:56 +00002396
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002397 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002398}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002399
2400
Guido van Rossum3d602e31996-07-21 02:33:56 +00002401/* arglist:
2402 *
Fred Drakecff283c2000-08-21 22:24:43 +00002403 * (argument ',')* (argument [','] | '*' test [',' '**' test] | '**' test)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002404 */
Guido van Rossum47478871996-08-21 14:32:37 +00002405static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002406validate_arglist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002407{
Fred Drakee7ab64e2000-04-25 04:14:46 +00002408 int nch = NCH(tree);
Fred Drakecff283c2000-08-21 22:24:43 +00002409 int i = 0;
2410 int ok = 1;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002411
2412 if (nch <= 0)
2413 /* raise the right error from having an invalid number of children */
2414 return validate_numnodes(tree, nch + 1, "arglist");
2415
Raymond Hettinger354433a2004-05-19 08:20:33 +00002416 if (nch > 1) {
2417 for (i=0; i<nch; i++) {
2418 if (TYPE(CHILD(tree, i)) == argument) {
2419 node *ch = CHILD(tree, i);
2420 if (NCH(ch) == 2 && TYPE(CHILD(ch, 1)) == gen_for) {
2421 err_string("need '(', ')' for generator expression");
2422 return 0;
2423 }
2424 }
2425 }
2426 }
2427
Fred Drakecff283c2000-08-21 22:24:43 +00002428 while (ok && nch-i >= 2) {
2429 /* skip leading (argument ',') */
2430 ok = (validate_argument(CHILD(tree, i))
2431 && validate_comma(CHILD(tree, i+1)));
2432 if (ok)
2433 i += 2;
2434 else
2435 PyErr_Clear();
2436 }
2437 ok = 1;
2438 if (nch-i > 0) {
2439 /*
2440 * argument | '*' test [',' '**' test] | '**' test
Fred Drakee7ab64e2000-04-25 04:14:46 +00002441 */
Fred Drakecff283c2000-08-21 22:24:43 +00002442 int sym = TYPE(CHILD(tree, i));
2443
2444 if (sym == argument) {
2445 ok = validate_argument(CHILD(tree, i));
2446 if (ok && i+1 != nch) {
2447 err_string("illegal arglist specification"
2448 " (extra stuff on end)");
2449 ok = 0;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002450 }
Fred Drakecff283c2000-08-21 22:24:43 +00002451 }
2452 else if (sym == STAR) {
2453 ok = validate_star(CHILD(tree, i));
2454 if (ok && (nch-i == 2))
2455 ok = validate_test(CHILD(tree, i+1));
2456 else if (ok && (nch-i == 5))
2457 ok = (validate_test(CHILD(tree, i+1))
2458 && validate_comma(CHILD(tree, i+2))
2459 && validate_doublestar(CHILD(tree, i+3))
2460 && validate_test(CHILD(tree, i+4)));
Fred Drakee7ab64e2000-04-25 04:14:46 +00002461 else {
Fred Drakecff283c2000-08-21 22:24:43 +00002462 err_string("illegal use of '*' in arglist");
2463 ok = 0;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002464 }
2465 }
Fred Drakecff283c2000-08-21 22:24:43 +00002466 else if (sym == DOUBLESTAR) {
2467 if (nch-i == 2)
2468 ok = (validate_doublestar(CHILD(tree, i))
2469 && validate_test(CHILD(tree, i+1)));
2470 else {
2471 err_string("illegal use of '**' in arglist");
2472 ok = 0;
2473 }
2474 }
2475 else {
2476 err_string("illegal arglist specification");
2477 ok = 0;
2478 }
Fred Drakee7ab64e2000-04-25 04:14:46 +00002479 }
2480 return (ok);
Fred Drakeff9ea482000-04-19 13:54:15 +00002481}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002482
2483
2484
2485/* argument:
2486 *
Raymond Hettinger354433a2004-05-19 08:20:33 +00002487 * [test '='] test [gen_for]
Guido van Rossum3d602e31996-07-21 02:33:56 +00002488 */
Guido van Rossum47478871996-08-21 14:32:37 +00002489static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002490validate_argument(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002491{
2492 int nch = NCH(tree);
2493 int res = (validate_ntype(tree, argument)
Raymond Hettinger354433a2004-05-19 08:20:33 +00002494 && ((nch == 1) || (nch == 2) || (nch == 3))
Fred Drakeff9ea482000-04-19 13:54:15 +00002495 && validate_test(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002496
Raymond Hettinger354433a2004-05-19 08:20:33 +00002497 if (res && (nch == 2))
2498 res = validate_gen_for(CHILD(tree, 1));
2499 else if (res && (nch == 3))
Fred Drakeff9ea482000-04-19 13:54:15 +00002500 res = (validate_equal(CHILD(tree, 1))
2501 && validate_test(CHILD(tree, 2)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002502
2503 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002504}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002505
2506
2507
2508/* trailer:
2509 *
Guido van Rossum47478871996-08-21 14:32:37 +00002510 * '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME
Guido van Rossum3d602e31996-07-21 02:33:56 +00002511 */
Guido van Rossum47478871996-08-21 14:32:37 +00002512static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002513validate_trailer(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002514{
2515 int nch = NCH(tree);
2516 int res = validate_ntype(tree, trailer) && ((nch == 2) || (nch == 3));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002517
2518 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002519 switch (TYPE(CHILD(tree, 0))) {
2520 case LPAR:
2521 res = validate_rparen(CHILD(tree, nch - 1));
2522 if (res && (nch == 3))
2523 res = validate_arglist(CHILD(tree, 1));
2524 break;
2525 case LSQB:
2526 res = (validate_numnodes(tree, 3, "trailer")
2527 && validate_subscriptlist(CHILD(tree, 1))
2528 && validate_ntype(CHILD(tree, 2), RSQB));
2529 break;
2530 case DOT:
2531 res = (validate_numnodes(tree, 2, "trailer")
2532 && validate_ntype(CHILD(tree, 1), NAME));
2533 break;
2534 default:
2535 res = 0;
2536 break;
2537 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002538 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002539 else {
2540 (void) validate_numnodes(tree, 2, "trailer");
2541 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002542 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002543}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002544
2545
Guido van Rossum47478871996-08-21 14:32:37 +00002546/* subscriptlist:
2547 *
2548 * subscript (',' subscript)* [',']
2549 */
2550static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002551validate_subscriptlist(node *tree)
Guido van Rossum47478871996-08-21 14:32:37 +00002552{
2553 return (validate_repeating_list(tree, subscriptlist,
Fred Drakeff9ea482000-04-19 13:54:15 +00002554 validate_subscript, "subscriptlist"));
2555}
Guido van Rossum47478871996-08-21 14:32:37 +00002556
2557
Guido van Rossum3d602e31996-07-21 02:33:56 +00002558/* subscript:
2559 *
Guido van Rossum47478871996-08-21 14:32:37 +00002560 * '.' '.' '.' | test | [test] ':' [test] [sliceop]
Guido van Rossum3d602e31996-07-21 02:33:56 +00002561 */
Guido van Rossum47478871996-08-21 14:32:37 +00002562static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002563validate_subscript(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002564{
Guido van Rossum47478871996-08-21 14:32:37 +00002565 int offset = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002566 int nch = NCH(tree);
Guido van Rossum47478871996-08-21 14:32:37 +00002567 int res = validate_ntype(tree, subscript) && (nch >= 1) && (nch <= 4);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002568
Guido van Rossum47478871996-08-21 14:32:37 +00002569 if (!res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002570 if (!PyErr_Occurred())
2571 err_string("invalid number of arguments for subscript node");
2572 return (0);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002573 }
Guido van Rossum47478871996-08-21 14:32:37 +00002574 if (TYPE(CHILD(tree, 0)) == DOT)
Fred Drakeff9ea482000-04-19 13:54:15 +00002575 /* take care of ('.' '.' '.') possibility */
2576 return (validate_numnodes(tree, 3, "subscript")
2577 && validate_dot(CHILD(tree, 0))
2578 && validate_dot(CHILD(tree, 1))
2579 && validate_dot(CHILD(tree, 2)));
Guido van Rossum47478871996-08-21 14:32:37 +00002580 if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002581 if (TYPE(CHILD(tree, 0)) == test)
2582 res = validate_test(CHILD(tree, 0));
2583 else
2584 res = validate_colon(CHILD(tree, 0));
2585 return (res);
Guido van Rossum47478871996-08-21 14:32:37 +00002586 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002587 /* Must be [test] ':' [test] [sliceop],
2588 * but at least one of the optional components will
2589 * be present, but we don't know which yet.
Guido van Rossum47478871996-08-21 14:32:37 +00002590 */
2591 if ((TYPE(CHILD(tree, 0)) != COLON) || (nch == 4)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002592 res = validate_test(CHILD(tree, 0));
2593 offset = 1;
Guido van Rossum47478871996-08-21 14:32:37 +00002594 }
2595 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002596 res = validate_colon(CHILD(tree, offset));
Guido van Rossum47478871996-08-21 14:32:37 +00002597 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002598 int rem = nch - ++offset;
2599 if (rem) {
2600 if (TYPE(CHILD(tree, offset)) == test) {
2601 res = validate_test(CHILD(tree, offset));
2602 ++offset;
2603 --rem;
2604 }
2605 if (res && rem)
2606 res = validate_sliceop(CHILD(tree, offset));
2607 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002608 }
2609 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002610}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002611
2612
Guido van Rossum47478871996-08-21 14:32:37 +00002613static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002614validate_sliceop(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002615{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002616 int nch = NCH(tree);
Guido van Rossum47478871996-08-21 14:32:37 +00002617 int res = ((nch == 1) || validate_numnodes(tree, 2, "sliceop"))
Fred Drakeff9ea482000-04-19 13:54:15 +00002618 && validate_ntype(tree, sliceop);
Guido van Rossum47478871996-08-21 14:32:37 +00002619 if (!res && !PyErr_Occurred()) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002620 res = validate_numnodes(tree, 1, "sliceop");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002621 }
Guido van Rossum47478871996-08-21 14:32:37 +00002622 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002623 res = validate_colon(CHILD(tree, 0));
Guido van Rossum47478871996-08-21 14:32:37 +00002624 if (res && (nch == 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00002625 res = validate_test(CHILD(tree, 1));
Guido van Rossum47478871996-08-21 14:32:37 +00002626
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002627 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002628}
Guido van Rossum47478871996-08-21 14:32:37 +00002629
2630
2631static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002632validate_exprlist(node *tree)
Guido van Rossum47478871996-08-21 14:32:37 +00002633{
2634 return (validate_repeating_list(tree, exprlist,
Fred Drakeff9ea482000-04-19 13:54:15 +00002635 validate_expr, "exprlist"));
2636}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002637
2638
Guido van Rossum47478871996-08-21 14:32:37 +00002639static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002640validate_dictmaker(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002641{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002642 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002643 int res = (validate_ntype(tree, dictmaker)
Fred Drakeff9ea482000-04-19 13:54:15 +00002644 && (nch >= 3)
2645 && validate_test(CHILD(tree, 0))
2646 && validate_colon(CHILD(tree, 1))
2647 && validate_test(CHILD(tree, 2)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002648
Guido van Rossum3d602e31996-07-21 02:33:56 +00002649 if (res && ((nch % 4) == 0))
Fred Drakeff9ea482000-04-19 13:54:15 +00002650 res = validate_comma(CHILD(tree, --nch));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002651 else if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002652 res = ((nch % 4) == 3);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002653
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002654 if (res && (nch > 3)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002655 int pos = 3;
2656 /* ( ',' test ':' test )* */
2657 while (res && (pos < nch)) {
2658 res = (validate_comma(CHILD(tree, pos))
2659 && validate_test(CHILD(tree, pos + 1))
2660 && validate_colon(CHILD(tree, pos + 2))
2661 && validate_test(CHILD(tree, pos + 3)));
2662 pos += 4;
2663 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002664 }
2665 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002666}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002667
2668
Guido van Rossum47478871996-08-21 14:32:37 +00002669static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002670validate_eval_input(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002671{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002672 int pos;
2673 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002674 int res = (validate_ntype(tree, eval_input)
Fred Drakeff9ea482000-04-19 13:54:15 +00002675 && (nch >= 2)
2676 && validate_testlist(CHILD(tree, 0))
2677 && validate_ntype(CHILD(tree, nch - 1), ENDMARKER));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002678
Guido van Rossum3d602e31996-07-21 02:33:56 +00002679 for (pos = 1; res && (pos < (nch - 1)); ++pos)
Fred Drakeff9ea482000-04-19 13:54:15 +00002680 res = validate_ntype(CHILD(tree, pos), NEWLINE);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002681
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002682 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002683}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002684
2685
Guido van Rossum47478871996-08-21 14:32:37 +00002686static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002687validate_node(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002688{
Fred Drakeff9ea482000-04-19 13:54:15 +00002689 int nch = 0; /* num. children on current node */
2690 int res = 1; /* result value */
2691 node* next = 0; /* node to process after this one */
Guido van Rossum3d602e31996-07-21 02:33:56 +00002692
Martin v. Löwisb28f6e72001-06-23 19:55:38 +00002693 while (res && (tree != 0)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002694 nch = NCH(tree);
2695 next = 0;
2696 switch (TYPE(tree)) {
2697 /*
2698 * Definition nodes.
2699 */
2700 case funcdef:
2701 res = validate_funcdef(tree);
2702 break;
2703 case classdef:
2704 res = validate_class(tree);
2705 break;
2706 /*
2707 * "Trivial" parse tree nodes.
2708 * (Why did I call these trivial?)
2709 */
2710 case stmt:
2711 res = validate_stmt(tree);
2712 break;
2713 case small_stmt:
2714 /*
Fred Drake0ac9b072000-09-12 21:58:06 +00002715 * expr_stmt | print_stmt | del_stmt | pass_stmt | flow_stmt
Fred Drakeff9ea482000-04-19 13:54:15 +00002716 * | import_stmt | global_stmt | exec_stmt | assert_stmt
2717 */
2718 res = validate_small_stmt(tree);
2719 break;
2720 case flow_stmt:
2721 res = (validate_numnodes(tree, 1, "flow_stmt")
2722 && ((TYPE(CHILD(tree, 0)) == break_stmt)
2723 || (TYPE(CHILD(tree, 0)) == continue_stmt)
Fred Drake02126f22001-07-17 02:59:15 +00002724 || (TYPE(CHILD(tree, 0)) == yield_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002725 || (TYPE(CHILD(tree, 0)) == return_stmt)
2726 || (TYPE(CHILD(tree, 0)) == raise_stmt)));
2727 if (res)
2728 next = CHILD(tree, 0);
2729 else if (nch == 1)
Fred Drake661ea262000-10-24 19:57:45 +00002730 err_string("illegal flow_stmt type");
Fred Drakeff9ea482000-04-19 13:54:15 +00002731 break;
Fred Drake02126f22001-07-17 02:59:15 +00002732 case yield_stmt:
2733 res = validate_yield_stmt(tree);
2734 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00002735 /*
2736 * Compound statements.
2737 */
2738 case simple_stmt:
2739 res = validate_simple_stmt(tree);
2740 break;
2741 case compound_stmt:
2742 res = validate_compound_stmt(tree);
2743 break;
2744 /*
Thomas Wouters7e474022000-07-16 12:04:32 +00002745 * Fundamental statements.
Fred Drakeff9ea482000-04-19 13:54:15 +00002746 */
2747 case expr_stmt:
2748 res = validate_expr_stmt(tree);
2749 break;
2750 case print_stmt:
2751 res = validate_print_stmt(tree);
2752 break;
2753 case del_stmt:
2754 res = validate_del_stmt(tree);
2755 break;
2756 case pass_stmt:
2757 res = (validate_numnodes(tree, 1, "pass")
2758 && validate_name(CHILD(tree, 0), "pass"));
2759 break;
2760 case break_stmt:
2761 res = (validate_numnodes(tree, 1, "break")
2762 && validate_name(CHILD(tree, 0), "break"));
2763 break;
2764 case continue_stmt:
2765 res = (validate_numnodes(tree, 1, "continue")
2766 && validate_name(CHILD(tree, 0), "continue"));
2767 break;
2768 case return_stmt:
2769 res = validate_return_stmt(tree);
2770 break;
2771 case raise_stmt:
2772 res = validate_raise_stmt(tree);
2773 break;
2774 case import_stmt:
2775 res = validate_import_stmt(tree);
2776 break;
2777 case global_stmt:
2778 res = validate_global_stmt(tree);
2779 break;
2780 case exec_stmt:
2781 res = validate_exec_stmt(tree);
2782 break;
2783 case assert_stmt:
2784 res = validate_assert_stmt(tree);
2785 break;
2786 case if_stmt:
2787 res = validate_if(tree);
2788 break;
2789 case while_stmt:
2790 res = validate_while(tree);
2791 break;
2792 case for_stmt:
2793 res = validate_for(tree);
2794 break;
2795 case try_stmt:
2796 res = validate_try(tree);
2797 break;
2798 case suite:
2799 res = validate_suite(tree);
2800 break;
2801 /*
2802 * Expression nodes.
2803 */
2804 case testlist:
2805 res = validate_testlist(tree);
2806 break;
Guido van Rossum2d3b9862002-05-24 15:47:06 +00002807 case testlist1:
2808 res = validate_testlist1(tree);
2809 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00002810 case test:
2811 res = validate_test(tree);
2812 break;
2813 case and_test:
2814 res = validate_and_test(tree);
2815 break;
2816 case not_test:
2817 res = validate_not_test(tree);
2818 break;
2819 case comparison:
2820 res = validate_comparison(tree);
2821 break;
2822 case exprlist:
2823 res = validate_exprlist(tree);
2824 break;
2825 case comp_op:
2826 res = validate_comp_op(tree);
2827 break;
2828 case expr:
2829 res = validate_expr(tree);
2830 break;
2831 case xor_expr:
2832 res = validate_xor_expr(tree);
2833 break;
2834 case and_expr:
2835 res = validate_and_expr(tree);
2836 break;
2837 case shift_expr:
2838 res = validate_shift_expr(tree);
2839 break;
2840 case arith_expr:
2841 res = validate_arith_expr(tree);
2842 break;
2843 case term:
2844 res = validate_term(tree);
2845 break;
2846 case factor:
2847 res = validate_factor(tree);
2848 break;
2849 case power:
2850 res = validate_power(tree);
2851 break;
2852 case atom:
2853 res = validate_atom(tree);
2854 break;
Guido van Rossum3d602e31996-07-21 02:33:56 +00002855
Fred Drakeff9ea482000-04-19 13:54:15 +00002856 default:
2857 /* Hopefully never reached! */
Fred Drake661ea262000-10-24 19:57:45 +00002858 err_string("unrecognized node type");
Fred Drakeff9ea482000-04-19 13:54:15 +00002859 res = 0;
2860 break;
2861 }
2862 tree = next;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002863 }
2864 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002865}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002866
2867
Guido van Rossum47478871996-08-21 14:32:37 +00002868static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002869validate_expr_tree(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002870{
2871 int res = validate_eval_input(tree);
2872
2873 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00002874 err_string("could not validate expression tuple");
Guido van Rossum3d602e31996-07-21 02:33:56 +00002875
2876 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002877}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002878
2879
Guido van Rossum3d602e31996-07-21 02:33:56 +00002880/* file_input:
Fred Drakeff9ea482000-04-19 13:54:15 +00002881 * (NEWLINE | stmt)* ENDMARKER
Guido van Rossum3d602e31996-07-21 02:33:56 +00002882 */
Guido van Rossum47478871996-08-21 14:32:37 +00002883static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002884validate_file_input(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002885{
Fred Drakec2683dd2001-07-17 19:32:05 +00002886 int j;
Guido van Rossum3d602e31996-07-21 02:33:56 +00002887 int nch = NCH(tree) - 1;
2888 int res = ((nch >= 0)
Fred Drakeff9ea482000-04-19 13:54:15 +00002889 && validate_ntype(CHILD(tree, nch), ENDMARKER));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002890
Fred Drakec2683dd2001-07-17 19:32:05 +00002891 for (j = 0; res && (j < nch); ++j) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002892 if (TYPE(CHILD(tree, j)) == stmt)
2893 res = validate_stmt(CHILD(tree, j));
2894 else
2895 res = validate_newline(CHILD(tree, j));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002896 }
Thomas Wouters7e474022000-07-16 12:04:32 +00002897 /* This stays in to prevent any internal failures from getting to the
Fred Drakeff9ea482000-04-19 13:54:15 +00002898 * user. Hopefully, this won't be needed. If a user reports getting
2899 * this, we have some debugging to do.
Guido van Rossum3d602e31996-07-21 02:33:56 +00002900 */
2901 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00002902 err_string("VALIDATION FAILURE: report this to the maintainer!");
Guido van Rossum3d602e31996-07-21 02:33:56 +00002903
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002904 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002905}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002906
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00002907static int
2908validate_encoding_decl(node *tree)
2909{
2910 int nch = NCH(tree);
2911 int res = ((nch == 1)
2912 && validate_file_input(CHILD(tree, 0)));
2913
2914 if (!res && !PyErr_Occurred())
2915 err_string("Error Parsing encoding_decl");
2916
2917 return res;
2918}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002919
Fred Drake43f8f9b1998-04-13 16:25:46 +00002920static PyObject*
2921pickle_constructor = NULL;
2922
2923
2924static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +00002925parser__pickler(PyObject *self, PyObject *args)
Fred Drake43f8f9b1998-04-13 16:25:46 +00002926{
Fred Drake268397f1998-04-29 14:16:32 +00002927 NOTE(ARGUNUSED(self))
Fred Drake43f8f9b1998-04-13 16:25:46 +00002928 PyObject *result = NULL;
Fred Drakec2683dd2001-07-17 19:32:05 +00002929 PyObject *st = NULL;
Fred Drake2a6875e1999-09-20 22:32:18 +00002930 PyObject *empty_dict = NULL;
Fred Drake43f8f9b1998-04-13 16:25:46 +00002931
Fred Drakec2683dd2001-07-17 19:32:05 +00002932 if (PyArg_ParseTuple(args, "O!:_pickler", &PyST_Type, &st)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002933 PyObject *newargs;
2934 PyObject *tuple;
Fred Drake43f8f9b1998-04-13 16:25:46 +00002935
Fred Drake2a6875e1999-09-20 22:32:18 +00002936 if ((empty_dict = PyDict_New()) == NULL)
2937 goto finally;
Fred Drakec2683dd2001-07-17 19:32:05 +00002938 if ((newargs = Py_BuildValue("Oi", st, 1)) == NULL)
Fred Drakeff9ea482000-04-19 13:54:15 +00002939 goto finally;
Fred Drakec2683dd2001-07-17 19:32:05 +00002940 tuple = parser_st2tuple((PyST_Object*)NULL, newargs, empty_dict);
Fred Drakeff9ea482000-04-19 13:54:15 +00002941 if (tuple != NULL) {
2942 result = Py_BuildValue("O(O)", pickle_constructor, tuple);
2943 Py_DECREF(tuple);
2944 }
Fred Drake2a6875e1999-09-20 22:32:18 +00002945 Py_DECREF(empty_dict);
Fred Drakeff9ea482000-04-19 13:54:15 +00002946 Py_DECREF(newargs);
Fred Drake43f8f9b1998-04-13 16:25:46 +00002947 }
2948 finally:
Fred Drake2a6875e1999-09-20 22:32:18 +00002949 Py_XDECREF(empty_dict);
2950
Fred Drake43f8f9b1998-04-13 16:25:46 +00002951 return (result);
Fred Drakeff9ea482000-04-19 13:54:15 +00002952}
Fred Drake43f8f9b1998-04-13 16:25:46 +00002953
2954
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002955/* Functions exported by this module. Most of this should probably
Fred Drakec2683dd2001-07-17 19:32:05 +00002956 * be converted into an ST object with methods, but that is better
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002957 * done directly in Python, allowing subclasses to be created directly.
Guido van Rossum3d602e31996-07-21 02:33:56 +00002958 * We'd really have to write a wrapper around it all anyway to allow
2959 * inheritance.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002960 */
2961static PyMethodDef parser_functions[] = {
Fred Drakec2683dd2001-07-17 19:32:05 +00002962 {"ast2tuple", (PyCFunction)parser_st2tuple, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002963 PyDoc_STR("Creates a tuple-tree representation of an ST.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00002964 {"ast2list", (PyCFunction)parser_st2list, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002965 PyDoc_STR("Creates a list-tree representation of an ST.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00002966 {"compileast", (PyCFunction)parser_compilest, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002967 PyDoc_STR("Compiles an ST object into a code object.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00002968 {"compilest", (PyCFunction)parser_compilest, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002969 PyDoc_STR("Compiles an ST object into a code object.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00002970 {"expr", (PyCFunction)parser_expr, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002971 PyDoc_STR("Creates an ST object from an expression.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00002972 {"isexpr", (PyCFunction)parser_isexpr, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002973 PyDoc_STR("Determines if an ST object was created from an expression.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00002974 {"issuite", (PyCFunction)parser_issuite, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002975 PyDoc_STR("Determines if an ST object was created from a suite.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00002976 {"suite", (PyCFunction)parser_suite, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002977 PyDoc_STR("Creates an ST object from a suite.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00002978 {"sequence2ast", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002979 PyDoc_STR("Creates an ST object from a tree representation.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00002980 {"sequence2st", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002981 PyDoc_STR("Creates an ST object from a tree representation.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00002982 {"st2tuple", (PyCFunction)parser_st2tuple, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002983 PyDoc_STR("Creates a tuple-tree representation of an ST.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00002984 {"st2list", (PyCFunction)parser_st2list, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002985 PyDoc_STR("Creates a list-tree representation of an ST.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00002986 {"tuple2ast", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002987 PyDoc_STR("Creates an ST object from a tree representation.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00002988 {"tuple2st", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00002989 PyDoc_STR("Creates an ST object from a tree representation.")},
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002990
Fred Drake43f8f9b1998-04-13 16:25:46 +00002991 /* private stuff: support pickle module */
Fred Drake13130bc2001-08-15 16:44:56 +00002992 {"_pickler", (PyCFunction)parser__pickler, METH_VARARGS,
Neal Norwitz200788c2002-08-13 22:20:41 +00002993 PyDoc_STR("Returns the pickle magic to allow ST objects to be pickled.")},
Fred Drake43f8f9b1998-04-13 16:25:46 +00002994
Fred Drake268397f1998-04-29 14:16:32 +00002995 {NULL, NULL, 0, NULL}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002996 };
2997
2998
Mark Hammond62b1ab12002-07-23 06:31:15 +00002999PyMODINIT_FUNC initparser(void); /* supply a prototype */
Fred Drake28f739a2000-08-25 22:42:40 +00003000
Mark Hammond62b1ab12002-07-23 06:31:15 +00003001PyMODINIT_FUNC
Thomas Wouters5c669862000-07-24 15:49:08 +00003002initparser(void)
Fred Drake28f739a2000-08-25 22:42:40 +00003003{
Fred Drake13130bc2001-08-15 16:44:56 +00003004 PyObject *module, *copyreg;
Fred Drakec2683dd2001-07-17 19:32:05 +00003005
3006 PyST_Type.ob_type = &PyType_Type;
Guido van Rossumf2b2dac1997-01-23 23:29:44 +00003007 module = Py_InitModule("parser", parser_functions);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003008
Fred Drake7a15ba51999-09-09 14:21:52 +00003009 if (parser_error == 0)
3010 parser_error = PyErr_NewException("parser.ParserError", NULL, NULL);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003011
Tim Peters6a627252003-07-21 14:25:23 +00003012 if (parser_error == 0)
Fred Drakec2683dd2001-07-17 19:32:05 +00003013 /* caller will check PyErr_Occurred() */
3014 return;
Tim Peters6a627252003-07-21 14:25:23 +00003015 /* CAUTION: The code next used to skip bumping the refcount on
3016 * parser_error. That's a disaster if initparser() gets called more
3017 * than once. By incref'ing, we ensure that each module dict that
3018 * gets created owns its reference to the shared parser_error object,
3019 * and the file static parser_error vrbl owns a reference too.
3020 */
3021 Py_INCREF(parser_error);
3022 if (PyModule_AddObject(module, "ParserError", parser_error) != 0)
3023 return;
3024
Fred Drakec2683dd2001-07-17 19:32:05 +00003025 Py_INCREF(&PyST_Type);
Fred Drake13130bc2001-08-15 16:44:56 +00003026 PyModule_AddObject(module, "ASTType", (PyObject*)&PyST_Type);
Fred Drakec2683dd2001-07-17 19:32:05 +00003027 Py_INCREF(&PyST_Type);
Fred Drake13130bc2001-08-15 16:44:56 +00003028 PyModule_AddObject(module, "STType", (PyObject*)&PyST_Type);
Guido van Rossum3d602e31996-07-21 02:33:56 +00003029
Fred Drake13130bc2001-08-15 16:44:56 +00003030 PyModule_AddStringConstant(module, "__copyright__",
3031 parser_copyright_string);
3032 PyModule_AddStringConstant(module, "__doc__",
3033 parser_doc_string);
3034 PyModule_AddStringConstant(module, "__version__",
3035 parser_version_string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003036
Fred Drake78bdb9b2001-07-19 20:17:15 +00003037 /* Register to support pickling.
3038 * If this fails, the import of this module will fail because an
3039 * exception will be raised here; should we clear the exception?
3040 */
Fred Drake13130bc2001-08-15 16:44:56 +00003041 copyreg = PyImport_ImportModule("copy_reg");
3042 if (copyreg != NULL) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003043 PyObject *func, *pickler;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003044
Fred Drake13130bc2001-08-15 16:44:56 +00003045 func = PyObject_GetAttrString(copyreg, "pickle");
3046 pickle_constructor = PyObject_GetAttrString(module, "sequence2st");
3047 pickler = PyObject_GetAttrString(module, "_pickler");
Fred Drakeff9ea482000-04-19 13:54:15 +00003048 Py_XINCREF(pickle_constructor);
3049 if ((func != NULL) && (pickle_constructor != NULL)
3050 && (pickler != NULL)) {
3051 PyObject *res;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003052
Fred Drakec2683dd2001-07-17 19:32:05 +00003053 res = PyObject_CallFunction(func, "OOO", &PyST_Type, pickler,
3054 pickle_constructor);
Fred Drakeff9ea482000-04-19 13:54:15 +00003055 Py_XDECREF(res);
3056 }
3057 Py_XDECREF(func);
Fred Drake13130bc2001-08-15 16:44:56 +00003058 Py_XDECREF(pickle_constructor);
3059 Py_XDECREF(pickler);
3060 Py_DECREF(copyreg);
Fred Drake43f8f9b1998-04-13 16:25:46 +00003061 }
Fred Drakeff9ea482000-04-19 13:54:15 +00003062}