blob: 36e9893da843184b028daa65980eb78799f4bfef [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#undef Yield
38#include "ast.h"
Benjamin Petersonf216c942008-10-31 02:28:05 +000039
40extern grammar _PyParser_Grammar; /* From graminit.c */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000041
Fred Drake268397f1998-04-29 14:16:32 +000042#ifdef lint
43#include <note.h>
44#else
45#define NOTE(x)
46#endif
47
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000048/* String constants used to initialize module attributes.
49 *
50 */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000051static char parser_copyright_string[] =
52"Copyright 1995-1996 by Virginia Polytechnic Institute & State\n\
Guido van Rossum2a288461996-08-21 21:55:43 +000053University, Blacksburg, Virginia, USA, and Fred L. Drake, Jr., Reston,\n\
54Virginia, USA. Portions copyright 1991-1995 by Stichting Mathematisch\n\
55Centrum, Amsterdam, The Netherlands.";
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000056
57
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000058PyDoc_STRVAR(parser_doc_string,
59"This is an interface to Python's internal parser.");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000060
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000061static char parser_version_string[] = "0.5";
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000062
63
Martin v. Löwis18e16552006-02-15 17:27:45 +000064typedef PyObject* (*SeqMaker) (Py_ssize_t length);
Fred Drakeff9ea482000-04-19 13:54:15 +000065typedef int (*SeqInserter) (PyObject* sequence,
Martin v. Löwis18e16552006-02-15 17:27:45 +000066 Py_ssize_t index,
Fred Drakeff9ea482000-04-19 13:54:15 +000067 PyObject* element);
Guido van Rossum47478871996-08-21 14:32:37 +000068
Thomas Wouters7e474022000-07-16 12:04:32 +000069/* The function below is copyrighted by Stichting Mathematisch Centrum. The
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000070 * original copyright statement is included below, and continues to apply
71 * in full to the function immediately following. All other material is
72 * original, copyrighted by Fred L. Drake, Jr. and Virginia Polytechnic
73 * Institute and State University. Changes were made to comply with the
Guido van Rossum2a288461996-08-21 21:55:43 +000074 * new naming conventions. Added arguments to provide support for creating
75 * lists as well as tuples, and optionally including the line numbers.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000076 */
77
Guido van Rossum52f2c051993-11-10 12:53:24 +000078
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000079static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +000080node2tuple(node *n, /* node to convert */
81 SeqMaker mkseq, /* create sequence */
82 SeqInserter addelem, /* func. to add elem. in seq. */
Thomas Wouters89f507f2006-12-13 04:49:30 +000083 int lineno, /* include line numbers? */
84 int col_offset) /* include column offsets? */
Guido van Rossum47478871996-08-21 14:32:37 +000085{
Victor Stinnerdf4572c2013-07-12 01:35:10 +020086 PyObject *result = NULL, *w;
87
Guido van Rossum3d602e31996-07-21 02:33:56 +000088 if (n == NULL) {
Fred Drakeff9ea482000-04-19 13:54:15 +000089 Py_INCREF(Py_None);
Victor Stinnerdf4572c2013-07-12 01:35:10 +020090 return Py_None;
Guido van Rossum3d602e31996-07-21 02:33:56 +000091 }
Victor Stinnerdf4572c2013-07-12 01:35:10 +020092
Guido van Rossum3d602e31996-07-21 02:33:56 +000093 if (ISNONTERMINAL(TYPE(n))) {
Fred Drakeff9ea482000-04-19 13:54:15 +000094 int i;
Fred Drake268397f1998-04-29 14:16:32 +000095
Victor Stinnerdf4572c2013-07-12 01:35:10 +020096 result = mkseq(1 + NCH(n) + (TYPE(n) == encoding_decl));
97 if (result == NULL)
98 goto error;
99
Christian Heimes217cfd12007-12-02 14:31:20 +0000100 w = PyLong_FromLong(TYPE(n));
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200101 if (w == NULL)
102 goto error;
103 (void) addelem(result, 0, w);
104
Fred Drakeff9ea482000-04-19 13:54:15 +0000105 for (i = 0; i < NCH(n); i++) {
Thomas Wouters89f507f2006-12-13 04:49:30 +0000106 w = node2tuple(CHILD(n, i), mkseq, addelem, lineno, col_offset);
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200107 if (w == NULL)
108 goto error;
109 (void) addelem(result, i+1, w);
Fred Drakeff9ea482000-04-19 13:54:15 +0000110 }
Tim Peters6a627252003-07-21 14:25:23 +0000111
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200112 if (TYPE(n) == encoding_decl) {
113 w = PyUnicode_FromString(STR(n));
114 if (w == NULL)
115 goto error;
116 (void) addelem(result, i+1, w);
117 }
Guido van Rossum3d602e31996-07-21 02:33:56 +0000118 }
119 else if (ISTERMINAL(TYPE(n))) {
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200120 result = mkseq(2 + lineno + col_offset);
121 if (result == NULL)
122 goto error;
123
124 w = PyLong_FromLong(TYPE(n));
125 if (w == NULL)
126 goto error;
127 (void) addelem(result, 0, w);
128
129 w = PyUnicode_FromString(STR(n));
130 if (w == NULL)
131 goto error;
132 (void) addelem(result, 1, w);
133
134 if (lineno == 1) {
135 w = PyLong_FromLong(n->n_lineno);
136 if (w == NULL)
137 goto error;
138 (void) addelem(result, 2, w);
Fred Drakeff9ea482000-04-19 13:54:15 +0000139 }
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200140
141 if (col_offset == 1) {
142 w = PyLong_FromLong(n->n_col_offset);
143 if (w == NULL)
144 goto error;
145 (void) addelem(result, 3, w);
146 }
Guido van Rossum3d602e31996-07-21 02:33:56 +0000147 }
148 else {
Fred Drakeff9ea482000-04-19 13:54:15 +0000149 PyErr_SetString(PyExc_SystemError,
150 "unrecognized parse tree node type");
151 return ((PyObject*) NULL);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000152 }
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200153 return result;
154
155error:
156 Py_XDECREF(result);
157 return NULL;
Fred Drakeff9ea482000-04-19 13:54:15 +0000158}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000159/*
160 * End of material copyrighted by Stichting Mathematisch Centrum.
161 */
Guido van Rossum52f2c051993-11-10 12:53:24 +0000162
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000163
164
165/* There are two types of intermediate objects we're interested in:
Fred Drakec2683dd2001-07-17 19:32:05 +0000166 * 'eval' and 'exec' types. These constants can be used in the st_type
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000167 * field of the object type to identify which any given object represents.
168 * These should probably go in an external header to allow other extensions
169 * to use them, but then, we really should be using C++ too. ;-)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000170 */
171
Fred Drakec2683dd2001-07-17 19:32:05 +0000172#define PyST_EXPR 1
173#define PyST_SUITE 2
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000174
175
176/* These are the internal objects and definitions required to implement the
Fred Drakec2683dd2001-07-17 19:32:05 +0000177 * ST type. Most of the internal names are more reminiscent of the 'old'
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000178 * naming style, but the code uses the new naming convention.
179 */
180
181static PyObject*
182parser_error = 0;
183
184
Fred Drakec2683dd2001-07-17 19:32:05 +0000185typedef struct {
Fred Drakeff9ea482000-04-19 13:54:15 +0000186 PyObject_HEAD /* standard object header */
Fred Drakec2683dd2001-07-17 19:32:05 +0000187 node* st_node; /* the node* returned by the parser */
188 int st_type; /* EXPR or SUITE ? */
Benjamin Petersonf216c942008-10-31 02:28:05 +0000189 PyCompilerFlags st_flags; /* Parser and compiler flags */
Fred Drakec2683dd2001-07-17 19:32:05 +0000190} PyST_Object;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000191
192
Jeremy Hylton938ace62002-07-17 16:30:39 +0000193static void parser_free(PyST_Object *st);
Jesus Ceae9c53182012-08-03 14:28:37 +0200194static PyObject* parser_sizeof(PyST_Object *, void *);
Mark Dickinson211c6252009-02-01 10:28:51 +0000195static PyObject* parser_richcompare(PyObject *left, PyObject *right, int op);
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000196static PyObject* parser_compilest(PyST_Object *, PyObject *, PyObject *);
197static PyObject* parser_isexpr(PyST_Object *, PyObject *, PyObject *);
198static PyObject* parser_issuite(PyST_Object *, PyObject *, PyObject *);
199static PyObject* parser_st2list(PyST_Object *, PyObject *, PyObject *);
200static PyObject* parser_st2tuple(PyST_Object *, PyObject *, PyObject *);
Fred Drake503d8d61998-04-13 18:45:18 +0000201
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000202#define PUBLIC_METHOD_TYPE (METH_VARARGS|METH_KEYWORDS)
203
204static PyMethodDef parser_methods[] = {
205 {"compile", (PyCFunction)parser_compilest, PUBLIC_METHOD_TYPE,
206 PyDoc_STR("Compile this ST object into a code object.")},
207 {"isexpr", (PyCFunction)parser_isexpr, PUBLIC_METHOD_TYPE,
208 PyDoc_STR("Determines if this ST object was created from an expression.")},
209 {"issuite", (PyCFunction)parser_issuite, PUBLIC_METHOD_TYPE,
210 PyDoc_STR("Determines if this ST object was created from a suite.")},
211 {"tolist", (PyCFunction)parser_st2list, PUBLIC_METHOD_TYPE,
212 PyDoc_STR("Creates a list-tree representation of this ST.")},
213 {"totuple", (PyCFunction)parser_st2tuple, PUBLIC_METHOD_TYPE,
214 PyDoc_STR("Creates a tuple-tree representation of this ST.")},
Jesus Ceae9c53182012-08-03 14:28:37 +0200215 {"__sizeof__", (PyCFunction)parser_sizeof, METH_NOARGS,
216 PyDoc_STR("Returns size in memory, in bytes.")},
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000217 {NULL, NULL, 0, NULL}
218};
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000219
Fred Drake268397f1998-04-29 14:16:32 +0000220static
Fred Drakec2683dd2001-07-17 19:32:05 +0000221PyTypeObject PyST_Type = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +0000222 PyVarObject_HEAD_INIT(NULL, 0)
Guido van Rossum14648392001-12-08 18:02:58 +0000223 "parser.st", /* tp_name */
Fred Drakec2683dd2001-07-17 19:32:05 +0000224 (int) sizeof(PyST_Object), /* tp_basicsize */
Fred Drakeff9ea482000-04-19 13:54:15 +0000225 0, /* tp_itemsize */
226 (destructor)parser_free, /* tp_dealloc */
227 0, /* tp_print */
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000228 0, /* tp_getattr */
Fred Drakeff9ea482000-04-19 13:54:15 +0000229 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +0000230 0, /* tp_reserved */
Fred Drakeff9ea482000-04-19 13:54:15 +0000231 0, /* tp_repr */
232 0, /* tp_as_number */
233 0, /* tp_as_sequence */
234 0, /* tp_as_mapping */
235 0, /* tp_hash */
236 0, /* tp_call */
237 0, /* tp_str */
238 0, /* tp_getattro */
239 0, /* tp_setattro */
Fred Drake69b9ae41997-05-23 04:04:17 +0000240
241 /* Functions to access object as input/output buffer */
Fred Drakeff9ea482000-04-19 13:54:15 +0000242 0, /* tp_as_buffer */
Fred Drake69b9ae41997-05-23 04:04:17 +0000243
Fred Drakeff9ea482000-04-19 13:54:15 +0000244 Py_TPFLAGS_DEFAULT, /* tp_flags */
Fred Drake69b9ae41997-05-23 04:04:17 +0000245
246 /* __doc__ */
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000247 "Intermediate representation of a Python parse tree.",
248 0, /* tp_traverse */
249 0, /* tp_clear */
Mark Dickinson211c6252009-02-01 10:28:51 +0000250 parser_richcompare, /* tp_richcompare */
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000251 0, /* tp_weaklistoffset */
252 0, /* tp_iter */
253 0, /* tp_iternext */
254 parser_methods, /* tp_methods */
Fred Drakec2683dd2001-07-17 19:32:05 +0000255}; /* PyST_Type */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000256
257
Mark Dickinson211c6252009-02-01 10:28:51 +0000258/* PyST_Type isn't subclassable, so just check ob_type */
259#define PyST_Object_Check(v) ((v)->ob_type == &PyST_Type)
260
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000261static int
Fred Drakeff9ea482000-04-19 13:54:15 +0000262parser_compare_nodes(node *left, node *right)
Guido van Rossum47478871996-08-21 14:32:37 +0000263{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000264 int j;
Guido van Rossum52f2c051993-11-10 12:53:24 +0000265
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000266 if (TYPE(left) < TYPE(right))
Fred Drakeff9ea482000-04-19 13:54:15 +0000267 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000268
269 if (TYPE(right) < TYPE(left))
Fred Drakeff9ea482000-04-19 13:54:15 +0000270 return (1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000271
272 if (ISTERMINAL(TYPE(left)))
Fred Drakeff9ea482000-04-19 13:54:15 +0000273 return (strcmp(STR(left), STR(right)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000274
275 if (NCH(left) < NCH(right))
Fred Drakeff9ea482000-04-19 13:54:15 +0000276 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000277
278 if (NCH(right) < NCH(left))
Fred Drakeff9ea482000-04-19 13:54:15 +0000279 return (1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000280
281 for (j = 0; j < NCH(left); ++j) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000282 int v = parser_compare_nodes(CHILD(left, j), CHILD(right, j));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000283
Fred Drakeff9ea482000-04-19 13:54:15 +0000284 if (v != 0)
285 return (v);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000286 }
287 return (0);
Fred Drakeff9ea482000-04-19 13:54:15 +0000288}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000289
Mark Dickinson211c6252009-02-01 10:28:51 +0000290/* parser_richcompare(PyObject* left, PyObject* right, int op)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000291 *
292 * Comparison function used by the Python operators ==, !=, <, >, <=, >=
293 * This really just wraps a call to parser_compare_nodes() with some easy
294 * checks and protection code.
295 *
296 */
Mark Dickinson211c6252009-02-01 10:28:51 +0000297
298#define TEST_COND(cond) ((cond) ? Py_True : Py_False)
299
300static PyObject *
301parser_richcompare(PyObject *left, PyObject *right, int op)
Guido van Rossum47478871996-08-21 14:32:37 +0000302{
Mark Dickinson211c6252009-02-01 10:28:51 +0000303 int result;
304 PyObject *v;
305
306 /* neither argument should be NULL, unless something's gone wrong */
307 if (left == NULL || right == NULL) {
308 PyErr_BadInternalCall();
309 return NULL;
310 }
311
312 /* both arguments should be instances of PyST_Object */
313 if (!PyST_Object_Check(left) || !PyST_Object_Check(right)) {
314 v = Py_NotImplemented;
315 goto finished;
316 }
317
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000318 if (left == right)
Mark Dickinson211c6252009-02-01 10:28:51 +0000319 /* if arguments are identical, they're equal */
320 result = 0;
321 else
322 result = parser_compare_nodes(((PyST_Object *)left)->st_node,
323 ((PyST_Object *)right)->st_node);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000324
Mark Dickinson211c6252009-02-01 10:28:51 +0000325 /* Convert return value to a Boolean */
326 switch (op) {
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000327 case Py_EQ:
Mark Dickinson211c6252009-02-01 10:28:51 +0000328 v = TEST_COND(result == 0);
329 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000330 case Py_NE:
Mark Dickinson211c6252009-02-01 10:28:51 +0000331 v = TEST_COND(result != 0);
332 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000333 case Py_LE:
Mark Dickinson211c6252009-02-01 10:28:51 +0000334 v = TEST_COND(result <= 0);
335 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000336 case Py_GE:
Mark Dickinson211c6252009-02-01 10:28:51 +0000337 v = TEST_COND(result >= 0);
338 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000339 case Py_LT:
Mark Dickinson211c6252009-02-01 10:28:51 +0000340 v = TEST_COND(result < 0);
341 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000342 case Py_GT:
Mark Dickinson211c6252009-02-01 10:28:51 +0000343 v = TEST_COND(result > 0);
344 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000345 default:
Mark Dickinson211c6252009-02-01 10:28:51 +0000346 PyErr_BadArgument();
347 return NULL;
348 }
349 finished:
350 Py_INCREF(v);
351 return v;
Fred Drakeff9ea482000-04-19 13:54:15 +0000352}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000353
Fred Drakec2683dd2001-07-17 19:32:05 +0000354/* parser_newstobject(node* st)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000355 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000356 * Allocates a new Python object representing an ST. This is simply the
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000357 * 'wrapper' object that holds a node* and allows it to be passed around in
358 * Python code.
359 *
360 */
361static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000362parser_newstobject(node *st, int type)
Guido van Rossum47478871996-08-21 14:32:37 +0000363{
Fred Drakec2683dd2001-07-17 19:32:05 +0000364 PyST_Object* o = PyObject_New(PyST_Object, &PyST_Type);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000365
366 if (o != 0) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000367 o->st_node = st;
368 o->st_type = type;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000369 o->st_flags.cf_flags = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000370 }
Fred Drake268397f1998-04-29 14:16:32 +0000371 else {
Fred Drakec2683dd2001-07-17 19:32:05 +0000372 PyNode_Free(st);
Fred Drake268397f1998-04-29 14:16:32 +0000373 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000374 return ((PyObject*)o);
Fred Drakeff9ea482000-04-19 13:54:15 +0000375}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000376
377
Fred Drakec2683dd2001-07-17 19:32:05 +0000378/* void parser_free(PyST_Object* st)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000379 *
380 * This is called by a del statement that reduces the reference count to 0.
381 *
382 */
383static void
Fred Drakec2683dd2001-07-17 19:32:05 +0000384parser_free(PyST_Object *st)
Guido van Rossum47478871996-08-21 14:32:37 +0000385{
Fred Drakec2683dd2001-07-17 19:32:05 +0000386 PyNode_Free(st->st_node);
387 PyObject_Del(st);
Fred Drakeff9ea482000-04-19 13:54:15 +0000388}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000389
Jesus Ceae9c53182012-08-03 14:28:37 +0200390static PyObject *
391parser_sizeof(PyST_Object *st, void *unused)
392{
393 Py_ssize_t res;
394
395 res = sizeof(PyST_Object) + _PyNode_SizeOf(st->st_node);
396 return PyLong_FromSsize_t(res);
397}
398
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000399
Fred Drakec2683dd2001-07-17 19:32:05 +0000400/* parser_st2tuple(PyObject* self, PyObject* args, PyObject* kw)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000401 *
402 * This provides conversion from a node* to a tuple object that can be
Fred Drakec2683dd2001-07-17 19:32:05 +0000403 * returned to the Python-level caller. The ST object is not modified.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000404 *
405 */
406static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000407parser_st2tuple(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000408{
Antoine Pitrou721738f2012-08-15 23:20:39 +0200409 int line_info = 0;
410 int col_info = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000411 PyObject *res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000412 int ok;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000413
Georg Brandl30704ea02008-07-23 15:07:12 +0000414 static char *keywords[] = {"st", "line_info", "col_info", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000415
Martin v. Löwis1a214512008-06-11 05:26:20 +0000416 if (self == NULL || PyModule_Check(self)) {
Antoine Pitrou721738f2012-08-15 23:20:39 +0200417 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|pp:st2tuple", keywords,
418 &PyST_Type, &self, &line_info,
419 &col_info);
Fred Drake268397f1998-04-29 14:16:32 +0000420 }
Fred Drake503d8d61998-04-13 18:45:18 +0000421 else
Antoine Pitrou721738f2012-08-15 23:20:39 +0200422 ok = PyArg_ParseTupleAndKeywords(args, kw, "|pp:totuple", &keywords[1],
423 &line_info, &col_info);
Fred Drake268397f1998-04-29 14:16:32 +0000424 if (ok != 0) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000425 /*
Fred Drakec2683dd2001-07-17 19:32:05 +0000426 * Convert ST into a tuple representation. Use Guido's function,
Fred Drakeff9ea482000-04-19 13:54:15 +0000427 * since it's known to work already.
428 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000429 res = node2tuple(((PyST_Object*)self)->st_node,
Antoine Pitrou721738f2012-08-15 23:20:39 +0200430 PyTuple_New, PyTuple_SetItem, line_info, col_info);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000431 }
432 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000433}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000434
435
Fred Drakec2683dd2001-07-17 19:32:05 +0000436/* parser_st2list(PyObject* self, PyObject* args, PyObject* kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000437 *
Fred Drake2a6875e1999-09-20 22:32:18 +0000438 * This provides conversion from a node* to a list object that can be
Fred Drakec2683dd2001-07-17 19:32:05 +0000439 * returned to the Python-level caller. The ST object is not modified.
Guido van Rossum47478871996-08-21 14:32:37 +0000440 *
441 */
442static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000443parser_st2list(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000444{
Antoine Pitrou721738f2012-08-15 23:20:39 +0200445 int line_info = 0;
446 int col_info = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000447 PyObject *res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000448 int ok;
Guido van Rossum47478871996-08-21 14:32:37 +0000449
Georg Brandl30704ea02008-07-23 15:07:12 +0000450 static char *keywords[] = {"st", "line_info", "col_info", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000451
Martin v. Löwis1a214512008-06-11 05:26:20 +0000452 if (self == NULL || PyModule_Check(self))
Antoine Pitrou721738f2012-08-15 23:20:39 +0200453 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|pp:st2list", keywords,
454 &PyST_Type, &self, &line_info,
455 &col_info);
Fred Drake503d8d61998-04-13 18:45:18 +0000456 else
Antoine Pitrou721738f2012-08-15 23:20:39 +0200457 ok = PyArg_ParseTupleAndKeywords(args, kw, "|pp:tolist", &keywords[1],
458 &line_info, &col_info);
Fred Drake503d8d61998-04-13 18:45:18 +0000459 if (ok) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000460 /*
Fred Drakec2683dd2001-07-17 19:32:05 +0000461 * Convert ST into a tuple representation. Use Guido's function,
Fred Drakeff9ea482000-04-19 13:54:15 +0000462 * since it's known to work already.
463 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000464 res = node2tuple(self->st_node,
Antoine Pitrou721738f2012-08-15 23:20:39 +0200465 PyList_New, PyList_SetItem, line_info, col_info);
Guido van Rossum47478871996-08-21 14:32:37 +0000466 }
467 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000468}
Guido van Rossum47478871996-08-21 14:32:37 +0000469
470
Fred Drakec2683dd2001-07-17 19:32:05 +0000471/* parser_compilest(PyObject* self, PyObject* args)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000472 *
473 * This function creates code objects from the parse tree represented by
474 * the passed-in data object. An optional file name is passed in as well.
475 *
476 */
477static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000478parser_compilest(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000479{
Victor Stinner14e461d2013-08-26 22:28:21 +0200480 PyObject* res = NULL;
481 PyArena* arena = NULL;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000482 mod_ty mod;
Victor Stinner14e461d2013-08-26 22:28:21 +0200483 PyObject* filename = NULL;
Fred Drake503d8d61998-04-13 18:45:18 +0000484 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000485
Georg Brandl30704ea02008-07-23 15:07:12 +0000486 static char *keywords[] = {"st", "filename", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000487
Martin v. Löwis1a214512008-06-11 05:26:20 +0000488 if (self == NULL || PyModule_Check(self))
Victor Stinner14e461d2013-08-26 22:28:21 +0200489 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|O&:compilest", keywords,
490 &PyST_Type, &self,
491 PyUnicode_FSDecoder, &filename);
Fred Drake503d8d61998-04-13 18:45:18 +0000492 else
Victor Stinner14e461d2013-08-26 22:28:21 +0200493 ok = PyArg_ParseTupleAndKeywords(args, kw, "|O&:compile", &keywords[1],
494 PyUnicode_FSDecoder, &filename);
495 if (!ok)
496 goto error;
Fred Drake503d8d61998-04-13 18:45:18 +0000497
Victor Stinner14e461d2013-08-26 22:28:21 +0200498 if (filename == NULL) {
499 filename = PyUnicode_FromString("<syntax-tree>");
500 if (filename == NULL)
501 goto error;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000502 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000503
Victor Stinner14e461d2013-08-26 22:28:21 +0200504 arena = PyArena_New();
505 if (!arena)
506 goto error;
507
508 mod = PyAST_FromNodeObject(self->st_node, &self->st_flags,
509 filename, arena);
510 if (!mod)
511 goto error;
512
513 res = (PyObject *)PyAST_CompileObject(mod, filename,
514 &self->st_flags, -1, arena);
515error:
516 Py_XDECREF(filename);
517 if (arena != NULL)
518 PyArena_Free(arena);
519 return res;
Fred Drakeff9ea482000-04-19 13:54:15 +0000520}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000521
522
523/* PyObject* parser_isexpr(PyObject* self, PyObject* args)
524 * PyObject* parser_issuite(PyObject* self, PyObject* args)
525 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000526 * Checks the passed-in ST object to determine if it is an expression or
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000527 * a statement suite, respectively. The return is a Python truth value.
528 *
529 */
530static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000531parser_isexpr(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000532{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000533 PyObject* res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000534 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000535
Georg Brandl30704ea02008-07-23 15:07:12 +0000536 static char *keywords[] = {"st", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000537
Martin v. Löwis1a214512008-06-11 05:26:20 +0000538 if (self == NULL || PyModule_Check(self))
Fred Drakeff9ea482000-04-19 13:54:15 +0000539 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:isexpr", keywords,
Fred Drakec2683dd2001-07-17 19:32:05 +0000540 &PyST_Type, &self);
Fred Drake503d8d61998-04-13 18:45:18 +0000541 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000542 ok = PyArg_ParseTupleAndKeywords(args, kw, ":isexpr", &keywords[1]);
Fred Drake503d8d61998-04-13 18:45:18 +0000543
544 if (ok) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000545 /* Check to see if the ST represents an expression or not. */
546 res = (self->st_type == PyST_EXPR) ? Py_True : Py_False;
Fred Drakeff9ea482000-04-19 13:54:15 +0000547 Py_INCREF(res);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000548 }
549 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000550}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000551
552
553static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000554parser_issuite(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000555{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000556 PyObject* res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000557 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000558
Georg Brandl30704ea02008-07-23 15:07:12 +0000559 static char *keywords[] = {"st", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000560
Martin v. Löwis1a214512008-06-11 05:26:20 +0000561 if (self == NULL || PyModule_Check(self))
Fred Drakeff9ea482000-04-19 13:54:15 +0000562 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:issuite", keywords,
Fred Drakec2683dd2001-07-17 19:32:05 +0000563 &PyST_Type, &self);
Fred Drake503d8d61998-04-13 18:45:18 +0000564 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000565 ok = PyArg_ParseTupleAndKeywords(args, kw, ":issuite", &keywords[1]);
Fred Drake503d8d61998-04-13 18:45:18 +0000566
567 if (ok) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000568 /* Check to see if the ST represents an expression or not. */
569 res = (self->st_type == PyST_EXPR) ? Py_False : Py_True;
Fred Drakeff9ea482000-04-19 13:54:15 +0000570 Py_INCREF(res);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000571 }
572 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000573}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000574
575
Guido van Rossum3d602e31996-07-21 02:33:56 +0000576/* err_string(char* message)
577 *
578 * Sets the error string for an exception of type ParserError.
579 *
580 */
581static void
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +0000582err_string(char *message)
Guido van Rossum47478871996-08-21 14:32:37 +0000583{
Guido van Rossum3d602e31996-07-21 02:33:56 +0000584 PyErr_SetString(parser_error, message);
Fred Drakeff9ea482000-04-19 13:54:15 +0000585}
Guido van Rossum3d602e31996-07-21 02:33:56 +0000586
587
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000588/* PyObject* parser_do_parse(PyObject* args, int type)
589 *
590 * Internal function to actually execute the parse and return the result if
Jeremy Hyltonaccb62b2002-12-31 18:17:44 +0000591 * successful or set an exception if not.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000592 *
593 */
594static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +0000595parser_do_parse(PyObject *args, PyObject *kw, char *argspec, int type)
Guido van Rossum47478871996-08-21 14:32:37 +0000596{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000597 char* string = 0;
598 PyObject* res = 0;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000599 int flags = 0;
600 perrdetail err;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000601
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000602 static char *keywords[] = {"source", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000603
604 if (PyArg_ParseTupleAndKeywords(args, kw, argspec, keywords, &string)) {
Benjamin Petersonf216c942008-10-31 02:28:05 +0000605 node* n = PyParser_ParseStringFlagsFilenameEx(string, NULL,
606 &_PyParser_Grammar,
607 (type == PyST_EXPR)
608 ? eval_input : file_input,
609 &err, &flags);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000610
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000611 if (n) {
612 res = parser_newstobject(n, type);
Benjamin Petersonf216c942008-10-31 02:28:05 +0000613 if (res)
614 ((PyST_Object *)res)->st_flags.cf_flags = flags & PyCF_MASK;
615 }
Benjamin Petersonf719957d2011-06-04 22:06:42 -0500616 else {
Benjamin Petersonf216c942008-10-31 02:28:05 +0000617 PyParser_SetError(&err);
Benjamin Petersonf719957d2011-06-04 22:06:42 -0500618 }
Benjamin Petersonf0cdbad2011-06-05 22:14:05 -0500619 PyParser_ClearError(&err);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000620 }
621 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000622}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000623
624
625/* PyObject* parser_expr(PyObject* self, PyObject* args)
626 * PyObject* parser_suite(PyObject* self, PyObject* args)
627 *
628 * External interfaces to the parser itself. Which is called determines if
629 * the parser attempts to recognize an expression ('eval' form) or statement
630 * suite ('exec' form). The real work is done by parser_do_parse() above.
631 *
632 */
633static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000634parser_expr(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000635{
Fred Drake268397f1998-04-29 14:16:32 +0000636 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000637 return (parser_do_parse(args, kw, "s:expr", PyST_EXPR));
Fred Drakeff9ea482000-04-19 13:54:15 +0000638}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000639
640
641static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000642parser_suite(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000643{
Fred Drake268397f1998-04-29 14:16:32 +0000644 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000645 return (parser_do_parse(args, kw, "s:suite", PyST_SUITE));
Fred Drakeff9ea482000-04-19 13:54:15 +0000646}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000647
648
649
Fred Drakec2683dd2001-07-17 19:32:05 +0000650/* This is the messy part of the code. Conversion from a tuple to an ST
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000651 * object requires that the input tuple be valid without having to rely on
652 * catching an exception from the compiler. This is done to allow the
653 * compiler itself to remain fast, since most of its input will come from
654 * the parser directly, and therefore be known to be syntactically correct.
655 * This validation is done to ensure that we don't core dump the compile
656 * phase, returning an exception instead.
657 *
658 * Two aspects can be broken out in this code: creating a node tree from
659 * the tuple passed in, and verifying that it is indeed valid. It may be
Fred Drakec2683dd2001-07-17 19:32:05 +0000660 * advantageous to expand the number of ST types to include funcdefs and
661 * lambdadefs to take advantage of the optimizer, recognizing those STs
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000662 * here. They are not necessary, and not quite as useful in a raw form.
663 * For now, let's get expressions and suites working reliably.
664 */
665
666
Jeremy Hylton938ace62002-07-17 16:30:39 +0000667static node* build_node_tree(PyObject *tuple);
668static int validate_expr_tree(node *tree);
669static int validate_file_input(node *tree);
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000670static int validate_encoding_decl(node *tree);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000671
Fred Drakec2683dd2001-07-17 19:32:05 +0000672/* PyObject* parser_tuple2st(PyObject* self, PyObject* args)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000673 *
674 * This is the public function, called from the Python code. It receives a
Fred Drakec2683dd2001-07-17 19:32:05 +0000675 * single tuple object from the caller, and creates an ST object if the
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000676 * tuple can be validated. It does this by checking the first code of the
677 * tuple, and, if acceptable, builds the internal representation. If this
678 * step succeeds, the internal representation is validated as fully as
679 * possible with the various validate_*() routines defined below.
680 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000681 * This function must be changed if support is to be added for PyST_FRAGMENT
682 * ST objects.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000683 *
684 */
685static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000686parser_tuple2st(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000687{
Fred Drake268397f1998-04-29 14:16:32 +0000688 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000689 PyObject *st = 0;
Fred Drake0ac9b072000-09-12 21:58:06 +0000690 PyObject *tuple;
691 node *tree;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000692
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000693 static char *keywords[] = {"sequence", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000694
Fred Drakec2683dd2001-07-17 19:32:05 +0000695 if (!PyArg_ParseTupleAndKeywords(args, kw, "O:sequence2st", keywords,
Fred Drake7a15ba51999-09-09 14:21:52 +0000696 &tuple))
Fred Drakeff9ea482000-04-19 13:54:15 +0000697 return (0);
Guido van Rossum47478871996-08-21 14:32:37 +0000698 if (!PySequence_Check(tuple)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000699 PyErr_SetString(PyExc_ValueError,
Fred Drakec2683dd2001-07-17 19:32:05 +0000700 "sequence2st() requires a single sequence argument");
Fred Drakeff9ea482000-04-19 13:54:15 +0000701 return (0);
Guido van Rossum47478871996-08-21 14:32:37 +0000702 }
703 /*
Fred Drake0ac9b072000-09-12 21:58:06 +0000704 * Convert the tree to the internal form before checking it.
Guido van Rossum47478871996-08-21 14:32:37 +0000705 */
Fred Drake0ac9b072000-09-12 21:58:06 +0000706 tree = build_node_tree(tuple);
707 if (tree != 0) {
708 int start_sym = TYPE(tree);
709 if (start_sym == eval_input) {
710 /* Might be an eval form. */
711 if (validate_expr_tree(tree))
Fred Drakec2683dd2001-07-17 19:32:05 +0000712 st = parser_newstobject(tree, PyST_EXPR);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000713 else
714 PyNode_Free(tree);
Fred Drakeff9ea482000-04-19 13:54:15 +0000715 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000716 else if (start_sym == file_input) {
717 /* This looks like an exec form so far. */
718 if (validate_file_input(tree))
Fred Drakec2683dd2001-07-17 19:32:05 +0000719 st = parser_newstobject(tree, PyST_SUITE);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000720 else
721 PyNode_Free(tree);
Fred Drake0ac9b072000-09-12 21:58:06 +0000722 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000723 else if (start_sym == encoding_decl) {
724 /* This looks like an encoding_decl so far. */
725 if (validate_encoding_decl(tree))
726 st = parser_newstobject(tree, PyST_SUITE);
727 else
728 PyNode_Free(tree);
729 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000730 else {
731 /* This is a fragment, at best. */
732 PyNode_Free(tree);
Fred Drake661ea262000-10-24 19:57:45 +0000733 err_string("parse tree does not use a valid start symbol");
Fred Drake0ac9b072000-09-12 21:58:06 +0000734 }
Guido van Rossum47478871996-08-21 14:32:37 +0000735 }
Andrew Svetlov737fb892012-12-18 21:14:22 +0200736 /* Make sure we raise an exception on all errors. We should never
Guido van Rossum47478871996-08-21 14:32:37 +0000737 * get this, but we'd do well to be sure something is done.
738 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000739 if (st == NULL && !PyErr_Occurred())
740 err_string("unspecified ST error occurred");
Guido van Rossum3d602e31996-07-21 02:33:56 +0000741
Fred Drakec2683dd2001-07-17 19:32:05 +0000742 return st;
Fred Drakeff9ea482000-04-19 13:54:15 +0000743}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000744
745
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000746/* node* build_node_children()
747 *
748 * Iterate across the children of the current non-terminal node and build
749 * their structures. If successful, return the root of this portion of
750 * the tree, otherwise, 0. Any required exception will be specified already,
751 * and no memory will have been deallocated.
752 *
753 */
754static node*
Fred Drakeff9ea482000-04-19 13:54:15 +0000755build_node_children(PyObject *tuple, node *root, int *line_num)
Guido van Rossum47478871996-08-21 14:32:37 +0000756{
Martin v. Löwis18e16552006-02-15 17:27:45 +0000757 Py_ssize_t len = PyObject_Size(tuple);
758 Py_ssize_t i;
759 int err;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000760
761 for (i = 1; i < len; ++i) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000762 /* elem must always be a sequence, however simple */
Fred Drakeff9ea482000-04-19 13:54:15 +0000763 PyObject* elem = PySequence_GetItem(tuple, i);
764 int ok = elem != NULL;
Serhiy Storchaka78980432013-01-15 01:12:17 +0200765 int type = 0;
Fred Drakeff9ea482000-04-19 13:54:15 +0000766 char *strn = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000767
Fred Drakeff9ea482000-04-19 13:54:15 +0000768 if (ok)
769 ok = PySequence_Check(elem);
770 if (ok) {
771 PyObject *temp = PySequence_GetItem(elem, 0);
772 if (temp == NULL)
773 ok = 0;
774 else {
Christian Heimes217cfd12007-12-02 14:31:20 +0000775 ok = PyLong_Check(temp);
Serhiy Storchaka78980432013-01-15 01:12:17 +0200776 if (ok) {
777 type = _PyLong_AsInt(temp);
778 if (type == -1 && PyErr_Occurred()) {
779 Py_DECREF(temp);
780 Py_DECREF(elem);
781 return 0;
782 }
783 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000784 Py_DECREF(temp);
785 }
786 }
787 if (!ok) {
Victor Stinner5f8d4852014-01-02 11:49:27 +0100788 PyObject *err = Py_BuildValue("Os", elem,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000789 "Illegal node construct.");
790 PyErr_SetObject(parser_error, err);
791 Py_XDECREF(err);
Fred Drakeff9ea482000-04-19 13:54:15 +0000792 Py_XDECREF(elem);
793 return (0);
794 }
795 if (ISTERMINAL(type)) {
Martin v. Löwis18e16552006-02-15 17:27:45 +0000796 Py_ssize_t len = PyObject_Size(elem);
Fred Drake0ac9b072000-09-12 21:58:06 +0000797 PyObject *temp;
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000798 const char *temp_str;
Guido van Rossum47478871996-08-21 14:32:37 +0000799
Fred Drake0ac9b072000-09-12 21:58:06 +0000800 if ((len != 2) && (len != 3)) {
Fred Drake661ea262000-10-24 19:57:45 +0000801 err_string("terminal nodes must have 2 or 3 entries");
Fred Drake0ac9b072000-09-12 21:58:06 +0000802 return 0;
803 }
804 temp = PySequence_GetItem(elem, 1);
805 if (temp == NULL)
806 return 0;
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000807 if (!PyUnicode_Check(temp)) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000808 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +0000809 "second item in terminal node must be a string,"
810 " found %s",
Christian Heimes90aa7642007-12-19 02:45:37 +0000811 Py_TYPE(temp)->tp_name);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000812 Py_DECREF(temp);
Neal Norwitz2cde0eb2007-08-11 04:58:43 +0000813 Py_DECREF(elem);
Fred Drake0ac9b072000-09-12 21:58:06 +0000814 return 0;
815 }
816 if (len == 3) {
817 PyObject *o = PySequence_GetItem(elem, 2);
818 if (o != NULL) {
Serhiy Storchaka78980432013-01-15 01:12:17 +0200819 if (PyLong_Check(o)) {
820 int num = _PyLong_AsInt(o);
821 if (num == -1 && PyErr_Occurred()) {
822 Py_DECREF(o);
823 Py_DECREF(temp);
824 Py_DECREF(elem);
825 return 0;
826 }
827 *line_num = num;
828 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000829 else {
830 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +0000831 "third item in terminal node must be an"
832 " integer, found %s",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000833 Py_TYPE(temp)->tp_name);
Fred Drake0ac9b072000-09-12 21:58:06 +0000834 Py_DECREF(o);
835 Py_DECREF(temp);
Neal Norwitz2cde0eb2007-08-11 04:58:43 +0000836 Py_DECREF(elem);
Fred Drake0ac9b072000-09-12 21:58:06 +0000837 return 0;
838 }
839 Py_DECREF(o);
Fred Drakeff9ea482000-04-19 13:54:15 +0000840 }
841 }
Marc-André Lemburg4cc0f242008-08-07 18:54:33 +0000842 temp_str = _PyUnicode_AsStringAndSize(temp, &len);
Alexander Belopolskye239d232010-12-08 23:31:48 +0000843 if (temp_str == NULL) {
844 Py_DECREF(temp);
845 Py_XDECREF(elem);
846 return 0;
847 }
Alexandre Vassalottia85998a2008-05-03 18:24:43 +0000848 strn = (char *)PyObject_MALLOC(len + 1);
Victor Stinner3bd6abd2013-07-12 01:33:59 +0200849 if (strn == NULL) {
850 Py_DECREF(temp);
851 Py_XDECREF(elem);
852 PyErr_NoMemory();
853 return 0;
854 }
855 (void) memcpy(strn, temp_str, len + 1);
Fred Drake0ac9b072000-09-12 21:58:06 +0000856 Py_DECREF(temp);
Fred Drakeff9ea482000-04-19 13:54:15 +0000857 }
858 else if (!ISNONTERMINAL(type)) {
859 /*
860 * It has to be one or the other; this is an error.
Andrew Svetlov737fb892012-12-18 21:14:22 +0200861 * Raise an exception.
Fred Drakeff9ea482000-04-19 13:54:15 +0000862 */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000863 PyObject *err = Py_BuildValue("os", elem, "unknown node type.");
864 PyErr_SetObject(parser_error, err);
865 Py_XDECREF(err);
Fred Drakeff9ea482000-04-19 13:54:15 +0000866 Py_XDECREF(elem);
867 return (0);
868 }
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000869 err = PyNode_AddChild(root, type, strn, *line_num, 0);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000870 if (err == E_NOMEM) {
Neal Norwitz2cde0eb2007-08-11 04:58:43 +0000871 Py_XDECREF(elem);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000872 PyObject_FREE(strn);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000873 return (node *) PyErr_NoMemory();
874 }
875 if (err == E_OVERFLOW) {
Neal Norwitz2cde0eb2007-08-11 04:58:43 +0000876 Py_XDECREF(elem);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000877 PyObject_FREE(strn);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000878 PyErr_SetString(PyExc_ValueError,
879 "unsupported number of child nodes");
880 return NULL;
881 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000882
Fred Drakeff9ea482000-04-19 13:54:15 +0000883 if (ISNONTERMINAL(type)) {
884 node* new_child = CHILD(root, i - 1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000885
Fred Drakeff9ea482000-04-19 13:54:15 +0000886 if (new_child != build_node_children(elem, new_child, line_num)) {
887 Py_XDECREF(elem);
888 return (0);
889 }
890 }
891 else if (type == NEWLINE) { /* It's true: we increment the */
892 ++(*line_num); /* line number *after* the newline! */
893 }
894 Py_XDECREF(elem);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000895 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000896 return root;
Fred Drakeff9ea482000-04-19 13:54:15 +0000897}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000898
899
900static node*
Fred Drakeff9ea482000-04-19 13:54:15 +0000901build_node_tree(PyObject *tuple)
Guido van Rossum47478871996-08-21 14:32:37 +0000902{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000903 node* res = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000904 PyObject *temp = PySequence_GetItem(tuple, 0);
Fred Drake0ac9b072000-09-12 21:58:06 +0000905 long num = -1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000906
Guido van Rossum47478871996-08-21 14:32:37 +0000907 if (temp != NULL)
Christian Heimes217cfd12007-12-02 14:31:20 +0000908 num = PyLong_AsLong(temp);
Guido van Rossum47478871996-08-21 14:32:37 +0000909 Py_XDECREF(temp);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000910 if (ISTERMINAL(num)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000911 /*
912 * The tuple is simple, but it doesn't start with a start symbol.
Andrew Svetlov737fb892012-12-18 21:14:22 +0200913 * Raise an exception now and be done with it.
Fred Drakeff9ea482000-04-19 13:54:15 +0000914 */
Victor Stinner6684bdf2013-07-17 00:13:52 +0200915 tuple = Py_BuildValue("Os", tuple,
Fred Drakec2683dd2001-07-17 19:32:05 +0000916 "Illegal syntax-tree; cannot start with terminal symbol.");
Fred Drakeff9ea482000-04-19 13:54:15 +0000917 PyErr_SetObject(parser_error, tuple);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000918 Py_XDECREF(tuple);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000919 }
920 else if (ISNONTERMINAL(num)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000921 /*
922 * Not efficient, but that can be handled later.
923 */
924 int line_num = 0;
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000925 PyObject *encoding = NULL;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000926
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000927 if (num == encoding_decl) {
928 encoding = PySequence_GetItem(tuple, 2);
929 /* tuple isn't borrowed anymore here, need to DECREF */
930 tuple = PySequence_GetSlice(tuple, 0, 2);
Alexander Belopolskye239d232010-12-08 23:31:48 +0000931 if (tuple == NULL)
932 return NULL;
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000933 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000934 res = PyNode_New(num);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000935 if (res != NULL) {
936 if (res != build_node_children(tuple, res, &line_num)) {
937 PyNode_Free(res);
938 res = NULL;
939 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000940 if (res && encoding) {
Martin v. Löwisad0a4622006-02-16 14:30:23 +0000941 Py_ssize_t len;
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000942 const char *temp;
Marc-André Lemburg4cc0f242008-08-07 18:54:33 +0000943 temp = _PyUnicode_AsStringAndSize(encoding, &len);
Alexander Belopolskye239d232010-12-08 23:31:48 +0000944 if (temp == NULL) {
945 Py_DECREF(res);
946 Py_DECREF(encoding);
947 Py_DECREF(tuple);
948 return NULL;
949 }
Alexandre Vassalottia85998a2008-05-03 18:24:43 +0000950 res->n_str = (char *)PyObject_MALLOC(len + 1);
Victor Stinner3bd6abd2013-07-12 01:33:59 +0200951 if (res->n_str == NULL) {
952 Py_DECREF(res);
953 Py_DECREF(encoding);
954 Py_DECREF(tuple);
955 PyErr_NoMemory();
956 return NULL;
957 }
958 (void) memcpy(res->n_str, temp, len + 1);
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000959 Py_DECREF(encoding);
960 Py_DECREF(tuple);
961 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000962 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000963 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000964 else {
Fred Drakeff9ea482000-04-19 13:54:15 +0000965 /* The tuple is illegal -- if the number is neither TERMINAL nor
Fred Drake0ac9b072000-09-12 21:58:06 +0000966 * NONTERMINAL, we can't use it. Not sure the implementation
967 * allows this condition, but the API doesn't preclude it.
Fred Drakeff9ea482000-04-19 13:54:15 +0000968 */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000969 PyObject *err = Py_BuildValue("os", tuple,
970 "Illegal component tuple.");
971 PyErr_SetObject(parser_error, err);
972 Py_XDECREF(err);
973 }
Guido van Rossum3d602e31996-07-21 02:33:56 +0000974
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000975 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000976}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000977
978
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000979/*
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000980 * Validation routines used within the validation section:
981 */
Jeremy Hylton938ace62002-07-17 16:30:39 +0000982static int validate_terminal(node *terminal, int type, char *string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000983
Fred Drakeff9ea482000-04-19 13:54:15 +0000984#define validate_ampersand(ch) validate_terminal(ch, AMPER, "&")
985#define validate_circumflex(ch) validate_terminal(ch, CIRCUMFLEX, "^")
986#define validate_colon(ch) validate_terminal(ch, COLON, ":")
987#define validate_comma(ch) validate_terminal(ch, COMMA, ",")
988#define validate_dedent(ch) validate_terminal(ch, DEDENT, "")
989#define validate_equal(ch) validate_terminal(ch, EQUAL, "=")
990#define validate_indent(ch) validate_terminal(ch, INDENT, (char*)NULL)
991#define validate_lparen(ch) validate_terminal(ch, LPAR, "(")
992#define validate_newline(ch) validate_terminal(ch, NEWLINE, (char*)NULL)
993#define validate_rparen(ch) validate_terminal(ch, RPAR, ")")
994#define validate_semi(ch) validate_terminal(ch, SEMI, ";")
995#define validate_star(ch) validate_terminal(ch, STAR, "*")
996#define validate_vbar(ch) validate_terminal(ch, VBAR, "|")
997#define validate_doublestar(ch) validate_terminal(ch, DOUBLESTAR, "**")
998#define validate_dot(ch) validate_terminal(ch, DOT, ".")
Anthony Baxterc2a5a632004-08-02 06:10:11 +0000999#define validate_at(ch) validate_terminal(ch, AT, "@")
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001000#define validate_rarrow(ch) validate_terminal(ch, RARROW, "->")
Fred Drakeff9ea482000-04-19 13:54:15 +00001001#define validate_name(ch, str) validate_terminal(ch, NAME, str)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001002
Fred Drake0ac9b072000-09-12 21:58:06 +00001003#define VALIDATER(n) static int validate_##n(node *tree)
1004
Fred Drakeff9ea482000-04-19 13:54:15 +00001005VALIDATER(node); VALIDATER(small_stmt);
1006VALIDATER(class); VALIDATER(node);
1007VALIDATER(parameters); VALIDATER(suite);
1008VALIDATER(testlist); VALIDATER(varargslist);
Guido van Rossumfc158e22007-11-15 19:17:28 +00001009VALIDATER(vfpdef);
Fred Drakeff9ea482000-04-19 13:54:15 +00001010VALIDATER(stmt); VALIDATER(simple_stmt);
1011VALIDATER(expr_stmt); VALIDATER(power);
Guido van Rossum452bf512007-02-09 05:32:43 +00001012VALIDATER(del_stmt);
Nick Coghlan650f0d02007-04-15 12:05:43 +00001013VALIDATER(return_stmt); VALIDATER(raise_stmt);
1014VALIDATER(import_stmt); VALIDATER(import_stmt);
1015VALIDATER(import_name); VALIDATER(yield_stmt);
Mark Dickinson407b3bd2012-04-29 22:18:31 +01001016VALIDATER(global_stmt); VALIDATER(nonlocal_stmt);
1017VALIDATER(assert_stmt);
Benjamin Peterson4905e802009-09-27 02:43:28 +00001018VALIDATER(compound_stmt); VALIDATER(test_or_star_expr);
Fred Drakeff9ea482000-04-19 13:54:15 +00001019VALIDATER(while); VALIDATER(for);
1020VALIDATER(try); VALIDATER(except_clause);
1021VALIDATER(test); VALIDATER(and_test);
1022VALIDATER(not_test); VALIDATER(comparison);
Guido van Rossumfc158e22007-11-15 19:17:28 +00001023VALIDATER(comp_op);
Guido van Rossum0368b722007-05-11 16:50:42 +00001024VALIDATER(star_expr); VALIDATER(expr);
Fred Drakeff9ea482000-04-19 13:54:15 +00001025VALIDATER(xor_expr); VALIDATER(and_expr);
1026VALIDATER(shift_expr); VALIDATER(arith_expr);
1027VALIDATER(term); VALIDATER(factor);
1028VALIDATER(atom); VALIDATER(lambdef);
1029VALIDATER(trailer); VALIDATER(subscript);
1030VALIDATER(subscriptlist); VALIDATER(sliceop);
Nick Coghlan650f0d02007-04-15 12:05:43 +00001031VALIDATER(exprlist); VALIDATER(dictorsetmaker);
Fred Drakeff9ea482000-04-19 13:54:15 +00001032VALIDATER(arglist); VALIDATER(argument);
Benjamin Peterson4905e802009-09-27 02:43:28 +00001033VALIDATER(comp_for);
Nick Coghlan650f0d02007-04-15 12:05:43 +00001034VALIDATER(comp_iter); VALIDATER(comp_if);
1035VALIDATER(testlist_comp); VALIDATER(yield_expr);
Benjamin Peterson4905e802009-09-27 02:43:28 +00001036VALIDATER(or_test);
Nick Coghlan650f0d02007-04-15 12:05:43 +00001037VALIDATER(test_nocond); VALIDATER(lambdef_nocond);
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001038VALIDATER(yield_arg);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001039
Fred Drake0ac9b072000-09-12 21:58:06 +00001040#undef VALIDATER
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001041
Fred Drakeff9ea482000-04-19 13:54:15 +00001042#define is_even(n) (((n) & 1) == 0)
1043#define is_odd(n) (((n) & 1) == 1)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001044
1045
1046static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001047validate_ntype(node *n, int t)
Guido van Rossum47478871996-08-21 14:32:37 +00001048{
Fred Drake0ac9b072000-09-12 21:58:06 +00001049 if (TYPE(n) != t) {
1050 PyErr_Format(parser_error, "Expected node type %d, got %d.",
1051 t, TYPE(n));
1052 return 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001053 }
Fred Drake0ac9b072000-09-12 21:58:06 +00001054 return 1;
Fred Drakeff9ea482000-04-19 13:54:15 +00001055}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001056
1057
Fred Drakee7ab64e2000-04-25 04:14:46 +00001058/* Verifies that the number of child nodes is exactly 'num', raising
1059 * an exception if it isn't. The exception message does not indicate
1060 * the exact number of nodes, allowing this to be used to raise the
1061 * "right" exception when the wrong number of nodes is present in a
1062 * specific variant of a statement's syntax. This is commonly used
1063 * in that fashion.
1064 */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001065static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001066validate_numnodes(node *n, int num, const char *const name)
Guido van Rossum47478871996-08-21 14:32:37 +00001067{
Guido van Rossum3d602e31996-07-21 02:33:56 +00001068 if (NCH(n) != num) {
Fred Drake0ac9b072000-09-12 21:58:06 +00001069 PyErr_Format(parser_error,
1070 "Illegal number of children for %s node.", name);
1071 return 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001072 }
Fred Drake0ac9b072000-09-12 21:58:06 +00001073 return 1;
Fred Drakeff9ea482000-04-19 13:54:15 +00001074}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001075
1076
1077static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001078validate_terminal(node *terminal, int type, char *string)
Guido van Rossum47478871996-08-21 14:32:37 +00001079{
Guido van Rossum3d602e31996-07-21 02:33:56 +00001080 int res = (validate_ntype(terminal, type)
Fred Drakeff9ea482000-04-19 13:54:15 +00001081 && ((string == 0) || (strcmp(string, STR(terminal)) == 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001082
1083 if (!res && !PyErr_Occurred()) {
Fred Drake0ac9b072000-09-12 21:58:06 +00001084 PyErr_Format(parser_error,
1085 "Illegal terminal: expected \"%s\"", string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001086 }
1087 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001088}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001089
1090
Guido van Rossum47478871996-08-21 14:32:37 +00001091/* X (',' X) [',']
1092 */
1093static int
Thomas Woutersbd4bc4e2000-07-22 23:57:55 +00001094validate_repeating_list(node *tree, int ntype, int (*vfunc)(node *),
Fred Drakeff9ea482000-04-19 13:54:15 +00001095 const char *const name)
Guido van Rossum47478871996-08-21 14:32:37 +00001096{
1097 int nch = NCH(tree);
1098 int res = (nch && validate_ntype(tree, ntype)
Fred Drakeff9ea482000-04-19 13:54:15 +00001099 && vfunc(CHILD(tree, 0)));
Guido van Rossum47478871996-08-21 14:32:37 +00001100
1101 if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +00001102 (void) validate_numnodes(tree, 1, name);
Guido van Rossum47478871996-08-21 14:32:37 +00001103 else {
Fred Drakeff9ea482000-04-19 13:54:15 +00001104 if (is_even(nch))
1105 res = validate_comma(CHILD(tree, --nch));
1106 if (res && nch > 1) {
1107 int pos = 1;
1108 for ( ; res && pos < nch; pos += 2)
1109 res = (validate_comma(CHILD(tree, pos))
1110 && vfunc(CHILD(tree, pos + 1)));
1111 }
Guido van Rossum47478871996-08-21 14:32:37 +00001112 }
1113 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001114}
Guido van Rossum47478871996-08-21 14:32:37 +00001115
1116
Fred Drakecff283c2000-08-21 22:24:43 +00001117/* validate_class()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001118 *
1119 * classdef:
Fred Drakeff9ea482000-04-19 13:54:15 +00001120 * 'class' NAME ['(' testlist ')'] ':' suite
Guido van Rossum3d602e31996-07-21 02:33:56 +00001121 */
Guido van Rossum47478871996-08-21 14:32:37 +00001122static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001123validate_class(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001124{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001125 int nch = NCH(tree);
Brett Cannonf4189912005-04-09 02:30:16 +00001126 int res = (validate_ntype(tree, classdef) &&
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001127 ((nch == 4) || (nch == 6) || (nch == 7)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001128
Guido van Rossum3d602e31996-07-21 02:33:56 +00001129 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001130 res = (validate_name(CHILD(tree, 0), "class")
1131 && validate_ntype(CHILD(tree, 1), NAME)
1132 && validate_colon(CHILD(tree, nch - 2))
1133 && validate_suite(CHILD(tree, nch - 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001134 }
Brett Cannonf4189912005-04-09 02:30:16 +00001135 else {
Fred Drakeff9ea482000-04-19 13:54:15 +00001136 (void) validate_numnodes(tree, 4, "class");
Brett Cannonf4189912005-04-09 02:30:16 +00001137 }
Guido van Rossumfc158e22007-11-15 19:17:28 +00001138
Brett Cannonf4189912005-04-09 02:30:16 +00001139 if (res) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001140 if (nch == 7) {
1141 res = ((validate_lparen(CHILD(tree, 2)) &&
1142 validate_arglist(CHILD(tree, 3)) &&
1143 validate_rparen(CHILD(tree, 4))));
1144 }
1145 else if (nch == 6) {
1146 res = (validate_lparen(CHILD(tree,2)) &&
1147 validate_rparen(CHILD(tree,3)));
1148 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001149 }
1150 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001151}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001152
1153
Guido van Rossum3d602e31996-07-21 02:33:56 +00001154/* if_stmt:
Fred Drakeff9ea482000-04-19 13:54:15 +00001155 * 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
Guido van Rossum3d602e31996-07-21 02:33:56 +00001156 */
Guido van Rossum47478871996-08-21 14:32:37 +00001157static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001158validate_if(node *tree)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001159{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001160 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001161 int res = (validate_ntype(tree, if_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001162 && (nch >= 4)
1163 && validate_name(CHILD(tree, 0), "if")
1164 && validate_test(CHILD(tree, 1))
1165 && validate_colon(CHILD(tree, 2))
1166 && validate_suite(CHILD(tree, 3)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001167
1168 if (res && ((nch % 4) == 3)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001169 /* ... 'else' ':' suite */
1170 res = (validate_name(CHILD(tree, nch - 3), "else")
1171 && validate_colon(CHILD(tree, nch - 2))
1172 && validate_suite(CHILD(tree, nch - 1)));
1173 nch -= 3;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001174 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001175 else if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +00001176 (void) validate_numnodes(tree, 4, "if");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001177 if ((nch % 4) != 0)
Fred Drakeff9ea482000-04-19 13:54:15 +00001178 /* Will catch the case for nch < 4 */
1179 res = validate_numnodes(tree, 0, "if");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001180 else if (res && (nch > 4)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001181 /* ... ('elif' test ':' suite)+ ... */
1182 int j = 4;
1183 while ((j < nch) && res) {
1184 res = (validate_name(CHILD(tree, j), "elif")
1185 && validate_colon(CHILD(tree, j + 2))
1186 && validate_test(CHILD(tree, j + 1))
1187 && validate_suite(CHILD(tree, j + 3)));
1188 j += 4;
1189 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001190 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001191 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001192}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001193
1194
Guido van Rossum3d602e31996-07-21 02:33:56 +00001195/* parameters:
Fred Drakeff9ea482000-04-19 13:54:15 +00001196 * '(' [varargslist] ')'
Guido van Rossum3d602e31996-07-21 02:33:56 +00001197 *
1198 */
Guido van Rossum47478871996-08-21 14:32:37 +00001199static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001200validate_parameters(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001201{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001202 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001203 int res = validate_ntype(tree, parameters) && ((nch == 2) || (nch == 3));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001204
Guido van Rossum3d602e31996-07-21 02:33:56 +00001205 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001206 res = (validate_lparen(CHILD(tree, 0))
1207 && validate_rparen(CHILD(tree, nch - 1)));
1208 if (res && (nch == 3))
1209 res = validate_varargslist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001210 }
Fred Drakeff9ea482000-04-19 13:54:15 +00001211 else {
1212 (void) validate_numnodes(tree, 2, "parameters");
1213 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001214 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001215}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001216
1217
Fred Drakecff283c2000-08-21 22:24:43 +00001218/* validate_suite()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001219 *
1220 * suite:
Fred Drakeff9ea482000-04-19 13:54:15 +00001221 * simple_stmt
Guido van Rossum3d602e31996-07-21 02:33:56 +00001222 * | NEWLINE INDENT stmt+ DEDENT
1223 */
Guido van Rossum47478871996-08-21 14:32:37 +00001224static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001225validate_suite(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001226{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001227 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001228 int res = (validate_ntype(tree, suite) && ((nch == 1) || (nch >= 4)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001229
Guido van Rossum3d602e31996-07-21 02:33:56 +00001230 if (res && (nch == 1))
Fred Drakeff9ea482000-04-19 13:54:15 +00001231 res = validate_simple_stmt(CHILD(tree, 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001232 else if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001233 /* NEWLINE INDENT stmt+ DEDENT */
1234 res = (validate_newline(CHILD(tree, 0))
1235 && validate_indent(CHILD(tree, 1))
1236 && validate_stmt(CHILD(tree, 2))
1237 && validate_dedent(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001238
Fred Drakeff9ea482000-04-19 13:54:15 +00001239 if (res && (nch > 4)) {
1240 int i = 3;
1241 --nch; /* forget the DEDENT */
1242 for ( ; res && (i < nch); ++i)
1243 res = validate_stmt(CHILD(tree, i));
1244 }
1245 else if (nch < 4)
1246 res = validate_numnodes(tree, 4, "suite");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001247 }
1248 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001249}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001250
1251
Guido van Rossum47478871996-08-21 14:32:37 +00001252static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001253validate_testlist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001254{
Guido van Rossum47478871996-08-21 14:32:37 +00001255 return (validate_repeating_list(tree, testlist,
Fred Drakeff9ea482000-04-19 13:54:15 +00001256 validate_test, "testlist"));
1257}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001258
Guido van Rossum1c917072001-10-15 15:44:05 +00001259static int
Benjamin Peterson4905e802009-09-27 02:43:28 +00001260validate_testlist_star_expr(node *tl)
Guido van Rossum2d3b9862002-05-24 15:47:06 +00001261{
Benjamin Peterson4905e802009-09-27 02:43:28 +00001262 return (validate_repeating_list(tl, testlist_star_expr, validate_test_or_star_expr,
1263 "testlist"));
Guido van Rossum2d3b9862002-05-24 15:47:06 +00001264}
1265
1266
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001267/* validate either vfpdef or tfpdef.
1268 * vfpdef: NAME
1269 * tfpdef: NAME [':' test]
Neal Norwitzc1505362006-12-28 06:47:50 +00001270 */
1271static int
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001272validate_vfpdef(node *tree)
Neal Norwitzc1505362006-12-28 06:47:50 +00001273{
1274 int nch = NCH(tree);
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001275 if (TYPE(tree) == vfpdef) {
Neal Norwitzc1505362006-12-28 06:47:50 +00001276 return nch == 1 && validate_name(CHILD(tree, 0), NULL);
1277 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001278 else if (TYPE(tree) == tfpdef) {
Neal Norwitzc1505362006-12-28 06:47:50 +00001279 if (nch == 1) {
1280 return validate_name(CHILD(tree, 0), NULL);
1281 }
1282 else if (nch == 3) {
1283 return validate_name(CHILD(tree, 0), NULL) &&
1284 validate_colon(CHILD(tree, 1)) &&
1285 validate_test(CHILD(tree, 2));
1286 }
1287 }
1288 return 0;
1289}
1290
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001291/* '*' [vfpdef] (',' vfpdef ['=' test])* [',' '**' vfpdef] | '**' vfpdef
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001292 * ..or tfpdef in place of vfpdef. vfpdef: NAME; tfpdef: NAME [':' test]
Fred Drakecff283c2000-08-21 22:24:43 +00001293 */
1294static int
1295validate_varargslist_trailer(node *tree, int start)
1296{
1297 int nch = NCH(tree);
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001298 int res = 0;
Fred Drakecff283c2000-08-21 22:24:43 +00001299
1300 if (nch <= start) {
1301 err_string("expected variable argument trailer for varargslist");
1302 return 0;
1303 }
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001304 if (TYPE(CHILD(tree, start)) == STAR) {
Fred Drakecff283c2000-08-21 22:24:43 +00001305 /*
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001306 * '*' [vfpdef]
Fred Drakecff283c2000-08-21 22:24:43 +00001307 */
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001308 res = validate_star(CHILD(tree, start++));
1309 if (res && start < nch && (TYPE(CHILD(tree, start)) == vfpdef ||
1310 TYPE(CHILD(tree, start)) == tfpdef))
1311 res = validate_vfpdef(CHILD(tree, start++));
1312 /*
1313 * (',' vfpdef ['=' test])*
1314 */
1315 while (res && start + 1 < nch && (
1316 TYPE(CHILD(tree, start + 1)) == vfpdef ||
1317 TYPE(CHILD(tree, start + 1)) == tfpdef)) {
1318 res = (validate_comma(CHILD(tree, start++))
1319 && validate_vfpdef(CHILD(tree, start++)));
1320 if (res && start + 1 < nch && TYPE(CHILD(tree, start)) == EQUAL)
1321 res = (validate_equal(CHILD(tree, start++))
1322 && validate_test(CHILD(tree, start++)));
1323 }
1324 /*
1325 * [',' '**' vfpdef]
1326 */
1327 if (res && start + 2 < nch && TYPE(CHILD(tree, start+1)) == DOUBLESTAR)
1328 res = (validate_comma(CHILD(tree, start++))
1329 && validate_doublestar(CHILD(tree, start++))
1330 && validate_vfpdef(CHILD(tree, start++)));
1331 }
1332 else if (TYPE(CHILD(tree, start)) == DOUBLESTAR) {
1333 /*
1334 * '**' vfpdef
1335 */
1336 if (start + 1 < nch)
1337 res = (validate_doublestar(CHILD(tree, start++))
1338 && validate_vfpdef(CHILD(tree, start++)));
Guido van Rossum4f72a782006-10-27 23:31:49 +00001339 else {
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001340 res = 0;
1341 err_string("expected vfpdef after ** in varargslist trailer");
Guido van Rossum4f72a782006-10-27 23:31:49 +00001342 }
Fred Drakecff283c2000-08-21 22:24:43 +00001343 }
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001344 else {
1345 res = 0;
1346 err_string("expected * or ** in varargslist trailer");
Fred Drakecff283c2000-08-21 22:24:43 +00001347 }
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001348
1349 if (res && start != nch) {
1350 res = 0;
1351 err_string("unexpected extra children in varargslist trailer");
1352 }
Fred Drakecff283c2000-08-21 22:24:43 +00001353 return res;
1354}
1355
1356
Neal Norwitzc1505362006-12-28 06:47:50 +00001357/* validate_varargslist()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001358 *
Neal Norwitzc1505362006-12-28 06:47:50 +00001359 * Validate typedargslist or varargslist.
1360 *
1361 * typedargslist: ((tfpdef ['=' test] ',')*
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001362 * ('*' [tfpdef] (',' tfpdef ['=' test])* [',' '**' tfpdef] |
1363 * '**' tfpdef)
Neal Norwitzc1505362006-12-28 06:47:50 +00001364 * | tfpdef ['=' test] (',' tfpdef ['=' test])* [','])
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001365 * tfpdef: NAME [':' test]
Neal Norwitzc1505362006-12-28 06:47:50 +00001366 * varargslist: ((vfpdef ['=' test] ',')*
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001367 * ('*' [vfpdef] (',' vfpdef ['=' test])* [',' '**' vfpdef] |
1368 * '**' vfpdef)
Neal Norwitzc1505362006-12-28 06:47:50 +00001369 * | vfpdef ['=' test] (',' vfpdef ['=' test])* [','])
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001370 * vfpdef: NAME
Guido van Rossum3d602e31996-07-21 02:33:56 +00001371 *
1372 */
Guido van Rossum47478871996-08-21 14:32:37 +00001373static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001374validate_varargslist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001375{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001376 int nch = NCH(tree);
Neal Norwitzc1505362006-12-28 06:47:50 +00001377 int res = (TYPE(tree) == varargslist ||
1378 TYPE(tree) == typedargslist) &&
1379 (nch != 0);
Fred Drakecff283c2000-08-21 22:24:43 +00001380 int sym;
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001381 node *ch;
1382 int i = 0;
Guido van Rossumfc158e22007-11-15 19:17:28 +00001383
Fred Drakeb6429a22000-12-11 22:08:27 +00001384 if (!res)
1385 return 0;
Fred Drakecff283c2000-08-21 22:24:43 +00001386 if (nch < 1) {
1387 err_string("varargslist missing child nodes");
1388 return 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001389 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001390 while (i < nch) {
Guido van Rossumfc158e22007-11-15 19:17:28 +00001391 ch = CHILD(tree, i);
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001392 sym = TYPE(ch);
1393 if (sym == vfpdef || sym == tfpdef) {
1394 /* validate (vfpdef ['=' test] ',')+ */
1395 res = validate_vfpdef(ch);
Fred Drakecff283c2000-08-21 22:24:43 +00001396 ++i;
Fred Drakeb6429a22000-12-11 22:08:27 +00001397 if (res && (i+2 <= nch) && TYPE(CHILD(tree, i)) == EQUAL) {
1398 res = (validate_equal(CHILD(tree, i))
1399 && validate_test(CHILD(tree, i+1)));
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001400 if (res)
1401 i += 2;
Fred Drakecff283c2000-08-21 22:24:43 +00001402 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001403 if (res && i < nch) {
1404 res = validate_comma(CHILD(tree, i));
1405 ++i;
Fred Drakecff283c2000-08-21 22:24:43 +00001406 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001407 } else if (sym == DOUBLESTAR || sym == STAR) {
1408 res = validate_varargslist_trailer(tree, i);
1409 break;
1410 } else {
1411 res = 0;
1412 err_string("illegal formation for varargslist");
Fred Drakeff9ea482000-04-19 13:54:15 +00001413 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001414 }
Fred Drakecff283c2000-08-21 22:24:43 +00001415 return res;
Fred Drakeff9ea482000-04-19 13:54:15 +00001416}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001417
1418
Nick Coghlan650f0d02007-04-15 12:05:43 +00001419/* comp_iter: comp_for | comp_if
Fred Drakecff283c2000-08-21 22:24:43 +00001420 */
1421static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00001422validate_comp_iter(node *tree)
Fred Drakecff283c2000-08-21 22:24:43 +00001423{
Nick Coghlan650f0d02007-04-15 12:05:43 +00001424 int res = (validate_ntype(tree, comp_iter)
1425 && validate_numnodes(tree, 1, "comp_iter"));
1426 if (res && TYPE(CHILD(tree, 0)) == comp_for)
1427 res = validate_comp_for(CHILD(tree, 0));
Fred Drakecff283c2000-08-21 22:24:43 +00001428 else
Nick Coghlan650f0d02007-04-15 12:05:43 +00001429 res = validate_comp_if(CHILD(tree, 0));
Fred Drakecff283c2000-08-21 22:24:43 +00001430
1431 return res;
1432}
1433
Nick Coghlan650f0d02007-04-15 12:05:43 +00001434/* comp_for: 'for' exprlist 'in' test [comp_iter]
Raymond Hettinger354433a2004-05-19 08:20:33 +00001435 */
1436static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00001437validate_comp_for(node *tree)
Fred Drakecff283c2000-08-21 22:24:43 +00001438{
1439 int nch = NCH(tree);
1440 int res;
1441
1442 if (nch == 5)
Nick Coghlan650f0d02007-04-15 12:05:43 +00001443 res = validate_comp_iter(CHILD(tree, 4));
Fred Drakecff283c2000-08-21 22:24:43 +00001444 else
Nick Coghlan650f0d02007-04-15 12:05:43 +00001445 res = validate_numnodes(tree, 4, "comp_for");
Raymond Hettinger354433a2004-05-19 08:20:33 +00001446
1447 if (res)
1448 res = (validate_name(CHILD(tree, 0), "for")
1449 && validate_exprlist(CHILD(tree, 1))
1450 && validate_name(CHILD(tree, 2), "in")
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00001451 && validate_or_test(CHILD(tree, 3)));
Raymond Hettinger354433a2004-05-19 08:20:33 +00001452
1453 return res;
1454}
1455
Nick Coghlan650f0d02007-04-15 12:05:43 +00001456/* comp_if: 'if' test_nocond [comp_iter]
Fred Drakecff283c2000-08-21 22:24:43 +00001457 */
1458static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00001459validate_comp_if(node *tree)
Fred Drakecff283c2000-08-21 22:24:43 +00001460{
1461 int nch = NCH(tree);
1462 int res;
1463
1464 if (nch == 3)
Nick Coghlan650f0d02007-04-15 12:05:43 +00001465 res = validate_comp_iter(CHILD(tree, 2));
Fred Drakecff283c2000-08-21 22:24:43 +00001466 else
Nick Coghlan650f0d02007-04-15 12:05:43 +00001467 res = validate_numnodes(tree, 2, "comp_if");
Fred Drakecff283c2000-08-21 22:24:43 +00001468
1469 if (res)
1470 res = (validate_name(CHILD(tree, 0), "if")
Nick Coghlan650f0d02007-04-15 12:05:43 +00001471 && validate_test_nocond(CHILD(tree, 1)));
Fred Drakecff283c2000-08-21 22:24:43 +00001472
1473 return res;
1474}
1475
1476
Guido van Rossum3d602e31996-07-21 02:33:56 +00001477/* simple_stmt | compound_stmt
1478 *
1479 */
Guido van Rossum47478871996-08-21 14:32:37 +00001480static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001481validate_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001482{
1483 int res = (validate_ntype(tree, stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001484 && validate_numnodes(tree, 1, "stmt"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001485
Guido van Rossum3d602e31996-07-21 02:33:56 +00001486 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001487 tree = CHILD(tree, 0);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001488
Fred Drakeff9ea482000-04-19 13:54:15 +00001489 if (TYPE(tree) == simple_stmt)
1490 res = validate_simple_stmt(tree);
1491 else
1492 res = validate_compound_stmt(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001493 }
1494 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001495}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001496
1497
Guido van Rossum3d602e31996-07-21 02:33:56 +00001498/* small_stmt (';' small_stmt)* [';'] NEWLINE
1499 *
1500 */
Guido van Rossum47478871996-08-21 14:32:37 +00001501static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001502validate_simple_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001503{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001504 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001505 int res = (validate_ntype(tree, simple_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001506 && (nch >= 2)
1507 && validate_small_stmt(CHILD(tree, 0))
1508 && validate_newline(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001509
Guido van Rossum3d602e31996-07-21 02:33:56 +00001510 if (nch < 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00001511 res = validate_numnodes(tree, 2, "simple_stmt");
1512 --nch; /* forget the NEWLINE */
Guido van Rossum3d602e31996-07-21 02:33:56 +00001513 if (res && is_even(nch))
Fred Drakeff9ea482000-04-19 13:54:15 +00001514 res = validate_semi(CHILD(tree, --nch));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001515 if (res && (nch > 2)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001516 int i;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001517
Fred Drakeff9ea482000-04-19 13:54:15 +00001518 for (i = 1; res && (i < nch); i += 2)
1519 res = (validate_semi(CHILD(tree, i))
1520 && validate_small_stmt(CHILD(tree, i + 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001521 }
1522 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001523}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001524
1525
Guido van Rossum47478871996-08-21 14:32:37 +00001526static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001527validate_small_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001528{
1529 int nch = NCH(tree);
Fred Drake0ac9b072000-09-12 21:58:06 +00001530 int res = validate_numnodes(tree, 1, "small_stmt");
Guido van Rossum3d602e31996-07-21 02:33:56 +00001531
Fred Drake0ac9b072000-09-12 21:58:06 +00001532 if (res) {
1533 int ntype = TYPE(CHILD(tree, 0));
1534
1535 if ( (ntype == expr_stmt)
Fred Drake0ac9b072000-09-12 21:58:06 +00001536 || (ntype == del_stmt)
1537 || (ntype == pass_stmt)
1538 || (ntype == flow_stmt)
1539 || (ntype == import_stmt)
1540 || (ntype == global_stmt)
Mark Dickinson407b3bd2012-04-29 22:18:31 +01001541 || (ntype == nonlocal_stmt)
Georg Brandl7cae87c2006-09-06 06:51:57 +00001542 || (ntype == assert_stmt))
Fred Drake0ac9b072000-09-12 21:58:06 +00001543 res = validate_node(CHILD(tree, 0));
1544 else {
1545 res = 0;
1546 err_string("illegal small_stmt child type");
1547 }
1548 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001549 else if (nch == 1) {
Fred Drake0ac9b072000-09-12 21:58:06 +00001550 res = 0;
1551 PyErr_Format(parser_error,
1552 "Unrecognized child node of small_stmt: %d.",
1553 TYPE(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001554 }
1555 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001556}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001557
1558
1559/* compound_stmt:
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00001560 * if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decorated
Guido van Rossum3d602e31996-07-21 02:33:56 +00001561 */
Guido van Rossum47478871996-08-21 14:32:37 +00001562static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001563validate_compound_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001564{
1565 int res = (validate_ntype(tree, compound_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001566 && validate_numnodes(tree, 1, "compound_stmt"));
Fred Drake0ac9b072000-09-12 21:58:06 +00001567 int ntype;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001568
1569 if (!res)
Fred Drakeff9ea482000-04-19 13:54:15 +00001570 return (0);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001571
1572 tree = CHILD(tree, 0);
Fred Drake0ac9b072000-09-12 21:58:06 +00001573 ntype = TYPE(tree);
1574 if ( (ntype == if_stmt)
1575 || (ntype == while_stmt)
1576 || (ntype == for_stmt)
1577 || (ntype == try_stmt)
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00001578 || (ntype == with_stmt)
Fred Drake0ac9b072000-09-12 21:58:06 +00001579 || (ntype == funcdef)
Guido van Rossumd59da4b2007-05-22 18:11:13 +00001580 || (ntype == classdef)
1581 || (ntype == decorated))
Fred Drakeff9ea482000-04-19 13:54:15 +00001582 res = validate_node(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001583 else {
Fred Drake0ac9b072000-09-12 21:58:06 +00001584 res = 0;
1585 PyErr_Format(parser_error,
1586 "Illegal compound statement type: %d.", TYPE(tree));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001587 }
1588 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001589}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001590
Guido van Rossum47478871996-08-21 14:32:37 +00001591static int
Benjamin Peterson4905e802009-09-27 02:43:28 +00001592validate_yield_or_testlist(node *tree, int tse)
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001593{
Benjamin Peterson4905e802009-09-27 02:43:28 +00001594 if (TYPE(tree) == yield_expr) {
1595 return validate_yield_expr(tree);
1596 }
1597 else {
1598 if (tse)
1599 return validate_testlist_star_expr(tree);
1600 else
1601 return validate_testlist(tree);
1602 }
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001603}
1604
1605static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001606validate_expr_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001607{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001608 int j;
1609 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001610 int res = (validate_ntype(tree, expr_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001611 && is_odd(nch)
Benjamin Peterson4905e802009-09-27 02:43:28 +00001612 && validate_testlist_star_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001613
Fred Drake28f739a2000-08-25 22:42:40 +00001614 if (res && nch == 3
1615 && TYPE(CHILD(tree, 1)) == augassign) {
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001616 res = validate_numnodes(CHILD(tree, 1), 1, "augassign")
Benjamin Peterson4905e802009-09-27 02:43:28 +00001617 && validate_yield_or_testlist(CHILD(tree, 2), 0);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001618
Fred Drake28f739a2000-08-25 22:42:40 +00001619 if (res) {
1620 char *s = STR(CHILD(CHILD(tree, 1), 0));
1621
1622 res = (strcmp(s, "+=") == 0
1623 || strcmp(s, "-=") == 0
1624 || strcmp(s, "*=") == 0
1625 || strcmp(s, "/=") == 0
Michael W. Hudson5e83b7a2003-01-29 14:20:23 +00001626 || strcmp(s, "//=") == 0
Fred Drake28f739a2000-08-25 22:42:40 +00001627 || strcmp(s, "%=") == 0
1628 || strcmp(s, "&=") == 0
1629 || strcmp(s, "|=") == 0
1630 || strcmp(s, "^=") == 0
1631 || strcmp(s, "<<=") == 0
1632 || strcmp(s, ">>=") == 0
1633 || strcmp(s, "**=") == 0);
1634 if (!res)
Ezio Melotti42da6632011-03-15 05:18:48 +02001635 err_string("illegal augmented assignment operator");
Fred Drake28f739a2000-08-25 22:42:40 +00001636 }
1637 }
1638 else {
1639 for (j = 1; res && (j < nch); j += 2)
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001640 res = validate_equal(CHILD(tree, j))
Benjamin Peterson4905e802009-09-27 02:43:28 +00001641 && validate_yield_or_testlist(CHILD(tree, j + 1), 1);
Fred Drake28f739a2000-08-25 22:42:40 +00001642 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001643 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001644}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001645
1646
Guido van Rossum47478871996-08-21 14:32:37 +00001647static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001648validate_del_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001649{
1650 return (validate_numnodes(tree, 2, "del_stmt")
Fred Drakeff9ea482000-04-19 13:54:15 +00001651 && validate_name(CHILD(tree, 0), "del")
1652 && validate_exprlist(CHILD(tree, 1)));
1653}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001654
1655
Guido van Rossum47478871996-08-21 14:32:37 +00001656static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001657validate_return_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001658{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001659 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001660 int res = (validate_ntype(tree, return_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001661 && ((nch == 1) || (nch == 2))
1662 && validate_name(CHILD(tree, 0), "return"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001663
Guido van Rossum3d602e31996-07-21 02:33:56 +00001664 if (res && (nch == 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00001665 res = validate_testlist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001666
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001667 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001668}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001669
1670
Mark Dickinsoncf360b92012-05-07 12:01:27 +01001671/*
1672 * raise_stmt:
1673 *
1674 * 'raise' [test ['from' test]]
1675 */
Guido van Rossum47478871996-08-21 14:32:37 +00001676static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001677validate_raise_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001678{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001679 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001680 int res = (validate_ntype(tree, raise_stmt)
Mark Dickinsoncf360b92012-05-07 12:01:27 +01001681 && ((nch == 1) || (nch == 2) || (nch == 4)));
1682
1683 if (!res && !PyErr_Occurred())
1684 (void) validate_numnodes(tree, 2, "raise");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001685
Guido van Rossum3d602e31996-07-21 02:33:56 +00001686 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001687 res = validate_name(CHILD(tree, 0), "raise");
1688 if (res && (nch >= 2))
1689 res = validate_test(CHILD(tree, 1));
Mark Dickinsoncf360b92012-05-07 12:01:27 +01001690 if (res && (nch == 4)) {
1691 res = (validate_name(CHILD(tree, 2), "from")
Fred Drakeff9ea482000-04-19 13:54:15 +00001692 && validate_test(CHILD(tree, 3)));
Fred Drakeff9ea482000-04-19 13:54:15 +00001693 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001694 }
1695 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001696}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001697
1698
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001699/* yield_expr: 'yield' [yield_arg]
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001700 */
1701static int
1702validate_yield_expr(node *tree)
1703{
1704 int nch = NCH(tree);
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001705 if (nch < 1 || nch > 2)
1706 return 0;
1707 if (!validate_ntype(tree, yield_expr))
1708 return 0;
1709 if (!validate_name(CHILD(tree, 0), "yield"))
1710 return 0;
1711 if (nch == 2) {
1712 if (!validate_yield_arg(CHILD(tree, 1)))
1713 return 0;
1714 }
1715 return 1;
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001716}
1717
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001718/* yield_arg: 'from' test | testlist
1719 */
1720static int
1721validate_yield_arg(node *tree)
1722{
1723 int nch = NCH(tree);
1724 if (!validate_ntype(tree, yield_arg))
1725 return 0;
1726 switch (nch) {
1727 case 1:
1728 if (!validate_testlist(CHILD(tree, nch - 1)))
1729 return 0;
1730 break;
1731 case 2:
1732 if (!validate_name(CHILD(tree, 0), "from"))
1733 return 0;
1734 if (!validate_test(CHILD(tree, 1)))
1735 return 0;
1736 break;
1737 default:
1738 return 0;
1739 }
1740 return 1;
1741}
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001742
1743/* yield_stmt: yield_expr
Fred Drake02126f22001-07-17 02:59:15 +00001744 */
1745static int
1746validate_yield_stmt(node *tree)
1747{
1748 return (validate_ntype(tree, yield_stmt)
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001749 && validate_numnodes(tree, 1, "yield_stmt")
1750 && validate_yield_expr(CHILD(tree, 0)));
Fred Drake02126f22001-07-17 02:59:15 +00001751}
1752
1753
Fred Drakecff283c2000-08-21 22:24:43 +00001754static int
1755validate_import_as_name(node *tree)
1756{
1757 int nch = NCH(tree);
1758 int ok = validate_ntype(tree, import_as_name);
1759
1760 if (ok) {
1761 if (nch == 1)
1762 ok = validate_name(CHILD(tree, 0), NULL);
1763 else if (nch == 3)
1764 ok = (validate_name(CHILD(tree, 0), NULL)
1765 && validate_name(CHILD(tree, 1), "as")
1766 && validate_name(CHILD(tree, 2), NULL));
1767 else
1768 ok = validate_numnodes(tree, 3, "import_as_name");
1769 }
1770 return ok;
1771}
1772
1773
Fred Drake71137082001-01-07 05:59:59 +00001774/* dotted_name: NAME ("." NAME)*
1775 */
1776static int
1777validate_dotted_name(node *tree)
1778{
1779 int nch = NCH(tree);
1780 int res = (validate_ntype(tree, dotted_name)
1781 && is_odd(nch)
1782 && validate_name(CHILD(tree, 0), NULL));
1783 int i;
1784
1785 for (i = 1; res && (i < nch); i += 2) {
1786 res = (validate_dot(CHILD(tree, i))
1787 && validate_name(CHILD(tree, i+1), NULL));
1788 }
1789 return res;
1790}
1791
1792
Fred Drakecff283c2000-08-21 22:24:43 +00001793/* dotted_as_name: dotted_name [NAME NAME]
1794 */
1795static int
1796validate_dotted_as_name(node *tree)
1797{
1798 int nch = NCH(tree);
1799 int res = validate_ntype(tree, dotted_as_name);
1800
1801 if (res) {
1802 if (nch == 1)
Fred Drake71137082001-01-07 05:59:59 +00001803 res = validate_dotted_name(CHILD(tree, 0));
Fred Drakecff283c2000-08-21 22:24:43 +00001804 else if (nch == 3)
Fred Drake71137082001-01-07 05:59:59 +00001805 res = (validate_dotted_name(CHILD(tree, 0))
Fred Drakecff283c2000-08-21 22:24:43 +00001806 && validate_name(CHILD(tree, 1), "as")
1807 && validate_name(CHILD(tree, 2), NULL));
1808 else {
1809 res = 0;
Fred Drake661ea262000-10-24 19:57:45 +00001810 err_string("illegal number of children for dotted_as_name");
Fred Drakecff283c2000-08-21 22:24:43 +00001811 }
1812 }
1813 return res;
1814}
1815
1816
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001817/* dotted_as_name (',' dotted_as_name)* */
1818static int
1819validate_dotted_as_names(node *tree)
1820{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001821 int nch = NCH(tree);
1822 int res = is_odd(nch) && validate_dotted_as_name(CHILD(tree, 0));
1823 int i;
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001824
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001825 for (i = 1; res && (i < nch); i += 2)
1826 res = (validate_comma(CHILD(tree, i))
1827 && validate_dotted_as_name(CHILD(tree, i + 1)));
1828 return (res);
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001829}
1830
1831
1832/* import_as_name (',' import_as_name)* [','] */
1833static int
1834validate_import_as_names(node *tree)
1835{
1836 int nch = NCH(tree);
1837 int res = validate_import_as_name(CHILD(tree, 0));
1838 int i;
1839
1840 for (i = 1; res && (i + 1 < nch); i += 2)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001841 res = (validate_comma(CHILD(tree, i))
1842 && validate_import_as_name(CHILD(tree, i + 1)));
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001843 return (res);
1844}
1845
1846
1847/* 'import' dotted_as_names */
1848static int
1849validate_import_name(node *tree)
1850{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001851 return (validate_ntype(tree, import_name)
1852 && validate_numnodes(tree, 2, "import_name")
1853 && validate_name(CHILD(tree, 0), "import")
1854 && validate_dotted_as_names(CHILD(tree, 1)));
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001855}
1856
Mark Dickinsonfeb3b752010-07-04 18:38:57 +00001857/* Helper function to count the number of leading dots (or ellipsis tokens) in
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001858 * 'from ...module import name'
1859 */
1860static int
1861count_from_dots(node *tree)
1862{
Mark Dickinsonfeb3b752010-07-04 18:38:57 +00001863 int i;
1864 for (i = 1; i < NCH(tree); i++)
1865 if (TYPE(CHILD(tree, i)) != DOT && TYPE(CHILD(tree, i)) != ELLIPSIS)
1866 break;
1867 return i - 1;
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001868}
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001869
Mark Dickinson2cc8a5e2010-07-04 18:11:51 +00001870/* import_from: ('from' ('.'* dotted_name | '.'+)
1871 * 'import' ('*' | '(' import_as_names ')' | import_as_names))
Guido van Rossum3d602e31996-07-21 02:33:56 +00001872 */
Guido van Rossum47478871996-08-21 14:32:37 +00001873static int
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001874validate_import_from(node *tree)
1875{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001876 int nch = NCH(tree);
1877 int ndots = count_from_dots(tree);
1878 int havename = (TYPE(CHILD(tree, ndots + 1)) == dotted_name);
1879 int offset = ndots + havename;
1880 int res = validate_ntype(tree, import_from)
Mark Dickinson2cc8a5e2010-07-04 18:11:51 +00001881 && (offset >= 1)
1882 && (nch >= 3 + offset)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001883 && validate_name(CHILD(tree, 0), "from")
1884 && (!havename || validate_dotted_name(CHILD(tree, ndots + 1)))
1885 && validate_name(CHILD(tree, offset + 1), "import");
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001886
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001887 if (res && TYPE(CHILD(tree, offset + 2)) == LPAR)
1888 res = ((nch == offset + 5)
1889 && validate_lparen(CHILD(tree, offset + 2))
1890 && validate_import_as_names(CHILD(tree, offset + 3))
1891 && validate_rparen(CHILD(tree, offset + 4)));
1892 else if (res && TYPE(CHILD(tree, offset + 2)) != STAR)
1893 res = validate_import_as_names(CHILD(tree, offset + 2));
1894 return (res);
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001895}
1896
1897
1898/* import_stmt: import_name | import_from */
1899static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001900validate_import_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001901{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001902 int nch = NCH(tree);
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001903 int res = validate_numnodes(tree, 1, "import_stmt");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001904
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001905 if (res) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001906 int ntype = TYPE(CHILD(tree, 0));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001907
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001908 if (ntype == import_name || ntype == import_from)
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001909 res = validate_node(CHILD(tree, 0));
Fred Drakeff9ea482000-04-19 13:54:15 +00001910 else {
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001911 res = 0;
1912 err_string("illegal import_stmt child type");
Fred Drakeff9ea482000-04-19 13:54:15 +00001913 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001914 }
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001915 else if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001916 res = 0;
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001917 PyErr_Format(parser_error,
1918 "Unrecognized child node of import_stmt: %d.",
1919 TYPE(CHILD(tree, 0)));
1920 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001921 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001922}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001923
1924
Mark Dickinson407b3bd2012-04-29 22:18:31 +01001925/* global_stmt:
1926 *
1927 * 'global' NAME (',' NAME)*
1928 */
Guido van Rossum47478871996-08-21 14:32:37 +00001929static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001930validate_global_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001931{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001932 int j;
1933 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001934 int res = (validate_ntype(tree, global_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001935 && is_even(nch) && (nch >= 2));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001936
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00001937 if (!res && !PyErr_Occurred())
1938 err_string("illegal global statement");
1939
Guido van Rossum3d602e31996-07-21 02:33:56 +00001940 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00001941 res = (validate_name(CHILD(tree, 0), "global")
1942 && validate_ntype(CHILD(tree, 1), NAME));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001943 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00001944 res = (validate_comma(CHILD(tree, j))
1945 && validate_ntype(CHILD(tree, j + 1), NAME));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001946
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001947 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001948}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001949
Mark Dickinson407b3bd2012-04-29 22:18:31 +01001950/* nonlocal_stmt:
1951 *
1952 * 'nonlocal' NAME (',' NAME)*
1953 */
1954static int
1955validate_nonlocal_stmt(node *tree)
1956{
1957 int j;
1958 int nch = NCH(tree);
1959 int res = (validate_ntype(tree, nonlocal_stmt)
1960 && is_even(nch) && (nch >= 2));
1961
1962 if (!res && !PyErr_Occurred())
1963 err_string("illegal nonlocal statement");
1964
1965 if (res)
1966 res = (validate_name(CHILD(tree, 0), "nonlocal")
1967 && validate_ntype(CHILD(tree, 1), NAME));
1968 for (j = 2; res && (j < nch); j += 2)
1969 res = (validate_comma(CHILD(tree, j))
1970 && validate_ntype(CHILD(tree, j + 1), NAME));
1971
1972 return res;
1973}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001974
Guido van Rossum925e5471997-04-02 05:32:13 +00001975/* assert_stmt:
1976 *
1977 * 'assert' test [',' test]
1978 */
1979static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001980validate_assert_stmt(node *tree)
Guido van Rossum925e5471997-04-02 05:32:13 +00001981{
1982 int nch = NCH(tree);
1983 int res = (validate_ntype(tree, assert_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001984 && ((nch == 2) || (nch == 4))
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00001985 && (validate_name(CHILD(tree, 0), "assert"))
Fred Drakeff9ea482000-04-19 13:54:15 +00001986 && validate_test(CHILD(tree, 1)));
Guido van Rossum925e5471997-04-02 05:32:13 +00001987
1988 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00001989 err_string("illegal assert statement");
Guido van Rossum925e5471997-04-02 05:32:13 +00001990 if (res && (nch > 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00001991 res = (validate_comma(CHILD(tree, 2))
1992 && validate_test(CHILD(tree, 3)));
Guido van Rossum925e5471997-04-02 05:32:13 +00001993
1994 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001995}
Guido van Rossum925e5471997-04-02 05:32:13 +00001996
1997
Guido van Rossum47478871996-08-21 14:32:37 +00001998static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001999validate_while(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002000{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002001 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002002 int res = (validate_ntype(tree, while_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002003 && ((nch == 4) || (nch == 7))
2004 && validate_name(CHILD(tree, 0), "while")
2005 && validate_test(CHILD(tree, 1))
2006 && validate_colon(CHILD(tree, 2))
2007 && validate_suite(CHILD(tree, 3)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002008
Guido van Rossum3d602e31996-07-21 02:33:56 +00002009 if (res && (nch == 7))
Fred Drakeff9ea482000-04-19 13:54:15 +00002010 res = (validate_name(CHILD(tree, 4), "else")
2011 && validate_colon(CHILD(tree, 5))
2012 && validate_suite(CHILD(tree, 6)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002013
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002014 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002015}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002016
2017
Guido van Rossum47478871996-08-21 14:32:37 +00002018static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002019validate_for(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002020{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002021 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002022 int res = (validate_ntype(tree, for_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002023 && ((nch == 6) || (nch == 9))
2024 && validate_name(CHILD(tree, 0), "for")
2025 && validate_exprlist(CHILD(tree, 1))
2026 && validate_name(CHILD(tree, 2), "in")
2027 && validate_testlist(CHILD(tree, 3))
2028 && validate_colon(CHILD(tree, 4))
2029 && validate_suite(CHILD(tree, 5)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002030
Guido van Rossum3d602e31996-07-21 02:33:56 +00002031 if (res && (nch == 9))
Fred Drakeff9ea482000-04-19 13:54:15 +00002032 res = (validate_name(CHILD(tree, 6), "else")
2033 && validate_colon(CHILD(tree, 7))
2034 && validate_suite(CHILD(tree, 8)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002035
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002036 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002037}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002038
2039
Guido van Rossum3d602e31996-07-21 02:33:56 +00002040/* try_stmt:
Fred Drakeff9ea482000-04-19 13:54:15 +00002041 * 'try' ':' suite (except_clause ':' suite)+ ['else' ':' suite]
Georg Brandleee31162008-12-07 15:15:22 +00002042 ['finally' ':' suite]
Guido van Rossum3d602e31996-07-21 02:33:56 +00002043 * | 'try' ':' suite 'finally' ':' suite
2044 *
2045 */
Guido van Rossum47478871996-08-21 14:32:37 +00002046static int
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +00002047validate_try(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002048{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002049 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002050 int pos = 3;
2051 int res = (validate_ntype(tree, try_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002052 && (nch >= 6) && ((nch % 3) == 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002053
2054 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002055 res = (validate_name(CHILD(tree, 0), "try")
2056 && validate_colon(CHILD(tree, 1))
2057 && validate_suite(CHILD(tree, 2))
2058 && validate_colon(CHILD(tree, nch - 2))
2059 && validate_suite(CHILD(tree, nch - 1)));
Fred Drake0ac9b072000-09-12 21:58:06 +00002060 else if (!PyErr_Occurred()) {
Fred Drake22269b52000-07-03 18:07:43 +00002061 const char* name = "except";
Fred Drakeff9ea482000-04-19 13:54:15 +00002062 if (TYPE(CHILD(tree, nch - 3)) != except_clause)
2063 name = STR(CHILD(tree, nch - 3));
Fred Drake0ac9b072000-09-12 21:58:06 +00002064
2065 PyErr_Format(parser_error,
2066 "Illegal number of children for try/%s node.", name);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002067 }
Georg Brandleee31162008-12-07 15:15:22 +00002068 /* Handle try/finally statement */
2069 if (res && (TYPE(CHILD(tree, pos)) == NAME) &&
2070 (strcmp(STR(CHILD(tree, pos)), "finally") == 0)) {
2071 res = (validate_numnodes(tree, 6, "try/finally")
2072 && validate_colon(CHILD(tree, 4))
2073 && validate_suite(CHILD(tree, 5)));
2074 return (res);
2075 }
2076 /* try/except statement: skip past except_clause sections */
Antoine Pitrou37d1c182009-05-14 21:54:00 +00002077 while (res && pos < nch && (TYPE(CHILD(tree, pos)) == except_clause)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002078 res = (validate_except_clause(CHILD(tree, pos))
2079 && validate_colon(CHILD(tree, pos + 1))
2080 && validate_suite(CHILD(tree, pos + 2)));
2081 pos += 3;
Guido van Rossum3d602e31996-07-21 02:33:56 +00002082 }
Georg Brandleee31162008-12-07 15:15:22 +00002083 /* skip else clause */
Antoine Pitrou37d1c182009-05-14 21:54:00 +00002084 if (res && pos < nch && (TYPE(CHILD(tree, pos)) == NAME) &&
Georg Brandleee31162008-12-07 15:15:22 +00002085 (strcmp(STR(CHILD(tree, pos)), "else") == 0)) {
2086 res = (validate_colon(CHILD(tree, pos + 1))
2087 && validate_suite(CHILD(tree, pos + 2)));
2088 pos += 3;
2089 }
2090 if (res && pos < nch) {
2091 /* last clause must be a finally */
2092 res = (validate_name(CHILD(tree, pos), "finally")
2093 && validate_numnodes(tree, pos + 3, "try/except/finally")
2094 && validate_colon(CHILD(tree, pos + 1))
2095 && validate_suite(CHILD(tree, pos + 2)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002096 }
2097 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002098}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002099
2100
Guido van Rossum47478871996-08-21 14:32:37 +00002101static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002102validate_except_clause(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002103{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002104 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002105 int res = (validate_ntype(tree, except_clause)
Fred Drakeff9ea482000-04-19 13:54:15 +00002106 && ((nch == 1) || (nch == 2) || (nch == 4))
2107 && validate_name(CHILD(tree, 0), "except"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002108
Guido van Rossum3d602e31996-07-21 02:33:56 +00002109 if (res && (nch > 1))
Fred Drakeff9ea482000-04-19 13:54:15 +00002110 res = validate_test(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002111 if (res && (nch == 4))
Guido van Rossumb940e112007-01-10 16:19:56 +00002112 res = (validate_name(CHILD(tree, 2), "as")
2113 && validate_ntype(CHILD(tree, 3), NAME));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002114
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002115 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002116}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002117
2118
Guido van Rossum47478871996-08-21 14:32:37 +00002119static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002120validate_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002121{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002122 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002123 int res = validate_ntype(tree, test) && is_odd(nch);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002124
Guido van Rossum3d602e31996-07-21 02:33:56 +00002125 if (res && (TYPE(CHILD(tree, 0)) == lambdef))
Fred Drakeff9ea482000-04-19 13:54:15 +00002126 res = ((nch == 1)
2127 && validate_lambdef(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002128 else if (res) {
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002129 res = validate_or_test(CHILD(tree, 0));
2130 res = (res && (nch == 1 || (nch == 5 &&
2131 validate_name(CHILD(tree, 1), "if") &&
2132 validate_or_test(CHILD(tree, 2)) &&
2133 validate_name(CHILD(tree, 3), "else") &&
2134 validate_test(CHILD(tree, 4)))));
2135 }
2136 return (res);
2137}
2138
2139static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00002140validate_test_nocond(node *tree)
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002141{
2142 int nch = NCH(tree);
Nick Coghlan650f0d02007-04-15 12:05:43 +00002143 int res = validate_ntype(tree, test_nocond) && (nch == 1);
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002144
Nick Coghlan650f0d02007-04-15 12:05:43 +00002145 if (res && (TYPE(CHILD(tree, 0)) == lambdef_nocond))
2146 res = (validate_lambdef_nocond(CHILD(tree, 0)));
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002147 else if (res) {
2148 res = (validate_or_test(CHILD(tree, 0)));
2149 }
2150 return (res);
2151}
2152
2153static int
2154validate_or_test(node *tree)
2155{
2156 int nch = NCH(tree);
2157 int res = validate_ntype(tree, or_test) && is_odd(nch);
2158
2159 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002160 int pos;
2161 res = validate_and_test(CHILD(tree, 0));
2162 for (pos = 1; res && (pos < nch); pos += 2)
2163 res = (validate_name(CHILD(tree, pos), "or")
2164 && validate_and_test(CHILD(tree, pos + 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002165 }
2166 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002167}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002168
2169
Guido van Rossum47478871996-08-21 14:32:37 +00002170static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002171validate_and_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002172{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002173 int pos;
2174 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002175 int res = (validate_ntype(tree, and_test)
Fred Drakeff9ea482000-04-19 13:54:15 +00002176 && is_odd(nch)
2177 && validate_not_test(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002178
Guido van Rossum3d602e31996-07-21 02:33:56 +00002179 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002180 res = (validate_name(CHILD(tree, pos), "and")
2181 && validate_not_test(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002182
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002183 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002184}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002185
2186
Guido van Rossum47478871996-08-21 14:32:37 +00002187static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002188validate_not_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002189{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002190 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002191 int res = validate_ntype(tree, not_test) && ((nch == 1) || (nch == 2));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002192
Guido van Rossum3d602e31996-07-21 02:33:56 +00002193 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002194 if (nch == 2)
2195 res = (validate_name(CHILD(tree, 0), "not")
2196 && validate_not_test(CHILD(tree, 1)));
2197 else if (nch == 1)
2198 res = validate_comparison(CHILD(tree, 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002199 }
2200 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002201}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002202
2203
Guido van Rossum47478871996-08-21 14:32:37 +00002204static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002205validate_comparison(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002206{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002207 int pos;
2208 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002209 int res = (validate_ntype(tree, comparison)
Fred Drakeff9ea482000-04-19 13:54:15 +00002210 && is_odd(nch)
Benjamin Peterson4905e802009-09-27 02:43:28 +00002211 && validate_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002212
Guido van Rossum3d602e31996-07-21 02:33:56 +00002213 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002214 res = (validate_comp_op(CHILD(tree, pos))
Benjamin Peterson4905e802009-09-27 02:43:28 +00002215 && validate_expr(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002216
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002217 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002218}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002219
2220
Guido van Rossum47478871996-08-21 14:32:37 +00002221static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002222validate_comp_op(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002223{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002224 int res = 0;
2225 int nch = NCH(tree);
2226
Guido van Rossum3d602e31996-07-21 02:33:56 +00002227 if (!validate_ntype(tree, comp_op))
Fred Drakeff9ea482000-04-19 13:54:15 +00002228 return (0);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002229 if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002230 /*
2231 * Only child will be a terminal with a well-defined symbolic name
2232 * or a NAME with a string of either 'is' or 'in'
2233 */
2234 tree = CHILD(tree, 0);
2235 switch (TYPE(tree)) {
Nick Coghlan1f7ce622012-01-13 21:43:40 +10002236 case LESS:
2237 case GREATER:
2238 case EQEQUAL:
2239 case EQUAL:
2240 case LESSEQUAL:
2241 case GREATEREQUAL:
2242 case NOTEQUAL:
Fred Drakeff9ea482000-04-19 13:54:15 +00002243 res = 1;
2244 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +10002245 case NAME:
Fred Drakeff9ea482000-04-19 13:54:15 +00002246 res = ((strcmp(STR(tree), "in") == 0)
2247 || (strcmp(STR(tree), "is") == 0));
2248 if (!res) {
Fred Drake0ac9b072000-09-12 21:58:06 +00002249 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +00002250 "illegal operator '%s'", STR(tree));
Fred Drakeff9ea482000-04-19 13:54:15 +00002251 }
2252 break;
2253 default:
Fred Drake661ea262000-10-24 19:57:45 +00002254 err_string("illegal comparison operator type");
Fred Drakeff9ea482000-04-19 13:54:15 +00002255 break;
2256 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002257 }
Guido van Rossuma376cc51996-12-05 23:43:35 +00002258 else if ((res = validate_numnodes(tree, 2, "comp_op")) != 0) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002259 res = (validate_ntype(CHILD(tree, 0), NAME)
2260 && validate_ntype(CHILD(tree, 1), NAME)
2261 && (((strcmp(STR(CHILD(tree, 0)), "is") == 0)
2262 && (strcmp(STR(CHILD(tree, 1)), "not") == 0))
2263 || ((strcmp(STR(CHILD(tree, 0)), "not") == 0)
2264 && (strcmp(STR(CHILD(tree, 1)), "in") == 0))));
2265 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00002266 err_string("unknown comparison operator");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002267 }
2268 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002269}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002270
2271
Guido van Rossum47478871996-08-21 14:32:37 +00002272static int
Guido van Rossum0368b722007-05-11 16:50:42 +00002273validate_star_expr(node *tree)
2274{
2275 int res = validate_ntype(tree, star_expr);
2276 if (!res) return res;
Benjamin Peterson4905e802009-09-27 02:43:28 +00002277 if (!validate_numnodes(tree, 2, "star_expr"))
2278 return 0;
2279 return validate_ntype(CHILD(tree, 0), STAR) && \
2280 validate_expr(CHILD(tree, 1));
Guido van Rossum0368b722007-05-11 16:50:42 +00002281}
2282
2283
2284static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002285validate_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002286{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002287 int j;
2288 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002289 int res = (validate_ntype(tree, expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002290 && is_odd(nch)
2291 && validate_xor_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002292
Guido van Rossum3d602e31996-07-21 02:33:56 +00002293 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002294 res = (validate_xor_expr(CHILD(tree, j))
2295 && validate_vbar(CHILD(tree, j - 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002296
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002297 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002298}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002299
2300
Guido van Rossum47478871996-08-21 14:32:37 +00002301static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002302validate_xor_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002303{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002304 int j;
2305 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002306 int res = (validate_ntype(tree, xor_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002307 && is_odd(nch)
2308 && validate_and_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002309
Guido van Rossum3d602e31996-07-21 02:33:56 +00002310 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002311 res = (validate_circumflex(CHILD(tree, j - 1))
2312 && validate_and_expr(CHILD(tree, j)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002313
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002314 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002315}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002316
2317
Guido van Rossum47478871996-08-21 14:32:37 +00002318static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002319validate_and_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002320{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002321 int pos;
2322 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002323 int res = (validate_ntype(tree, and_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002324 && is_odd(nch)
2325 && validate_shift_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002326
Guido van Rossum3d602e31996-07-21 02:33:56 +00002327 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002328 res = (validate_ampersand(CHILD(tree, pos))
2329 && validate_shift_expr(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002330
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002331 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002332}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002333
2334
2335static int
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +00002336validate_chain_two_ops(node *tree, int (*termvalid)(node *), int op1, int op2)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002337 {
2338 int pos = 1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002339 int nch = NCH(tree);
2340 int res = (is_odd(nch)
Fred Drakeff9ea482000-04-19 13:54:15 +00002341 && (*termvalid)(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002342
Guido van Rossum3d602e31996-07-21 02:33:56 +00002343 for ( ; res && (pos < nch); pos += 2) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002344 if (TYPE(CHILD(tree, pos)) != op1)
2345 res = validate_ntype(CHILD(tree, pos), op2);
2346 if (res)
2347 res = (*termvalid)(CHILD(tree, pos + 1));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002348 }
2349 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002350}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002351
2352
Guido van Rossum47478871996-08-21 14:32:37 +00002353static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002354validate_shift_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002355{
2356 return (validate_ntype(tree, shift_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002357 && validate_chain_two_ops(tree, validate_arith_expr,
2358 LEFTSHIFT, RIGHTSHIFT));
2359}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002360
2361
Guido van Rossum47478871996-08-21 14:32:37 +00002362static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002363validate_arith_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002364{
2365 return (validate_ntype(tree, arith_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002366 && validate_chain_two_ops(tree, validate_term, PLUS, MINUS));
2367}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002368
2369
Guido van Rossum47478871996-08-21 14:32:37 +00002370static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002371validate_term(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002372{
2373 int pos = 1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002374 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002375 int res = (validate_ntype(tree, term)
Fred Drakeff9ea482000-04-19 13:54:15 +00002376 && is_odd(nch)
2377 && validate_factor(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002378
Guido van Rossum3d602e31996-07-21 02:33:56 +00002379 for ( ; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002380 res = (((TYPE(CHILD(tree, pos)) == STAR)
2381 || (TYPE(CHILD(tree, pos)) == SLASH)
Michael W. Hudson5e83b7a2003-01-29 14:20:23 +00002382 || (TYPE(CHILD(tree, pos)) == DOUBLESLASH)
Fred Drakeff9ea482000-04-19 13:54:15 +00002383 || (TYPE(CHILD(tree, pos)) == PERCENT))
2384 && validate_factor(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002385
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002386 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002387}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002388
2389
Guido van Rossum3d602e31996-07-21 02:33:56 +00002390/* factor:
2391 *
2392 * factor: ('+'|'-'|'~') factor | power
2393 */
Guido van Rossum47478871996-08-21 14:32:37 +00002394static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002395validate_factor(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002396{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002397 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002398 int res = (validate_ntype(tree, factor)
Fred Drakeff9ea482000-04-19 13:54:15 +00002399 && (((nch == 2)
2400 && ((TYPE(CHILD(tree, 0)) == PLUS)
2401 || (TYPE(CHILD(tree, 0)) == MINUS)
2402 || (TYPE(CHILD(tree, 0)) == TILDE))
2403 && validate_factor(CHILD(tree, 1)))
2404 || ((nch == 1)
2405 && validate_power(CHILD(tree, 0)))));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002406 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002407}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002408
2409
Guido van Rossum3d602e31996-07-21 02:33:56 +00002410/* power:
2411 *
2412 * power: atom trailer* ('**' factor)*
2413 */
Guido van Rossum47478871996-08-21 14:32:37 +00002414static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002415validate_power(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002416{
2417 int pos = 1;
2418 int nch = NCH(tree);
2419 int res = (validate_ntype(tree, power) && (nch >= 1)
Fred Drakeff9ea482000-04-19 13:54:15 +00002420 && validate_atom(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002421
2422 while (res && (pos < nch) && (TYPE(CHILD(tree, pos)) == trailer))
Fred Drakeff9ea482000-04-19 13:54:15 +00002423 res = validate_trailer(CHILD(tree, pos++));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002424 if (res && (pos < nch)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002425 if (!is_even(nch - pos)) {
Fred Drake661ea262000-10-24 19:57:45 +00002426 err_string("illegal number of nodes for 'power'");
Fred Drakeff9ea482000-04-19 13:54:15 +00002427 return (0);
2428 }
2429 for ( ; res && (pos < (nch - 1)); pos += 2)
2430 res = (validate_doublestar(CHILD(tree, pos))
2431 && validate_factor(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002432 }
2433 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002434}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002435
2436
Guido van Rossum47478871996-08-21 14:32:37 +00002437static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002438validate_atom(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002439{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002440 int pos;
2441 int nch = NCH(tree);
Fred Drakecff283c2000-08-21 22:24:43 +00002442 int res = validate_ntype(tree, atom);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002443
Fred Drakecff283c2000-08-21 22:24:43 +00002444 if (res && nch < 1)
2445 res = validate_numnodes(tree, nch+1, "atom");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002446 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002447 switch (TYPE(CHILD(tree, 0))) {
2448 case LPAR:
2449 res = ((nch <= 3)
2450 && (validate_rparen(CHILD(tree, nch - 1))));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002451
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00002452 if (res && (nch == 3)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002453 if (TYPE(CHILD(tree, 1))==yield_expr)
2454 res = validate_yield_expr(CHILD(tree, 1));
2455 else
2456 res = validate_testlist_comp(CHILD(tree, 1));
2457 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002458 break;
2459 case LSQB:
Fred Drakecff283c2000-08-21 22:24:43 +00002460 if (nch == 2)
2461 res = validate_ntype(CHILD(tree, 1), RSQB);
2462 else if (nch == 3)
Nick Coghlan650f0d02007-04-15 12:05:43 +00002463 res = (validate_testlist_comp(CHILD(tree, 1))
Fred Drakecff283c2000-08-21 22:24:43 +00002464 && validate_ntype(CHILD(tree, 2), RSQB));
2465 else {
2466 res = 0;
2467 err_string("illegal list display atom");
2468 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002469 break;
2470 case LBRACE:
2471 res = ((nch <= 3)
2472 && validate_ntype(CHILD(tree, nch - 1), RBRACE));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002473
Fred Drakeff9ea482000-04-19 13:54:15 +00002474 if (res && (nch == 3))
Nick Coghlan650f0d02007-04-15 12:05:43 +00002475 res = validate_dictorsetmaker(CHILD(tree, 1));
Fred Drakeff9ea482000-04-19 13:54:15 +00002476 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00002477 case NAME:
2478 case NUMBER:
Mark Dickinsonda029fb2012-05-07 17:24:04 +01002479 case ELLIPSIS:
Fred Drakeff9ea482000-04-19 13:54:15 +00002480 res = (nch == 1);
2481 break;
2482 case STRING:
2483 for (pos = 1; res && (pos < nch); ++pos)
2484 res = validate_ntype(CHILD(tree, pos), STRING);
2485 break;
2486 default:
2487 res = 0;
2488 break;
2489 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002490 }
2491 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002492}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002493
2494
Nick Coghlan650f0d02007-04-15 12:05:43 +00002495/* testlist_comp:
2496 * test ( comp_for | (',' test)* [','] )
Fred Drake85bf3bb2000-08-23 15:35:26 +00002497 */
Fred Drakecff283c2000-08-21 22:24:43 +00002498static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00002499validate_testlist_comp(node *tree)
Fred Drakecff283c2000-08-21 22:24:43 +00002500{
2501 int nch = NCH(tree);
2502 int ok = nch;
2503
2504 if (nch == 0)
Nick Coghlan650f0d02007-04-15 12:05:43 +00002505 err_string("missing child nodes of testlist_comp");
2506 else {
Benjamin Peterson4905e802009-09-27 02:43:28 +00002507 ok = validate_test_or_star_expr(CHILD(tree, 0));
Nick Coghlan650f0d02007-04-15 12:05:43 +00002508 }
Fred Drakecff283c2000-08-21 22:24:43 +00002509
2510 /*
Nick Coghlan650f0d02007-04-15 12:05:43 +00002511 * comp_for | (',' test)* [',']
Fred Drakecff283c2000-08-21 22:24:43 +00002512 */
Nick Coghlan650f0d02007-04-15 12:05:43 +00002513 if (nch == 2 && TYPE(CHILD(tree, 1)) == comp_for)
2514 ok = validate_comp_for(CHILD(tree, 1));
Fred Drakecff283c2000-08-21 22:24:43 +00002515 else {
2516 /* (',' test)* [','] */
2517 int i = 1;
2518 while (ok && nch - i >= 2) {
2519 ok = (validate_comma(CHILD(tree, i))
Benjamin Peterson4905e802009-09-27 02:43:28 +00002520 && validate_test_or_star_expr(CHILD(tree, i+1)));
Fred Drake85bf3bb2000-08-23 15:35:26 +00002521 i += 2;
Fred Drakecff283c2000-08-21 22:24:43 +00002522 }
Fred Drake85bf3bb2000-08-23 15:35:26 +00002523 if (ok && i == nch-1)
2524 ok = validate_comma(CHILD(tree, i));
2525 else if (i != nch) {
2526 ok = 0;
Nick Coghlan650f0d02007-04-15 12:05:43 +00002527 err_string("illegal trailing nodes for testlist_comp");
Raymond Hettinger354433a2004-05-19 08:20:33 +00002528 }
2529 }
2530 return ok;
2531}
Fred Drakecff283c2000-08-21 22:24:43 +00002532
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002533/* decorator:
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002534 * '@' dotted_name [ '(' [arglist] ')' ] NEWLINE
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002535 */
2536static int
2537validate_decorator(node *tree)
2538{
2539 int ok;
2540 int nch = NCH(tree);
2541 ok = (validate_ntype(tree, decorator) &&
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002542 (nch == 3 || nch == 5 || nch == 6) &&
2543 validate_at(CHILD(tree, 0)) &&
2544 validate_dotted_name(CHILD(tree, 1)) &&
2545 validate_newline(RCHILD(tree, -1)));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002546
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002547 if (ok && nch != 3) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002548 ok = (validate_lparen(CHILD(tree, 2)) &&
2549 validate_rparen(RCHILD(tree, -2)));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002550
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002551 if (ok && nch == 6)
2552 ok = validate_arglist(CHILD(tree, 3));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002553 }
2554
2555 return ok;
2556}
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002557
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002558/* decorators:
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002559 * decorator+
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002560 */
2561static int
2562validate_decorators(node *tree)
2563{
Guido van Rossumfc158e22007-11-15 19:17:28 +00002564 int i, nch, ok;
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002565 nch = NCH(tree);
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002566 ok = validate_ntype(tree, decorators) && nch >= 1;
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002567
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002568 for (i = 0; ok && i < nch; ++i)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002569 ok = validate_decorator(CHILD(tree, i));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002570
2571 return ok;
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002572}
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002573
Georg Brandl0c315622009-05-25 21:10:36 +00002574/* with_item:
2575 * test ['as' expr]
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002576 */
2577static int
Georg Brandl0c315622009-05-25 21:10:36 +00002578validate_with_item(node *tree)
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002579{
2580 int nch = NCH(tree);
Georg Brandl0c315622009-05-25 21:10:36 +00002581 int ok = (validate_ntype(tree, with_item)
2582 && (nch == 1 || nch == 3)
2583 && validate_test(CHILD(tree, 0)));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002584 if (ok && nch == 3)
Georg Brandl0c315622009-05-25 21:10:36 +00002585 ok = (validate_name(CHILD(tree, 1), "as")
2586 && validate_expr(CHILD(tree, 2)));
2587 return ok;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002588}
2589
Georg Brandl0c315622009-05-25 21:10:36 +00002590/* with_stmt:
2591 * 0 1 ... -2 -1
2592 * 'with' with_item (',' with_item)* ':' suite
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002593 */
2594static int
2595validate_with_stmt(node *tree)
2596{
Georg Brandl0c315622009-05-25 21:10:36 +00002597 int i;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002598 int nch = NCH(tree);
2599 int ok = (validate_ntype(tree, with_stmt)
Georg Brandl0c315622009-05-25 21:10:36 +00002600 && (nch % 2 == 0)
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002601 && validate_name(CHILD(tree, 0), "with")
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002602 && validate_colon(RCHILD(tree, -2))
2603 && validate_suite(RCHILD(tree, -1)));
Georg Brandl0c315622009-05-25 21:10:36 +00002604 for (i = 1; ok && i < nch - 2; i += 2)
2605 ok = validate_with_item(CHILD(tree, i));
2606 return ok;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002607}
2608
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01002609/* funcdef: 'def' NAME parameters ['->' test] ':' suite */
2610
Guido van Rossum47478871996-08-21 14:32:37 +00002611static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002612validate_funcdef(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002613{
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002614 int nch = NCH(tree);
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01002615 int res = validate_ntype(tree, funcdef);
2616 if (res) {
2617 if (nch == 5) {
2618 res = (validate_name(CHILD(tree, 0), "def")
2619 && validate_ntype(CHILD(tree, 1), NAME)
2620 && validate_parameters(CHILD(tree, 2))
2621 && validate_colon(CHILD(tree, 3))
2622 && validate_suite(CHILD(tree, 4)));
2623 }
2624 else if (nch == 7) {
2625 res = (validate_name(CHILD(tree, 0), "def")
2626 && validate_ntype(CHILD(tree, 1), NAME)
2627 && validate_parameters(CHILD(tree, 2))
2628 && validate_rarrow(CHILD(tree, 3))
2629 && validate_test(CHILD(tree, 4))
2630 && validate_colon(CHILD(tree, 5))
2631 && validate_suite(CHILD(tree, 6)));
2632 }
2633 else {
2634 res = 0;
2635 err_string("illegal number of children for funcdef");
2636 }
2637 }
2638 return res;
Fred Drakeff9ea482000-04-19 13:54:15 +00002639}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002640
2641
Guido van Rossumd59da4b2007-05-22 18:11:13 +00002642/* decorated
2643 * decorators (classdef | funcdef)
2644 */
2645static int
2646validate_decorated(node *tree)
2647{
Mark Dickinson2bd61a92010-07-04 16:37:31 +00002648 int nch = NCH(tree);
2649 int ok = (validate_ntype(tree, decorated)
2650 && (nch == 2)
2651 && validate_decorators(RCHILD(tree, -2)));
2652 if (TYPE(RCHILD(tree, -1)) == funcdef)
2653 ok = ok && validate_funcdef(RCHILD(tree, -1));
2654 else
2655 ok = ok && validate_class(RCHILD(tree, -1));
2656 return ok;
Guido van Rossumd59da4b2007-05-22 18:11:13 +00002657}
2658
Guido van Rossum47478871996-08-21 14:32:37 +00002659static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002660validate_lambdef(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002661{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002662 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002663 int res = (validate_ntype(tree, lambdef)
Fred Drakeff9ea482000-04-19 13:54:15 +00002664 && ((nch == 3) || (nch == 4))
2665 && validate_name(CHILD(tree, 0), "lambda")
2666 && validate_colon(CHILD(tree, nch - 2))
2667 && validate_test(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002668
Guido van Rossum3d602e31996-07-21 02:33:56 +00002669 if (res && (nch == 4))
Fred Drakeff9ea482000-04-19 13:54:15 +00002670 res = validate_varargslist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002671 else if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +00002672 (void) validate_numnodes(tree, 3, "lambdef");
Guido van Rossum3d602e31996-07-21 02:33:56 +00002673
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002674 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002675}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002676
2677
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002678static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00002679validate_lambdef_nocond(node *tree)
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002680{
2681 int nch = NCH(tree);
Nick Coghlan650f0d02007-04-15 12:05:43 +00002682 int res = (validate_ntype(tree, lambdef_nocond)
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002683 && ((nch == 3) || (nch == 4))
2684 && validate_name(CHILD(tree, 0), "lambda")
2685 && validate_colon(CHILD(tree, nch - 2))
2686 && validate_test(CHILD(tree, nch - 1)));
2687
2688 if (res && (nch == 4))
2689 res = validate_varargslist(CHILD(tree, 1));
2690 else if (!res && !PyErr_Occurred())
Nick Coghlan650f0d02007-04-15 12:05:43 +00002691 (void) validate_numnodes(tree, 3, "lambdef_nocond");
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002692
2693 return (res);
2694}
2695
2696
Guido van Rossum3d602e31996-07-21 02:33:56 +00002697/* arglist:
2698 *
Fred Drakecff283c2000-08-21 22:24:43 +00002699 * (argument ',')* (argument [','] | '*' test [',' '**' test] | '**' test)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002700 */
Guido van Rossum47478871996-08-21 14:32:37 +00002701static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002702validate_arglist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002703{
Fred Drakee7ab64e2000-04-25 04:14:46 +00002704 int nch = NCH(tree);
Fred Drakecff283c2000-08-21 22:24:43 +00002705 int i = 0;
2706 int ok = 1;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002707
2708 if (nch <= 0)
2709 /* raise the right error from having an invalid number of children */
2710 return validate_numnodes(tree, nch + 1, "arglist");
2711
Raymond Hettinger354433a2004-05-19 08:20:33 +00002712 if (nch > 1) {
2713 for (i=0; i<nch; i++) {
2714 if (TYPE(CHILD(tree, i)) == argument) {
2715 node *ch = CHILD(tree, i);
Nick Coghlan650f0d02007-04-15 12:05:43 +00002716 if (NCH(ch) == 2 && TYPE(CHILD(ch, 1)) == comp_for) {
Raymond Hettinger354433a2004-05-19 08:20:33 +00002717 err_string("need '(', ')' for generator expression");
2718 return 0;
2719 }
2720 }
2721 }
2722 }
2723
Fred Drakecff283c2000-08-21 22:24:43 +00002724 while (ok && nch-i >= 2) {
2725 /* skip leading (argument ',') */
2726 ok = (validate_argument(CHILD(tree, i))
2727 && validate_comma(CHILD(tree, i+1)));
2728 if (ok)
2729 i += 2;
2730 else
2731 PyErr_Clear();
2732 }
2733 ok = 1;
2734 if (nch-i > 0) {
2735 /*
2736 * argument | '*' test [',' '**' test] | '**' test
Fred Drakee7ab64e2000-04-25 04:14:46 +00002737 */
Fred Drakecff283c2000-08-21 22:24:43 +00002738 int sym = TYPE(CHILD(tree, i));
2739
2740 if (sym == argument) {
2741 ok = validate_argument(CHILD(tree, i));
2742 if (ok && i+1 != nch) {
2743 err_string("illegal arglist specification"
2744 " (extra stuff on end)");
2745 ok = 0;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002746 }
Fred Drakecff283c2000-08-21 22:24:43 +00002747 }
2748 else if (sym == STAR) {
2749 ok = validate_star(CHILD(tree, i));
2750 if (ok && (nch-i == 2))
2751 ok = validate_test(CHILD(tree, i+1));
2752 else if (ok && (nch-i == 5))
2753 ok = (validate_test(CHILD(tree, i+1))
2754 && validate_comma(CHILD(tree, i+2))
2755 && validate_doublestar(CHILD(tree, i+3))
2756 && validate_test(CHILD(tree, i+4)));
Fred Drakee7ab64e2000-04-25 04:14:46 +00002757 else {
Fred Drakecff283c2000-08-21 22:24:43 +00002758 err_string("illegal use of '*' in arglist");
2759 ok = 0;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002760 }
2761 }
Fred Drakecff283c2000-08-21 22:24:43 +00002762 else if (sym == DOUBLESTAR) {
2763 if (nch-i == 2)
2764 ok = (validate_doublestar(CHILD(tree, i))
2765 && validate_test(CHILD(tree, i+1)));
2766 else {
2767 err_string("illegal use of '**' in arglist");
2768 ok = 0;
2769 }
2770 }
2771 else {
2772 err_string("illegal arglist specification");
2773 ok = 0;
2774 }
Fred Drakee7ab64e2000-04-25 04:14:46 +00002775 }
2776 return (ok);
Fred Drakeff9ea482000-04-19 13:54:15 +00002777}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002778
2779
2780
2781/* argument:
2782 *
Nick Coghlan650f0d02007-04-15 12:05:43 +00002783 * [test '='] test [comp_for]
Guido van Rossum3d602e31996-07-21 02:33:56 +00002784 */
Guido van Rossum47478871996-08-21 14:32:37 +00002785static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002786validate_argument(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002787{
2788 int nch = NCH(tree);
2789 int res = (validate_ntype(tree, argument)
Nick Coghlan1f7ce622012-01-13 21:43:40 +10002790 && ((nch == 1) || (nch == 2) || (nch == 3)));
2791 if (res)
2792 res = validate_test(CHILD(tree, 0));
Raymond Hettinger354433a2004-05-19 08:20:33 +00002793 if (res && (nch == 2))
Nick Coghlan650f0d02007-04-15 12:05:43 +00002794 res = validate_comp_for(CHILD(tree, 1));
Raymond Hettinger354433a2004-05-19 08:20:33 +00002795 else if (res && (nch == 3))
Fred Drakeff9ea482000-04-19 13:54:15 +00002796 res = (validate_equal(CHILD(tree, 1))
2797 && validate_test(CHILD(tree, 2)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002798
2799 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002800}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002801
2802
2803
2804/* trailer:
2805 *
Guido van Rossum47478871996-08-21 14:32:37 +00002806 * '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME
Guido van Rossum3d602e31996-07-21 02:33:56 +00002807 */
Guido van Rossum47478871996-08-21 14:32:37 +00002808static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002809validate_trailer(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002810{
2811 int nch = NCH(tree);
2812 int res = validate_ntype(tree, trailer) && ((nch == 2) || (nch == 3));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002813
2814 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002815 switch (TYPE(CHILD(tree, 0))) {
2816 case LPAR:
2817 res = validate_rparen(CHILD(tree, nch - 1));
2818 if (res && (nch == 3))
2819 res = validate_arglist(CHILD(tree, 1));
2820 break;
2821 case LSQB:
2822 res = (validate_numnodes(tree, 3, "trailer")
2823 && validate_subscriptlist(CHILD(tree, 1))
2824 && validate_ntype(CHILD(tree, 2), RSQB));
2825 break;
2826 case DOT:
2827 res = (validate_numnodes(tree, 2, "trailer")
2828 && validate_ntype(CHILD(tree, 1), NAME));
2829 break;
2830 default:
2831 res = 0;
2832 break;
2833 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002834 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002835 else {
2836 (void) validate_numnodes(tree, 2, "trailer");
2837 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002838 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002839}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002840
2841
Guido van Rossum47478871996-08-21 14:32:37 +00002842/* subscriptlist:
2843 *
2844 * subscript (',' subscript)* [',']
2845 */
2846static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002847validate_subscriptlist(node *tree)
Guido van Rossum47478871996-08-21 14:32:37 +00002848{
2849 return (validate_repeating_list(tree, subscriptlist,
Fred Drakeff9ea482000-04-19 13:54:15 +00002850 validate_subscript, "subscriptlist"));
2851}
Guido van Rossum47478871996-08-21 14:32:37 +00002852
2853
Guido van Rossum3d602e31996-07-21 02:33:56 +00002854/* subscript:
2855 *
Guido van Rossum47478871996-08-21 14:32:37 +00002856 * '.' '.' '.' | test | [test] ':' [test] [sliceop]
Guido van Rossum3d602e31996-07-21 02:33:56 +00002857 */
Guido van Rossum47478871996-08-21 14:32:37 +00002858static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002859validate_subscript(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002860{
Guido van Rossum47478871996-08-21 14:32:37 +00002861 int offset = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002862 int nch = NCH(tree);
Guido van Rossum47478871996-08-21 14:32:37 +00002863 int res = validate_ntype(tree, subscript) && (nch >= 1) && (nch <= 4);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002864
Guido van Rossum47478871996-08-21 14:32:37 +00002865 if (!res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002866 if (!PyErr_Occurred())
2867 err_string("invalid number of arguments for subscript node");
2868 return (0);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002869 }
Guido van Rossum47478871996-08-21 14:32:37 +00002870 if (TYPE(CHILD(tree, 0)) == DOT)
Fred Drakeff9ea482000-04-19 13:54:15 +00002871 /* take care of ('.' '.' '.') possibility */
2872 return (validate_numnodes(tree, 3, "subscript")
2873 && validate_dot(CHILD(tree, 0))
2874 && validate_dot(CHILD(tree, 1))
2875 && validate_dot(CHILD(tree, 2)));
Guido van Rossum47478871996-08-21 14:32:37 +00002876 if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002877 if (TYPE(CHILD(tree, 0)) == test)
2878 res = validate_test(CHILD(tree, 0));
2879 else
2880 res = validate_colon(CHILD(tree, 0));
2881 return (res);
Guido van Rossum47478871996-08-21 14:32:37 +00002882 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002883 /* Must be [test] ':' [test] [sliceop],
2884 * but at least one of the optional components will
2885 * be present, but we don't know which yet.
Guido van Rossum47478871996-08-21 14:32:37 +00002886 */
2887 if ((TYPE(CHILD(tree, 0)) != COLON) || (nch == 4)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002888 res = validate_test(CHILD(tree, 0));
2889 offset = 1;
Guido van Rossum47478871996-08-21 14:32:37 +00002890 }
2891 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002892 res = validate_colon(CHILD(tree, offset));
Guido van Rossum47478871996-08-21 14:32:37 +00002893 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002894 int rem = nch - ++offset;
2895 if (rem) {
2896 if (TYPE(CHILD(tree, offset)) == test) {
2897 res = validate_test(CHILD(tree, offset));
2898 ++offset;
2899 --rem;
2900 }
2901 if (res && rem)
2902 res = validate_sliceop(CHILD(tree, offset));
2903 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002904 }
2905 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002906}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002907
2908
Guido van Rossum47478871996-08-21 14:32:37 +00002909static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002910validate_sliceop(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002911{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002912 int nch = NCH(tree);
Guido van Rossum47478871996-08-21 14:32:37 +00002913 int res = ((nch == 1) || validate_numnodes(tree, 2, "sliceop"))
Fred Drakeff9ea482000-04-19 13:54:15 +00002914 && validate_ntype(tree, sliceop);
Guido van Rossum47478871996-08-21 14:32:37 +00002915 if (!res && !PyErr_Occurred()) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002916 res = validate_numnodes(tree, 1, "sliceop");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002917 }
Guido van Rossum47478871996-08-21 14:32:37 +00002918 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002919 res = validate_colon(CHILD(tree, 0));
Guido van Rossum47478871996-08-21 14:32:37 +00002920 if (res && (nch == 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00002921 res = validate_test(CHILD(tree, 1));
Guido van Rossum47478871996-08-21 14:32:37 +00002922
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002923 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002924}
Guido van Rossum47478871996-08-21 14:32:37 +00002925
2926
2927static int
Benjamin Peterson4905e802009-09-27 02:43:28 +00002928validate_test_or_star_expr(node *n)
2929{
2930 if (TYPE(n) == test)
2931 return validate_test(n);
2932 return validate_star_expr(n);
2933}
2934
2935static int
2936validate_expr_or_star_expr(node *n)
2937{
2938 if (TYPE(n) == expr)
2939 return validate_expr(n);
2940 return validate_star_expr(n);
2941}
2942
2943
2944static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002945validate_exprlist(node *tree)
Guido van Rossum47478871996-08-21 14:32:37 +00002946{
2947 return (validate_repeating_list(tree, exprlist,
Benjamin Peterson4905e802009-09-27 02:43:28 +00002948 validate_expr_or_star_expr, "exprlist"));
Fred Drakeff9ea482000-04-19 13:54:15 +00002949}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002950
Mark Dickinson11c1dee2012-05-07 16:34:34 +01002951/*
2952 * dictorsetmaker:
2953 *
2954 * (test ':' test (comp_for | (',' test ':' test)* [','])) |
2955 * (test (comp_for | (',' test)* [',']))
2956 */
Guido van Rossum47478871996-08-21 14:32:37 +00002957static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00002958validate_dictorsetmaker(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002959{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002960 int nch = NCH(tree);
Mark Dickinson11c1dee2012-05-07 16:34:34 +01002961 int res;
2962 int i = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002963
Mark Dickinson11c1dee2012-05-07 16:34:34 +01002964 res = validate_ntype(tree, dictorsetmaker);
2965 if (!res)
2966 return 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +00002967
Mark Dickinson11c1dee2012-05-07 16:34:34 +01002968 if (nch - i < 1) {
2969 (void) validate_numnodes(tree, 1, "dictorsetmaker");
2970 return 0;
2971 }
2972
2973 res = validate_test(CHILD(tree, i++));
2974 if (!res)
2975 return 0;
2976
2977 if (nch - i >= 2 && TYPE(CHILD(tree, i)) == COLON) {
2978 /* Dictionary display or dictionary comprehension. */
2979 res = (validate_colon(CHILD(tree, i++))
2980 && validate_test(CHILD(tree, i++)));
2981 if (!res)
2982 return 0;
2983
2984 if (nch - i >= 1 && TYPE(CHILD(tree, i)) == comp_for) {
2985 /* Dictionary comprehension. */
2986 res = validate_comp_for(CHILD(tree, i++));
2987 if (!res)
2988 return 0;
2989 }
2990 else {
2991 /* Dictionary display. */
2992 while (nch - i >= 4) {
2993 res = (validate_comma(CHILD(tree, i++))
2994 && validate_test(CHILD(tree, i++))
2995 && validate_colon(CHILD(tree, i++))
2996 && validate_test(CHILD(tree, i++)));
2997 if (!res)
2998 return 0;
2999 }
3000 if (nch - i == 1) {
3001 res = validate_comma(CHILD(tree, i++));
3002 if (!res)
3003 return 0;
3004 }
Fred Drakeff9ea482000-04-19 13:54:15 +00003005 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003006 }
Mark Dickinson11c1dee2012-05-07 16:34:34 +01003007 else {
3008 /* Set display or set comprehension. */
3009 if (nch - i >= 1 && TYPE(CHILD(tree, i)) == comp_for) {
3010 /* Set comprehension. */
3011 res = validate_comp_for(CHILD(tree, i++));
3012 if (!res)
3013 return 0;
3014 }
3015 else {
3016 /* Set display. */
3017 while (nch - i >= 2) {
3018 res = (validate_comma(CHILD(tree, i++))
3019 && validate_test(CHILD(tree, i++)));
3020 if (!res)
3021 return 0;
3022 }
3023 if (nch - i == 1) {
3024 res = validate_comma(CHILD(tree, i++));
3025 if (!res)
3026 return 0;
3027 }
3028 }
3029 }
3030
3031 if (nch - i > 0) {
3032 err_string("Illegal trailing nodes for dictorsetmaker.");
3033 return 0;
3034 }
3035
3036 return 1;
Fred Drakeff9ea482000-04-19 13:54:15 +00003037}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003038
3039
Guido van Rossum47478871996-08-21 14:32:37 +00003040static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003041validate_eval_input(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003042{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003043 int pos;
3044 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00003045 int res = (validate_ntype(tree, eval_input)
Fred Drakeff9ea482000-04-19 13:54:15 +00003046 && (nch >= 2)
3047 && validate_testlist(CHILD(tree, 0))
3048 && validate_ntype(CHILD(tree, nch - 1), ENDMARKER));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003049
Guido van Rossum3d602e31996-07-21 02:33:56 +00003050 for (pos = 1; res && (pos < (nch - 1)); ++pos)
Fred Drakeff9ea482000-04-19 13:54:15 +00003051 res = validate_ntype(CHILD(tree, pos), NEWLINE);
Guido van Rossum3d602e31996-07-21 02:33:56 +00003052
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003053 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003054}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003055
3056
Guido van Rossum47478871996-08-21 14:32:37 +00003057static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003058validate_node(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003059{
Fred Drakeff9ea482000-04-19 13:54:15 +00003060 int nch = 0; /* num. children on current node */
3061 int res = 1; /* result value */
3062 node* next = 0; /* node to process after this one */
Guido van Rossum3d602e31996-07-21 02:33:56 +00003063
Martin v. Löwisb28f6e72001-06-23 19:55:38 +00003064 while (res && (tree != 0)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003065 nch = NCH(tree);
3066 next = 0;
3067 switch (TYPE(tree)) {
3068 /*
3069 * Definition nodes.
3070 */
3071 case funcdef:
3072 res = validate_funcdef(tree);
3073 break;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00003074 case with_stmt:
3075 res = validate_with_stmt(tree);
3076 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003077 case classdef:
3078 res = validate_class(tree);
3079 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003080 case decorated:
3081 res = validate_decorated(tree);
3082 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003083 /*
3084 * "Trivial" parse tree nodes.
3085 * (Why did I call these trivial?)
3086 */
3087 case stmt:
3088 res = validate_stmt(tree);
3089 break;
3090 case small_stmt:
3091 /*
Mark Dickinson407b3bd2012-04-29 22:18:31 +01003092 * expr_stmt | del_stmt | pass_stmt | flow_stmt |
3093 * import_stmt | global_stmt | nonlocal_stmt | assert_stmt
Fred Drakeff9ea482000-04-19 13:54:15 +00003094 */
3095 res = validate_small_stmt(tree);
3096 break;
3097 case flow_stmt:
3098 res = (validate_numnodes(tree, 1, "flow_stmt")
3099 && ((TYPE(CHILD(tree, 0)) == break_stmt)
3100 || (TYPE(CHILD(tree, 0)) == continue_stmt)
Fred Drake02126f22001-07-17 02:59:15 +00003101 || (TYPE(CHILD(tree, 0)) == yield_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00003102 || (TYPE(CHILD(tree, 0)) == return_stmt)
3103 || (TYPE(CHILD(tree, 0)) == raise_stmt)));
3104 if (res)
3105 next = CHILD(tree, 0);
3106 else if (nch == 1)
Fred Drake661ea262000-10-24 19:57:45 +00003107 err_string("illegal flow_stmt type");
Fred Drakeff9ea482000-04-19 13:54:15 +00003108 break;
Fred Drake02126f22001-07-17 02:59:15 +00003109 case yield_stmt:
3110 res = validate_yield_stmt(tree);
3111 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003112 /*
3113 * Compound statements.
3114 */
3115 case simple_stmt:
3116 res = validate_simple_stmt(tree);
3117 break;
3118 case compound_stmt:
3119 res = validate_compound_stmt(tree);
3120 break;
3121 /*
Thomas Wouters7e474022000-07-16 12:04:32 +00003122 * Fundamental statements.
Fred Drakeff9ea482000-04-19 13:54:15 +00003123 */
3124 case expr_stmt:
3125 res = validate_expr_stmt(tree);
3126 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003127 case del_stmt:
3128 res = validate_del_stmt(tree);
3129 break;
3130 case pass_stmt:
3131 res = (validate_numnodes(tree, 1, "pass")
3132 && validate_name(CHILD(tree, 0), "pass"));
3133 break;
3134 case break_stmt:
3135 res = (validate_numnodes(tree, 1, "break")
3136 && validate_name(CHILD(tree, 0), "break"));
3137 break;
3138 case continue_stmt:
3139 res = (validate_numnodes(tree, 1, "continue")
3140 && validate_name(CHILD(tree, 0), "continue"));
3141 break;
3142 case return_stmt:
3143 res = validate_return_stmt(tree);
3144 break;
3145 case raise_stmt:
3146 res = validate_raise_stmt(tree);
3147 break;
3148 case import_stmt:
3149 res = validate_import_stmt(tree);
3150 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003151 case import_name:
3152 res = validate_import_name(tree);
3153 break;
3154 case import_from:
3155 res = validate_import_from(tree);
3156 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003157 case global_stmt:
3158 res = validate_global_stmt(tree);
3159 break;
Mark Dickinson407b3bd2012-04-29 22:18:31 +01003160 case nonlocal_stmt:
3161 res = validate_nonlocal_stmt(tree);
3162 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003163 case assert_stmt:
3164 res = validate_assert_stmt(tree);
3165 break;
3166 case if_stmt:
3167 res = validate_if(tree);
3168 break;
3169 case while_stmt:
3170 res = validate_while(tree);
3171 break;
3172 case for_stmt:
3173 res = validate_for(tree);
3174 break;
3175 case try_stmt:
3176 res = validate_try(tree);
3177 break;
3178 case suite:
3179 res = validate_suite(tree);
3180 break;
3181 /*
3182 * Expression nodes.
3183 */
3184 case testlist:
3185 res = validate_testlist(tree);
3186 break;
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00003187 case yield_expr:
3188 res = validate_yield_expr(tree);
3189 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003190 case test:
3191 res = validate_test(tree);
3192 break;
3193 case and_test:
3194 res = validate_and_test(tree);
3195 break;
3196 case not_test:
3197 res = validate_not_test(tree);
3198 break;
3199 case comparison:
3200 res = validate_comparison(tree);
3201 break;
3202 case exprlist:
3203 res = validate_exprlist(tree);
3204 break;
3205 case comp_op:
3206 res = validate_comp_op(tree);
3207 break;
3208 case expr:
3209 res = validate_expr(tree);
3210 break;
3211 case xor_expr:
3212 res = validate_xor_expr(tree);
3213 break;
3214 case and_expr:
3215 res = validate_and_expr(tree);
3216 break;
3217 case shift_expr:
3218 res = validate_shift_expr(tree);
3219 break;
3220 case arith_expr:
3221 res = validate_arith_expr(tree);
3222 break;
3223 case term:
3224 res = validate_term(tree);
3225 break;
3226 case factor:
3227 res = validate_factor(tree);
3228 break;
3229 case power:
3230 res = validate_power(tree);
3231 break;
3232 case atom:
3233 res = validate_atom(tree);
3234 break;
Guido van Rossum3d602e31996-07-21 02:33:56 +00003235
Fred Drakeff9ea482000-04-19 13:54:15 +00003236 default:
3237 /* Hopefully never reached! */
Fred Drake661ea262000-10-24 19:57:45 +00003238 err_string("unrecognized node type");
Fred Drakeff9ea482000-04-19 13:54:15 +00003239 res = 0;
3240 break;
3241 }
3242 tree = next;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003243 }
3244 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003245}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003246
3247
Guido van Rossum47478871996-08-21 14:32:37 +00003248static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003249validate_expr_tree(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003250{
3251 int res = validate_eval_input(tree);
3252
3253 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00003254 err_string("could not validate expression tuple");
Guido van Rossum3d602e31996-07-21 02:33:56 +00003255
3256 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003257}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003258
3259
Guido van Rossum3d602e31996-07-21 02:33:56 +00003260/* file_input:
Fred Drakeff9ea482000-04-19 13:54:15 +00003261 * (NEWLINE | stmt)* ENDMARKER
Guido van Rossum3d602e31996-07-21 02:33:56 +00003262 */
Guido van Rossum47478871996-08-21 14:32:37 +00003263static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003264validate_file_input(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003265{
Fred Drakec2683dd2001-07-17 19:32:05 +00003266 int j;
Guido van Rossum3d602e31996-07-21 02:33:56 +00003267 int nch = NCH(tree) - 1;
3268 int res = ((nch >= 0)
Fred Drakeff9ea482000-04-19 13:54:15 +00003269 && validate_ntype(CHILD(tree, nch), ENDMARKER));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003270
Fred Drakec2683dd2001-07-17 19:32:05 +00003271 for (j = 0; res && (j < nch); ++j) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003272 if (TYPE(CHILD(tree, j)) == stmt)
3273 res = validate_stmt(CHILD(tree, j));
3274 else
3275 res = validate_newline(CHILD(tree, j));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003276 }
Thomas Wouters7e474022000-07-16 12:04:32 +00003277 /* This stays in to prevent any internal failures from getting to the
Fred Drakeff9ea482000-04-19 13:54:15 +00003278 * user. Hopefully, this won't be needed. If a user reports getting
3279 * this, we have some debugging to do.
Guido van Rossum3d602e31996-07-21 02:33:56 +00003280 */
3281 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00003282 err_string("VALIDATION FAILURE: report this to the maintainer!");
Guido van Rossum3d602e31996-07-21 02:33:56 +00003283
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003284 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003285}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003286
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00003287static int
3288validate_encoding_decl(node *tree)
3289{
3290 int nch = NCH(tree);
3291 int res = ((nch == 1)
3292 && validate_file_input(CHILD(tree, 0)));
3293
3294 if (!res && !PyErr_Occurred())
3295 err_string("Error Parsing encoding_decl");
3296
3297 return res;
3298}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003299
Fred Drake43f8f9b1998-04-13 16:25:46 +00003300static PyObject*
3301pickle_constructor = NULL;
3302
3303
3304static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +00003305parser__pickler(PyObject *self, PyObject *args)
Fred Drake43f8f9b1998-04-13 16:25:46 +00003306{
Fred Drake268397f1998-04-29 14:16:32 +00003307 NOTE(ARGUNUSED(self))
Fred Drake43f8f9b1998-04-13 16:25:46 +00003308 PyObject *result = NULL;
Fred Drakec2683dd2001-07-17 19:32:05 +00003309 PyObject *st = NULL;
Fred Drake2a6875e1999-09-20 22:32:18 +00003310 PyObject *empty_dict = NULL;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003311
Fred Drakec2683dd2001-07-17 19:32:05 +00003312 if (PyArg_ParseTuple(args, "O!:_pickler", &PyST_Type, &st)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003313 PyObject *newargs;
3314 PyObject *tuple;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003315
Fred Drake2a6875e1999-09-20 22:32:18 +00003316 if ((empty_dict = PyDict_New()) == NULL)
3317 goto finally;
Fred Drakec2683dd2001-07-17 19:32:05 +00003318 if ((newargs = Py_BuildValue("Oi", st, 1)) == NULL)
Fred Drakeff9ea482000-04-19 13:54:15 +00003319 goto finally;
Fred Drakec2683dd2001-07-17 19:32:05 +00003320 tuple = parser_st2tuple((PyST_Object*)NULL, newargs, empty_dict);
Fred Drakeff9ea482000-04-19 13:54:15 +00003321 if (tuple != NULL) {
3322 result = Py_BuildValue("O(O)", pickle_constructor, tuple);
3323 Py_DECREF(tuple);
3324 }
Fred Drake2a6875e1999-09-20 22:32:18 +00003325 Py_DECREF(empty_dict);
Fred Drakeff9ea482000-04-19 13:54:15 +00003326 Py_DECREF(newargs);
Fred Drake43f8f9b1998-04-13 16:25:46 +00003327 }
3328 finally:
Fred Drake2a6875e1999-09-20 22:32:18 +00003329 Py_XDECREF(empty_dict);
3330
Fred Drake43f8f9b1998-04-13 16:25:46 +00003331 return (result);
Fred Drakeff9ea482000-04-19 13:54:15 +00003332}
Fred Drake43f8f9b1998-04-13 16:25:46 +00003333
3334
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003335/* Functions exported by this module. Most of this should probably
Fred Drakec2683dd2001-07-17 19:32:05 +00003336 * be converted into an ST object with methods, but that is better
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003337 * done directly in Python, allowing subclasses to be created directly.
Guido van Rossum3d602e31996-07-21 02:33:56 +00003338 * We'd really have to write a wrapper around it all anyway to allow
3339 * inheritance.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003340 */
3341static PyMethodDef parser_functions[] = {
Fred Drakec2683dd2001-07-17 19:32:05 +00003342 {"compilest", (PyCFunction)parser_compilest, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003343 PyDoc_STR("Compiles an ST object into a code object.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003344 {"expr", (PyCFunction)parser_expr, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003345 PyDoc_STR("Creates an ST object from an expression.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003346 {"isexpr", (PyCFunction)parser_isexpr, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003347 PyDoc_STR("Determines if an ST object was created from an expression.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003348 {"issuite", (PyCFunction)parser_issuite, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003349 PyDoc_STR("Determines if an ST object was created from a suite.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003350 {"suite", (PyCFunction)parser_suite, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003351 PyDoc_STR("Creates an ST object from a suite.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003352 {"sequence2st", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003353 PyDoc_STR("Creates an ST object from a tree representation.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003354 {"st2tuple", (PyCFunction)parser_st2tuple, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003355 PyDoc_STR("Creates a tuple-tree representation of an ST.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003356 {"st2list", (PyCFunction)parser_st2list, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003357 PyDoc_STR("Creates a list-tree representation of an ST.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003358 {"tuple2st", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003359 PyDoc_STR("Creates an ST object from a tree representation.")},
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003360
Fred Drake43f8f9b1998-04-13 16:25:46 +00003361 /* private stuff: support pickle module */
Fred Drake13130bc2001-08-15 16:44:56 +00003362 {"_pickler", (PyCFunction)parser__pickler, METH_VARARGS,
Neal Norwitz200788c2002-08-13 22:20:41 +00003363 PyDoc_STR("Returns the pickle magic to allow ST objects to be pickled.")},
Fred Drake43f8f9b1998-04-13 16:25:46 +00003364
Fred Drake268397f1998-04-29 14:16:32 +00003365 {NULL, NULL, 0, NULL}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003366 };
3367
3368
Martin v. Löwis1a214512008-06-11 05:26:20 +00003369
3370static struct PyModuleDef parsermodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003371 PyModuleDef_HEAD_INIT,
3372 "parser",
3373 NULL,
3374 -1,
3375 parser_functions,
3376 NULL,
3377 NULL,
3378 NULL,
3379 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00003380};
3381
3382PyMODINIT_FUNC PyInit_parser(void); /* supply a prototype */
Fred Drake28f739a2000-08-25 22:42:40 +00003383
Mark Hammond62b1ab12002-07-23 06:31:15 +00003384PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00003385PyInit_parser(void)
Fred Drake28f739a2000-08-25 22:42:40 +00003386{
Fred Drake13130bc2001-08-15 16:44:56 +00003387 PyObject *module, *copyreg;
Fred Drakec2683dd2001-07-17 19:32:05 +00003388
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +00003389 if (PyType_Ready(&PyST_Type) < 0)
3390 return NULL;
Martin v. Löwis1a214512008-06-11 05:26:20 +00003391 module = PyModule_Create(&parsermodule);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00003392 if (module == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003393 return NULL;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003394
Fred Drake7a15ba51999-09-09 14:21:52 +00003395 if (parser_error == 0)
3396 parser_error = PyErr_NewException("parser.ParserError", NULL, NULL);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003397
Tim Peters6a627252003-07-21 14:25:23 +00003398 if (parser_error == 0)
Martin v. Löwis1a214512008-06-11 05:26:20 +00003399 return NULL;
Tim Peters6a627252003-07-21 14:25:23 +00003400 /* CAUTION: The code next used to skip bumping the refcount on
Martin v. Löwis1a214512008-06-11 05:26:20 +00003401 * parser_error. That's a disaster if PyInit_parser() gets called more
Tim Peters6a627252003-07-21 14:25:23 +00003402 * than once. By incref'ing, we ensure that each module dict that
3403 * gets created owns its reference to the shared parser_error object,
3404 * and the file static parser_error vrbl owns a reference too.
3405 */
3406 Py_INCREF(parser_error);
3407 if (PyModule_AddObject(module, "ParserError", parser_error) != 0)
Martin v. Löwis1a214512008-06-11 05:26:20 +00003408 return NULL;
Tim Peters6a627252003-07-21 14:25:23 +00003409
Fred Drakec2683dd2001-07-17 19:32:05 +00003410 Py_INCREF(&PyST_Type);
Fred Drake13130bc2001-08-15 16:44:56 +00003411 PyModule_AddObject(module, "STType", (PyObject*)&PyST_Type);
Guido van Rossum3d602e31996-07-21 02:33:56 +00003412
Fred Drake13130bc2001-08-15 16:44:56 +00003413 PyModule_AddStringConstant(module, "__copyright__",
3414 parser_copyright_string);
3415 PyModule_AddStringConstant(module, "__doc__",
3416 parser_doc_string);
3417 PyModule_AddStringConstant(module, "__version__",
3418 parser_version_string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003419
Fred Drake78bdb9b2001-07-19 20:17:15 +00003420 /* Register to support pickling.
3421 * If this fails, the import of this module will fail because an
3422 * exception will be raised here; should we clear the exception?
3423 */
Alexandre Vassalottif7fa63d2008-05-11 08:55:36 +00003424 copyreg = PyImport_ImportModuleNoBlock("copyreg");
Fred Drake13130bc2001-08-15 16:44:56 +00003425 if (copyreg != NULL) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003426 PyObject *func, *pickler;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02003427 _Py_IDENTIFIER(pickle);
3428 _Py_IDENTIFIER(sequence2st);
3429 _Py_IDENTIFIER(_pickler);
Fred Drake43f8f9b1998-04-13 16:25:46 +00003430
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +02003431 func = _PyObject_GetAttrId(copyreg, &PyId_pickle);
3432 pickle_constructor = _PyObject_GetAttrId(module, &PyId_sequence2st);
3433 pickler = _PyObject_GetAttrId(module, &PyId__pickler);
Fred Drakeff9ea482000-04-19 13:54:15 +00003434 Py_XINCREF(pickle_constructor);
3435 if ((func != NULL) && (pickle_constructor != NULL)
3436 && (pickler != NULL)) {
3437 PyObject *res;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003438
Thomas Wouters477c8d52006-05-27 19:21:47 +00003439 res = PyObject_CallFunctionObjArgs(func, &PyST_Type, pickler,
3440 pickle_constructor, NULL);
Fred Drakeff9ea482000-04-19 13:54:15 +00003441 Py_XDECREF(res);
3442 }
3443 Py_XDECREF(func);
Fred Drake13130bc2001-08-15 16:44:56 +00003444 Py_XDECREF(pickle_constructor);
3445 Py_XDECREF(pickler);
3446 Py_DECREF(copyreg);
Fred Drake43f8f9b1998-04-13 16:25:46 +00003447 }
Martin v. Löwis1a214512008-06-11 05:26:20 +00003448 return module;
Fred Drakeff9ea482000-04-19 13:54:15 +00003449}