blob: 77b890a284b843eb9171ff890cb4ae8a6e5e93da [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 */
Benjamin Petersonf216c942008-10-31 02:28:05 +000029#include "Python-ast.h" /* mod_ty */
Fred Drakeff9ea482000-04-19 13:54:15 +000030#include "graminit.h" /* symbols defined in the grammar */
31#include "node.h" /* internal parser structure */
Fred Drake8b55b2d2001-12-05 22:10:44 +000032#include "errcode.h" /* error codes for PyNode_*() */
Fred Drakeff9ea482000-04-19 13:54:15 +000033#include "token.h" /* token definitions */
Benjamin Petersonf216c942008-10-31 02:28:05 +000034#include "grammar.h"
35#include "parsetok.h"
Fred Drakeff9ea482000-04-19 13:54:15 +000036 /* ISTERMINAL() / ISNONTERMINAL() */
Benjamin Petersonf216c942008-10-31 02:28:05 +000037#include "compile.h"
38#undef Yield
39#include "ast.h"
40#include "pyarena.h"
41
42extern grammar _PyParser_Grammar; /* From graminit.c */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000043
Fred Drake268397f1998-04-29 14:16:32 +000044#ifdef lint
45#include <note.h>
46#else
47#define NOTE(x)
48#endif
49
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000050/* String constants used to initialize module attributes.
51 *
52 */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000053static char parser_copyright_string[] =
54"Copyright 1995-1996 by Virginia Polytechnic Institute & State\n\
Guido van Rossum2a288461996-08-21 21:55:43 +000055University, Blacksburg, Virginia, USA, and Fred L. Drake, Jr., Reston,\n\
56Virginia, USA. Portions copyright 1991-1995 by Stichting Mathematisch\n\
57Centrum, Amsterdam, The Netherlands.";
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000058
59
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000060PyDoc_STRVAR(parser_doc_string,
61"This is an interface to Python's internal parser.");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000062
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000063static char parser_version_string[] = "0.5";
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000064
65
Martin v. Löwis18e16552006-02-15 17:27:45 +000066typedef PyObject* (*SeqMaker) (Py_ssize_t length);
Fred Drakeff9ea482000-04-19 13:54:15 +000067typedef int (*SeqInserter) (PyObject* sequence,
Martin v. Löwis18e16552006-02-15 17:27:45 +000068 Py_ssize_t index,
Fred Drakeff9ea482000-04-19 13:54:15 +000069 PyObject* element);
Guido van Rossum47478871996-08-21 14:32:37 +000070
Thomas Wouters7e474022000-07-16 12:04:32 +000071/* The function below is copyrighted by Stichting Mathematisch Centrum. The
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000072 * original copyright statement is included below, and continues to apply
73 * in full to the function immediately following. All other material is
74 * original, copyrighted by Fred L. Drake, Jr. and Virginia Polytechnic
75 * Institute and State University. Changes were made to comply with the
Guido van Rossum2a288461996-08-21 21:55:43 +000076 * new naming conventions. Added arguments to provide support for creating
77 * lists as well as tuples, and optionally including the line numbers.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000078 */
79
Guido van Rossum52f2c051993-11-10 12:53:24 +000080
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000081static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +000082node2tuple(node *n, /* node to convert */
83 SeqMaker mkseq, /* create sequence */
84 SeqInserter addelem, /* func. to add elem. in seq. */
Thomas Wouters89f507f2006-12-13 04:49:30 +000085 int lineno, /* include line numbers? */
86 int col_offset) /* include column offsets? */
Guido van Rossum47478871996-08-21 14:32:37 +000087{
Guido van Rossum3d602e31996-07-21 02:33:56 +000088 if (n == NULL) {
Fred Drakeff9ea482000-04-19 13:54:15 +000089 Py_INCREF(Py_None);
90 return (Py_None);
Guido van Rossum3d602e31996-07-21 02:33:56 +000091 }
92 if (ISNONTERMINAL(TYPE(n))) {
Fred Drakeff9ea482000-04-19 13:54:15 +000093 int i;
94 PyObject *v;
95 PyObject *w;
Fred Drake268397f1998-04-29 14:16:32 +000096
Jeremy Hyltonaccb62b2002-12-31 18:17:44 +000097 v = mkseq(1 + NCH(n) + (TYPE(n) == encoding_decl));
Fred Drakeff9ea482000-04-19 13:54:15 +000098 if (v == NULL)
99 return (v);
Christian Heimes217cfd12007-12-02 14:31:20 +0000100 w = PyLong_FromLong(TYPE(n));
Fred Drakeff9ea482000-04-19 13:54:15 +0000101 if (w == NULL) {
102 Py_DECREF(v);
103 return ((PyObject*) NULL);
104 }
105 (void) addelem(v, 0, w);
106 for (i = 0; i < NCH(n); i++) {
Thomas Wouters89f507f2006-12-13 04:49:30 +0000107 w = node2tuple(CHILD(n, i), mkseq, addelem, lineno, col_offset);
Fred Drakeff9ea482000-04-19 13:54:15 +0000108 if (w == NULL) {
109 Py_DECREF(v);
110 return ((PyObject*) NULL);
111 }
112 (void) addelem(v, i+1, w);
113 }
Tim Peters6a627252003-07-21 14:25:23 +0000114
Jeremy Hyltonaccb62b2002-12-31 18:17:44 +0000115 if (TYPE(n) == encoding_decl)
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000116 (void) addelem(v, i+1, PyUnicode_FromString(STR(n)));
Fred Drakeff9ea482000-04-19 13:54:15 +0000117 return (v);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000118 }
119 else if (ISTERMINAL(TYPE(n))) {
Thomas Wouters89f507f2006-12-13 04:49:30 +0000120 PyObject *result = mkseq(2 + lineno + col_offset);
Fred Drakeff9ea482000-04-19 13:54:15 +0000121 if (result != NULL) {
Christian Heimes217cfd12007-12-02 14:31:20 +0000122 (void) addelem(result, 0, PyLong_FromLong(TYPE(n)));
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000123 (void) addelem(result, 1, PyUnicode_FromString(STR(n)));
Fred Drakeff9ea482000-04-19 13:54:15 +0000124 if (lineno == 1)
Christian Heimes217cfd12007-12-02 14:31:20 +0000125 (void) addelem(result, 2, PyLong_FromLong(n->n_lineno));
Thomas Wouters89f507f2006-12-13 04:49:30 +0000126 if (col_offset == 1)
Christian Heimes217cfd12007-12-02 14:31:20 +0000127 (void) addelem(result, 3, PyLong_FromLong(n->n_col_offset));
Fred Drakeff9ea482000-04-19 13:54:15 +0000128 }
129 return (result);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000130 }
131 else {
Fred Drakeff9ea482000-04-19 13:54:15 +0000132 PyErr_SetString(PyExc_SystemError,
133 "unrecognized parse tree node type");
134 return ((PyObject*) NULL);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000135 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000136}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000137/*
138 * End of material copyrighted by Stichting Mathematisch Centrum.
139 */
Guido van Rossum52f2c051993-11-10 12:53:24 +0000140
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000141
142
143/* There are two types of intermediate objects we're interested in:
Fred Drakec2683dd2001-07-17 19:32:05 +0000144 * 'eval' and 'exec' types. These constants can be used in the st_type
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000145 * field of the object type to identify which any given object represents.
146 * These should probably go in an external header to allow other extensions
147 * to use them, but then, we really should be using C++ too. ;-)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000148 */
149
Fred Drakec2683dd2001-07-17 19:32:05 +0000150#define PyST_EXPR 1
151#define PyST_SUITE 2
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000152
153
154/* These are the internal objects and definitions required to implement the
Fred Drakec2683dd2001-07-17 19:32:05 +0000155 * ST type. Most of the internal names are more reminiscent of the 'old'
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000156 * naming style, but the code uses the new naming convention.
157 */
158
159static PyObject*
160parser_error = 0;
161
162
Fred Drakec2683dd2001-07-17 19:32:05 +0000163typedef struct {
Fred Drakeff9ea482000-04-19 13:54:15 +0000164 PyObject_HEAD /* standard object header */
Fred Drakec2683dd2001-07-17 19:32:05 +0000165 node* st_node; /* the node* returned by the parser */
166 int st_type; /* EXPR or SUITE ? */
Benjamin Petersonf216c942008-10-31 02:28:05 +0000167 PyCompilerFlags st_flags; /* Parser and compiler flags */
Fred Drakec2683dd2001-07-17 19:32:05 +0000168} PyST_Object;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000169
170
Jeremy Hylton938ace62002-07-17 16:30:39 +0000171static void parser_free(PyST_Object *st);
Mark Dickinson211c6252009-02-01 10:28:51 +0000172static PyObject* parser_richcompare(PyObject *left, PyObject *right, int op);
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000173static PyObject* parser_compilest(PyST_Object *, PyObject *, PyObject *);
174static PyObject* parser_isexpr(PyST_Object *, PyObject *, PyObject *);
175static PyObject* parser_issuite(PyST_Object *, PyObject *, PyObject *);
176static PyObject* parser_st2list(PyST_Object *, PyObject *, PyObject *);
177static PyObject* parser_st2tuple(PyST_Object *, PyObject *, PyObject *);
Fred Drake503d8d61998-04-13 18:45:18 +0000178
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000179#define PUBLIC_METHOD_TYPE (METH_VARARGS|METH_KEYWORDS)
180
181static PyMethodDef parser_methods[] = {
182 {"compile", (PyCFunction)parser_compilest, PUBLIC_METHOD_TYPE,
183 PyDoc_STR("Compile this ST object into a code object.")},
184 {"isexpr", (PyCFunction)parser_isexpr, PUBLIC_METHOD_TYPE,
185 PyDoc_STR("Determines if this ST object was created from an expression.")},
186 {"issuite", (PyCFunction)parser_issuite, PUBLIC_METHOD_TYPE,
187 PyDoc_STR("Determines if this ST object was created from a suite.")},
188 {"tolist", (PyCFunction)parser_st2list, PUBLIC_METHOD_TYPE,
189 PyDoc_STR("Creates a list-tree representation of this ST.")},
190 {"totuple", (PyCFunction)parser_st2tuple, PUBLIC_METHOD_TYPE,
191 PyDoc_STR("Creates a tuple-tree representation of this ST.")},
192
193 {NULL, NULL, 0, NULL}
194};
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000195
Fred Drake268397f1998-04-29 14:16:32 +0000196static
Fred Drakec2683dd2001-07-17 19:32:05 +0000197PyTypeObject PyST_Type = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +0000198 PyVarObject_HEAD_INIT(NULL, 0)
Guido van Rossum14648392001-12-08 18:02:58 +0000199 "parser.st", /* tp_name */
Fred Drakec2683dd2001-07-17 19:32:05 +0000200 (int) sizeof(PyST_Object), /* tp_basicsize */
Fred Drakeff9ea482000-04-19 13:54:15 +0000201 0, /* tp_itemsize */
202 (destructor)parser_free, /* tp_dealloc */
203 0, /* tp_print */
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000204 0, /* tp_getattr */
Fred Drakeff9ea482000-04-19 13:54:15 +0000205 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +0000206 0, /* tp_reserved */
Fred Drakeff9ea482000-04-19 13:54:15 +0000207 0, /* tp_repr */
208 0, /* tp_as_number */
209 0, /* tp_as_sequence */
210 0, /* tp_as_mapping */
211 0, /* tp_hash */
212 0, /* tp_call */
213 0, /* tp_str */
214 0, /* tp_getattro */
215 0, /* tp_setattro */
Fred Drake69b9ae41997-05-23 04:04:17 +0000216
217 /* Functions to access object as input/output buffer */
Fred Drakeff9ea482000-04-19 13:54:15 +0000218 0, /* tp_as_buffer */
Fred Drake69b9ae41997-05-23 04:04:17 +0000219
Fred Drakeff9ea482000-04-19 13:54:15 +0000220 Py_TPFLAGS_DEFAULT, /* tp_flags */
Fred Drake69b9ae41997-05-23 04:04:17 +0000221
222 /* __doc__ */
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000223 "Intermediate representation of a Python parse tree.",
224 0, /* tp_traverse */
225 0, /* tp_clear */
Mark Dickinson211c6252009-02-01 10:28:51 +0000226 parser_richcompare, /* tp_richcompare */
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000227 0, /* tp_weaklistoffset */
228 0, /* tp_iter */
229 0, /* tp_iternext */
230 parser_methods, /* tp_methods */
Fred Drakec2683dd2001-07-17 19:32:05 +0000231}; /* PyST_Type */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000232
233
Mark Dickinson211c6252009-02-01 10:28:51 +0000234/* PyST_Type isn't subclassable, so just check ob_type */
235#define PyST_Object_Check(v) ((v)->ob_type == &PyST_Type)
236
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000237static int
Fred Drakeff9ea482000-04-19 13:54:15 +0000238parser_compare_nodes(node *left, node *right)
Guido van Rossum47478871996-08-21 14:32:37 +0000239{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000240 int j;
Guido van Rossum52f2c051993-11-10 12:53:24 +0000241
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000242 if (TYPE(left) < TYPE(right))
Fred Drakeff9ea482000-04-19 13:54:15 +0000243 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000244
245 if (TYPE(right) < TYPE(left))
Fred Drakeff9ea482000-04-19 13:54:15 +0000246 return (1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000247
248 if (ISTERMINAL(TYPE(left)))
Fred Drakeff9ea482000-04-19 13:54:15 +0000249 return (strcmp(STR(left), STR(right)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000250
251 if (NCH(left) < NCH(right))
Fred Drakeff9ea482000-04-19 13:54:15 +0000252 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000253
254 if (NCH(right) < NCH(left))
Fred Drakeff9ea482000-04-19 13:54:15 +0000255 return (1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000256
257 for (j = 0; j < NCH(left); ++j) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000258 int v = parser_compare_nodes(CHILD(left, j), CHILD(right, j));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000259
Fred Drakeff9ea482000-04-19 13:54:15 +0000260 if (v != 0)
261 return (v);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000262 }
263 return (0);
Fred Drakeff9ea482000-04-19 13:54:15 +0000264}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000265
Mark Dickinson211c6252009-02-01 10:28:51 +0000266/* parser_richcompare(PyObject* left, PyObject* right, int op)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000267 *
268 * Comparison function used by the Python operators ==, !=, <, >, <=, >=
269 * This really just wraps a call to parser_compare_nodes() with some easy
270 * checks and protection code.
271 *
272 */
Mark Dickinson211c6252009-02-01 10:28:51 +0000273
274#define TEST_COND(cond) ((cond) ? Py_True : Py_False)
275
276static PyObject *
277parser_richcompare(PyObject *left, PyObject *right, int op)
Guido van Rossum47478871996-08-21 14:32:37 +0000278{
Mark Dickinson211c6252009-02-01 10:28:51 +0000279 int result;
280 PyObject *v;
281
282 /* neither argument should be NULL, unless something's gone wrong */
283 if (left == NULL || right == NULL) {
284 PyErr_BadInternalCall();
285 return NULL;
286 }
287
288 /* both arguments should be instances of PyST_Object */
289 if (!PyST_Object_Check(left) || !PyST_Object_Check(right)) {
290 v = Py_NotImplemented;
291 goto finished;
292 }
293
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000294 if (left == right)
Mark Dickinson211c6252009-02-01 10:28:51 +0000295 /* if arguments are identical, they're equal */
296 result = 0;
297 else
298 result = parser_compare_nodes(((PyST_Object *)left)->st_node,
299 ((PyST_Object *)right)->st_node);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000300
Mark Dickinson211c6252009-02-01 10:28:51 +0000301 /* Convert return value to a Boolean */
302 switch (op) {
303 case Py_EQ:
304 v = TEST_COND(result == 0);
305 break;
306 case Py_NE:
307 v = TEST_COND(result != 0);
308 break;
309 case Py_LE:
310 v = TEST_COND(result <= 0);
311 break;
312 case Py_GE:
313 v = TEST_COND(result >= 0);
314 break;
315 case Py_LT:
316 v = TEST_COND(result < 0);
317 break;
318 case Py_GT:
319 v = TEST_COND(result > 0);
320 break;
321 default:
322 PyErr_BadArgument();
323 return NULL;
324 }
325 finished:
326 Py_INCREF(v);
327 return v;
Fred Drakeff9ea482000-04-19 13:54:15 +0000328}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000329
Fred Drakec2683dd2001-07-17 19:32:05 +0000330/* parser_newstobject(node* st)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000331 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000332 * Allocates a new Python object representing an ST. This is simply the
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000333 * 'wrapper' object that holds a node* and allows it to be passed around in
334 * Python code.
335 *
336 */
337static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000338parser_newstobject(node *st, int type)
Guido van Rossum47478871996-08-21 14:32:37 +0000339{
Fred Drakec2683dd2001-07-17 19:32:05 +0000340 PyST_Object* o = PyObject_New(PyST_Object, &PyST_Type);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000341
342 if (o != 0) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000343 o->st_node = st;
344 o->st_type = type;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000345 o->st_flags.cf_flags = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000346 }
Fred Drake268397f1998-04-29 14:16:32 +0000347 else {
Fred Drakec2683dd2001-07-17 19:32:05 +0000348 PyNode_Free(st);
Fred Drake268397f1998-04-29 14:16:32 +0000349 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000350 return ((PyObject*)o);
Fred Drakeff9ea482000-04-19 13:54:15 +0000351}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000352
353
Fred Drakec2683dd2001-07-17 19:32:05 +0000354/* void parser_free(PyST_Object* st)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000355 *
356 * This is called by a del statement that reduces the reference count to 0.
357 *
358 */
359static void
Fred Drakec2683dd2001-07-17 19:32:05 +0000360parser_free(PyST_Object *st)
Guido van Rossum47478871996-08-21 14:32:37 +0000361{
Fred Drakec2683dd2001-07-17 19:32:05 +0000362 PyNode_Free(st->st_node);
363 PyObject_Del(st);
Fred Drakeff9ea482000-04-19 13:54:15 +0000364}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000365
366
Fred Drakec2683dd2001-07-17 19:32:05 +0000367/* parser_st2tuple(PyObject* self, PyObject* args, PyObject* kw)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000368 *
369 * This provides conversion from a node* to a tuple object that can be
Fred Drakec2683dd2001-07-17 19:32:05 +0000370 * returned to the Python-level caller. The ST object is not modified.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000371 *
372 */
373static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000374parser_st2tuple(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000375{
Guido van Rossum47478871996-08-21 14:32:37 +0000376 PyObject *line_option = 0;
Thomas Wouters89f507f2006-12-13 04:49:30 +0000377 PyObject *col_option = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000378 PyObject *res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000379 int ok;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000380
Georg Brandl30704ea02008-07-23 15:07:12 +0000381 static char *keywords[] = {"st", "line_info", "col_info", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000382
Martin v. Löwis1a214512008-06-11 05:26:20 +0000383 if (self == NULL || PyModule_Check(self)) {
Thomas Wouters89f507f2006-12-13 04:49:30 +0000384 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|OO:st2tuple", keywords,
385 &PyST_Type, &self, &line_option,
386 &col_option);
Fred Drake268397f1998-04-29 14:16:32 +0000387 }
Fred Drake503d8d61998-04-13 18:45:18 +0000388 else
Thomas Wouters89f507f2006-12-13 04:49:30 +0000389 ok = PyArg_ParseTupleAndKeywords(args, kw, "|OO:totuple", &keywords[1],
390 &line_option, &col_option);
Fred Drake268397f1998-04-29 14:16:32 +0000391 if (ok != 0) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000392 int lineno = 0;
Thomas Wouters89f507f2006-12-13 04:49:30 +0000393 int col_offset = 0;
Fred Drakeff9ea482000-04-19 13:54:15 +0000394 if (line_option != NULL) {
395 lineno = (PyObject_IsTrue(line_option) != 0) ? 1 : 0;
396 }
Thomas Wouters89f507f2006-12-13 04:49:30 +0000397 if (col_option != NULL) {
398 col_offset = (PyObject_IsTrue(col_option) != 0) ? 1 : 0;
399 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000400 /*
Fred Drakec2683dd2001-07-17 19:32:05 +0000401 * Convert ST into a tuple representation. Use Guido's function,
Fred Drakeff9ea482000-04-19 13:54:15 +0000402 * since it's known to work already.
403 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000404 res = node2tuple(((PyST_Object*)self)->st_node,
Thomas Wouters89f507f2006-12-13 04:49:30 +0000405 PyTuple_New, PyTuple_SetItem, lineno, col_offset);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000406 }
407 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000408}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000409
410
Fred Drakec2683dd2001-07-17 19:32:05 +0000411/* parser_st2list(PyObject* self, PyObject* args, PyObject* kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000412 *
Fred Drake2a6875e1999-09-20 22:32:18 +0000413 * This provides conversion from a node* to a list object that can be
Fred Drakec2683dd2001-07-17 19:32:05 +0000414 * returned to the Python-level caller. The ST object is not modified.
Guido van Rossum47478871996-08-21 14:32:37 +0000415 *
416 */
417static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000418parser_st2list(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000419{
Guido van Rossum47478871996-08-21 14:32:37 +0000420 PyObject *line_option = 0;
Thomas Wouters89f507f2006-12-13 04:49:30 +0000421 PyObject *col_option = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000422 PyObject *res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000423 int ok;
Guido van Rossum47478871996-08-21 14:32:37 +0000424
Georg Brandl30704ea02008-07-23 15:07:12 +0000425 static char *keywords[] = {"st", "line_info", "col_info", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000426
Martin v. Löwis1a214512008-06-11 05:26:20 +0000427 if (self == NULL || PyModule_Check(self))
Thomas Wouters89f507f2006-12-13 04:49:30 +0000428 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|OO:st2list", keywords,
429 &PyST_Type, &self, &line_option,
430 &col_option);
Fred Drake503d8d61998-04-13 18:45:18 +0000431 else
Thomas Wouters89f507f2006-12-13 04:49:30 +0000432 ok = PyArg_ParseTupleAndKeywords(args, kw, "|OO:tolist", &keywords[1],
433 &line_option, &col_option);
Fred Drake503d8d61998-04-13 18:45:18 +0000434 if (ok) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000435 int lineno = 0;
Thomas Wouters89f507f2006-12-13 04:49:30 +0000436 int col_offset = 0;
Fred Drakeff9ea482000-04-19 13:54:15 +0000437 if (line_option != 0) {
438 lineno = PyObject_IsTrue(line_option) ? 1 : 0;
439 }
Thomas Wouters89f507f2006-12-13 04:49:30 +0000440 if (col_option != NULL) {
441 col_offset = (PyObject_IsTrue(col_option) != 0) ? 1 : 0;
442 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000443 /*
Fred Drakec2683dd2001-07-17 19:32:05 +0000444 * Convert ST into a tuple representation. Use Guido's function,
Fred Drakeff9ea482000-04-19 13:54:15 +0000445 * since it's known to work already.
446 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000447 res = node2tuple(self->st_node,
Thomas Wouters89f507f2006-12-13 04:49:30 +0000448 PyList_New, PyList_SetItem, lineno, col_offset);
Guido van Rossum47478871996-08-21 14:32:37 +0000449 }
450 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000451}
Guido van Rossum47478871996-08-21 14:32:37 +0000452
453
Fred Drakec2683dd2001-07-17 19:32:05 +0000454/* parser_compilest(PyObject* self, PyObject* args)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000455 *
456 * This function creates code objects from the parse tree represented by
457 * the passed-in data object. An optional file name is passed in as well.
458 *
459 */
460static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000461parser_compilest(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000462{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000463 PyObject* res = 0;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000464 PyArena* arena;
465 mod_ty mod;
Fred Drakec2683dd2001-07-17 19:32:05 +0000466 char* str = "<syntax-tree>";
Fred Drake503d8d61998-04-13 18:45:18 +0000467 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000468
Georg Brandl30704ea02008-07-23 15:07:12 +0000469 static char *keywords[] = {"st", "filename", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000470
Martin v. Löwis1a214512008-06-11 05:26:20 +0000471 if (self == NULL || PyModule_Check(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000472 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|s:compilest", keywords,
473 &PyST_Type, &self, &str);
Fred Drake503d8d61998-04-13 18:45:18 +0000474 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000475 ok = PyArg_ParseTupleAndKeywords(args, kw, "|s:compile", &keywords[1],
Fred Drake7a15ba51999-09-09 14:21:52 +0000476 &str);
Fred Drake503d8d61998-04-13 18:45:18 +0000477
Benjamin Petersonf216c942008-10-31 02:28:05 +0000478 if (ok) {
479 arena = PyArena_New();
480 if (arena) {
481 mod = PyAST_FromNode(self->st_node, &(self->st_flags), str, arena);
482 if (mod) {
483 res = (PyObject *)PyAST_Compile(mod, str, &(self->st_flags), arena);
484 }
485 PyArena_Free(arena);
486 }
487 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000488
489 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000490}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000491
492
493/* PyObject* parser_isexpr(PyObject* self, PyObject* args)
494 * PyObject* parser_issuite(PyObject* self, PyObject* args)
495 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000496 * Checks the passed-in ST object to determine if it is an expression or
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000497 * a statement suite, respectively. The return is a Python truth value.
498 *
499 */
500static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000501parser_isexpr(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000502{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000503 PyObject* res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000504 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000505
Georg Brandl30704ea02008-07-23 15:07:12 +0000506 static char *keywords[] = {"st", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000507
Martin v. Löwis1a214512008-06-11 05:26:20 +0000508 if (self == NULL || PyModule_Check(self))
Fred Drakeff9ea482000-04-19 13:54:15 +0000509 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:isexpr", keywords,
Fred Drakec2683dd2001-07-17 19:32:05 +0000510 &PyST_Type, &self);
Fred Drake503d8d61998-04-13 18:45:18 +0000511 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000512 ok = PyArg_ParseTupleAndKeywords(args, kw, ":isexpr", &keywords[1]);
Fred Drake503d8d61998-04-13 18:45:18 +0000513
514 if (ok) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000515 /* Check to see if the ST represents an expression or not. */
516 res = (self->st_type == PyST_EXPR) ? Py_True : Py_False;
Fred Drakeff9ea482000-04-19 13:54:15 +0000517 Py_INCREF(res);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000518 }
519 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000520}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000521
522
523static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000524parser_issuite(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000525{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000526 PyObject* res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000527 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000528
Georg Brandl30704ea02008-07-23 15:07:12 +0000529 static char *keywords[] = {"st", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000530
Martin v. Löwis1a214512008-06-11 05:26:20 +0000531 if (self == NULL || PyModule_Check(self))
Fred Drakeff9ea482000-04-19 13:54:15 +0000532 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:issuite", keywords,
Fred Drakec2683dd2001-07-17 19:32:05 +0000533 &PyST_Type, &self);
Fred Drake503d8d61998-04-13 18:45:18 +0000534 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000535 ok = PyArg_ParseTupleAndKeywords(args, kw, ":issuite", &keywords[1]);
Fred Drake503d8d61998-04-13 18:45:18 +0000536
537 if (ok) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000538 /* Check to see if the ST represents an expression or not. */
539 res = (self->st_type == PyST_EXPR) ? Py_False : Py_True;
Fred Drakeff9ea482000-04-19 13:54:15 +0000540 Py_INCREF(res);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000541 }
542 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000543}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000544
545
Guido van Rossum3d602e31996-07-21 02:33:56 +0000546/* err_string(char* message)
547 *
548 * Sets the error string for an exception of type ParserError.
549 *
550 */
551static void
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +0000552err_string(char *message)
Guido van Rossum47478871996-08-21 14:32:37 +0000553{
Guido van Rossum3d602e31996-07-21 02:33:56 +0000554 PyErr_SetString(parser_error, message);
Fred Drakeff9ea482000-04-19 13:54:15 +0000555}
Guido van Rossum3d602e31996-07-21 02:33:56 +0000556
557
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000558/* PyObject* parser_do_parse(PyObject* args, int type)
559 *
560 * Internal function to actually execute the parse and return the result if
Jeremy Hyltonaccb62b2002-12-31 18:17:44 +0000561 * successful or set an exception if not.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000562 *
563 */
564static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +0000565parser_do_parse(PyObject *args, PyObject *kw, char *argspec, int type)
Guido van Rossum47478871996-08-21 14:32:37 +0000566{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000567 char* string = 0;
568 PyObject* res = 0;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000569 int flags = 0;
570 perrdetail err;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000571
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000572 static char *keywords[] = {"source", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000573
574 if (PyArg_ParseTupleAndKeywords(args, kw, argspec, keywords, &string)) {
Benjamin Petersonf216c942008-10-31 02:28:05 +0000575 node* n = PyParser_ParseStringFlagsFilenameEx(string, NULL,
576 &_PyParser_Grammar,
577 (type == PyST_EXPR)
578 ? eval_input : file_input,
579 &err, &flags);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000580
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000581 if (n) {
582 res = parser_newstobject(n, type);
Benjamin Petersonf216c942008-10-31 02:28:05 +0000583 if (res)
584 ((PyST_Object *)res)->st_flags.cf_flags = flags & PyCF_MASK;
585 }
586 else
587 PyParser_SetError(&err);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000588 }
589 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000590}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000591
592
593/* PyObject* parser_expr(PyObject* self, PyObject* args)
594 * PyObject* parser_suite(PyObject* self, PyObject* args)
595 *
596 * External interfaces to the parser itself. Which is called determines if
597 * the parser attempts to recognize an expression ('eval' form) or statement
598 * suite ('exec' form). The real work is done by parser_do_parse() above.
599 *
600 */
601static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000602parser_expr(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000603{
Fred Drake268397f1998-04-29 14:16:32 +0000604 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000605 return (parser_do_parse(args, kw, "s:expr", PyST_EXPR));
Fred Drakeff9ea482000-04-19 13:54:15 +0000606}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000607
608
609static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000610parser_suite(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000611{
Fred Drake268397f1998-04-29 14:16:32 +0000612 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000613 return (parser_do_parse(args, kw, "s:suite", PyST_SUITE));
Fred Drakeff9ea482000-04-19 13:54:15 +0000614}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000615
616
617
Fred Drakec2683dd2001-07-17 19:32:05 +0000618/* This is the messy part of the code. Conversion from a tuple to an ST
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000619 * object requires that the input tuple be valid without having to rely on
620 * catching an exception from the compiler. This is done to allow the
621 * compiler itself to remain fast, since most of its input will come from
622 * the parser directly, and therefore be known to be syntactically correct.
623 * This validation is done to ensure that we don't core dump the compile
624 * phase, returning an exception instead.
625 *
626 * Two aspects can be broken out in this code: creating a node tree from
627 * the tuple passed in, and verifying that it is indeed valid. It may be
Fred Drakec2683dd2001-07-17 19:32:05 +0000628 * advantageous to expand the number of ST types to include funcdefs and
629 * lambdadefs to take advantage of the optimizer, recognizing those STs
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000630 * here. They are not necessary, and not quite as useful in a raw form.
631 * For now, let's get expressions and suites working reliably.
632 */
633
634
Jeremy Hylton938ace62002-07-17 16:30:39 +0000635static node* build_node_tree(PyObject *tuple);
636static int validate_expr_tree(node *tree);
637static int validate_file_input(node *tree);
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000638static int validate_encoding_decl(node *tree);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000639
Fred Drakec2683dd2001-07-17 19:32:05 +0000640/* PyObject* parser_tuple2st(PyObject* self, PyObject* args)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000641 *
642 * This is the public function, called from the Python code. It receives a
Fred Drakec2683dd2001-07-17 19:32:05 +0000643 * single tuple object from the caller, and creates an ST object if the
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000644 * tuple can be validated. It does this by checking the first code of the
645 * tuple, and, if acceptable, builds the internal representation. If this
646 * step succeeds, the internal representation is validated as fully as
647 * possible with the various validate_*() routines defined below.
648 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000649 * This function must be changed if support is to be added for PyST_FRAGMENT
650 * ST objects.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000651 *
652 */
653static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000654parser_tuple2st(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000655{
Fred Drake268397f1998-04-29 14:16:32 +0000656 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000657 PyObject *st = 0;
Fred Drake0ac9b072000-09-12 21:58:06 +0000658 PyObject *tuple;
659 node *tree;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000660
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000661 static char *keywords[] = {"sequence", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000662
Fred Drakec2683dd2001-07-17 19:32:05 +0000663 if (!PyArg_ParseTupleAndKeywords(args, kw, "O:sequence2st", keywords,
Fred Drake7a15ba51999-09-09 14:21:52 +0000664 &tuple))
Fred Drakeff9ea482000-04-19 13:54:15 +0000665 return (0);
Guido van Rossum47478871996-08-21 14:32:37 +0000666 if (!PySequence_Check(tuple)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000667 PyErr_SetString(PyExc_ValueError,
Fred Drakec2683dd2001-07-17 19:32:05 +0000668 "sequence2st() requires a single sequence argument");
Fred Drakeff9ea482000-04-19 13:54:15 +0000669 return (0);
Guido van Rossum47478871996-08-21 14:32:37 +0000670 }
671 /*
Fred Drake0ac9b072000-09-12 21:58:06 +0000672 * Convert the tree to the internal form before checking it.
Guido van Rossum47478871996-08-21 14:32:37 +0000673 */
Fred Drake0ac9b072000-09-12 21:58:06 +0000674 tree = build_node_tree(tuple);
675 if (tree != 0) {
676 int start_sym = TYPE(tree);
677 if (start_sym == eval_input) {
678 /* Might be an eval form. */
679 if (validate_expr_tree(tree))
Fred Drakec2683dd2001-07-17 19:32:05 +0000680 st = parser_newstobject(tree, PyST_EXPR);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000681 else
682 PyNode_Free(tree);
Fred Drakeff9ea482000-04-19 13:54:15 +0000683 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000684 else if (start_sym == file_input) {
685 /* This looks like an exec form so far. */
686 if (validate_file_input(tree))
Fred Drakec2683dd2001-07-17 19:32:05 +0000687 st = parser_newstobject(tree, PyST_SUITE);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000688 else
689 PyNode_Free(tree);
Fred Drake0ac9b072000-09-12 21:58:06 +0000690 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000691 else if (start_sym == encoding_decl) {
692 /* This looks like an encoding_decl so far. */
693 if (validate_encoding_decl(tree))
694 st = parser_newstobject(tree, PyST_SUITE);
695 else
696 PyNode_Free(tree);
697 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000698 else {
699 /* This is a fragment, at best. */
700 PyNode_Free(tree);
Fred Drake661ea262000-10-24 19:57:45 +0000701 err_string("parse tree does not use a valid start symbol");
Fred Drake0ac9b072000-09-12 21:58:06 +0000702 }
Guido van Rossum47478871996-08-21 14:32:37 +0000703 }
Guido van Rossum47478871996-08-21 14:32:37 +0000704 /* Make sure we throw an exception on all errors. We should never
705 * get this, but we'd do well to be sure something is done.
706 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000707 if (st == NULL && !PyErr_Occurred())
708 err_string("unspecified ST error occurred");
Guido van Rossum3d602e31996-07-21 02:33:56 +0000709
Fred Drakec2683dd2001-07-17 19:32:05 +0000710 return st;
Fred Drakeff9ea482000-04-19 13:54:15 +0000711}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000712
713
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000714/* node* build_node_children()
715 *
716 * Iterate across the children of the current non-terminal node and build
717 * their structures. If successful, return the root of this portion of
718 * the tree, otherwise, 0. Any required exception will be specified already,
719 * and no memory will have been deallocated.
720 *
721 */
722static node*
Fred Drakeff9ea482000-04-19 13:54:15 +0000723build_node_children(PyObject *tuple, node *root, int *line_num)
Guido van Rossum47478871996-08-21 14:32:37 +0000724{
Martin v. Löwis18e16552006-02-15 17:27:45 +0000725 Py_ssize_t len = PyObject_Size(tuple);
726 Py_ssize_t i;
727 int err;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000728
729 for (i = 1; i < len; ++i) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000730 /* elem must always be a sequence, however simple */
Fred Drakeff9ea482000-04-19 13:54:15 +0000731 PyObject* elem = PySequence_GetItem(tuple, i);
732 int ok = elem != NULL;
733 long type = 0;
734 char *strn = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000735
Fred Drakeff9ea482000-04-19 13:54:15 +0000736 if (ok)
737 ok = PySequence_Check(elem);
738 if (ok) {
739 PyObject *temp = PySequence_GetItem(elem, 0);
740 if (temp == NULL)
741 ok = 0;
742 else {
Christian Heimes217cfd12007-12-02 14:31:20 +0000743 ok = PyLong_Check(temp);
Fred Drakeff9ea482000-04-19 13:54:15 +0000744 if (ok)
Christian Heimes217cfd12007-12-02 14:31:20 +0000745 type = PyLong_AS_LONG(temp);
Fred Drakeff9ea482000-04-19 13:54:15 +0000746 Py_DECREF(temp);
747 }
748 }
749 if (!ok) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000750 PyObject *err = Py_BuildValue("os", elem,
751 "Illegal node construct.");
752 PyErr_SetObject(parser_error, err);
753 Py_XDECREF(err);
Fred Drakeff9ea482000-04-19 13:54:15 +0000754 Py_XDECREF(elem);
755 return (0);
756 }
757 if (ISTERMINAL(type)) {
Martin v. Löwis18e16552006-02-15 17:27:45 +0000758 Py_ssize_t len = PyObject_Size(elem);
Fred Drake0ac9b072000-09-12 21:58:06 +0000759 PyObject *temp;
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000760 const char *temp_str;
Guido van Rossum47478871996-08-21 14:32:37 +0000761
Fred Drake0ac9b072000-09-12 21:58:06 +0000762 if ((len != 2) && (len != 3)) {
Fred Drake661ea262000-10-24 19:57:45 +0000763 err_string("terminal nodes must have 2 or 3 entries");
Fred Drake0ac9b072000-09-12 21:58:06 +0000764 return 0;
765 }
766 temp = PySequence_GetItem(elem, 1);
767 if (temp == NULL)
768 return 0;
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000769 if (!PyUnicode_Check(temp)) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000770 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +0000771 "second item in terminal node must be a string,"
772 " found %s",
Christian Heimes90aa7642007-12-19 02:45:37 +0000773 Py_TYPE(temp)->tp_name);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000774 Py_DECREF(temp);
Neal Norwitz2cde0eb2007-08-11 04:58:43 +0000775 Py_DECREF(elem);
Fred Drake0ac9b072000-09-12 21:58:06 +0000776 return 0;
777 }
778 if (len == 3) {
779 PyObject *o = PySequence_GetItem(elem, 2);
780 if (o != NULL) {
Christian Heimes217cfd12007-12-02 14:31:20 +0000781 if (PyLong_Check(o))
782 *line_num = PyLong_AS_LONG(o);
Fred Drake0ac9b072000-09-12 21:58:06 +0000783 else {
784 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +0000785 "third item in terminal node must be an"
786 " integer, found %s",
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000787 Py_TYPE(temp)->tp_name);
Fred Drake0ac9b072000-09-12 21:58:06 +0000788 Py_DECREF(o);
789 Py_DECREF(temp);
Neal Norwitz2cde0eb2007-08-11 04:58:43 +0000790 Py_DECREF(elem);
Fred Drake0ac9b072000-09-12 21:58:06 +0000791 return 0;
792 }
793 Py_DECREF(o);
Fred Drakeff9ea482000-04-19 13:54:15 +0000794 }
795 }
Marc-André Lemburg4cc0f242008-08-07 18:54:33 +0000796 temp_str = _PyUnicode_AsStringAndSize(temp, &len);
Alexandre Vassalottia85998a2008-05-03 18:24:43 +0000797 strn = (char *)PyObject_MALLOC(len + 1);
Fred Drake0ac9b072000-09-12 21:58:06 +0000798 if (strn != NULL)
Alexandre Vassalottia85998a2008-05-03 18:24:43 +0000799 (void) memcpy(strn, temp_str, len + 1);
Fred Drake0ac9b072000-09-12 21:58:06 +0000800 Py_DECREF(temp);
Fred Drakeff9ea482000-04-19 13:54:15 +0000801 }
802 else if (!ISNONTERMINAL(type)) {
803 /*
804 * It has to be one or the other; this is an error.
805 * Throw an exception.
806 */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000807 PyObject *err = Py_BuildValue("os", elem, "unknown node type.");
808 PyErr_SetObject(parser_error, err);
809 Py_XDECREF(err);
Fred Drakeff9ea482000-04-19 13:54:15 +0000810 Py_XDECREF(elem);
811 return (0);
812 }
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000813 err = PyNode_AddChild(root, type, strn, *line_num, 0);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000814 if (err == E_NOMEM) {
Neal Norwitz2cde0eb2007-08-11 04:58:43 +0000815 Py_XDECREF(elem);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000816 PyObject_FREE(strn);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000817 return (node *) PyErr_NoMemory();
818 }
819 if (err == E_OVERFLOW) {
Neal Norwitz2cde0eb2007-08-11 04:58:43 +0000820 Py_XDECREF(elem);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000821 PyObject_FREE(strn);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000822 PyErr_SetString(PyExc_ValueError,
823 "unsupported number of child nodes");
824 return NULL;
825 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000826
Fred Drakeff9ea482000-04-19 13:54:15 +0000827 if (ISNONTERMINAL(type)) {
828 node* new_child = CHILD(root, i - 1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000829
Fred Drakeff9ea482000-04-19 13:54:15 +0000830 if (new_child != build_node_children(elem, new_child, line_num)) {
831 Py_XDECREF(elem);
832 return (0);
833 }
834 }
835 else if (type == NEWLINE) { /* It's true: we increment the */
836 ++(*line_num); /* line number *after* the newline! */
837 }
838 Py_XDECREF(elem);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000839 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000840 return root;
Fred Drakeff9ea482000-04-19 13:54:15 +0000841}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000842
843
844static node*
Fred Drakeff9ea482000-04-19 13:54:15 +0000845build_node_tree(PyObject *tuple)
Guido van Rossum47478871996-08-21 14:32:37 +0000846{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000847 node* res = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000848 PyObject *temp = PySequence_GetItem(tuple, 0);
Fred Drake0ac9b072000-09-12 21:58:06 +0000849 long num = -1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000850
Guido van Rossum47478871996-08-21 14:32:37 +0000851 if (temp != NULL)
Christian Heimes217cfd12007-12-02 14:31:20 +0000852 num = PyLong_AsLong(temp);
Guido van Rossum47478871996-08-21 14:32:37 +0000853 Py_XDECREF(temp);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000854 if (ISTERMINAL(num)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000855 /*
856 * The tuple is simple, but it doesn't start with a start symbol.
857 * Throw an exception now and be done with it.
858 */
Fred Drake0ac9b072000-09-12 21:58:06 +0000859 tuple = Py_BuildValue("os", tuple,
Fred Drakec2683dd2001-07-17 19:32:05 +0000860 "Illegal syntax-tree; cannot start with terminal symbol.");
Fred Drakeff9ea482000-04-19 13:54:15 +0000861 PyErr_SetObject(parser_error, tuple);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000862 Py_XDECREF(tuple);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000863 }
864 else if (ISNONTERMINAL(num)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000865 /*
866 * Not efficient, but that can be handled later.
867 */
868 int line_num = 0;
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000869 PyObject *encoding = NULL;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000870
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000871 if (num == encoding_decl) {
872 encoding = PySequence_GetItem(tuple, 2);
873 /* tuple isn't borrowed anymore here, need to DECREF */
874 tuple = PySequence_GetSlice(tuple, 0, 2);
875 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000876 res = PyNode_New(num);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000877 if (res != NULL) {
878 if (res != build_node_children(tuple, res, &line_num)) {
879 PyNode_Free(res);
880 res = NULL;
881 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000882 if (res && encoding) {
Martin v. Löwisad0a4622006-02-16 14:30:23 +0000883 Py_ssize_t len;
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000884 const char *temp;
Marc-André Lemburg4cc0f242008-08-07 18:54:33 +0000885 temp = _PyUnicode_AsStringAndSize(encoding, &len);
Alexandre Vassalottia85998a2008-05-03 18:24:43 +0000886 res->n_str = (char *)PyObject_MALLOC(len + 1);
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000887 if (res->n_str != NULL && temp != NULL)
Alexandre Vassalottia85998a2008-05-03 18:24:43 +0000888 (void) memcpy(res->n_str, temp, len + 1);
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000889 Py_DECREF(encoding);
890 Py_DECREF(tuple);
891 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000892 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000893 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000894 else {
Fred Drakeff9ea482000-04-19 13:54:15 +0000895 /* The tuple is illegal -- if the number is neither TERMINAL nor
Fred Drake0ac9b072000-09-12 21:58:06 +0000896 * NONTERMINAL, we can't use it. Not sure the implementation
897 * allows this condition, but the API doesn't preclude it.
Fred Drakeff9ea482000-04-19 13:54:15 +0000898 */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000899 PyObject *err = Py_BuildValue("os", tuple,
900 "Illegal component tuple.");
901 PyErr_SetObject(parser_error, err);
902 Py_XDECREF(err);
903 }
Guido van Rossum3d602e31996-07-21 02:33:56 +0000904
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000905 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000906}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000907
908
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000909/*
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000910 * Validation routines used within the validation section:
911 */
Jeremy Hylton938ace62002-07-17 16:30:39 +0000912static int validate_terminal(node *terminal, int type, char *string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000913
Fred Drakeff9ea482000-04-19 13:54:15 +0000914#define validate_ampersand(ch) validate_terminal(ch, AMPER, "&")
915#define validate_circumflex(ch) validate_terminal(ch, CIRCUMFLEX, "^")
916#define validate_colon(ch) validate_terminal(ch, COLON, ":")
917#define validate_comma(ch) validate_terminal(ch, COMMA, ",")
918#define validate_dedent(ch) validate_terminal(ch, DEDENT, "")
919#define validate_equal(ch) validate_terminal(ch, EQUAL, "=")
920#define validate_indent(ch) validate_terminal(ch, INDENT, (char*)NULL)
921#define validate_lparen(ch) validate_terminal(ch, LPAR, "(")
922#define validate_newline(ch) validate_terminal(ch, NEWLINE, (char*)NULL)
923#define validate_rparen(ch) validate_terminal(ch, RPAR, ")")
924#define validate_semi(ch) validate_terminal(ch, SEMI, ";")
925#define validate_star(ch) validate_terminal(ch, STAR, "*")
926#define validate_vbar(ch) validate_terminal(ch, VBAR, "|")
927#define validate_doublestar(ch) validate_terminal(ch, DOUBLESTAR, "**")
928#define validate_dot(ch) validate_terminal(ch, DOT, ".")
Anthony Baxterc2a5a632004-08-02 06:10:11 +0000929#define validate_at(ch) validate_terminal(ch, AT, "@")
Fred Drakeff9ea482000-04-19 13:54:15 +0000930#define validate_name(ch, str) validate_terminal(ch, NAME, str)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000931
Fred Drake0ac9b072000-09-12 21:58:06 +0000932#define VALIDATER(n) static int validate_##n(node *tree)
933
Fred Drakeff9ea482000-04-19 13:54:15 +0000934VALIDATER(node); VALIDATER(small_stmt);
935VALIDATER(class); VALIDATER(node);
936VALIDATER(parameters); VALIDATER(suite);
937VALIDATER(testlist); VALIDATER(varargslist);
Guido van Rossumfc158e22007-11-15 19:17:28 +0000938VALIDATER(vfpdef);
Fred Drakeff9ea482000-04-19 13:54:15 +0000939VALIDATER(stmt); VALIDATER(simple_stmt);
940VALIDATER(expr_stmt); VALIDATER(power);
Guido van Rossum452bf512007-02-09 05:32:43 +0000941VALIDATER(del_stmt);
Nick Coghlan650f0d02007-04-15 12:05:43 +0000942VALIDATER(return_stmt); VALIDATER(raise_stmt);
943VALIDATER(import_stmt); VALIDATER(import_stmt);
944VALIDATER(import_name); VALIDATER(yield_stmt);
945VALIDATER(global_stmt); VALIDATER(assert_stmt);
Guido van Rossum1bc535d2007-05-15 18:46:22 +0000946VALIDATER(compound_stmt);
Fred Drakeff9ea482000-04-19 13:54:15 +0000947VALIDATER(while); VALIDATER(for);
948VALIDATER(try); VALIDATER(except_clause);
949VALIDATER(test); VALIDATER(and_test);
950VALIDATER(not_test); VALIDATER(comparison);
Guido van Rossumfc158e22007-11-15 19:17:28 +0000951VALIDATER(comp_op);
Guido van Rossum0368b722007-05-11 16:50:42 +0000952VALIDATER(star_expr); VALIDATER(expr);
Fred Drakeff9ea482000-04-19 13:54:15 +0000953VALIDATER(xor_expr); VALIDATER(and_expr);
954VALIDATER(shift_expr); VALIDATER(arith_expr);
955VALIDATER(term); VALIDATER(factor);
956VALIDATER(atom); VALIDATER(lambdef);
957VALIDATER(trailer); VALIDATER(subscript);
958VALIDATER(subscriptlist); VALIDATER(sliceop);
Nick Coghlan650f0d02007-04-15 12:05:43 +0000959VALIDATER(exprlist); VALIDATER(dictorsetmaker);
Fred Drakeff9ea482000-04-19 13:54:15 +0000960VALIDATER(arglist); VALIDATER(argument);
Nick Coghlan650f0d02007-04-15 12:05:43 +0000961VALIDATER(testlist1); VALIDATER(comp_for);
962VALIDATER(comp_iter); VALIDATER(comp_if);
963VALIDATER(testlist_comp); VALIDATER(yield_expr);
964VALIDATER(yield_or_testlist); VALIDATER(or_test);
965VALIDATER(test_nocond); VALIDATER(lambdef_nocond);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000966
Fred Drake0ac9b072000-09-12 21:58:06 +0000967#undef VALIDATER
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000968
Fred Drakeff9ea482000-04-19 13:54:15 +0000969#define is_even(n) (((n) & 1) == 0)
970#define is_odd(n) (((n) & 1) == 1)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000971
972
973static int
Fred Drakeff9ea482000-04-19 13:54:15 +0000974validate_ntype(node *n, int t)
Guido van Rossum47478871996-08-21 14:32:37 +0000975{
Fred Drake0ac9b072000-09-12 21:58:06 +0000976 if (TYPE(n) != t) {
977 PyErr_Format(parser_error, "Expected node type %d, got %d.",
978 t, TYPE(n));
979 return 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000980 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000981 return 1;
Fred Drakeff9ea482000-04-19 13:54:15 +0000982}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000983
984
Fred Drakee7ab64e2000-04-25 04:14:46 +0000985/* Verifies that the number of child nodes is exactly 'num', raising
986 * an exception if it isn't. The exception message does not indicate
987 * the exact number of nodes, allowing this to be used to raise the
988 * "right" exception when the wrong number of nodes is present in a
989 * specific variant of a statement's syntax. This is commonly used
990 * in that fashion.
991 */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000992static int
Fred Drakeff9ea482000-04-19 13:54:15 +0000993validate_numnodes(node *n, int num, const char *const name)
Guido van Rossum47478871996-08-21 14:32:37 +0000994{
Guido van Rossum3d602e31996-07-21 02:33:56 +0000995 if (NCH(n) != num) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000996 PyErr_Format(parser_error,
997 "Illegal number of children for %s node.", name);
998 return 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000999 }
Fred Drake0ac9b072000-09-12 21:58:06 +00001000 return 1;
Fred Drakeff9ea482000-04-19 13:54:15 +00001001}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001002
1003
1004static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001005validate_terminal(node *terminal, int type, char *string)
Guido van Rossum47478871996-08-21 14:32:37 +00001006{
Guido van Rossum3d602e31996-07-21 02:33:56 +00001007 int res = (validate_ntype(terminal, type)
Fred Drakeff9ea482000-04-19 13:54:15 +00001008 && ((string == 0) || (strcmp(string, STR(terminal)) == 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001009
1010 if (!res && !PyErr_Occurred()) {
Fred Drake0ac9b072000-09-12 21:58:06 +00001011 PyErr_Format(parser_error,
1012 "Illegal terminal: expected \"%s\"", string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001013 }
1014 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001015}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001016
1017
Guido van Rossum47478871996-08-21 14:32:37 +00001018/* X (',' X) [',']
1019 */
1020static int
Thomas Woutersbd4bc4e2000-07-22 23:57:55 +00001021validate_repeating_list(node *tree, int ntype, int (*vfunc)(node *),
Fred Drakeff9ea482000-04-19 13:54:15 +00001022 const char *const name)
Guido van Rossum47478871996-08-21 14:32:37 +00001023{
1024 int nch = NCH(tree);
1025 int res = (nch && validate_ntype(tree, ntype)
Fred Drakeff9ea482000-04-19 13:54:15 +00001026 && vfunc(CHILD(tree, 0)));
Guido van Rossum47478871996-08-21 14:32:37 +00001027
1028 if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +00001029 (void) validate_numnodes(tree, 1, name);
Guido van Rossum47478871996-08-21 14:32:37 +00001030 else {
Fred Drakeff9ea482000-04-19 13:54:15 +00001031 if (is_even(nch))
1032 res = validate_comma(CHILD(tree, --nch));
1033 if (res && nch > 1) {
1034 int pos = 1;
1035 for ( ; res && pos < nch; pos += 2)
1036 res = (validate_comma(CHILD(tree, pos))
1037 && vfunc(CHILD(tree, pos + 1)));
1038 }
Guido van Rossum47478871996-08-21 14:32:37 +00001039 }
1040 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001041}
Guido van Rossum47478871996-08-21 14:32:37 +00001042
1043
Fred Drakecff283c2000-08-21 22:24:43 +00001044/* validate_class()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001045 *
1046 * classdef:
Fred Drakeff9ea482000-04-19 13:54:15 +00001047 * 'class' NAME ['(' testlist ')'] ':' suite
Guido van Rossum3d602e31996-07-21 02:33:56 +00001048 */
Guido van Rossum47478871996-08-21 14:32:37 +00001049static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001050validate_class(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001051{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001052 int nch = NCH(tree);
Brett Cannonf4189912005-04-09 02:30:16 +00001053 int res = (validate_ntype(tree, classdef) &&
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001054 ((nch == 4) || (nch == 6) || (nch == 7)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001055
Guido van Rossum3d602e31996-07-21 02:33:56 +00001056 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001057 res = (validate_name(CHILD(tree, 0), "class")
1058 && validate_ntype(CHILD(tree, 1), NAME)
1059 && validate_colon(CHILD(tree, nch - 2))
1060 && validate_suite(CHILD(tree, nch - 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001061 }
Brett Cannonf4189912005-04-09 02:30:16 +00001062 else {
Fred Drakeff9ea482000-04-19 13:54:15 +00001063 (void) validate_numnodes(tree, 4, "class");
Brett Cannonf4189912005-04-09 02:30:16 +00001064 }
Guido van Rossumfc158e22007-11-15 19:17:28 +00001065
Brett Cannonf4189912005-04-09 02:30:16 +00001066 if (res) {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001067 if (nch == 7) {
1068 res = ((validate_lparen(CHILD(tree, 2)) &&
1069 validate_arglist(CHILD(tree, 3)) &&
1070 validate_rparen(CHILD(tree, 4))));
1071 }
1072 else if (nch == 6) {
1073 res = (validate_lparen(CHILD(tree,2)) &&
1074 validate_rparen(CHILD(tree,3)));
1075 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001076 }
1077 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001078}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001079
1080
Guido van Rossum3d602e31996-07-21 02:33:56 +00001081/* if_stmt:
Fred Drakeff9ea482000-04-19 13:54:15 +00001082 * 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
Guido van Rossum3d602e31996-07-21 02:33:56 +00001083 */
Guido van Rossum47478871996-08-21 14:32:37 +00001084static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001085validate_if(node *tree)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001086{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001087 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001088 int res = (validate_ntype(tree, if_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001089 && (nch >= 4)
1090 && validate_name(CHILD(tree, 0), "if")
1091 && validate_test(CHILD(tree, 1))
1092 && validate_colon(CHILD(tree, 2))
1093 && validate_suite(CHILD(tree, 3)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001094
1095 if (res && ((nch % 4) == 3)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001096 /* ... 'else' ':' suite */
1097 res = (validate_name(CHILD(tree, nch - 3), "else")
1098 && validate_colon(CHILD(tree, nch - 2))
1099 && validate_suite(CHILD(tree, nch - 1)));
1100 nch -= 3;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001101 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001102 else if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +00001103 (void) validate_numnodes(tree, 4, "if");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001104 if ((nch % 4) != 0)
Fred Drakeff9ea482000-04-19 13:54:15 +00001105 /* Will catch the case for nch < 4 */
1106 res = validate_numnodes(tree, 0, "if");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001107 else if (res && (nch > 4)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001108 /* ... ('elif' test ':' suite)+ ... */
1109 int j = 4;
1110 while ((j < nch) && res) {
1111 res = (validate_name(CHILD(tree, j), "elif")
1112 && validate_colon(CHILD(tree, j + 2))
1113 && validate_test(CHILD(tree, j + 1))
1114 && validate_suite(CHILD(tree, j + 3)));
1115 j += 4;
1116 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001117 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001118 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001119}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001120
1121
Guido van Rossum3d602e31996-07-21 02:33:56 +00001122/* parameters:
Fred Drakeff9ea482000-04-19 13:54:15 +00001123 * '(' [varargslist] ')'
Guido van Rossum3d602e31996-07-21 02:33:56 +00001124 *
1125 */
Guido van Rossum47478871996-08-21 14:32:37 +00001126static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001127validate_parameters(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001128{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001129 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001130 int res = validate_ntype(tree, parameters) && ((nch == 2) || (nch == 3));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001131
Guido van Rossum3d602e31996-07-21 02:33:56 +00001132 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001133 res = (validate_lparen(CHILD(tree, 0))
1134 && validate_rparen(CHILD(tree, nch - 1)));
1135 if (res && (nch == 3))
1136 res = validate_varargslist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001137 }
Fred Drakeff9ea482000-04-19 13:54:15 +00001138 else {
1139 (void) validate_numnodes(tree, 2, "parameters");
1140 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001141 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001142}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001143
1144
Fred Drakecff283c2000-08-21 22:24:43 +00001145/* validate_suite()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001146 *
1147 * suite:
Fred Drakeff9ea482000-04-19 13:54:15 +00001148 * simple_stmt
Guido van Rossum3d602e31996-07-21 02:33:56 +00001149 * | NEWLINE INDENT stmt+ DEDENT
1150 */
Guido van Rossum47478871996-08-21 14:32:37 +00001151static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001152validate_suite(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001153{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001154 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001155 int res = (validate_ntype(tree, suite) && ((nch == 1) || (nch >= 4)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001156
Guido van Rossum3d602e31996-07-21 02:33:56 +00001157 if (res && (nch == 1))
Fred Drakeff9ea482000-04-19 13:54:15 +00001158 res = validate_simple_stmt(CHILD(tree, 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001159 else if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001160 /* NEWLINE INDENT stmt+ DEDENT */
1161 res = (validate_newline(CHILD(tree, 0))
1162 && validate_indent(CHILD(tree, 1))
1163 && validate_stmt(CHILD(tree, 2))
1164 && validate_dedent(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001165
Fred Drakeff9ea482000-04-19 13:54:15 +00001166 if (res && (nch > 4)) {
1167 int i = 3;
1168 --nch; /* forget the DEDENT */
1169 for ( ; res && (i < nch); ++i)
1170 res = validate_stmt(CHILD(tree, i));
1171 }
1172 else if (nch < 4)
1173 res = validate_numnodes(tree, 4, "suite");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001174 }
1175 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001176}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001177
1178
Guido van Rossum47478871996-08-21 14:32:37 +00001179static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001180validate_testlist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001181{
Guido van Rossum47478871996-08-21 14:32:37 +00001182 return (validate_repeating_list(tree, testlist,
Fred Drakeff9ea482000-04-19 13:54:15 +00001183 validate_test, "testlist"));
1184}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001185
1186
Guido van Rossum1c917072001-10-15 15:44:05 +00001187static int
Guido van Rossum2d3b9862002-05-24 15:47:06 +00001188validate_testlist1(node *tree)
1189{
1190 return (validate_repeating_list(tree, testlist1,
1191 validate_test, "testlist1"));
1192}
1193
1194
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001195/* validate either vfpdef or tfpdef.
1196 * vfpdef: NAME
1197 * tfpdef: NAME [':' test]
Neal Norwitzc1505362006-12-28 06:47:50 +00001198 */
1199static int
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001200validate_vfpdef(node *tree)
Neal Norwitzc1505362006-12-28 06:47:50 +00001201{
1202 int nch = NCH(tree);
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001203 if (TYPE(tree) == vfpdef) {
Neal Norwitzc1505362006-12-28 06:47:50 +00001204 return nch == 1 && validate_name(CHILD(tree, 0), NULL);
1205 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001206 else if (TYPE(tree) == tfpdef) {
Neal Norwitzc1505362006-12-28 06:47:50 +00001207 if (nch == 1) {
1208 return validate_name(CHILD(tree, 0), NULL);
1209 }
1210 else if (nch == 3) {
1211 return validate_name(CHILD(tree, 0), NULL) &&
1212 validate_colon(CHILD(tree, 1)) &&
1213 validate_test(CHILD(tree, 2));
1214 }
1215 }
1216 return 0;
1217}
1218
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001219/* '*' vfpdef (',' vfpdef ['=' test])* [',' '**' vfpdef] | '**' vfpdef
1220 * ..or tfpdef in place of vfpdef. vfpdef: NAME; tfpdef: NAME [':' test]
Fred Drakecff283c2000-08-21 22:24:43 +00001221 */
1222static int
1223validate_varargslist_trailer(node *tree, int start)
1224{
1225 int nch = NCH(tree);
Guido van Rossum4f72a782006-10-27 23:31:49 +00001226 int res = 0, i;
Fred Drakecff283c2000-08-21 22:24:43 +00001227 int sym;
1228
1229 if (nch <= start) {
1230 err_string("expected variable argument trailer for varargslist");
1231 return 0;
1232 }
1233 sym = TYPE(CHILD(tree, start));
1234 if (sym == STAR) {
1235 /*
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001236 * '*' vfpdef (',' vfpdef ['=' test])* [',' '**' vfpdef] | '**' vfpdef
Fred Drakecff283c2000-08-21 22:24:43 +00001237 */
1238 if (nch-start == 2)
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001239 res = validate_vfpdef(CHILD(tree, start+1));
Guido van Rossum4f72a782006-10-27 23:31:49 +00001240 else if (nch-start == 5 && TYPE(CHILD(tree, start+2)) == COMMA)
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001241 res = (validate_vfpdef(CHILD(tree, start+1))
Fred Drakecff283c2000-08-21 22:24:43 +00001242 && validate_comma(CHILD(tree, start+2))
1243 && validate_doublestar(CHILD(tree, start+3))
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001244 && validate_vfpdef(CHILD(tree, start+4)));
Guido van Rossum4f72a782006-10-27 23:31:49 +00001245 else {
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001246 /* skip over vfpdef (',' vfpdef ['=' test])* */
Guido van Rossum4f72a782006-10-27 23:31:49 +00001247 i = start + 1;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001248 if (TYPE(CHILD(tree, i)) == vfpdef ||
1249 TYPE(CHILD(tree, i)) == tfpdef) { /* skip over vfpdef or tfpdef */
1250 i += 1;
1251 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001252 while (res && i+1 < nch) { /* validate (',' vfpdef ['=' test])* */
Guido van Rossum4f72a782006-10-27 23:31:49 +00001253 res = validate_comma(CHILD(tree, i));
Guido van Rossumfc158e22007-11-15 19:17:28 +00001254 if (TYPE(CHILD(tree, i+1)) == DOUBLESTAR)
Guido van Rossum4f72a782006-10-27 23:31:49 +00001255 break;
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001256 res = res && validate_vfpdef(CHILD(tree, i+1));
Guido van Rossum4f72a782006-10-27 23:31:49 +00001257 if (res && i+2 < nch && TYPE(CHILD(tree, i+2)) == EQUAL) {
Guido van Rossumfc158e22007-11-15 19:17:28 +00001258 res = res && (i+3 < nch)
Guido van Rossum4f72a782006-10-27 23:31:49 +00001259 && validate_test(CHILD(tree, i+3));
1260 i += 4;
1261 }
1262 else {
1263 i += 2;
1264 }
1265 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001266 /* [',' '**' vfpdef] */
Guido van Rossum4f72a782006-10-27 23:31:49 +00001267 if (res && i+1 < nch && TYPE(CHILD(tree, i+1)) == DOUBLESTAR) {
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001268 res = validate_vfpdef(CHILD(tree, i+2));
Guido van Rossum4f72a782006-10-27 23:31:49 +00001269 }
1270 }
Fred Drakecff283c2000-08-21 22:24:43 +00001271 }
1272 else if (sym == DOUBLESTAR) {
1273 /*
1274 * '**' NAME
1275 */
1276 if (nch-start == 2)
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001277 res = validate_vfpdef(CHILD(tree, start+1));
Fred Drakecff283c2000-08-21 22:24:43 +00001278 }
1279 if (!res)
1280 err_string("illegal variable argument trailer for varargslist");
1281 return res;
1282}
1283
1284
Neal Norwitzc1505362006-12-28 06:47:50 +00001285/* validate_varargslist()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001286 *
Neal Norwitzc1505362006-12-28 06:47:50 +00001287 * Validate typedargslist or varargslist.
1288 *
1289 * typedargslist: ((tfpdef ['=' test] ',')*
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001290 * ('*' [tfpdef] (',' tfpdef ['=' test])* [',' '**' tfpdef] |
1291 * '**' tfpdef)
Neal Norwitzc1505362006-12-28 06:47:50 +00001292 * | tfpdef ['=' test] (',' tfpdef ['=' test])* [','])
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001293 * tfpdef: NAME [':' test]
Neal Norwitzc1505362006-12-28 06:47:50 +00001294 * varargslist: ((vfpdef ['=' test] ',')*
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001295 * ('*' [vfpdef] (',' vfpdef ['=' test])* [',' '**' vfpdef] |
1296 * '**' vfpdef)
Neal Norwitzc1505362006-12-28 06:47:50 +00001297 * | vfpdef ['=' test] (',' vfpdef ['=' test])* [','])
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001298 * vfpdef: NAME
Guido van Rossum3d602e31996-07-21 02:33:56 +00001299 *
1300 */
Guido van Rossum47478871996-08-21 14:32:37 +00001301static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001302validate_varargslist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001303{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001304 int nch = NCH(tree);
Neal Norwitzc1505362006-12-28 06:47:50 +00001305 int res = (TYPE(tree) == varargslist ||
1306 TYPE(tree) == typedargslist) &&
1307 (nch != 0);
Fred Drakecff283c2000-08-21 22:24:43 +00001308 int sym;
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001309 node *ch;
1310 int i = 0;
Guido van Rossumfc158e22007-11-15 19:17:28 +00001311
Fred Drakeb6429a22000-12-11 22:08:27 +00001312 if (!res)
1313 return 0;
Fred Drakecff283c2000-08-21 22:24:43 +00001314 if (nch < 1) {
1315 err_string("varargslist missing child nodes");
1316 return 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001317 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001318 while (i < nch) {
Guido van Rossumfc158e22007-11-15 19:17:28 +00001319 ch = CHILD(tree, i);
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001320 sym = TYPE(ch);
1321 if (sym == vfpdef || sym == tfpdef) {
1322 /* validate (vfpdef ['=' test] ',')+ */
1323 res = validate_vfpdef(ch);
Fred Drakecff283c2000-08-21 22:24:43 +00001324 ++i;
Fred Drakeb6429a22000-12-11 22:08:27 +00001325 if (res && (i+2 <= nch) && TYPE(CHILD(tree, i)) == EQUAL) {
1326 res = (validate_equal(CHILD(tree, i))
1327 && validate_test(CHILD(tree, i+1)));
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001328 if (res)
1329 i += 2;
Fred Drakecff283c2000-08-21 22:24:43 +00001330 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001331 if (res && i < nch) {
1332 res = validate_comma(CHILD(tree, i));
1333 ++i;
Fred Drakecff283c2000-08-21 22:24:43 +00001334 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001335 } else if (sym == DOUBLESTAR || sym == STAR) {
1336 res = validate_varargslist_trailer(tree, i);
1337 break;
1338 } else {
1339 res = 0;
1340 err_string("illegal formation for varargslist");
Fred Drakeff9ea482000-04-19 13:54:15 +00001341 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001342 }
Fred Drakecff283c2000-08-21 22:24:43 +00001343 return res;
Fred Drakeff9ea482000-04-19 13:54:15 +00001344}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001345
1346
Nick Coghlan650f0d02007-04-15 12:05:43 +00001347/* comp_iter: comp_for | comp_if
Fred Drakecff283c2000-08-21 22:24:43 +00001348 */
1349static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00001350validate_comp_iter(node *tree)
Fred Drakecff283c2000-08-21 22:24:43 +00001351{
Nick Coghlan650f0d02007-04-15 12:05:43 +00001352 int res = (validate_ntype(tree, comp_iter)
1353 && validate_numnodes(tree, 1, "comp_iter"));
1354 if (res && TYPE(CHILD(tree, 0)) == comp_for)
1355 res = validate_comp_for(CHILD(tree, 0));
Fred Drakecff283c2000-08-21 22:24:43 +00001356 else
Nick Coghlan650f0d02007-04-15 12:05:43 +00001357 res = validate_comp_if(CHILD(tree, 0));
Fred Drakecff283c2000-08-21 22:24:43 +00001358
1359 return res;
1360}
1361
Nick Coghlan650f0d02007-04-15 12:05:43 +00001362/* comp_for: 'for' exprlist 'in' test [comp_iter]
Raymond Hettinger354433a2004-05-19 08:20:33 +00001363 */
1364static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00001365validate_comp_for(node *tree)
Fred Drakecff283c2000-08-21 22:24:43 +00001366{
1367 int nch = NCH(tree);
1368 int res;
1369
1370 if (nch == 5)
Nick Coghlan650f0d02007-04-15 12:05:43 +00001371 res = validate_comp_iter(CHILD(tree, 4));
Fred Drakecff283c2000-08-21 22:24:43 +00001372 else
Nick Coghlan650f0d02007-04-15 12:05:43 +00001373 res = validate_numnodes(tree, 4, "comp_for");
Raymond Hettinger354433a2004-05-19 08:20:33 +00001374
1375 if (res)
1376 res = (validate_name(CHILD(tree, 0), "for")
1377 && validate_exprlist(CHILD(tree, 1))
1378 && validate_name(CHILD(tree, 2), "in")
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00001379 && validate_or_test(CHILD(tree, 3)));
Raymond Hettinger354433a2004-05-19 08:20:33 +00001380
1381 return res;
1382}
1383
Nick Coghlan650f0d02007-04-15 12:05:43 +00001384/* comp_if: 'if' test_nocond [comp_iter]
Fred Drakecff283c2000-08-21 22:24:43 +00001385 */
1386static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00001387validate_comp_if(node *tree)
Fred Drakecff283c2000-08-21 22:24:43 +00001388{
1389 int nch = NCH(tree);
1390 int res;
1391
1392 if (nch == 3)
Nick Coghlan650f0d02007-04-15 12:05:43 +00001393 res = validate_comp_iter(CHILD(tree, 2));
Fred Drakecff283c2000-08-21 22:24:43 +00001394 else
Nick Coghlan650f0d02007-04-15 12:05:43 +00001395 res = validate_numnodes(tree, 2, "comp_if");
Fred Drakecff283c2000-08-21 22:24:43 +00001396
1397 if (res)
1398 res = (validate_name(CHILD(tree, 0), "if")
Nick Coghlan650f0d02007-04-15 12:05:43 +00001399 && validate_test_nocond(CHILD(tree, 1)));
Fred Drakecff283c2000-08-21 22:24:43 +00001400
1401 return res;
1402}
1403
1404
Guido van Rossum3d602e31996-07-21 02:33:56 +00001405/* simple_stmt | compound_stmt
1406 *
1407 */
Guido van Rossum47478871996-08-21 14:32:37 +00001408static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001409validate_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001410{
1411 int res = (validate_ntype(tree, stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001412 && validate_numnodes(tree, 1, "stmt"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001413
Guido van Rossum3d602e31996-07-21 02:33:56 +00001414 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001415 tree = CHILD(tree, 0);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001416
Fred Drakeff9ea482000-04-19 13:54:15 +00001417 if (TYPE(tree) == simple_stmt)
1418 res = validate_simple_stmt(tree);
1419 else
1420 res = validate_compound_stmt(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001421 }
1422 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001423}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001424
1425
Guido van Rossum3d602e31996-07-21 02:33:56 +00001426/* small_stmt (';' small_stmt)* [';'] NEWLINE
1427 *
1428 */
Guido van Rossum47478871996-08-21 14:32:37 +00001429static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001430validate_simple_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001431{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001432 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001433 int res = (validate_ntype(tree, simple_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001434 && (nch >= 2)
1435 && validate_small_stmt(CHILD(tree, 0))
1436 && validate_newline(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001437
Guido van Rossum3d602e31996-07-21 02:33:56 +00001438 if (nch < 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00001439 res = validate_numnodes(tree, 2, "simple_stmt");
1440 --nch; /* forget the NEWLINE */
Guido van Rossum3d602e31996-07-21 02:33:56 +00001441 if (res && is_even(nch))
Fred Drakeff9ea482000-04-19 13:54:15 +00001442 res = validate_semi(CHILD(tree, --nch));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001443 if (res && (nch > 2)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001444 int i;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001445
Fred Drakeff9ea482000-04-19 13:54:15 +00001446 for (i = 1; res && (i < nch); i += 2)
1447 res = (validate_semi(CHILD(tree, i))
1448 && validate_small_stmt(CHILD(tree, i + 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001449 }
1450 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001451}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001452
1453
Guido van Rossum47478871996-08-21 14:32:37 +00001454static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001455validate_small_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001456{
1457 int nch = NCH(tree);
Fred Drake0ac9b072000-09-12 21:58:06 +00001458 int res = validate_numnodes(tree, 1, "small_stmt");
Guido van Rossum3d602e31996-07-21 02:33:56 +00001459
Fred Drake0ac9b072000-09-12 21:58:06 +00001460 if (res) {
1461 int ntype = TYPE(CHILD(tree, 0));
1462
1463 if ( (ntype == expr_stmt)
Fred Drake0ac9b072000-09-12 21:58:06 +00001464 || (ntype == del_stmt)
1465 || (ntype == pass_stmt)
1466 || (ntype == flow_stmt)
1467 || (ntype == import_stmt)
1468 || (ntype == global_stmt)
Georg Brandl7cae87c2006-09-06 06:51:57 +00001469 || (ntype == assert_stmt))
Fred Drake0ac9b072000-09-12 21:58:06 +00001470 res = validate_node(CHILD(tree, 0));
1471 else {
1472 res = 0;
1473 err_string("illegal small_stmt child type");
1474 }
1475 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001476 else if (nch == 1) {
Fred Drake0ac9b072000-09-12 21:58:06 +00001477 res = 0;
1478 PyErr_Format(parser_error,
1479 "Unrecognized child node of small_stmt: %d.",
1480 TYPE(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001481 }
1482 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001483}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001484
1485
1486/* compound_stmt:
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00001487 * if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decorated
Guido van Rossum3d602e31996-07-21 02:33:56 +00001488 */
Guido van Rossum47478871996-08-21 14:32:37 +00001489static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001490validate_compound_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001491{
1492 int res = (validate_ntype(tree, compound_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001493 && validate_numnodes(tree, 1, "compound_stmt"));
Fred Drake0ac9b072000-09-12 21:58:06 +00001494 int ntype;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001495
1496 if (!res)
Fred Drakeff9ea482000-04-19 13:54:15 +00001497 return (0);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001498
1499 tree = CHILD(tree, 0);
Fred Drake0ac9b072000-09-12 21:58:06 +00001500 ntype = TYPE(tree);
1501 if ( (ntype == if_stmt)
1502 || (ntype == while_stmt)
1503 || (ntype == for_stmt)
1504 || (ntype == try_stmt)
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00001505 || (ntype == with_stmt)
Fred Drake0ac9b072000-09-12 21:58:06 +00001506 || (ntype == funcdef)
Guido van Rossumd59da4b2007-05-22 18:11:13 +00001507 || (ntype == classdef)
1508 || (ntype == decorated))
Fred Drakeff9ea482000-04-19 13:54:15 +00001509 res = validate_node(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001510 else {
Fred Drake0ac9b072000-09-12 21:58:06 +00001511 res = 0;
1512 PyErr_Format(parser_error,
1513 "Illegal compound statement type: %d.", TYPE(tree));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001514 }
1515 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001516}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001517
Guido van Rossum47478871996-08-21 14:32:37 +00001518static int
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001519validate_yield_or_testlist(node *tree)
1520{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001521 if (TYPE(tree) == yield_expr)
1522 return validate_yield_expr(tree);
1523 else
1524 return validate_testlist(tree);
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001525}
1526
1527static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001528validate_expr_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001529{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001530 int j;
1531 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001532 int res = (validate_ntype(tree, expr_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001533 && is_odd(nch)
1534 && validate_testlist(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001535
Fred Drake28f739a2000-08-25 22:42:40 +00001536 if (res && nch == 3
1537 && TYPE(CHILD(tree, 1)) == augassign) {
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001538 res = validate_numnodes(CHILD(tree, 1), 1, "augassign")
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001539 && validate_yield_or_testlist(CHILD(tree, 2));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001540
Fred Drake28f739a2000-08-25 22:42:40 +00001541 if (res) {
1542 char *s = STR(CHILD(CHILD(tree, 1), 0));
1543
1544 res = (strcmp(s, "+=") == 0
1545 || strcmp(s, "-=") == 0
1546 || strcmp(s, "*=") == 0
1547 || strcmp(s, "/=") == 0
Michael W. Hudson5e83b7a2003-01-29 14:20:23 +00001548 || strcmp(s, "//=") == 0
Fred Drake28f739a2000-08-25 22:42:40 +00001549 || strcmp(s, "%=") == 0
1550 || strcmp(s, "&=") == 0
1551 || strcmp(s, "|=") == 0
1552 || strcmp(s, "^=") == 0
1553 || strcmp(s, "<<=") == 0
1554 || strcmp(s, ">>=") == 0
1555 || strcmp(s, "**=") == 0);
1556 if (!res)
1557 err_string("illegal augmmented assignment operator");
1558 }
1559 }
1560 else {
1561 for (j = 1; res && (j < nch); j += 2)
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001562 res = validate_equal(CHILD(tree, j))
1563 && validate_yield_or_testlist(CHILD(tree, j + 1));
Fred Drake28f739a2000-08-25 22:42:40 +00001564 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001565 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001566}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001567
1568
Guido van Rossum47478871996-08-21 14:32:37 +00001569static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001570validate_del_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001571{
1572 return (validate_numnodes(tree, 2, "del_stmt")
Fred Drakeff9ea482000-04-19 13:54:15 +00001573 && validate_name(CHILD(tree, 0), "del")
1574 && validate_exprlist(CHILD(tree, 1)));
1575}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001576
1577
Guido van Rossum47478871996-08-21 14:32:37 +00001578static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001579validate_return_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001580{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001581 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001582 int res = (validate_ntype(tree, return_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001583 && ((nch == 1) || (nch == 2))
1584 && validate_name(CHILD(tree, 0), "return"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001585
Guido van Rossum3d602e31996-07-21 02:33:56 +00001586 if (res && (nch == 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00001587 res = validate_testlist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001588
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001589 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001590}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001591
1592
Guido van Rossum47478871996-08-21 14:32:37 +00001593static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001594validate_raise_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001595{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001596 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001597 int res = (validate_ntype(tree, raise_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001598 && ((nch == 1) || (nch == 2) || (nch == 4) || (nch == 6)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001599
Guido van Rossum3d602e31996-07-21 02:33:56 +00001600 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001601 res = validate_name(CHILD(tree, 0), "raise");
1602 if (res && (nch >= 2))
1603 res = validate_test(CHILD(tree, 1));
1604 if (res && nch > 2) {
1605 res = (validate_comma(CHILD(tree, 2))
1606 && validate_test(CHILD(tree, 3)));
1607 if (res && (nch > 4))
1608 res = (validate_comma(CHILD(tree, 4))
1609 && validate_test(CHILD(tree, 5)));
1610 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001611 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001612 else
Fred Drakeff9ea482000-04-19 13:54:15 +00001613 (void) validate_numnodes(tree, 2, "raise");
Guido van Rossum3d602e31996-07-21 02:33:56 +00001614 if (res && (nch == 4))
Fred Drakeff9ea482000-04-19 13:54:15 +00001615 res = (validate_comma(CHILD(tree, 2))
1616 && validate_test(CHILD(tree, 3)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001617
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001618 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001619}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001620
1621
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001622/* yield_expr: 'yield' [testlist]
1623 */
1624static int
1625validate_yield_expr(node *tree)
1626{
1627 int nch = NCH(tree);
1628 int res = (validate_ntype(tree, yield_expr)
1629 && ((nch == 1) || (nch == 2))
1630 && validate_name(CHILD(tree, 0), "yield"));
1631
1632 if (res && (nch == 2))
1633 res = validate_testlist(CHILD(tree, 1));
1634
1635 return (res);
1636}
1637
1638
1639/* yield_stmt: yield_expr
Fred Drake02126f22001-07-17 02:59:15 +00001640 */
1641static int
1642validate_yield_stmt(node *tree)
1643{
1644 return (validate_ntype(tree, yield_stmt)
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001645 && validate_numnodes(tree, 1, "yield_stmt")
1646 && validate_yield_expr(CHILD(tree, 0)));
Fred Drake02126f22001-07-17 02:59:15 +00001647}
1648
1649
Fred Drakecff283c2000-08-21 22:24:43 +00001650static int
1651validate_import_as_name(node *tree)
1652{
1653 int nch = NCH(tree);
1654 int ok = validate_ntype(tree, import_as_name);
1655
1656 if (ok) {
1657 if (nch == 1)
1658 ok = validate_name(CHILD(tree, 0), NULL);
1659 else if (nch == 3)
1660 ok = (validate_name(CHILD(tree, 0), NULL)
1661 && validate_name(CHILD(tree, 1), "as")
1662 && validate_name(CHILD(tree, 2), NULL));
1663 else
1664 ok = validate_numnodes(tree, 3, "import_as_name");
1665 }
1666 return ok;
1667}
1668
1669
Fred Drake71137082001-01-07 05:59:59 +00001670/* dotted_name: NAME ("." NAME)*
1671 */
1672static int
1673validate_dotted_name(node *tree)
1674{
1675 int nch = NCH(tree);
1676 int res = (validate_ntype(tree, dotted_name)
1677 && is_odd(nch)
1678 && validate_name(CHILD(tree, 0), NULL));
1679 int i;
1680
1681 for (i = 1; res && (i < nch); i += 2) {
1682 res = (validate_dot(CHILD(tree, i))
1683 && validate_name(CHILD(tree, i+1), NULL));
1684 }
1685 return res;
1686}
1687
1688
Fred Drakecff283c2000-08-21 22:24:43 +00001689/* dotted_as_name: dotted_name [NAME NAME]
1690 */
1691static int
1692validate_dotted_as_name(node *tree)
1693{
1694 int nch = NCH(tree);
1695 int res = validate_ntype(tree, dotted_as_name);
1696
1697 if (res) {
1698 if (nch == 1)
Fred Drake71137082001-01-07 05:59:59 +00001699 res = validate_dotted_name(CHILD(tree, 0));
Fred Drakecff283c2000-08-21 22:24:43 +00001700 else if (nch == 3)
Fred Drake71137082001-01-07 05:59:59 +00001701 res = (validate_dotted_name(CHILD(tree, 0))
Fred Drakecff283c2000-08-21 22:24:43 +00001702 && validate_name(CHILD(tree, 1), "as")
1703 && validate_name(CHILD(tree, 2), NULL));
1704 else {
1705 res = 0;
Fred Drake661ea262000-10-24 19:57:45 +00001706 err_string("illegal number of children for dotted_as_name");
Fred Drakecff283c2000-08-21 22:24:43 +00001707 }
1708 }
1709 return res;
1710}
1711
1712
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001713/* dotted_as_name (',' dotted_as_name)* */
1714static int
1715validate_dotted_as_names(node *tree)
1716{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001717 int nch = NCH(tree);
1718 int res = is_odd(nch) && validate_dotted_as_name(CHILD(tree, 0));
1719 int i;
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001720
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001721 for (i = 1; res && (i < nch); i += 2)
1722 res = (validate_comma(CHILD(tree, i))
1723 && validate_dotted_as_name(CHILD(tree, i + 1)));
1724 return (res);
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001725}
1726
1727
1728/* import_as_name (',' import_as_name)* [','] */
1729static int
1730validate_import_as_names(node *tree)
1731{
1732 int nch = NCH(tree);
1733 int res = validate_import_as_name(CHILD(tree, 0));
1734 int i;
1735
1736 for (i = 1; res && (i + 1 < nch); i += 2)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001737 res = (validate_comma(CHILD(tree, i))
1738 && validate_import_as_name(CHILD(tree, i + 1)));
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001739 return (res);
1740}
1741
1742
1743/* 'import' dotted_as_names */
1744static int
1745validate_import_name(node *tree)
1746{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001747 return (validate_ntype(tree, import_name)
1748 && validate_numnodes(tree, 2, "import_name")
1749 && validate_name(CHILD(tree, 0), "import")
1750 && validate_dotted_as_names(CHILD(tree, 1)));
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001751}
1752
Mark Dickinson0dce8152010-07-04 18:39:48 +00001753/* Helper function to count the number of leading dots (or ellipsis tokens) in
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001754 * 'from ...module import name'
1755 */
1756static int
1757count_from_dots(node *tree)
1758{
Mark Dickinson0dce8152010-07-04 18:39:48 +00001759 int i;
1760 for (i = 1; i < NCH(tree); i++)
1761 if (TYPE(CHILD(tree, i)) != DOT && TYPE(CHILD(tree, i)) != ELLIPSIS)
1762 break;
1763 return i - 1;
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001764}
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001765
Mark Dickinson1b9b5722010-07-04 18:16:43 +00001766/* import_from: ('from' ('.'* dotted_name | '.'+)
1767 * 'import' ('*' | '(' import_as_names ')' | import_as_names))
Guido van Rossum3d602e31996-07-21 02:33:56 +00001768 */
Guido van Rossum47478871996-08-21 14:32:37 +00001769static int
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001770validate_import_from(node *tree)
1771{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001772 int nch = NCH(tree);
1773 int ndots = count_from_dots(tree);
1774 int havename = (TYPE(CHILD(tree, ndots + 1)) == dotted_name);
1775 int offset = ndots + havename;
1776 int res = validate_ntype(tree, import_from)
Mark Dickinson1b9b5722010-07-04 18:16:43 +00001777 && (offset >= 1)
1778 && (nch >= 3 + offset)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001779 && validate_name(CHILD(tree, 0), "from")
1780 && (!havename || validate_dotted_name(CHILD(tree, ndots + 1)))
1781 && validate_name(CHILD(tree, offset + 1), "import");
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001782
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001783 if (res && TYPE(CHILD(tree, offset + 2)) == LPAR)
1784 res = ((nch == offset + 5)
1785 && validate_lparen(CHILD(tree, offset + 2))
1786 && validate_import_as_names(CHILD(tree, offset + 3))
1787 && validate_rparen(CHILD(tree, offset + 4)));
1788 else if (res && TYPE(CHILD(tree, offset + 2)) != STAR)
1789 res = validate_import_as_names(CHILD(tree, offset + 2));
1790 return (res);
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001791}
1792
1793
1794/* import_stmt: import_name | import_from */
1795static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001796validate_import_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001797{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001798 int nch = NCH(tree);
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001799 int res = validate_numnodes(tree, 1, "import_stmt");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001800
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001801 if (res) {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001802 int ntype = TYPE(CHILD(tree, 0));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001803
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001804 if (ntype == import_name || ntype == import_from)
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001805 res = validate_node(CHILD(tree, 0));
Fred Drakeff9ea482000-04-19 13:54:15 +00001806 else {
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001807 res = 0;
1808 err_string("illegal import_stmt child type");
Fred Drakeff9ea482000-04-19 13:54:15 +00001809 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001810 }
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001811 else if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001812 res = 0;
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001813 PyErr_Format(parser_error,
1814 "Unrecognized child node of import_stmt: %d.",
1815 TYPE(CHILD(tree, 0)));
1816 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001817 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001818}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001819
1820
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001821
1822
Guido van Rossum47478871996-08-21 14:32:37 +00001823static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001824validate_global_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001825{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001826 int j;
1827 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001828 int res = (validate_ntype(tree, global_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001829 && is_even(nch) && (nch >= 2));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001830
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00001831 if (!res && !PyErr_Occurred())
1832 err_string("illegal global statement");
1833
Guido van Rossum3d602e31996-07-21 02:33:56 +00001834 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00001835 res = (validate_name(CHILD(tree, 0), "global")
1836 && validate_ntype(CHILD(tree, 1), NAME));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001837 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00001838 res = (validate_comma(CHILD(tree, j))
1839 && validate_ntype(CHILD(tree, j + 1), NAME));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001840
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001841 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001842}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001843
1844
Guido van Rossum925e5471997-04-02 05:32:13 +00001845/* assert_stmt:
1846 *
1847 * 'assert' test [',' test]
1848 */
1849static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001850validate_assert_stmt(node *tree)
Guido van Rossum925e5471997-04-02 05:32:13 +00001851{
1852 int nch = NCH(tree);
1853 int res = (validate_ntype(tree, assert_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001854 && ((nch == 2) || (nch == 4))
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00001855 && (validate_name(CHILD(tree, 0), "assert"))
Fred Drakeff9ea482000-04-19 13:54:15 +00001856 && validate_test(CHILD(tree, 1)));
Guido van Rossum925e5471997-04-02 05:32:13 +00001857
1858 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00001859 err_string("illegal assert statement");
Guido van Rossum925e5471997-04-02 05:32:13 +00001860 if (res && (nch > 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00001861 res = (validate_comma(CHILD(tree, 2))
1862 && validate_test(CHILD(tree, 3)));
Guido van Rossum925e5471997-04-02 05:32:13 +00001863
1864 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001865}
Guido van Rossum925e5471997-04-02 05:32:13 +00001866
1867
Guido van Rossum47478871996-08-21 14:32:37 +00001868static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001869validate_while(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001870{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001871 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001872 int res = (validate_ntype(tree, while_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001873 && ((nch == 4) || (nch == 7))
1874 && validate_name(CHILD(tree, 0), "while")
1875 && validate_test(CHILD(tree, 1))
1876 && validate_colon(CHILD(tree, 2))
1877 && validate_suite(CHILD(tree, 3)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001878
Guido van Rossum3d602e31996-07-21 02:33:56 +00001879 if (res && (nch == 7))
Fred Drakeff9ea482000-04-19 13:54:15 +00001880 res = (validate_name(CHILD(tree, 4), "else")
1881 && validate_colon(CHILD(tree, 5))
1882 && validate_suite(CHILD(tree, 6)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001883
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001884 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001885}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001886
1887
Guido van Rossum47478871996-08-21 14:32:37 +00001888static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001889validate_for(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001890{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001891 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001892 int res = (validate_ntype(tree, for_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001893 && ((nch == 6) || (nch == 9))
1894 && validate_name(CHILD(tree, 0), "for")
1895 && validate_exprlist(CHILD(tree, 1))
1896 && validate_name(CHILD(tree, 2), "in")
1897 && validate_testlist(CHILD(tree, 3))
1898 && validate_colon(CHILD(tree, 4))
1899 && validate_suite(CHILD(tree, 5)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001900
Guido van Rossum3d602e31996-07-21 02:33:56 +00001901 if (res && (nch == 9))
Fred Drakeff9ea482000-04-19 13:54:15 +00001902 res = (validate_name(CHILD(tree, 6), "else")
1903 && validate_colon(CHILD(tree, 7))
1904 && validate_suite(CHILD(tree, 8)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001905
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001906 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001907}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001908
1909
Guido van Rossum3d602e31996-07-21 02:33:56 +00001910/* try_stmt:
Fred Drakeff9ea482000-04-19 13:54:15 +00001911 * 'try' ':' suite (except_clause ':' suite)+ ['else' ':' suite]
Georg Brandleee31162008-12-07 15:15:22 +00001912 ['finally' ':' suite]
Guido van Rossum3d602e31996-07-21 02:33:56 +00001913 * | 'try' ':' suite 'finally' ':' suite
1914 *
1915 */
Guido van Rossum47478871996-08-21 14:32:37 +00001916static int
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +00001917validate_try(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001918{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001919 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001920 int pos = 3;
1921 int res = (validate_ntype(tree, try_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001922 && (nch >= 6) && ((nch % 3) == 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001923
1924 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00001925 res = (validate_name(CHILD(tree, 0), "try")
1926 && validate_colon(CHILD(tree, 1))
1927 && validate_suite(CHILD(tree, 2))
1928 && validate_colon(CHILD(tree, nch - 2))
1929 && validate_suite(CHILD(tree, nch - 1)));
Fred Drake0ac9b072000-09-12 21:58:06 +00001930 else if (!PyErr_Occurred()) {
Fred Drake22269b52000-07-03 18:07:43 +00001931 const char* name = "except";
Fred Drakeff9ea482000-04-19 13:54:15 +00001932 if (TYPE(CHILD(tree, nch - 3)) != except_clause)
1933 name = STR(CHILD(tree, nch - 3));
Fred Drake0ac9b072000-09-12 21:58:06 +00001934
1935 PyErr_Format(parser_error,
1936 "Illegal number of children for try/%s node.", name);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001937 }
Georg Brandleee31162008-12-07 15:15:22 +00001938 /* Handle try/finally statement */
1939 if (res && (TYPE(CHILD(tree, pos)) == NAME) &&
1940 (strcmp(STR(CHILD(tree, pos)), "finally") == 0)) {
1941 res = (validate_numnodes(tree, 6, "try/finally")
1942 && validate_colon(CHILD(tree, 4))
1943 && validate_suite(CHILD(tree, 5)));
1944 return (res);
1945 }
1946 /* try/except statement: skip past except_clause sections */
Antoine Pitrou37d1c182009-05-14 21:54:00 +00001947 while (res && pos < nch && (TYPE(CHILD(tree, pos)) == except_clause)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001948 res = (validate_except_clause(CHILD(tree, pos))
1949 && validate_colon(CHILD(tree, pos + 1))
1950 && validate_suite(CHILD(tree, pos + 2)));
1951 pos += 3;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001952 }
Georg Brandleee31162008-12-07 15:15:22 +00001953 /* skip else clause */
Antoine Pitrou37d1c182009-05-14 21:54:00 +00001954 if (res && pos < nch && (TYPE(CHILD(tree, pos)) == NAME) &&
Georg Brandleee31162008-12-07 15:15:22 +00001955 (strcmp(STR(CHILD(tree, pos)), "else") == 0)) {
1956 res = (validate_colon(CHILD(tree, pos + 1))
1957 && validate_suite(CHILD(tree, pos + 2)));
1958 pos += 3;
1959 }
1960 if (res && pos < nch) {
1961 /* last clause must be a finally */
1962 res = (validate_name(CHILD(tree, pos), "finally")
1963 && validate_numnodes(tree, pos + 3, "try/except/finally")
1964 && validate_colon(CHILD(tree, pos + 1))
1965 && validate_suite(CHILD(tree, pos + 2)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001966 }
1967 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001968}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001969
1970
Guido van Rossum47478871996-08-21 14:32:37 +00001971static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001972validate_except_clause(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001973{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001974 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001975 int res = (validate_ntype(tree, except_clause)
Fred Drakeff9ea482000-04-19 13:54:15 +00001976 && ((nch == 1) || (nch == 2) || (nch == 4))
1977 && validate_name(CHILD(tree, 0), "except"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001978
Guido van Rossum3d602e31996-07-21 02:33:56 +00001979 if (res && (nch > 1))
Fred Drakeff9ea482000-04-19 13:54:15 +00001980 res = validate_test(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001981 if (res && (nch == 4))
Guido van Rossumb940e112007-01-10 16:19:56 +00001982 res = (validate_name(CHILD(tree, 2), "as")
1983 && validate_ntype(CHILD(tree, 3), NAME));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001984
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001985 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001986}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001987
1988
Guido van Rossum47478871996-08-21 14:32:37 +00001989static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001990validate_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001991{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001992 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001993 int res = validate_ntype(tree, test) && is_odd(nch);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001994
Guido van Rossum3d602e31996-07-21 02:33:56 +00001995 if (res && (TYPE(CHILD(tree, 0)) == lambdef))
Fred Drakeff9ea482000-04-19 13:54:15 +00001996 res = ((nch == 1)
1997 && validate_lambdef(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001998 else if (res) {
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00001999 res = validate_or_test(CHILD(tree, 0));
2000 res = (res && (nch == 1 || (nch == 5 &&
2001 validate_name(CHILD(tree, 1), "if") &&
2002 validate_or_test(CHILD(tree, 2)) &&
2003 validate_name(CHILD(tree, 3), "else") &&
2004 validate_test(CHILD(tree, 4)))));
2005 }
2006 return (res);
2007}
2008
2009static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00002010validate_test_nocond(node *tree)
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002011{
2012 int nch = NCH(tree);
Nick Coghlan650f0d02007-04-15 12:05:43 +00002013 int res = validate_ntype(tree, test_nocond) && (nch == 1);
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002014
Nick Coghlan650f0d02007-04-15 12:05:43 +00002015 if (res && (TYPE(CHILD(tree, 0)) == lambdef_nocond))
2016 res = (validate_lambdef_nocond(CHILD(tree, 0)));
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002017 else if (res) {
2018 res = (validate_or_test(CHILD(tree, 0)));
2019 }
2020 return (res);
2021}
2022
2023static int
2024validate_or_test(node *tree)
2025{
2026 int nch = NCH(tree);
2027 int res = validate_ntype(tree, or_test) && is_odd(nch);
2028
2029 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002030 int pos;
2031 res = validate_and_test(CHILD(tree, 0));
2032 for (pos = 1; res && (pos < nch); pos += 2)
2033 res = (validate_name(CHILD(tree, pos), "or")
2034 && validate_and_test(CHILD(tree, pos + 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002035 }
2036 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002037}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002038
2039
Guido van Rossum47478871996-08-21 14:32:37 +00002040static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002041validate_and_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002042{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002043 int pos;
2044 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002045 int res = (validate_ntype(tree, and_test)
Fred Drakeff9ea482000-04-19 13:54:15 +00002046 && is_odd(nch)
2047 && validate_not_test(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002048
Guido van Rossum3d602e31996-07-21 02:33:56 +00002049 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002050 res = (validate_name(CHILD(tree, pos), "and")
2051 && validate_not_test(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002052
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002053 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002054}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002055
2056
Guido van Rossum47478871996-08-21 14:32:37 +00002057static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002058validate_not_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002059{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002060 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002061 int res = validate_ntype(tree, not_test) && ((nch == 1) || (nch == 2));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002062
Guido van Rossum3d602e31996-07-21 02:33:56 +00002063 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002064 if (nch == 2)
2065 res = (validate_name(CHILD(tree, 0), "not")
2066 && validate_not_test(CHILD(tree, 1)));
2067 else if (nch == 1)
2068 res = validate_comparison(CHILD(tree, 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002069 }
2070 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002071}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002072
2073
Guido van Rossum47478871996-08-21 14:32:37 +00002074static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002075validate_comparison(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002076{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002077 int pos;
2078 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002079 int res = (validate_ntype(tree, comparison)
Fred Drakeff9ea482000-04-19 13:54:15 +00002080 && is_odd(nch)
Guido van Rossum0368b722007-05-11 16:50:42 +00002081 && validate_star_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002082
Guido van Rossum3d602e31996-07-21 02:33:56 +00002083 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002084 res = (validate_comp_op(CHILD(tree, pos))
Guido van Rossum0368b722007-05-11 16:50:42 +00002085 && validate_star_expr(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002086
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002087 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002088}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002089
2090
Guido van Rossum47478871996-08-21 14:32:37 +00002091static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002092validate_comp_op(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002093{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002094 int res = 0;
2095 int nch = NCH(tree);
2096
Guido van Rossum3d602e31996-07-21 02:33:56 +00002097 if (!validate_ntype(tree, comp_op))
Fred Drakeff9ea482000-04-19 13:54:15 +00002098 return (0);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002099 if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002100 /*
2101 * Only child will be a terminal with a well-defined symbolic name
2102 * or a NAME with a string of either 'is' or 'in'
2103 */
2104 tree = CHILD(tree, 0);
2105 switch (TYPE(tree)) {
2106 case LESS:
2107 case GREATER:
2108 case EQEQUAL:
2109 case EQUAL:
2110 case LESSEQUAL:
2111 case GREATEREQUAL:
2112 case NOTEQUAL:
2113 res = 1;
2114 break;
2115 case NAME:
2116 res = ((strcmp(STR(tree), "in") == 0)
2117 || (strcmp(STR(tree), "is") == 0));
2118 if (!res) {
Fred Drake0ac9b072000-09-12 21:58:06 +00002119 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +00002120 "illegal operator '%s'", STR(tree));
Fred Drakeff9ea482000-04-19 13:54:15 +00002121 }
2122 break;
2123 default:
Fred Drake661ea262000-10-24 19:57:45 +00002124 err_string("illegal comparison operator type");
Fred Drakeff9ea482000-04-19 13:54:15 +00002125 break;
2126 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002127 }
Guido van Rossuma376cc51996-12-05 23:43:35 +00002128 else if ((res = validate_numnodes(tree, 2, "comp_op")) != 0) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002129 res = (validate_ntype(CHILD(tree, 0), NAME)
2130 && validate_ntype(CHILD(tree, 1), NAME)
2131 && (((strcmp(STR(CHILD(tree, 0)), "is") == 0)
2132 && (strcmp(STR(CHILD(tree, 1)), "not") == 0))
2133 || ((strcmp(STR(CHILD(tree, 0)), "not") == 0)
2134 && (strcmp(STR(CHILD(tree, 1)), "in") == 0))));
2135 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00002136 err_string("unknown comparison operator");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002137 }
2138 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002139}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002140
2141
Guido van Rossum47478871996-08-21 14:32:37 +00002142static int
Guido van Rossum0368b722007-05-11 16:50:42 +00002143validate_star_expr(node *tree)
2144{
2145 int res = validate_ntype(tree, star_expr);
2146 if (!res) return res;
2147 if (NCH(tree) == 2) {
2148 return validate_ntype(CHILD(tree, 0), STAR) && \
2149 validate_expr(CHILD(tree, 1));
2150 } else {
2151 return validate_expr(CHILD(tree, 0));
2152 }
2153}
2154
2155
2156static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002157validate_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002158{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002159 int j;
2160 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002161 int res = (validate_ntype(tree, expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002162 && is_odd(nch)
2163 && validate_xor_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002164
Guido van Rossum3d602e31996-07-21 02:33:56 +00002165 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002166 res = (validate_xor_expr(CHILD(tree, j))
2167 && validate_vbar(CHILD(tree, j - 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002168
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002169 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002170}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002171
2172
Guido van Rossum47478871996-08-21 14:32:37 +00002173static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002174validate_xor_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002175{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002176 int j;
2177 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002178 int res = (validate_ntype(tree, xor_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002179 && is_odd(nch)
2180 && validate_and_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002181
Guido van Rossum3d602e31996-07-21 02:33:56 +00002182 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002183 res = (validate_circumflex(CHILD(tree, j - 1))
2184 && validate_and_expr(CHILD(tree, j)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002185
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002186 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002187}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002188
2189
Guido van Rossum47478871996-08-21 14:32:37 +00002190static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002191validate_and_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002192{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002193 int pos;
2194 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002195 int res = (validate_ntype(tree, and_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002196 && is_odd(nch)
2197 && validate_shift_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002198
Guido van Rossum3d602e31996-07-21 02:33:56 +00002199 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002200 res = (validate_ampersand(CHILD(tree, pos))
2201 && validate_shift_expr(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002202
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002203 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002204}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002205
2206
2207static int
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +00002208validate_chain_two_ops(node *tree, int (*termvalid)(node *), int op1, int op2)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002209 {
2210 int pos = 1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002211 int nch = NCH(tree);
2212 int res = (is_odd(nch)
Fred Drakeff9ea482000-04-19 13:54:15 +00002213 && (*termvalid)(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002214
Guido van Rossum3d602e31996-07-21 02:33:56 +00002215 for ( ; res && (pos < nch); pos += 2) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002216 if (TYPE(CHILD(tree, pos)) != op1)
2217 res = validate_ntype(CHILD(tree, pos), op2);
2218 if (res)
2219 res = (*termvalid)(CHILD(tree, pos + 1));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002220 }
2221 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002222}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002223
2224
Guido van Rossum47478871996-08-21 14:32:37 +00002225static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002226validate_shift_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002227{
2228 return (validate_ntype(tree, shift_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002229 && validate_chain_two_ops(tree, validate_arith_expr,
2230 LEFTSHIFT, RIGHTSHIFT));
2231}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002232
2233
Guido van Rossum47478871996-08-21 14:32:37 +00002234static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002235validate_arith_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002236{
2237 return (validate_ntype(tree, arith_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002238 && validate_chain_two_ops(tree, validate_term, PLUS, MINUS));
2239}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002240
2241
Guido van Rossum47478871996-08-21 14:32:37 +00002242static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002243validate_term(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002244{
2245 int pos = 1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002246 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002247 int res = (validate_ntype(tree, term)
Fred Drakeff9ea482000-04-19 13:54:15 +00002248 && is_odd(nch)
2249 && validate_factor(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002250
Guido van Rossum3d602e31996-07-21 02:33:56 +00002251 for ( ; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002252 res = (((TYPE(CHILD(tree, pos)) == STAR)
2253 || (TYPE(CHILD(tree, pos)) == SLASH)
Michael W. Hudson5e83b7a2003-01-29 14:20:23 +00002254 || (TYPE(CHILD(tree, pos)) == DOUBLESLASH)
Fred Drakeff9ea482000-04-19 13:54:15 +00002255 || (TYPE(CHILD(tree, pos)) == PERCENT))
2256 && validate_factor(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002257
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002258 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002259}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002260
2261
Guido van Rossum3d602e31996-07-21 02:33:56 +00002262/* factor:
2263 *
2264 * factor: ('+'|'-'|'~') factor | power
2265 */
Guido van Rossum47478871996-08-21 14:32:37 +00002266static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002267validate_factor(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002268{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002269 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002270 int res = (validate_ntype(tree, factor)
Fred Drakeff9ea482000-04-19 13:54:15 +00002271 && (((nch == 2)
2272 && ((TYPE(CHILD(tree, 0)) == PLUS)
2273 || (TYPE(CHILD(tree, 0)) == MINUS)
2274 || (TYPE(CHILD(tree, 0)) == TILDE))
2275 && validate_factor(CHILD(tree, 1)))
2276 || ((nch == 1)
2277 && validate_power(CHILD(tree, 0)))));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002278 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002279}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002280
2281
Guido van Rossum3d602e31996-07-21 02:33:56 +00002282/* power:
2283 *
2284 * power: atom trailer* ('**' factor)*
2285 */
Guido van Rossum47478871996-08-21 14:32:37 +00002286static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002287validate_power(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002288{
2289 int pos = 1;
2290 int nch = NCH(tree);
2291 int res = (validate_ntype(tree, power) && (nch >= 1)
Fred Drakeff9ea482000-04-19 13:54:15 +00002292 && validate_atom(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002293
2294 while (res && (pos < nch) && (TYPE(CHILD(tree, pos)) == trailer))
Fred Drakeff9ea482000-04-19 13:54:15 +00002295 res = validate_trailer(CHILD(tree, pos++));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002296 if (res && (pos < nch)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002297 if (!is_even(nch - pos)) {
Fred Drake661ea262000-10-24 19:57:45 +00002298 err_string("illegal number of nodes for 'power'");
Fred Drakeff9ea482000-04-19 13:54:15 +00002299 return (0);
2300 }
2301 for ( ; res && (pos < (nch - 1)); pos += 2)
2302 res = (validate_doublestar(CHILD(tree, pos))
2303 && validate_factor(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002304 }
2305 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002306}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002307
2308
Guido van Rossum47478871996-08-21 14:32:37 +00002309static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002310validate_atom(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002311{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002312 int pos;
2313 int nch = NCH(tree);
Fred Drakecff283c2000-08-21 22:24:43 +00002314 int res = validate_ntype(tree, atom);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002315
Fred Drakecff283c2000-08-21 22:24:43 +00002316 if (res && nch < 1)
2317 res = validate_numnodes(tree, nch+1, "atom");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002318 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002319 switch (TYPE(CHILD(tree, 0))) {
2320 case LPAR:
2321 res = ((nch <= 3)
2322 && (validate_rparen(CHILD(tree, nch - 1))));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002323
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00002324 if (res && (nch == 3)) {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002325 if (TYPE(CHILD(tree, 1))==yield_expr)
2326 res = validate_yield_expr(CHILD(tree, 1));
2327 else
2328 res = validate_testlist_comp(CHILD(tree, 1));
2329 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002330 break;
2331 case LSQB:
Fred Drakecff283c2000-08-21 22:24:43 +00002332 if (nch == 2)
2333 res = validate_ntype(CHILD(tree, 1), RSQB);
2334 else if (nch == 3)
Nick Coghlan650f0d02007-04-15 12:05:43 +00002335 res = (validate_testlist_comp(CHILD(tree, 1))
Fred Drakecff283c2000-08-21 22:24:43 +00002336 && validate_ntype(CHILD(tree, 2), RSQB));
2337 else {
2338 res = 0;
2339 err_string("illegal list display atom");
2340 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002341 break;
2342 case LBRACE:
2343 res = ((nch <= 3)
2344 && validate_ntype(CHILD(tree, nch - 1), RBRACE));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002345
Fred Drakeff9ea482000-04-19 13:54:15 +00002346 if (res && (nch == 3))
Nick Coghlan650f0d02007-04-15 12:05:43 +00002347 res = validate_dictorsetmaker(CHILD(tree, 1));
Fred Drakeff9ea482000-04-19 13:54:15 +00002348 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00002349 case NAME:
2350 case NUMBER:
2351 res = (nch == 1);
2352 break;
2353 case STRING:
2354 for (pos = 1; res && (pos < nch); ++pos)
2355 res = validate_ntype(CHILD(tree, pos), STRING);
2356 break;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002357 case DOT:
2358 res = (nch == 3 &&
2359 validate_ntype(CHILD(tree, 1), DOT) &&
2360 validate_ntype(CHILD(tree, 2), DOT));
2361 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00002362 default:
2363 res = 0;
2364 break;
2365 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002366 }
2367 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002368}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002369
2370
Nick Coghlan650f0d02007-04-15 12:05:43 +00002371/* testlist_comp:
2372 * test ( comp_for | (',' test)* [','] )
Fred Drake85bf3bb2000-08-23 15:35:26 +00002373 */
Fred Drakecff283c2000-08-21 22:24:43 +00002374static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00002375validate_testlist_comp(node *tree)
Fred Drakecff283c2000-08-21 22:24:43 +00002376{
2377 int nch = NCH(tree);
2378 int ok = nch;
2379
2380 if (nch == 0)
Nick Coghlan650f0d02007-04-15 12:05:43 +00002381 err_string("missing child nodes of testlist_comp");
2382 else {
Fred Drakecff283c2000-08-21 22:24:43 +00002383 ok = validate_test(CHILD(tree, 0));
Nick Coghlan650f0d02007-04-15 12:05:43 +00002384 }
Fred Drakecff283c2000-08-21 22:24:43 +00002385
2386 /*
Nick Coghlan650f0d02007-04-15 12:05:43 +00002387 * comp_for | (',' test)* [',']
Fred Drakecff283c2000-08-21 22:24:43 +00002388 */
Nick Coghlan650f0d02007-04-15 12:05:43 +00002389 if (nch == 2 && TYPE(CHILD(tree, 1)) == comp_for)
2390 ok = validate_comp_for(CHILD(tree, 1));
Fred Drakecff283c2000-08-21 22:24:43 +00002391 else {
2392 /* (',' test)* [','] */
2393 int i = 1;
2394 while (ok && nch - i >= 2) {
2395 ok = (validate_comma(CHILD(tree, i))
2396 && validate_test(CHILD(tree, i+1)));
Fred Drake85bf3bb2000-08-23 15:35:26 +00002397 i += 2;
Fred Drakecff283c2000-08-21 22:24:43 +00002398 }
Fred Drake85bf3bb2000-08-23 15:35:26 +00002399 if (ok && i == nch-1)
2400 ok = validate_comma(CHILD(tree, i));
2401 else if (i != nch) {
2402 ok = 0;
Nick Coghlan650f0d02007-04-15 12:05:43 +00002403 err_string("illegal trailing nodes for testlist_comp");
Raymond Hettinger354433a2004-05-19 08:20:33 +00002404 }
2405 }
2406 return ok;
2407}
Fred Drakecff283c2000-08-21 22:24:43 +00002408
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002409/* decorator:
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002410 * '@' dotted_name [ '(' [arglist] ')' ] NEWLINE
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002411 */
2412static int
2413validate_decorator(node *tree)
2414{
2415 int ok;
2416 int nch = NCH(tree);
2417 ok = (validate_ntype(tree, decorator) &&
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002418 (nch == 3 || nch == 5 || nch == 6) &&
2419 validate_at(CHILD(tree, 0)) &&
2420 validate_dotted_name(CHILD(tree, 1)) &&
2421 validate_newline(RCHILD(tree, -1)));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002422
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002423 if (ok && nch != 3) {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002424 ok = (validate_lparen(CHILD(tree, 2)) &&
2425 validate_rparen(RCHILD(tree, -2)));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002426
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002427 if (ok && nch == 6)
2428 ok = validate_arglist(CHILD(tree, 3));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002429 }
2430
2431 return ok;
2432}
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002433
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002434/* decorators:
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002435 * decorator+
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002436 */
2437static int
2438validate_decorators(node *tree)
2439{
Guido van Rossumfc158e22007-11-15 19:17:28 +00002440 int i, nch, ok;
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002441 nch = NCH(tree);
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002442 ok = validate_ntype(tree, decorators) && nch >= 1;
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002443
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002444 for (i = 0; ok && i < nch; ++i)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002445 ok = validate_decorator(CHILD(tree, i));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002446
2447 return ok;
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002448}
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002449
Georg Brandl0c315622009-05-25 21:10:36 +00002450/* with_item:
2451 * test ['as' expr]
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002452 */
2453static int
Georg Brandl0c315622009-05-25 21:10:36 +00002454validate_with_item(node *tree)
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002455{
2456 int nch = NCH(tree);
Georg Brandl0c315622009-05-25 21:10:36 +00002457 int ok = (validate_ntype(tree, with_item)
2458 && (nch == 1 || nch == 3)
2459 && validate_test(CHILD(tree, 0)));
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002460 if (ok && nch == 3)
Georg Brandl0c315622009-05-25 21:10:36 +00002461 ok = (validate_name(CHILD(tree, 1), "as")
2462 && validate_expr(CHILD(tree, 2)));
2463 return ok;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002464}
2465
Georg Brandl0c315622009-05-25 21:10:36 +00002466/* with_stmt:
2467 * 0 1 ... -2 -1
2468 * 'with' with_item (',' with_item)* ':' suite
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002469 */
2470static int
2471validate_with_stmt(node *tree)
2472{
Georg Brandl0c315622009-05-25 21:10:36 +00002473 int i;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002474 int nch = NCH(tree);
2475 int ok = (validate_ntype(tree, with_stmt)
Georg Brandl0c315622009-05-25 21:10:36 +00002476 && (nch % 2 == 0)
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002477 && validate_name(CHILD(tree, 0), "with")
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002478 && validate_colon(RCHILD(tree, -2))
2479 && validate_suite(RCHILD(tree, -1)));
Georg Brandl0c315622009-05-25 21:10:36 +00002480 for (i = 1; ok && i < nch - 2; i += 2)
2481 ok = validate_with_item(CHILD(tree, i));
2482 return ok;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002483}
2484
Guido van Rossum3d602e31996-07-21 02:33:56 +00002485/* funcdef:
Guido van Rossumfc158e22007-11-15 19:17:28 +00002486 *
Guido van Rossumd59da4b2007-05-22 18:11:13 +00002487 * -5 -4 -3 -2 -1
2488 * 'def' NAME parameters ':' suite
Guido van Rossum3d602e31996-07-21 02:33:56 +00002489 */
Guido van Rossum47478871996-08-21 14:32:37 +00002490static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002491validate_funcdef(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002492{
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002493 int nch = NCH(tree);
2494 int ok = (validate_ntype(tree, funcdef)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002495 && (nch == 5)
2496 && validate_name(RCHILD(tree, -5), "def")
2497 && validate_ntype(RCHILD(tree, -4), NAME)
2498 && validate_colon(RCHILD(tree, -2))
2499 && validate_parameters(RCHILD(tree, -3))
2500 && validate_suite(RCHILD(tree, -1)));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002501 return ok;
Fred Drakeff9ea482000-04-19 13:54:15 +00002502}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002503
2504
Guido van Rossumd59da4b2007-05-22 18:11:13 +00002505/* decorated
2506 * decorators (classdef | funcdef)
2507 */
2508static int
2509validate_decorated(node *tree)
2510{
Mark Dickinsona441e642010-07-04 16:39:03 +00002511 int nch = NCH(tree);
2512 int ok = (validate_ntype(tree, decorated)
2513 && (nch == 2)
2514 && validate_decorators(RCHILD(tree, -2)));
2515 if (TYPE(RCHILD(tree, -1)) == funcdef)
2516 ok = ok && validate_funcdef(RCHILD(tree, -1));
2517 else
2518 ok = ok && validate_class(RCHILD(tree, -1));
2519 return ok;
Guido van Rossumd59da4b2007-05-22 18:11:13 +00002520}
2521
Guido van Rossum47478871996-08-21 14:32:37 +00002522static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002523validate_lambdef(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002524{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002525 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002526 int res = (validate_ntype(tree, lambdef)
Fred Drakeff9ea482000-04-19 13:54:15 +00002527 && ((nch == 3) || (nch == 4))
2528 && validate_name(CHILD(tree, 0), "lambda")
2529 && validate_colon(CHILD(tree, nch - 2))
2530 && validate_test(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002531
Guido van Rossum3d602e31996-07-21 02:33:56 +00002532 if (res && (nch == 4))
Fred Drakeff9ea482000-04-19 13:54:15 +00002533 res = validate_varargslist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002534 else if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +00002535 (void) validate_numnodes(tree, 3, "lambdef");
Guido van Rossum3d602e31996-07-21 02:33:56 +00002536
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002537 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002538}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002539
2540
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002541static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00002542validate_lambdef_nocond(node *tree)
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002543{
2544 int nch = NCH(tree);
Nick Coghlan650f0d02007-04-15 12:05:43 +00002545 int res = (validate_ntype(tree, lambdef_nocond)
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002546 && ((nch == 3) || (nch == 4))
2547 && validate_name(CHILD(tree, 0), "lambda")
2548 && validate_colon(CHILD(tree, nch - 2))
2549 && validate_test(CHILD(tree, nch - 1)));
2550
2551 if (res && (nch == 4))
2552 res = validate_varargslist(CHILD(tree, 1));
2553 else if (!res && !PyErr_Occurred())
Nick Coghlan650f0d02007-04-15 12:05:43 +00002554 (void) validate_numnodes(tree, 3, "lambdef_nocond");
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002555
2556 return (res);
2557}
2558
2559
Guido van Rossum3d602e31996-07-21 02:33:56 +00002560/* arglist:
2561 *
Fred Drakecff283c2000-08-21 22:24:43 +00002562 * (argument ',')* (argument [','] | '*' test [',' '**' test] | '**' test)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002563 */
Guido van Rossum47478871996-08-21 14:32:37 +00002564static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002565validate_arglist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002566{
Fred Drakee7ab64e2000-04-25 04:14:46 +00002567 int nch = NCH(tree);
Fred Drakecff283c2000-08-21 22:24:43 +00002568 int i = 0;
2569 int ok = 1;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002570
2571 if (nch <= 0)
2572 /* raise the right error from having an invalid number of children */
2573 return validate_numnodes(tree, nch + 1, "arglist");
2574
Raymond Hettinger354433a2004-05-19 08:20:33 +00002575 if (nch > 1) {
2576 for (i=0; i<nch; i++) {
2577 if (TYPE(CHILD(tree, i)) == argument) {
2578 node *ch = CHILD(tree, i);
Nick Coghlan650f0d02007-04-15 12:05:43 +00002579 if (NCH(ch) == 2 && TYPE(CHILD(ch, 1)) == comp_for) {
Raymond Hettinger354433a2004-05-19 08:20:33 +00002580 err_string("need '(', ')' for generator expression");
2581 return 0;
2582 }
2583 }
2584 }
2585 }
2586
Fred Drakecff283c2000-08-21 22:24:43 +00002587 while (ok && nch-i >= 2) {
2588 /* skip leading (argument ',') */
2589 ok = (validate_argument(CHILD(tree, i))
2590 && validate_comma(CHILD(tree, i+1)));
2591 if (ok)
2592 i += 2;
2593 else
2594 PyErr_Clear();
2595 }
2596 ok = 1;
2597 if (nch-i > 0) {
2598 /*
2599 * argument | '*' test [',' '**' test] | '**' test
Fred Drakee7ab64e2000-04-25 04:14:46 +00002600 */
Fred Drakecff283c2000-08-21 22:24:43 +00002601 int sym = TYPE(CHILD(tree, i));
2602
2603 if (sym == argument) {
2604 ok = validate_argument(CHILD(tree, i));
2605 if (ok && i+1 != nch) {
2606 err_string("illegal arglist specification"
2607 " (extra stuff on end)");
2608 ok = 0;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002609 }
Fred Drakecff283c2000-08-21 22:24:43 +00002610 }
2611 else if (sym == STAR) {
2612 ok = validate_star(CHILD(tree, i));
2613 if (ok && (nch-i == 2))
2614 ok = validate_test(CHILD(tree, i+1));
2615 else if (ok && (nch-i == 5))
2616 ok = (validate_test(CHILD(tree, i+1))
2617 && validate_comma(CHILD(tree, i+2))
2618 && validate_doublestar(CHILD(tree, i+3))
2619 && validate_test(CHILD(tree, i+4)));
Fred Drakee7ab64e2000-04-25 04:14:46 +00002620 else {
Fred Drakecff283c2000-08-21 22:24:43 +00002621 err_string("illegal use of '*' in arglist");
2622 ok = 0;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002623 }
2624 }
Fred Drakecff283c2000-08-21 22:24:43 +00002625 else if (sym == DOUBLESTAR) {
2626 if (nch-i == 2)
2627 ok = (validate_doublestar(CHILD(tree, i))
2628 && validate_test(CHILD(tree, i+1)));
2629 else {
2630 err_string("illegal use of '**' in arglist");
2631 ok = 0;
2632 }
2633 }
2634 else {
2635 err_string("illegal arglist specification");
2636 ok = 0;
2637 }
Fred Drakee7ab64e2000-04-25 04:14:46 +00002638 }
2639 return (ok);
Fred Drakeff9ea482000-04-19 13:54:15 +00002640}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002641
2642
2643
2644/* argument:
2645 *
Nick Coghlan650f0d02007-04-15 12:05:43 +00002646 * [test '='] test [comp_for]
Guido van Rossum3d602e31996-07-21 02:33:56 +00002647 */
Guido van Rossum47478871996-08-21 14:32:37 +00002648static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002649validate_argument(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002650{
2651 int nch = NCH(tree);
2652 int res = (validate_ntype(tree, argument)
Raymond Hettinger354433a2004-05-19 08:20:33 +00002653 && ((nch == 1) || (nch == 2) || (nch == 3))
Fred Drakeff9ea482000-04-19 13:54:15 +00002654 && validate_test(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002655
Raymond Hettinger354433a2004-05-19 08:20:33 +00002656 if (res && (nch == 2))
Nick Coghlan650f0d02007-04-15 12:05:43 +00002657 res = validate_comp_for(CHILD(tree, 1));
Raymond Hettinger354433a2004-05-19 08:20:33 +00002658 else if (res && (nch == 3))
Fred Drakeff9ea482000-04-19 13:54:15 +00002659 res = (validate_equal(CHILD(tree, 1))
2660 && validate_test(CHILD(tree, 2)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002661
2662 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002663}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002664
2665
2666
2667/* trailer:
2668 *
Guido van Rossum47478871996-08-21 14:32:37 +00002669 * '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME
Guido van Rossum3d602e31996-07-21 02:33:56 +00002670 */
Guido van Rossum47478871996-08-21 14:32:37 +00002671static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002672validate_trailer(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002673{
2674 int nch = NCH(tree);
2675 int res = validate_ntype(tree, trailer) && ((nch == 2) || (nch == 3));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002676
2677 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002678 switch (TYPE(CHILD(tree, 0))) {
2679 case LPAR:
2680 res = validate_rparen(CHILD(tree, nch - 1));
2681 if (res && (nch == 3))
2682 res = validate_arglist(CHILD(tree, 1));
2683 break;
2684 case LSQB:
2685 res = (validate_numnodes(tree, 3, "trailer")
2686 && validate_subscriptlist(CHILD(tree, 1))
2687 && validate_ntype(CHILD(tree, 2), RSQB));
2688 break;
2689 case DOT:
2690 res = (validate_numnodes(tree, 2, "trailer")
2691 && validate_ntype(CHILD(tree, 1), NAME));
2692 break;
2693 default:
2694 res = 0;
2695 break;
2696 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002697 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002698 else {
2699 (void) validate_numnodes(tree, 2, "trailer");
2700 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002701 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002702}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002703
2704
Guido van Rossum47478871996-08-21 14:32:37 +00002705/* subscriptlist:
2706 *
2707 * subscript (',' subscript)* [',']
2708 */
2709static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002710validate_subscriptlist(node *tree)
Guido van Rossum47478871996-08-21 14:32:37 +00002711{
2712 return (validate_repeating_list(tree, subscriptlist,
Fred Drakeff9ea482000-04-19 13:54:15 +00002713 validate_subscript, "subscriptlist"));
2714}
Guido van Rossum47478871996-08-21 14:32:37 +00002715
2716
Guido van Rossum3d602e31996-07-21 02:33:56 +00002717/* subscript:
2718 *
Guido van Rossum47478871996-08-21 14:32:37 +00002719 * '.' '.' '.' | test | [test] ':' [test] [sliceop]
Guido van Rossum3d602e31996-07-21 02:33:56 +00002720 */
Guido van Rossum47478871996-08-21 14:32:37 +00002721static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002722validate_subscript(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002723{
Guido van Rossum47478871996-08-21 14:32:37 +00002724 int offset = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002725 int nch = NCH(tree);
Guido van Rossum47478871996-08-21 14:32:37 +00002726 int res = validate_ntype(tree, subscript) && (nch >= 1) && (nch <= 4);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002727
Guido van Rossum47478871996-08-21 14:32:37 +00002728 if (!res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002729 if (!PyErr_Occurred())
2730 err_string("invalid number of arguments for subscript node");
2731 return (0);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002732 }
Guido van Rossum47478871996-08-21 14:32:37 +00002733 if (TYPE(CHILD(tree, 0)) == DOT)
Fred Drakeff9ea482000-04-19 13:54:15 +00002734 /* take care of ('.' '.' '.') possibility */
2735 return (validate_numnodes(tree, 3, "subscript")
2736 && validate_dot(CHILD(tree, 0))
2737 && validate_dot(CHILD(tree, 1))
2738 && validate_dot(CHILD(tree, 2)));
Guido van Rossum47478871996-08-21 14:32:37 +00002739 if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002740 if (TYPE(CHILD(tree, 0)) == test)
2741 res = validate_test(CHILD(tree, 0));
2742 else
2743 res = validate_colon(CHILD(tree, 0));
2744 return (res);
Guido van Rossum47478871996-08-21 14:32:37 +00002745 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002746 /* Must be [test] ':' [test] [sliceop],
2747 * but at least one of the optional components will
2748 * be present, but we don't know which yet.
Guido van Rossum47478871996-08-21 14:32:37 +00002749 */
2750 if ((TYPE(CHILD(tree, 0)) != COLON) || (nch == 4)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002751 res = validate_test(CHILD(tree, 0));
2752 offset = 1;
Guido van Rossum47478871996-08-21 14:32:37 +00002753 }
2754 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002755 res = validate_colon(CHILD(tree, offset));
Guido van Rossum47478871996-08-21 14:32:37 +00002756 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002757 int rem = nch - ++offset;
2758 if (rem) {
2759 if (TYPE(CHILD(tree, offset)) == test) {
2760 res = validate_test(CHILD(tree, offset));
2761 ++offset;
2762 --rem;
2763 }
2764 if (res && rem)
2765 res = validate_sliceop(CHILD(tree, offset));
2766 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002767 }
2768 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002769}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002770
2771
Guido van Rossum47478871996-08-21 14:32:37 +00002772static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002773validate_sliceop(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002774{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002775 int nch = NCH(tree);
Guido van Rossum47478871996-08-21 14:32:37 +00002776 int res = ((nch == 1) || validate_numnodes(tree, 2, "sliceop"))
Fred Drakeff9ea482000-04-19 13:54:15 +00002777 && validate_ntype(tree, sliceop);
Guido van Rossum47478871996-08-21 14:32:37 +00002778 if (!res && !PyErr_Occurred()) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002779 res = validate_numnodes(tree, 1, "sliceop");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002780 }
Guido van Rossum47478871996-08-21 14:32:37 +00002781 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002782 res = validate_colon(CHILD(tree, 0));
Guido van Rossum47478871996-08-21 14:32:37 +00002783 if (res && (nch == 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00002784 res = validate_test(CHILD(tree, 1));
Guido van Rossum47478871996-08-21 14:32:37 +00002785
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002786 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002787}
Guido van Rossum47478871996-08-21 14:32:37 +00002788
2789
2790static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002791validate_exprlist(node *tree)
Guido van Rossum47478871996-08-21 14:32:37 +00002792{
2793 return (validate_repeating_list(tree, exprlist,
Guido van Rossum0368b722007-05-11 16:50:42 +00002794 validate_star_expr, "exprlist"));
Fred Drakeff9ea482000-04-19 13:54:15 +00002795}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002796
2797
Guido van Rossum47478871996-08-21 14:32:37 +00002798static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00002799validate_dictorsetmaker(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002800{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002801 int nch = NCH(tree);
Nick Coghlan650f0d02007-04-15 12:05:43 +00002802 int res = (validate_ntype(tree, dictorsetmaker)
Fred Drakeff9ea482000-04-19 13:54:15 +00002803 && (nch >= 3)
2804 && validate_test(CHILD(tree, 0))
2805 && validate_colon(CHILD(tree, 1))
2806 && validate_test(CHILD(tree, 2)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002807
Guido van Rossum3d602e31996-07-21 02:33:56 +00002808 if (res && ((nch % 4) == 0))
Fred Drakeff9ea482000-04-19 13:54:15 +00002809 res = validate_comma(CHILD(tree, --nch));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002810 else if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002811 res = ((nch % 4) == 3);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002812
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002813 if (res && (nch > 3)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002814 int pos = 3;
2815 /* ( ',' test ':' test )* */
2816 while (res && (pos < nch)) {
2817 res = (validate_comma(CHILD(tree, pos))
2818 && validate_test(CHILD(tree, pos + 1))
2819 && validate_colon(CHILD(tree, pos + 2))
2820 && validate_test(CHILD(tree, pos + 3)));
2821 pos += 4;
2822 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002823 }
2824 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002825}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002826
2827
Guido van Rossum47478871996-08-21 14:32:37 +00002828static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002829validate_eval_input(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002830{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002831 int pos;
2832 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002833 int res = (validate_ntype(tree, eval_input)
Fred Drakeff9ea482000-04-19 13:54:15 +00002834 && (nch >= 2)
2835 && validate_testlist(CHILD(tree, 0))
2836 && validate_ntype(CHILD(tree, nch - 1), ENDMARKER));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002837
Guido van Rossum3d602e31996-07-21 02:33:56 +00002838 for (pos = 1; res && (pos < (nch - 1)); ++pos)
Fred Drakeff9ea482000-04-19 13:54:15 +00002839 res = validate_ntype(CHILD(tree, pos), NEWLINE);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002840
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002841 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002842}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002843
2844
Guido van Rossum47478871996-08-21 14:32:37 +00002845static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002846validate_node(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002847{
Fred Drakeff9ea482000-04-19 13:54:15 +00002848 int nch = 0; /* num. children on current node */
2849 int res = 1; /* result value */
2850 node* next = 0; /* node to process after this one */
Guido van Rossum3d602e31996-07-21 02:33:56 +00002851
Martin v. Löwisb28f6e72001-06-23 19:55:38 +00002852 while (res && (tree != 0)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002853 nch = NCH(tree);
2854 next = 0;
2855 switch (TYPE(tree)) {
2856 /*
2857 * Definition nodes.
2858 */
2859 case funcdef:
2860 res = validate_funcdef(tree);
2861 break;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002862 case with_stmt:
2863 res = validate_with_stmt(tree);
2864 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00002865 case classdef:
2866 res = validate_class(tree);
2867 break;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002868 case decorated:
2869 res = validate_decorated(tree);
2870 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00002871 /*
2872 * "Trivial" parse tree nodes.
2873 * (Why did I call these trivial?)
2874 */
2875 case stmt:
2876 res = validate_stmt(tree);
2877 break;
2878 case small_stmt:
2879 /*
Guido van Rossum452bf512007-02-09 05:32:43 +00002880 * expr_stmt | del_stmt | pass_stmt | flow_stmt
Georg Brandl7cae87c2006-09-06 06:51:57 +00002881 * | import_stmt | global_stmt | assert_stmt
Fred Drakeff9ea482000-04-19 13:54:15 +00002882 */
2883 res = validate_small_stmt(tree);
2884 break;
2885 case flow_stmt:
2886 res = (validate_numnodes(tree, 1, "flow_stmt")
2887 && ((TYPE(CHILD(tree, 0)) == break_stmt)
2888 || (TYPE(CHILD(tree, 0)) == continue_stmt)
Fred Drake02126f22001-07-17 02:59:15 +00002889 || (TYPE(CHILD(tree, 0)) == yield_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002890 || (TYPE(CHILD(tree, 0)) == return_stmt)
2891 || (TYPE(CHILD(tree, 0)) == raise_stmt)));
2892 if (res)
2893 next = CHILD(tree, 0);
2894 else if (nch == 1)
Fred Drake661ea262000-10-24 19:57:45 +00002895 err_string("illegal flow_stmt type");
Fred Drakeff9ea482000-04-19 13:54:15 +00002896 break;
Fred Drake02126f22001-07-17 02:59:15 +00002897 case yield_stmt:
2898 res = validate_yield_stmt(tree);
2899 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00002900 /*
2901 * Compound statements.
2902 */
2903 case simple_stmt:
2904 res = validate_simple_stmt(tree);
2905 break;
2906 case compound_stmt:
2907 res = validate_compound_stmt(tree);
2908 break;
2909 /*
Thomas Wouters7e474022000-07-16 12:04:32 +00002910 * Fundamental statements.
Fred Drakeff9ea482000-04-19 13:54:15 +00002911 */
2912 case expr_stmt:
2913 res = validate_expr_stmt(tree);
2914 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00002915 case del_stmt:
2916 res = validate_del_stmt(tree);
2917 break;
2918 case pass_stmt:
2919 res = (validate_numnodes(tree, 1, "pass")
2920 && validate_name(CHILD(tree, 0), "pass"));
2921 break;
2922 case break_stmt:
2923 res = (validate_numnodes(tree, 1, "break")
2924 && validate_name(CHILD(tree, 0), "break"));
2925 break;
2926 case continue_stmt:
2927 res = (validate_numnodes(tree, 1, "continue")
2928 && validate_name(CHILD(tree, 0), "continue"));
2929 break;
2930 case return_stmt:
2931 res = validate_return_stmt(tree);
2932 break;
2933 case raise_stmt:
2934 res = validate_raise_stmt(tree);
2935 break;
2936 case import_stmt:
2937 res = validate_import_stmt(tree);
2938 break;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002939 case import_name:
2940 res = validate_import_name(tree);
2941 break;
2942 case import_from:
2943 res = validate_import_from(tree);
2944 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00002945 case global_stmt:
2946 res = validate_global_stmt(tree);
2947 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00002948 case assert_stmt:
2949 res = validate_assert_stmt(tree);
2950 break;
2951 case if_stmt:
2952 res = validate_if(tree);
2953 break;
2954 case while_stmt:
2955 res = validate_while(tree);
2956 break;
2957 case for_stmt:
2958 res = validate_for(tree);
2959 break;
2960 case try_stmt:
2961 res = validate_try(tree);
2962 break;
2963 case suite:
2964 res = validate_suite(tree);
2965 break;
2966 /*
2967 * Expression nodes.
2968 */
2969 case testlist:
2970 res = validate_testlist(tree);
2971 break;
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00002972 case yield_expr:
2973 res = validate_yield_expr(tree);
2974 break;
Guido van Rossum2d3b9862002-05-24 15:47:06 +00002975 case testlist1:
2976 res = validate_testlist1(tree);
2977 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00002978 case test:
2979 res = validate_test(tree);
2980 break;
2981 case and_test:
2982 res = validate_and_test(tree);
2983 break;
2984 case not_test:
2985 res = validate_not_test(tree);
2986 break;
2987 case comparison:
2988 res = validate_comparison(tree);
2989 break;
2990 case exprlist:
2991 res = validate_exprlist(tree);
2992 break;
2993 case comp_op:
2994 res = validate_comp_op(tree);
2995 break;
2996 case expr:
2997 res = validate_expr(tree);
2998 break;
2999 case xor_expr:
3000 res = validate_xor_expr(tree);
3001 break;
3002 case and_expr:
3003 res = validate_and_expr(tree);
3004 break;
3005 case shift_expr:
3006 res = validate_shift_expr(tree);
3007 break;
3008 case arith_expr:
3009 res = validate_arith_expr(tree);
3010 break;
3011 case term:
3012 res = validate_term(tree);
3013 break;
3014 case factor:
3015 res = validate_factor(tree);
3016 break;
3017 case power:
3018 res = validate_power(tree);
3019 break;
3020 case atom:
3021 res = validate_atom(tree);
3022 break;
Guido van Rossum3d602e31996-07-21 02:33:56 +00003023
Fred Drakeff9ea482000-04-19 13:54:15 +00003024 default:
3025 /* Hopefully never reached! */
Fred Drake661ea262000-10-24 19:57:45 +00003026 err_string("unrecognized node type");
Fred Drakeff9ea482000-04-19 13:54:15 +00003027 res = 0;
3028 break;
3029 }
3030 tree = next;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003031 }
3032 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003033}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003034
3035
Guido van Rossum47478871996-08-21 14:32:37 +00003036static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003037validate_expr_tree(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003038{
3039 int res = validate_eval_input(tree);
3040
3041 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00003042 err_string("could not validate expression tuple");
Guido van Rossum3d602e31996-07-21 02:33:56 +00003043
3044 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003045}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003046
3047
Guido van Rossum3d602e31996-07-21 02:33:56 +00003048/* file_input:
Fred Drakeff9ea482000-04-19 13:54:15 +00003049 * (NEWLINE | stmt)* ENDMARKER
Guido van Rossum3d602e31996-07-21 02:33:56 +00003050 */
Guido van Rossum47478871996-08-21 14:32:37 +00003051static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003052validate_file_input(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003053{
Fred Drakec2683dd2001-07-17 19:32:05 +00003054 int j;
Guido van Rossum3d602e31996-07-21 02:33:56 +00003055 int nch = NCH(tree) - 1;
3056 int res = ((nch >= 0)
Fred Drakeff9ea482000-04-19 13:54:15 +00003057 && validate_ntype(CHILD(tree, nch), ENDMARKER));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003058
Fred Drakec2683dd2001-07-17 19:32:05 +00003059 for (j = 0; res && (j < nch); ++j) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003060 if (TYPE(CHILD(tree, j)) == stmt)
3061 res = validate_stmt(CHILD(tree, j));
3062 else
3063 res = validate_newline(CHILD(tree, j));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003064 }
Thomas Wouters7e474022000-07-16 12:04:32 +00003065 /* This stays in to prevent any internal failures from getting to the
Fred Drakeff9ea482000-04-19 13:54:15 +00003066 * user. Hopefully, this won't be needed. If a user reports getting
3067 * this, we have some debugging to do.
Guido van Rossum3d602e31996-07-21 02:33:56 +00003068 */
3069 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00003070 err_string("VALIDATION FAILURE: report this to the maintainer!");
Guido van Rossum3d602e31996-07-21 02:33:56 +00003071
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003072 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003073}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003074
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00003075static int
3076validate_encoding_decl(node *tree)
3077{
3078 int nch = NCH(tree);
3079 int res = ((nch == 1)
3080 && validate_file_input(CHILD(tree, 0)));
3081
3082 if (!res && !PyErr_Occurred())
3083 err_string("Error Parsing encoding_decl");
3084
3085 return res;
3086}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003087
Fred Drake43f8f9b1998-04-13 16:25:46 +00003088static PyObject*
3089pickle_constructor = NULL;
3090
3091
3092static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +00003093parser__pickler(PyObject *self, PyObject *args)
Fred Drake43f8f9b1998-04-13 16:25:46 +00003094{
Fred Drake268397f1998-04-29 14:16:32 +00003095 NOTE(ARGUNUSED(self))
Fred Drake43f8f9b1998-04-13 16:25:46 +00003096 PyObject *result = NULL;
Fred Drakec2683dd2001-07-17 19:32:05 +00003097 PyObject *st = NULL;
Fred Drake2a6875e1999-09-20 22:32:18 +00003098 PyObject *empty_dict = NULL;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003099
Fred Drakec2683dd2001-07-17 19:32:05 +00003100 if (PyArg_ParseTuple(args, "O!:_pickler", &PyST_Type, &st)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003101 PyObject *newargs;
3102 PyObject *tuple;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003103
Fred Drake2a6875e1999-09-20 22:32:18 +00003104 if ((empty_dict = PyDict_New()) == NULL)
3105 goto finally;
Fred Drakec2683dd2001-07-17 19:32:05 +00003106 if ((newargs = Py_BuildValue("Oi", st, 1)) == NULL)
Fred Drakeff9ea482000-04-19 13:54:15 +00003107 goto finally;
Fred Drakec2683dd2001-07-17 19:32:05 +00003108 tuple = parser_st2tuple((PyST_Object*)NULL, newargs, empty_dict);
Fred Drakeff9ea482000-04-19 13:54:15 +00003109 if (tuple != NULL) {
3110 result = Py_BuildValue("O(O)", pickle_constructor, tuple);
3111 Py_DECREF(tuple);
3112 }
Fred Drake2a6875e1999-09-20 22:32:18 +00003113 Py_DECREF(empty_dict);
Fred Drakeff9ea482000-04-19 13:54:15 +00003114 Py_DECREF(newargs);
Fred Drake43f8f9b1998-04-13 16:25:46 +00003115 }
3116 finally:
Fred Drake2a6875e1999-09-20 22:32:18 +00003117 Py_XDECREF(empty_dict);
3118
Fred Drake43f8f9b1998-04-13 16:25:46 +00003119 return (result);
Fred Drakeff9ea482000-04-19 13:54:15 +00003120}
Fred Drake43f8f9b1998-04-13 16:25:46 +00003121
3122
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003123/* Functions exported by this module. Most of this should probably
Fred Drakec2683dd2001-07-17 19:32:05 +00003124 * be converted into an ST object with methods, but that is better
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003125 * done directly in Python, allowing subclasses to be created directly.
Guido van Rossum3d602e31996-07-21 02:33:56 +00003126 * We'd really have to write a wrapper around it all anyway to allow
3127 * inheritance.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003128 */
3129static PyMethodDef parser_functions[] = {
Fred Drakec2683dd2001-07-17 19:32:05 +00003130 {"compilest", (PyCFunction)parser_compilest, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003131 PyDoc_STR("Compiles an ST object into a code object.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003132 {"expr", (PyCFunction)parser_expr, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003133 PyDoc_STR("Creates an ST object from an expression.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003134 {"isexpr", (PyCFunction)parser_isexpr, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003135 PyDoc_STR("Determines if an ST object was created from an expression.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003136 {"issuite", (PyCFunction)parser_issuite, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003137 PyDoc_STR("Determines if an ST object was created from a suite.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003138 {"suite", (PyCFunction)parser_suite, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003139 PyDoc_STR("Creates an ST object from a suite.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003140 {"sequence2st", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003141 PyDoc_STR("Creates an ST object from a tree representation.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003142 {"st2tuple", (PyCFunction)parser_st2tuple, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003143 PyDoc_STR("Creates a tuple-tree representation of an ST.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003144 {"st2list", (PyCFunction)parser_st2list, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003145 PyDoc_STR("Creates a list-tree representation of an ST.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003146 {"tuple2st", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003147 PyDoc_STR("Creates an ST object from a tree representation.")},
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003148
Fred Drake43f8f9b1998-04-13 16:25:46 +00003149 /* private stuff: support pickle module */
Fred Drake13130bc2001-08-15 16:44:56 +00003150 {"_pickler", (PyCFunction)parser__pickler, METH_VARARGS,
Neal Norwitz200788c2002-08-13 22:20:41 +00003151 PyDoc_STR("Returns the pickle magic to allow ST objects to be pickled.")},
Fred Drake43f8f9b1998-04-13 16:25:46 +00003152
Fred Drake268397f1998-04-29 14:16:32 +00003153 {NULL, NULL, 0, NULL}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003154 };
3155
3156
Martin v. Löwis1a214512008-06-11 05:26:20 +00003157
3158static struct PyModuleDef parsermodule = {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003159 PyModuleDef_HEAD_INIT,
3160 "parser",
3161 NULL,
3162 -1,
3163 parser_functions,
3164 NULL,
3165 NULL,
3166 NULL,
3167 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00003168};
3169
3170PyMODINIT_FUNC PyInit_parser(void); /* supply a prototype */
Fred Drake28f739a2000-08-25 22:42:40 +00003171
Mark Hammond62b1ab12002-07-23 06:31:15 +00003172PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00003173PyInit_parser(void)
Fred Drake28f739a2000-08-25 22:42:40 +00003174{
Fred Drake13130bc2001-08-15 16:44:56 +00003175 PyObject *module, *copyreg;
Fred Drakec2683dd2001-07-17 19:32:05 +00003176
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +00003177 if (PyType_Ready(&PyST_Type) < 0)
3178 return NULL;
Martin v. Löwis1a214512008-06-11 05:26:20 +00003179 module = PyModule_Create(&parsermodule);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00003180 if (module == NULL)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003181 return NULL;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003182
Fred Drake7a15ba51999-09-09 14:21:52 +00003183 if (parser_error == 0)
3184 parser_error = PyErr_NewException("parser.ParserError", NULL, NULL);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003185
Tim Peters6a627252003-07-21 14:25:23 +00003186 if (parser_error == 0)
Martin v. Löwis1a214512008-06-11 05:26:20 +00003187 return NULL;
Tim Peters6a627252003-07-21 14:25:23 +00003188 /* CAUTION: The code next used to skip bumping the refcount on
Martin v. Löwis1a214512008-06-11 05:26:20 +00003189 * parser_error. That's a disaster if PyInit_parser() gets called more
Tim Peters6a627252003-07-21 14:25:23 +00003190 * than once. By incref'ing, we ensure that each module dict that
3191 * gets created owns its reference to the shared parser_error object,
3192 * and the file static parser_error vrbl owns a reference too.
3193 */
3194 Py_INCREF(parser_error);
3195 if (PyModule_AddObject(module, "ParserError", parser_error) != 0)
Martin v. Löwis1a214512008-06-11 05:26:20 +00003196 return NULL;
Tim Peters6a627252003-07-21 14:25:23 +00003197
Fred Drakec2683dd2001-07-17 19:32:05 +00003198 Py_INCREF(&PyST_Type);
Fred Drake13130bc2001-08-15 16:44:56 +00003199 PyModule_AddObject(module, "STType", (PyObject*)&PyST_Type);
Guido van Rossum3d602e31996-07-21 02:33:56 +00003200
Fred Drake13130bc2001-08-15 16:44:56 +00003201 PyModule_AddStringConstant(module, "__copyright__",
3202 parser_copyright_string);
3203 PyModule_AddStringConstant(module, "__doc__",
3204 parser_doc_string);
3205 PyModule_AddStringConstant(module, "__version__",
3206 parser_version_string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003207
Fred Drake78bdb9b2001-07-19 20:17:15 +00003208 /* Register to support pickling.
3209 * If this fails, the import of this module will fail because an
3210 * exception will be raised here; should we clear the exception?
3211 */
Alexandre Vassalottif7fa63d2008-05-11 08:55:36 +00003212 copyreg = PyImport_ImportModuleNoBlock("copyreg");
Fred Drake13130bc2001-08-15 16:44:56 +00003213 if (copyreg != NULL) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003214 PyObject *func, *pickler;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003215
Fred Drake13130bc2001-08-15 16:44:56 +00003216 func = PyObject_GetAttrString(copyreg, "pickle");
3217 pickle_constructor = PyObject_GetAttrString(module, "sequence2st");
3218 pickler = PyObject_GetAttrString(module, "_pickler");
Fred Drakeff9ea482000-04-19 13:54:15 +00003219 Py_XINCREF(pickle_constructor);
3220 if ((func != NULL) && (pickle_constructor != NULL)
3221 && (pickler != NULL)) {
3222 PyObject *res;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003223
Thomas Wouters477c8d52006-05-27 19:21:47 +00003224 res = PyObject_CallFunctionObjArgs(func, &PyST_Type, pickler,
3225 pickle_constructor, NULL);
Fred Drakeff9ea482000-04-19 13:54:15 +00003226 Py_XDECREF(res);
3227 }
3228 Py_XDECREF(func);
Fred Drake13130bc2001-08-15 16:44:56 +00003229 Py_XDECREF(pickle_constructor);
3230 Py_XDECREF(pickler);
3231 Py_DECREF(copyreg);
Fred Drake43f8f9b1998-04-13 16:25:46 +00003232 }
Martin v. Löwis1a214512008-06-11 05:26:20 +00003233 return module;
Fred Drakeff9ea482000-04-19 13:54:15 +00003234}