blob: 828f46b928c72a24dc4585202bd927a29c4b6f6a [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(...)".
Benjamin Peterson025e9eb2015-05-05 20:16:41 -040026 *
27 * To debug parser errors like
28 * "parser.ParserError: Expected node type 12, got 333."
29 * decode symbol numbers using the automatically-generated files
30 * Lib/symbol.h and Include/token.h.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000031 */
32
Fred Drakeff9ea482000-04-19 13:54:15 +000033#include "Python.h" /* general Python API */
Benjamin Petersonf216c942008-10-31 02:28:05 +000034#include "Python-ast.h" /* mod_ty */
Fred Drakeff9ea482000-04-19 13:54:15 +000035#include "graminit.h" /* symbols defined in the grammar */
36#include "node.h" /* internal parser structure */
Fred Drake8b55b2d2001-12-05 22:10:44 +000037#include "errcode.h" /* error codes for PyNode_*() */
Fred Drakeff9ea482000-04-19 13:54:15 +000038#include "token.h" /* token definitions */
Benjamin Petersonf216c942008-10-31 02:28:05 +000039#include "grammar.h"
40#include "parsetok.h"
Fred Drakeff9ea482000-04-19 13:54:15 +000041 /* ISTERMINAL() / ISNONTERMINAL() */
Benjamin Petersonf216c942008-10-31 02:28:05 +000042#undef Yield
43#include "ast.h"
Benjamin Petersonf216c942008-10-31 02:28:05 +000044
45extern grammar _PyParser_Grammar; /* From graminit.c */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000046
Fred Drake268397f1998-04-29 14:16:32 +000047#ifdef lint
48#include <note.h>
49#else
50#define NOTE(x)
51#endif
52
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000053/* String constants used to initialize module attributes.
54 *
55 */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000056static char parser_copyright_string[] =
57"Copyright 1995-1996 by Virginia Polytechnic Institute & State\n\
Guido van Rossum2a288461996-08-21 21:55:43 +000058University, Blacksburg, Virginia, USA, and Fred L. Drake, Jr., Reston,\n\
59Virginia, USA. Portions copyright 1991-1995 by Stichting Mathematisch\n\
60Centrum, Amsterdam, The Netherlands.";
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000061
62
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000063PyDoc_STRVAR(parser_doc_string,
64"This is an interface to Python's internal parser.");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000065
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000066static char parser_version_string[] = "0.5";
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000067
68
Martin v. Löwis18e16552006-02-15 17:27:45 +000069typedef PyObject* (*SeqMaker) (Py_ssize_t length);
Fred Drakeff9ea482000-04-19 13:54:15 +000070typedef int (*SeqInserter) (PyObject* sequence,
Martin v. Löwis18e16552006-02-15 17:27:45 +000071 Py_ssize_t index,
Fred Drakeff9ea482000-04-19 13:54:15 +000072 PyObject* element);
Guido van Rossum47478871996-08-21 14:32:37 +000073
Thomas Wouters7e474022000-07-16 12:04:32 +000074/* The function below is copyrighted by Stichting Mathematisch Centrum. The
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000075 * original copyright statement is included below, and continues to apply
76 * in full to the function immediately following. All other material is
77 * original, copyrighted by Fred L. Drake, Jr. and Virginia Polytechnic
78 * Institute and State University. Changes were made to comply with the
Guido van Rossum2a288461996-08-21 21:55:43 +000079 * new naming conventions. Added arguments to provide support for creating
80 * lists as well as tuples, and optionally including the line numbers.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000081 */
82
Guido van Rossum52f2c051993-11-10 12:53:24 +000083
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000084static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +000085node2tuple(node *n, /* node to convert */
86 SeqMaker mkseq, /* create sequence */
87 SeqInserter addelem, /* func. to add elem. in seq. */
Thomas Wouters89f507f2006-12-13 04:49:30 +000088 int lineno, /* include line numbers? */
89 int col_offset) /* include column offsets? */
Guido van Rossum47478871996-08-21 14:32:37 +000090{
Victor Stinnerdf4572c2013-07-12 01:35:10 +020091 PyObject *result = NULL, *w;
92
Guido van Rossum3d602e31996-07-21 02:33:56 +000093 if (n == NULL) {
Fred Drakeff9ea482000-04-19 13:54:15 +000094 Py_INCREF(Py_None);
Victor Stinnerdf4572c2013-07-12 01:35:10 +020095 return Py_None;
Guido van Rossum3d602e31996-07-21 02:33:56 +000096 }
Victor Stinnerdf4572c2013-07-12 01:35:10 +020097
Guido van Rossum3d602e31996-07-21 02:33:56 +000098 if (ISNONTERMINAL(TYPE(n))) {
Fred Drakeff9ea482000-04-19 13:54:15 +000099 int i;
Fred Drake268397f1998-04-29 14:16:32 +0000100
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200101 result = mkseq(1 + NCH(n) + (TYPE(n) == encoding_decl));
102 if (result == NULL)
103 goto error;
104
Christian Heimes217cfd12007-12-02 14:31:20 +0000105 w = PyLong_FromLong(TYPE(n));
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200106 if (w == NULL)
107 goto error;
108 (void) addelem(result, 0, w);
109
Fred Drakeff9ea482000-04-19 13:54:15 +0000110 for (i = 0; i < NCH(n); i++) {
Thomas Wouters89f507f2006-12-13 04:49:30 +0000111 w = node2tuple(CHILD(n, i), mkseq, addelem, lineno, col_offset);
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200112 if (w == NULL)
113 goto error;
114 (void) addelem(result, i+1, w);
Fred Drakeff9ea482000-04-19 13:54:15 +0000115 }
Tim Peters6a627252003-07-21 14:25:23 +0000116
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200117 if (TYPE(n) == encoding_decl) {
118 w = PyUnicode_FromString(STR(n));
119 if (w == NULL)
120 goto error;
121 (void) addelem(result, i+1, w);
122 }
Guido van Rossum3d602e31996-07-21 02:33:56 +0000123 }
124 else if (ISTERMINAL(TYPE(n))) {
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200125 result = mkseq(2 + lineno + col_offset);
126 if (result == NULL)
127 goto error;
128
129 w = PyLong_FromLong(TYPE(n));
130 if (w == NULL)
131 goto error;
132 (void) addelem(result, 0, w);
133
134 w = PyUnicode_FromString(STR(n));
135 if (w == NULL)
136 goto error;
137 (void) addelem(result, 1, w);
138
139 if (lineno == 1) {
140 w = PyLong_FromLong(n->n_lineno);
141 if (w == NULL)
142 goto error;
143 (void) addelem(result, 2, w);
Fred Drakeff9ea482000-04-19 13:54:15 +0000144 }
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200145
146 if (col_offset == 1) {
147 w = PyLong_FromLong(n->n_col_offset);
148 if (w == NULL)
149 goto error;
150 (void) addelem(result, 3, w);
151 }
Guido van Rossum3d602e31996-07-21 02:33:56 +0000152 }
153 else {
Fred Drakeff9ea482000-04-19 13:54:15 +0000154 PyErr_SetString(PyExc_SystemError,
155 "unrecognized parse tree node type");
156 return ((PyObject*) NULL);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000157 }
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200158 return result;
159
160error:
161 Py_XDECREF(result);
162 return NULL;
Fred Drakeff9ea482000-04-19 13:54:15 +0000163}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000164/*
165 * End of material copyrighted by Stichting Mathematisch Centrum.
166 */
Guido van Rossum52f2c051993-11-10 12:53:24 +0000167
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000168
169
170/* There are two types of intermediate objects we're interested in:
Fred Drakec2683dd2001-07-17 19:32:05 +0000171 * 'eval' and 'exec' types. These constants can be used in the st_type
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000172 * field of the object type to identify which any given object represents.
173 * These should probably go in an external header to allow other extensions
174 * to use them, but then, we really should be using C++ too. ;-)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000175 */
176
Fred Drakec2683dd2001-07-17 19:32:05 +0000177#define PyST_EXPR 1
178#define PyST_SUITE 2
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000179
180
181/* These are the internal objects and definitions required to implement the
Fred Drakec2683dd2001-07-17 19:32:05 +0000182 * ST type. Most of the internal names are more reminiscent of the 'old'
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000183 * naming style, but the code uses the new naming convention.
184 */
185
186static PyObject*
187parser_error = 0;
188
189
Fred Drakec2683dd2001-07-17 19:32:05 +0000190typedef struct {
Fred Drakeff9ea482000-04-19 13:54:15 +0000191 PyObject_HEAD /* standard object header */
Fred Drakec2683dd2001-07-17 19:32:05 +0000192 node* st_node; /* the node* returned by the parser */
193 int st_type; /* EXPR or SUITE ? */
Benjamin Petersonf216c942008-10-31 02:28:05 +0000194 PyCompilerFlags st_flags; /* Parser and compiler flags */
Fred Drakec2683dd2001-07-17 19:32:05 +0000195} PyST_Object;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000196
197
Jeremy Hylton938ace62002-07-17 16:30:39 +0000198static void parser_free(PyST_Object *st);
Jesus Ceae9c53182012-08-03 14:28:37 +0200199static PyObject* parser_sizeof(PyST_Object *, void *);
Mark Dickinson211c6252009-02-01 10:28:51 +0000200static PyObject* parser_richcompare(PyObject *left, PyObject *right, int op);
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000201static PyObject* parser_compilest(PyST_Object *, PyObject *, PyObject *);
202static PyObject* parser_isexpr(PyST_Object *, PyObject *, PyObject *);
203static PyObject* parser_issuite(PyST_Object *, PyObject *, PyObject *);
204static PyObject* parser_st2list(PyST_Object *, PyObject *, PyObject *);
205static PyObject* parser_st2tuple(PyST_Object *, PyObject *, PyObject *);
Fred Drake503d8d61998-04-13 18:45:18 +0000206
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000207#define PUBLIC_METHOD_TYPE (METH_VARARGS|METH_KEYWORDS)
208
209static PyMethodDef parser_methods[] = {
210 {"compile", (PyCFunction)parser_compilest, PUBLIC_METHOD_TYPE,
211 PyDoc_STR("Compile this ST object into a code object.")},
212 {"isexpr", (PyCFunction)parser_isexpr, PUBLIC_METHOD_TYPE,
213 PyDoc_STR("Determines if this ST object was created from an expression.")},
214 {"issuite", (PyCFunction)parser_issuite, PUBLIC_METHOD_TYPE,
215 PyDoc_STR("Determines if this ST object was created from a suite.")},
216 {"tolist", (PyCFunction)parser_st2list, PUBLIC_METHOD_TYPE,
217 PyDoc_STR("Creates a list-tree representation of this ST.")},
218 {"totuple", (PyCFunction)parser_st2tuple, PUBLIC_METHOD_TYPE,
219 PyDoc_STR("Creates a tuple-tree representation of this ST.")},
Jesus Ceae9c53182012-08-03 14:28:37 +0200220 {"__sizeof__", (PyCFunction)parser_sizeof, METH_NOARGS,
221 PyDoc_STR("Returns size in memory, in bytes.")},
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000222 {NULL, NULL, 0, NULL}
223};
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000224
Fred Drake268397f1998-04-29 14:16:32 +0000225static
Fred Drakec2683dd2001-07-17 19:32:05 +0000226PyTypeObject PyST_Type = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +0000227 PyVarObject_HEAD_INIT(NULL, 0)
Guido van Rossum14648392001-12-08 18:02:58 +0000228 "parser.st", /* tp_name */
Fred Drakec2683dd2001-07-17 19:32:05 +0000229 (int) sizeof(PyST_Object), /* tp_basicsize */
Fred Drakeff9ea482000-04-19 13:54:15 +0000230 0, /* tp_itemsize */
231 (destructor)parser_free, /* tp_dealloc */
232 0, /* tp_print */
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000233 0, /* tp_getattr */
Fred Drakeff9ea482000-04-19 13:54:15 +0000234 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +0000235 0, /* tp_reserved */
Fred Drakeff9ea482000-04-19 13:54:15 +0000236 0, /* tp_repr */
237 0, /* tp_as_number */
238 0, /* tp_as_sequence */
239 0, /* tp_as_mapping */
240 0, /* tp_hash */
241 0, /* tp_call */
242 0, /* tp_str */
243 0, /* tp_getattro */
244 0, /* tp_setattro */
Fred Drake69b9ae41997-05-23 04:04:17 +0000245
246 /* Functions to access object as input/output buffer */
Fred Drakeff9ea482000-04-19 13:54:15 +0000247 0, /* tp_as_buffer */
Fred Drake69b9ae41997-05-23 04:04:17 +0000248
Fred Drakeff9ea482000-04-19 13:54:15 +0000249 Py_TPFLAGS_DEFAULT, /* tp_flags */
Fred Drake69b9ae41997-05-23 04:04:17 +0000250
251 /* __doc__ */
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000252 "Intermediate representation of a Python parse tree.",
253 0, /* tp_traverse */
254 0, /* tp_clear */
Mark Dickinson211c6252009-02-01 10:28:51 +0000255 parser_richcompare, /* tp_richcompare */
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000256 0, /* tp_weaklistoffset */
257 0, /* tp_iter */
258 0, /* tp_iternext */
259 parser_methods, /* tp_methods */
Fred Drakec2683dd2001-07-17 19:32:05 +0000260}; /* PyST_Type */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000261
262
Mark Dickinson211c6252009-02-01 10:28:51 +0000263/* PyST_Type isn't subclassable, so just check ob_type */
264#define PyST_Object_Check(v) ((v)->ob_type == &PyST_Type)
265
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000266static int
Fred Drakeff9ea482000-04-19 13:54:15 +0000267parser_compare_nodes(node *left, node *right)
Guido van Rossum47478871996-08-21 14:32:37 +0000268{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000269 int j;
Guido van Rossum52f2c051993-11-10 12:53:24 +0000270
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000271 if (TYPE(left) < TYPE(right))
Fred Drakeff9ea482000-04-19 13:54:15 +0000272 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000273
274 if (TYPE(right) < TYPE(left))
Fred Drakeff9ea482000-04-19 13:54:15 +0000275 return (1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000276
277 if (ISTERMINAL(TYPE(left)))
Fred Drakeff9ea482000-04-19 13:54:15 +0000278 return (strcmp(STR(left), STR(right)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000279
280 if (NCH(left) < NCH(right))
Fred Drakeff9ea482000-04-19 13:54:15 +0000281 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000282
283 if (NCH(right) < NCH(left))
Fred Drakeff9ea482000-04-19 13:54:15 +0000284 return (1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000285
286 for (j = 0; j < NCH(left); ++j) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000287 int v = parser_compare_nodes(CHILD(left, j), CHILD(right, j));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000288
Fred Drakeff9ea482000-04-19 13:54:15 +0000289 if (v != 0)
290 return (v);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000291 }
292 return (0);
Fred Drakeff9ea482000-04-19 13:54:15 +0000293}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000294
Mark Dickinson211c6252009-02-01 10:28:51 +0000295/* parser_richcompare(PyObject* left, PyObject* right, int op)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000296 *
297 * Comparison function used by the Python operators ==, !=, <, >, <=, >=
298 * This really just wraps a call to parser_compare_nodes() with some easy
299 * checks and protection code.
300 *
301 */
Mark Dickinson211c6252009-02-01 10:28:51 +0000302
303#define TEST_COND(cond) ((cond) ? Py_True : Py_False)
304
305static PyObject *
306parser_richcompare(PyObject *left, PyObject *right, int op)
Guido van Rossum47478871996-08-21 14:32:37 +0000307{
Mark Dickinson211c6252009-02-01 10:28:51 +0000308 int result;
309 PyObject *v;
310
311 /* neither argument should be NULL, unless something's gone wrong */
312 if (left == NULL || right == NULL) {
313 PyErr_BadInternalCall();
314 return NULL;
315 }
316
317 /* both arguments should be instances of PyST_Object */
318 if (!PyST_Object_Check(left) || !PyST_Object_Check(right)) {
319 v = Py_NotImplemented;
320 goto finished;
321 }
322
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000323 if (left == right)
Mark Dickinson211c6252009-02-01 10:28:51 +0000324 /* if arguments are identical, they're equal */
325 result = 0;
326 else
327 result = parser_compare_nodes(((PyST_Object *)left)->st_node,
328 ((PyST_Object *)right)->st_node);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000329
Mark Dickinson211c6252009-02-01 10:28:51 +0000330 /* Convert return value to a Boolean */
331 switch (op) {
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000332 case Py_EQ:
Mark Dickinson211c6252009-02-01 10:28:51 +0000333 v = TEST_COND(result == 0);
334 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000335 case Py_NE:
Mark Dickinson211c6252009-02-01 10:28:51 +0000336 v = TEST_COND(result != 0);
337 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000338 case Py_LE:
Mark Dickinson211c6252009-02-01 10:28:51 +0000339 v = TEST_COND(result <= 0);
340 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000341 case Py_GE:
Mark Dickinson211c6252009-02-01 10:28:51 +0000342 v = TEST_COND(result >= 0);
343 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000344 case Py_LT:
Mark Dickinson211c6252009-02-01 10:28:51 +0000345 v = TEST_COND(result < 0);
346 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000347 case Py_GT:
Mark Dickinson211c6252009-02-01 10:28:51 +0000348 v = TEST_COND(result > 0);
349 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +1000350 default:
Mark Dickinson211c6252009-02-01 10:28:51 +0000351 PyErr_BadArgument();
352 return NULL;
353 }
354 finished:
355 Py_INCREF(v);
356 return v;
Fred Drakeff9ea482000-04-19 13:54:15 +0000357}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000358
Fred Drakec2683dd2001-07-17 19:32:05 +0000359/* parser_newstobject(node* st)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000360 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000361 * Allocates a new Python object representing an ST. This is simply the
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000362 * 'wrapper' object that holds a node* and allows it to be passed around in
363 * Python code.
364 *
365 */
366static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000367parser_newstobject(node *st, int type)
Guido van Rossum47478871996-08-21 14:32:37 +0000368{
Fred Drakec2683dd2001-07-17 19:32:05 +0000369 PyST_Object* o = PyObject_New(PyST_Object, &PyST_Type);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000370
371 if (o != 0) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000372 o->st_node = st;
373 o->st_type = type;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000374 o->st_flags.cf_flags = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000375 }
Fred Drake268397f1998-04-29 14:16:32 +0000376 else {
Fred Drakec2683dd2001-07-17 19:32:05 +0000377 PyNode_Free(st);
Fred Drake268397f1998-04-29 14:16:32 +0000378 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000379 return ((PyObject*)o);
Fred Drakeff9ea482000-04-19 13:54:15 +0000380}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000381
382
Fred Drakec2683dd2001-07-17 19:32:05 +0000383/* void parser_free(PyST_Object* st)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000384 *
385 * This is called by a del statement that reduces the reference count to 0.
386 *
387 */
388static void
Fred Drakec2683dd2001-07-17 19:32:05 +0000389parser_free(PyST_Object *st)
Guido van Rossum47478871996-08-21 14:32:37 +0000390{
Fred Drakec2683dd2001-07-17 19:32:05 +0000391 PyNode_Free(st->st_node);
392 PyObject_Del(st);
Fred Drakeff9ea482000-04-19 13:54:15 +0000393}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000394
Jesus Ceae9c53182012-08-03 14:28:37 +0200395static PyObject *
396parser_sizeof(PyST_Object *st, void *unused)
397{
398 Py_ssize_t res;
399
400 res = sizeof(PyST_Object) + _PyNode_SizeOf(st->st_node);
401 return PyLong_FromSsize_t(res);
402}
403
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000404
Fred Drakec2683dd2001-07-17 19:32:05 +0000405/* parser_st2tuple(PyObject* self, PyObject* args, PyObject* kw)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000406 *
407 * This provides conversion from a node* to a tuple object that can be
Fred Drakec2683dd2001-07-17 19:32:05 +0000408 * returned to the Python-level caller. The ST object is not modified.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000409 *
410 */
411static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000412parser_st2tuple(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000413{
Antoine Pitrou721738f2012-08-15 23:20:39 +0200414 int line_info = 0;
415 int col_info = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000416 PyObject *res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000417 int ok;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000418
Georg Brandl30704ea02008-07-23 15:07:12 +0000419 static char *keywords[] = {"st", "line_info", "col_info", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000420
Martin v. Löwis1a214512008-06-11 05:26:20 +0000421 if (self == NULL || PyModule_Check(self)) {
Antoine Pitrou721738f2012-08-15 23:20:39 +0200422 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|pp:st2tuple", keywords,
423 &PyST_Type, &self, &line_info,
424 &col_info);
Fred Drake268397f1998-04-29 14:16:32 +0000425 }
Fred Drake503d8d61998-04-13 18:45:18 +0000426 else
Antoine Pitrou721738f2012-08-15 23:20:39 +0200427 ok = PyArg_ParseTupleAndKeywords(args, kw, "|pp:totuple", &keywords[1],
428 &line_info, &col_info);
Fred Drake268397f1998-04-29 14:16:32 +0000429 if (ok != 0) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000430 /*
Fred Drakec2683dd2001-07-17 19:32:05 +0000431 * Convert ST into a tuple representation. Use Guido's function,
Fred Drakeff9ea482000-04-19 13:54:15 +0000432 * since it's known to work already.
433 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000434 res = node2tuple(((PyST_Object*)self)->st_node,
Antoine Pitrou721738f2012-08-15 23:20:39 +0200435 PyTuple_New, PyTuple_SetItem, line_info, col_info);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000436 }
437 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000438}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000439
440
Fred Drakec2683dd2001-07-17 19:32:05 +0000441/* parser_st2list(PyObject* self, PyObject* args, PyObject* kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000442 *
Fred Drake2a6875e1999-09-20 22:32:18 +0000443 * This provides conversion from a node* to a list object that can be
Fred Drakec2683dd2001-07-17 19:32:05 +0000444 * returned to the Python-level caller. The ST object is not modified.
Guido van Rossum47478871996-08-21 14:32:37 +0000445 *
446 */
447static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000448parser_st2list(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000449{
Antoine Pitrou721738f2012-08-15 23:20:39 +0200450 int line_info = 0;
451 int col_info = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000452 PyObject *res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000453 int ok;
Guido van Rossum47478871996-08-21 14:32:37 +0000454
Georg Brandl30704ea02008-07-23 15:07:12 +0000455 static char *keywords[] = {"st", "line_info", "col_info", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000456
Martin v. Löwis1a214512008-06-11 05:26:20 +0000457 if (self == NULL || PyModule_Check(self))
Antoine Pitrou721738f2012-08-15 23:20:39 +0200458 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|pp:st2list", keywords,
459 &PyST_Type, &self, &line_info,
460 &col_info);
Fred Drake503d8d61998-04-13 18:45:18 +0000461 else
Antoine Pitrou721738f2012-08-15 23:20:39 +0200462 ok = PyArg_ParseTupleAndKeywords(args, kw, "|pp:tolist", &keywords[1],
463 &line_info, &col_info);
Fred Drake503d8d61998-04-13 18:45:18 +0000464 if (ok) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000465 /*
Fred Drakec2683dd2001-07-17 19:32:05 +0000466 * Convert ST into a tuple representation. Use Guido's function,
Fred Drakeff9ea482000-04-19 13:54:15 +0000467 * since it's known to work already.
468 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000469 res = node2tuple(self->st_node,
Antoine Pitrou721738f2012-08-15 23:20:39 +0200470 PyList_New, PyList_SetItem, line_info, col_info);
Guido van Rossum47478871996-08-21 14:32:37 +0000471 }
472 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000473}
Guido van Rossum47478871996-08-21 14:32:37 +0000474
475
Fred Drakec2683dd2001-07-17 19:32:05 +0000476/* parser_compilest(PyObject* self, PyObject* args)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000477 *
478 * This function creates code objects from the parse tree represented by
479 * the passed-in data object. An optional file name is passed in as well.
480 *
481 */
482static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000483parser_compilest(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000484{
Victor Stinner14e461d2013-08-26 22:28:21 +0200485 PyObject* res = NULL;
486 PyArena* arena = NULL;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000487 mod_ty mod;
Victor Stinner14e461d2013-08-26 22:28:21 +0200488 PyObject* filename = NULL;
Fred Drake503d8d61998-04-13 18:45:18 +0000489 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000490
Georg Brandl30704ea02008-07-23 15:07:12 +0000491 static char *keywords[] = {"st", "filename", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000492
Martin v. Löwis1a214512008-06-11 05:26:20 +0000493 if (self == NULL || PyModule_Check(self))
Victor Stinner14e461d2013-08-26 22:28:21 +0200494 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|O&:compilest", keywords,
495 &PyST_Type, &self,
496 PyUnicode_FSDecoder, &filename);
Fred Drake503d8d61998-04-13 18:45:18 +0000497 else
Victor Stinner14e461d2013-08-26 22:28:21 +0200498 ok = PyArg_ParseTupleAndKeywords(args, kw, "|O&:compile", &keywords[1],
499 PyUnicode_FSDecoder, &filename);
500 if (!ok)
501 goto error;
Fred Drake503d8d61998-04-13 18:45:18 +0000502
Victor Stinner14e461d2013-08-26 22:28:21 +0200503 if (filename == NULL) {
504 filename = PyUnicode_FromString("<syntax-tree>");
505 if (filename == NULL)
506 goto error;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000507 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000508
Victor Stinner14e461d2013-08-26 22:28:21 +0200509 arena = PyArena_New();
510 if (!arena)
511 goto error;
512
513 mod = PyAST_FromNodeObject(self->st_node, &self->st_flags,
514 filename, arena);
515 if (!mod)
516 goto error;
517
518 res = (PyObject *)PyAST_CompileObject(mod, filename,
519 &self->st_flags, -1, arena);
520error:
521 Py_XDECREF(filename);
522 if (arena != NULL)
523 PyArena_Free(arena);
524 return res;
Fred Drakeff9ea482000-04-19 13:54:15 +0000525}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000526
527
528/* PyObject* parser_isexpr(PyObject* self, PyObject* args)
529 * PyObject* parser_issuite(PyObject* self, PyObject* args)
530 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000531 * Checks the passed-in ST object to determine if it is an expression or
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000532 * a statement suite, respectively. The return is a Python truth value.
533 *
534 */
535static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000536parser_isexpr(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000537{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000538 PyObject* res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000539 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000540
Georg Brandl30704ea02008-07-23 15:07:12 +0000541 static char *keywords[] = {"st", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000542
Martin v. Löwis1a214512008-06-11 05:26:20 +0000543 if (self == NULL || PyModule_Check(self))
Fred Drakeff9ea482000-04-19 13:54:15 +0000544 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:isexpr", keywords,
Fred Drakec2683dd2001-07-17 19:32:05 +0000545 &PyST_Type, &self);
Fred Drake503d8d61998-04-13 18:45:18 +0000546 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000547 ok = PyArg_ParseTupleAndKeywords(args, kw, ":isexpr", &keywords[1]);
Fred Drake503d8d61998-04-13 18:45:18 +0000548
549 if (ok) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000550 /* Check to see if the ST represents an expression or not. */
551 res = (self->st_type == PyST_EXPR) ? Py_True : Py_False;
Fred Drakeff9ea482000-04-19 13:54:15 +0000552 Py_INCREF(res);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000553 }
554 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000555}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000556
557
558static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000559parser_issuite(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000560{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000561 PyObject* res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000562 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000563
Georg Brandl30704ea02008-07-23 15:07:12 +0000564 static char *keywords[] = {"st", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000565
Martin v. Löwis1a214512008-06-11 05:26:20 +0000566 if (self == NULL || PyModule_Check(self))
Fred Drakeff9ea482000-04-19 13:54:15 +0000567 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:issuite", keywords,
Fred Drakec2683dd2001-07-17 19:32:05 +0000568 &PyST_Type, &self);
Fred Drake503d8d61998-04-13 18:45:18 +0000569 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000570 ok = PyArg_ParseTupleAndKeywords(args, kw, ":issuite", &keywords[1]);
Fred Drake503d8d61998-04-13 18:45:18 +0000571
572 if (ok) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000573 /* Check to see if the ST represents an expression or not. */
574 res = (self->st_type == PyST_EXPR) ? Py_False : Py_True;
Fred Drakeff9ea482000-04-19 13:54:15 +0000575 Py_INCREF(res);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000576 }
577 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000578}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000579
580
Guido van Rossum3d602e31996-07-21 02:33:56 +0000581/* err_string(char* message)
582 *
583 * Sets the error string for an exception of type ParserError.
584 *
585 */
586static void
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +0000587err_string(char *message)
Guido van Rossum47478871996-08-21 14:32:37 +0000588{
Guido van Rossum3d602e31996-07-21 02:33:56 +0000589 PyErr_SetString(parser_error, message);
Fred Drakeff9ea482000-04-19 13:54:15 +0000590}
Guido van Rossum3d602e31996-07-21 02:33:56 +0000591
592
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000593/* PyObject* parser_do_parse(PyObject* args, int type)
594 *
595 * Internal function to actually execute the parse and return the result if
Jeremy Hyltonaccb62b2002-12-31 18:17:44 +0000596 * successful or set an exception if not.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000597 *
598 */
599static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +0000600parser_do_parse(PyObject *args, PyObject *kw, char *argspec, int type)
Guido van Rossum47478871996-08-21 14:32:37 +0000601{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000602 char* string = 0;
603 PyObject* res = 0;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000604 int flags = 0;
605 perrdetail err;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000606
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000607 static char *keywords[] = {"source", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000608
609 if (PyArg_ParseTupleAndKeywords(args, kw, argspec, keywords, &string)) {
Benjamin Petersonf216c942008-10-31 02:28:05 +0000610 node* n = PyParser_ParseStringFlagsFilenameEx(string, NULL,
611 &_PyParser_Grammar,
612 (type == PyST_EXPR)
613 ? eval_input : file_input,
614 &err, &flags);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000615
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000616 if (n) {
617 res = parser_newstobject(n, type);
Benjamin Petersonf216c942008-10-31 02:28:05 +0000618 if (res)
619 ((PyST_Object *)res)->st_flags.cf_flags = flags & PyCF_MASK;
620 }
Benjamin Petersonf719957d2011-06-04 22:06:42 -0500621 else {
Benjamin Petersonf216c942008-10-31 02:28:05 +0000622 PyParser_SetError(&err);
Benjamin Petersonf719957d2011-06-04 22:06:42 -0500623 }
Benjamin Petersonf0cdbad2011-06-05 22:14:05 -0500624 PyParser_ClearError(&err);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000625 }
626 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000627}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000628
629
630/* PyObject* parser_expr(PyObject* self, PyObject* args)
631 * PyObject* parser_suite(PyObject* self, PyObject* args)
632 *
633 * External interfaces to the parser itself. Which is called determines if
634 * the parser attempts to recognize an expression ('eval' form) or statement
635 * suite ('exec' form). The real work is done by parser_do_parse() above.
636 *
637 */
638static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000639parser_expr(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000640{
Fred Drake268397f1998-04-29 14:16:32 +0000641 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000642 return (parser_do_parse(args, kw, "s:expr", PyST_EXPR));
Fred Drakeff9ea482000-04-19 13:54:15 +0000643}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000644
645
646static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000647parser_suite(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000648{
Fred Drake268397f1998-04-29 14:16:32 +0000649 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000650 return (parser_do_parse(args, kw, "s:suite", PyST_SUITE));
Fred Drakeff9ea482000-04-19 13:54:15 +0000651}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000652
653
654
Fred Drakec2683dd2001-07-17 19:32:05 +0000655/* This is the messy part of the code. Conversion from a tuple to an ST
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000656 * object requires that the input tuple be valid without having to rely on
657 * catching an exception from the compiler. This is done to allow the
658 * compiler itself to remain fast, since most of its input will come from
659 * the parser directly, and therefore be known to be syntactically correct.
660 * This validation is done to ensure that we don't core dump the compile
661 * phase, returning an exception instead.
662 *
663 * Two aspects can be broken out in this code: creating a node tree from
664 * the tuple passed in, and verifying that it is indeed valid. It may be
Fred Drakec2683dd2001-07-17 19:32:05 +0000665 * advantageous to expand the number of ST types to include funcdefs and
666 * lambdadefs to take advantage of the optimizer, recognizing those STs
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000667 * here. They are not necessary, and not quite as useful in a raw form.
668 * For now, let's get expressions and suites working reliably.
669 */
670
671
Jeremy Hylton938ace62002-07-17 16:30:39 +0000672static node* build_node_tree(PyObject *tuple);
673static int validate_expr_tree(node *tree);
674static int validate_file_input(node *tree);
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000675static int validate_encoding_decl(node *tree);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000676
Fred Drakec2683dd2001-07-17 19:32:05 +0000677/* PyObject* parser_tuple2st(PyObject* self, PyObject* args)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000678 *
679 * This is the public function, called from the Python code. It receives a
Fred Drakec2683dd2001-07-17 19:32:05 +0000680 * single tuple object from the caller, and creates an ST object if the
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000681 * tuple can be validated. It does this by checking the first code of the
682 * tuple, and, if acceptable, builds the internal representation. If this
683 * step succeeds, the internal representation is validated as fully as
684 * possible with the various validate_*() routines defined below.
685 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000686 * This function must be changed if support is to be added for PyST_FRAGMENT
687 * ST objects.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000688 *
689 */
690static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000691parser_tuple2st(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000692{
Fred Drake268397f1998-04-29 14:16:32 +0000693 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000694 PyObject *st = 0;
Fred Drake0ac9b072000-09-12 21:58:06 +0000695 PyObject *tuple;
696 node *tree;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000697
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000698 static char *keywords[] = {"sequence", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000699
Fred Drakec2683dd2001-07-17 19:32:05 +0000700 if (!PyArg_ParseTupleAndKeywords(args, kw, "O:sequence2st", keywords,
Fred Drake7a15ba51999-09-09 14:21:52 +0000701 &tuple))
Fred Drakeff9ea482000-04-19 13:54:15 +0000702 return (0);
Guido van Rossum47478871996-08-21 14:32:37 +0000703 if (!PySequence_Check(tuple)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000704 PyErr_SetString(PyExc_ValueError,
Fred Drakec2683dd2001-07-17 19:32:05 +0000705 "sequence2st() requires a single sequence argument");
Fred Drakeff9ea482000-04-19 13:54:15 +0000706 return (0);
Guido van Rossum47478871996-08-21 14:32:37 +0000707 }
708 /*
Fred Drake0ac9b072000-09-12 21:58:06 +0000709 * Convert the tree to the internal form before checking it.
Guido van Rossum47478871996-08-21 14:32:37 +0000710 */
Fred Drake0ac9b072000-09-12 21:58:06 +0000711 tree = build_node_tree(tuple);
712 if (tree != 0) {
713 int start_sym = TYPE(tree);
714 if (start_sym == eval_input) {
715 /* Might be an eval form. */
716 if (validate_expr_tree(tree))
Fred Drakec2683dd2001-07-17 19:32:05 +0000717 st = parser_newstobject(tree, PyST_EXPR);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000718 else
719 PyNode_Free(tree);
Fred Drakeff9ea482000-04-19 13:54:15 +0000720 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000721 else if (start_sym == file_input) {
722 /* This looks like an exec form so far. */
723 if (validate_file_input(tree))
Fred Drakec2683dd2001-07-17 19:32:05 +0000724 st = parser_newstobject(tree, PyST_SUITE);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000725 else
726 PyNode_Free(tree);
Fred Drake0ac9b072000-09-12 21:58:06 +0000727 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000728 else if (start_sym == encoding_decl) {
729 /* This looks like an encoding_decl so far. */
730 if (validate_encoding_decl(tree))
731 st = parser_newstobject(tree, PyST_SUITE);
732 else
733 PyNode_Free(tree);
734 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000735 else {
736 /* This is a fragment, at best. */
737 PyNode_Free(tree);
Fred Drake661ea262000-10-24 19:57:45 +0000738 err_string("parse tree does not use a valid start symbol");
Fred Drake0ac9b072000-09-12 21:58:06 +0000739 }
Guido van Rossum47478871996-08-21 14:32:37 +0000740 }
Andrew Svetlov737fb892012-12-18 21:14:22 +0200741 /* Make sure we raise an exception on all errors. We should never
Guido van Rossum47478871996-08-21 14:32:37 +0000742 * get this, but we'd do well to be sure something is done.
743 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000744 if (st == NULL && !PyErr_Occurred())
745 err_string("unspecified ST error occurred");
Guido van Rossum3d602e31996-07-21 02:33:56 +0000746
Fred Drakec2683dd2001-07-17 19:32:05 +0000747 return st;
Fred Drakeff9ea482000-04-19 13:54:15 +0000748}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000749
750
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000751/* node* build_node_children()
752 *
753 * Iterate across the children of the current non-terminal node and build
754 * their structures. If successful, return the root of this portion of
755 * the tree, otherwise, 0. Any required exception will be specified already,
756 * and no memory will have been deallocated.
757 *
758 */
759static node*
Fred Drakeff9ea482000-04-19 13:54:15 +0000760build_node_children(PyObject *tuple, node *root, int *line_num)
Guido van Rossum47478871996-08-21 14:32:37 +0000761{
Martin v. Löwis18e16552006-02-15 17:27:45 +0000762 Py_ssize_t len = PyObject_Size(tuple);
763 Py_ssize_t i;
764 int err;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000765
766 for (i = 1; i < len; ++i) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000767 /* elem must always be a sequence, however simple */
Fred Drakeff9ea482000-04-19 13:54:15 +0000768 PyObject* elem = PySequence_GetItem(tuple, i);
769 int ok = elem != NULL;
Serhiy Storchaka78980432013-01-15 01:12:17 +0200770 int type = 0;
Fred Drakeff9ea482000-04-19 13:54:15 +0000771 char *strn = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000772
Fred Drakeff9ea482000-04-19 13:54:15 +0000773 if (ok)
774 ok = PySequence_Check(elem);
775 if (ok) {
776 PyObject *temp = PySequence_GetItem(elem, 0);
777 if (temp == NULL)
778 ok = 0;
779 else {
Christian Heimes217cfd12007-12-02 14:31:20 +0000780 ok = PyLong_Check(temp);
Serhiy Storchaka78980432013-01-15 01:12:17 +0200781 if (ok) {
782 type = _PyLong_AsInt(temp);
783 if (type == -1 && PyErr_Occurred()) {
784 Py_DECREF(temp);
785 Py_DECREF(elem);
786 return 0;
787 }
788 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000789 Py_DECREF(temp);
790 }
791 }
792 if (!ok) {
Victor Stinner5f8d4852014-01-02 11:49:27 +0100793 PyObject *err = Py_BuildValue("Os", elem,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000794 "Illegal node construct.");
795 PyErr_SetObject(parser_error, err);
796 Py_XDECREF(err);
Fred Drakeff9ea482000-04-19 13:54:15 +0000797 Py_XDECREF(elem);
798 return (0);
799 }
800 if (ISTERMINAL(type)) {
Martin v. Löwis18e16552006-02-15 17:27:45 +0000801 Py_ssize_t len = PyObject_Size(elem);
Fred Drake0ac9b072000-09-12 21:58:06 +0000802 PyObject *temp;
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000803 const char *temp_str;
Guido van Rossum47478871996-08-21 14:32:37 +0000804
Fred Drake0ac9b072000-09-12 21:58:06 +0000805 if ((len != 2) && (len != 3)) {
Fred Drake661ea262000-10-24 19:57:45 +0000806 err_string("terminal nodes must have 2 or 3 entries");
Fred Drake0ac9b072000-09-12 21:58:06 +0000807 return 0;
808 }
809 temp = PySequence_GetItem(elem, 1);
810 if (temp == NULL)
811 return 0;
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000812 if (!PyUnicode_Check(temp)) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000813 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +0000814 "second item in terminal node must be a string,"
815 " found %s",
Christian Heimes90aa7642007-12-19 02:45:37 +0000816 Py_TYPE(temp)->tp_name);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000817 Py_DECREF(temp);
Neal Norwitz2cde0eb2007-08-11 04:58:43 +0000818 Py_DECREF(elem);
Fred Drake0ac9b072000-09-12 21:58:06 +0000819 return 0;
820 }
821 if (len == 3) {
822 PyObject *o = PySequence_GetItem(elem, 2);
823 if (o != NULL) {
Serhiy Storchaka78980432013-01-15 01:12:17 +0200824 if (PyLong_Check(o)) {
825 int num = _PyLong_AsInt(o);
826 if (num == -1 && PyErr_Occurred()) {
827 Py_DECREF(o);
828 Py_DECREF(temp);
829 Py_DECREF(elem);
830 return 0;
831 }
832 *line_num = num;
833 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000834 else {
835 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +0000836 "third item in terminal node must be an"
837 " integer, found %s",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000838 Py_TYPE(temp)->tp_name);
Fred Drake0ac9b072000-09-12 21:58:06 +0000839 Py_DECREF(o);
840 Py_DECREF(temp);
Neal Norwitz2cde0eb2007-08-11 04:58:43 +0000841 Py_DECREF(elem);
Fred Drake0ac9b072000-09-12 21:58:06 +0000842 return 0;
843 }
844 Py_DECREF(o);
Fred Drakeff9ea482000-04-19 13:54:15 +0000845 }
846 }
Marc-André Lemburg4cc0f242008-08-07 18:54:33 +0000847 temp_str = _PyUnicode_AsStringAndSize(temp, &len);
Alexander Belopolskye239d232010-12-08 23:31:48 +0000848 if (temp_str == NULL) {
849 Py_DECREF(temp);
850 Py_XDECREF(elem);
851 return 0;
852 }
Alexandre Vassalottia85998a2008-05-03 18:24:43 +0000853 strn = (char *)PyObject_MALLOC(len + 1);
Victor Stinner3bd6abd2013-07-12 01:33:59 +0200854 if (strn == NULL) {
855 Py_DECREF(temp);
856 Py_XDECREF(elem);
857 PyErr_NoMemory();
858 return 0;
859 }
860 (void) memcpy(strn, temp_str, len + 1);
Fred Drake0ac9b072000-09-12 21:58:06 +0000861 Py_DECREF(temp);
Fred Drakeff9ea482000-04-19 13:54:15 +0000862 }
863 else if (!ISNONTERMINAL(type)) {
864 /*
865 * It has to be one or the other; this is an error.
Andrew Svetlov737fb892012-12-18 21:14:22 +0200866 * Raise an exception.
Fred Drakeff9ea482000-04-19 13:54:15 +0000867 */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000868 PyObject *err = Py_BuildValue("os", elem, "unknown node type.");
869 PyErr_SetObject(parser_error, err);
870 Py_XDECREF(err);
Fred Drakeff9ea482000-04-19 13:54:15 +0000871 Py_XDECREF(elem);
872 return (0);
873 }
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000874 err = PyNode_AddChild(root, type, strn, *line_num, 0);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000875 if (err == E_NOMEM) {
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 return (node *) PyErr_NoMemory();
879 }
880 if (err == E_OVERFLOW) {
Neal Norwitz2cde0eb2007-08-11 04:58:43 +0000881 Py_XDECREF(elem);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000882 PyObject_FREE(strn);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000883 PyErr_SetString(PyExc_ValueError,
884 "unsupported number of child nodes");
885 return NULL;
886 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000887
Fred Drakeff9ea482000-04-19 13:54:15 +0000888 if (ISNONTERMINAL(type)) {
889 node* new_child = CHILD(root, i - 1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000890
Fred Drakeff9ea482000-04-19 13:54:15 +0000891 if (new_child != build_node_children(elem, new_child, line_num)) {
892 Py_XDECREF(elem);
893 return (0);
894 }
895 }
896 else if (type == NEWLINE) { /* It's true: we increment the */
897 ++(*line_num); /* line number *after* the newline! */
898 }
899 Py_XDECREF(elem);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000900 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000901 return root;
Fred Drakeff9ea482000-04-19 13:54:15 +0000902}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000903
904
905static node*
Fred Drakeff9ea482000-04-19 13:54:15 +0000906build_node_tree(PyObject *tuple)
Guido van Rossum47478871996-08-21 14:32:37 +0000907{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000908 node* res = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000909 PyObject *temp = PySequence_GetItem(tuple, 0);
Fred Drake0ac9b072000-09-12 21:58:06 +0000910 long num = -1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000911
Guido van Rossum47478871996-08-21 14:32:37 +0000912 if (temp != NULL)
Christian Heimes217cfd12007-12-02 14:31:20 +0000913 num = PyLong_AsLong(temp);
Guido van Rossum47478871996-08-21 14:32:37 +0000914 Py_XDECREF(temp);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000915 if (ISTERMINAL(num)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000916 /*
917 * The tuple is simple, but it doesn't start with a start symbol.
Andrew Svetlov737fb892012-12-18 21:14:22 +0200918 * Raise an exception now and be done with it.
Fred Drakeff9ea482000-04-19 13:54:15 +0000919 */
Victor Stinner6684bdf2013-07-17 00:13:52 +0200920 tuple = Py_BuildValue("Os", tuple,
Fred Drakec2683dd2001-07-17 19:32:05 +0000921 "Illegal syntax-tree; cannot start with terminal symbol.");
Fred Drakeff9ea482000-04-19 13:54:15 +0000922 PyErr_SetObject(parser_error, tuple);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000923 Py_XDECREF(tuple);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000924 }
925 else if (ISNONTERMINAL(num)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000926 /*
927 * Not efficient, but that can be handled later.
928 */
929 int line_num = 0;
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000930 PyObject *encoding = NULL;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000931
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000932 if (num == encoding_decl) {
933 encoding = PySequence_GetItem(tuple, 2);
934 /* tuple isn't borrowed anymore here, need to DECREF */
935 tuple = PySequence_GetSlice(tuple, 0, 2);
Alexander Belopolskye239d232010-12-08 23:31:48 +0000936 if (tuple == NULL)
937 return NULL;
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000938 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000939 res = PyNode_New(num);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000940 if (res != NULL) {
941 if (res != build_node_children(tuple, res, &line_num)) {
942 PyNode_Free(res);
943 res = NULL;
944 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000945 if (res && encoding) {
Martin v. Löwisad0a4622006-02-16 14:30:23 +0000946 Py_ssize_t len;
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000947 const char *temp;
Marc-André Lemburg4cc0f242008-08-07 18:54:33 +0000948 temp = _PyUnicode_AsStringAndSize(encoding, &len);
Alexander Belopolskye239d232010-12-08 23:31:48 +0000949 if (temp == NULL) {
950 Py_DECREF(res);
951 Py_DECREF(encoding);
952 Py_DECREF(tuple);
953 return NULL;
954 }
Alexandre Vassalottia85998a2008-05-03 18:24:43 +0000955 res->n_str = (char *)PyObject_MALLOC(len + 1);
Victor Stinner3bd6abd2013-07-12 01:33:59 +0200956 if (res->n_str == NULL) {
957 Py_DECREF(res);
958 Py_DECREF(encoding);
959 Py_DECREF(tuple);
960 PyErr_NoMemory();
961 return NULL;
962 }
963 (void) memcpy(res->n_str, temp, len + 1);
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000964 Py_DECREF(encoding);
965 Py_DECREF(tuple);
966 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000967 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000968 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000969 else {
Fred Drakeff9ea482000-04-19 13:54:15 +0000970 /* The tuple is illegal -- if the number is neither TERMINAL nor
Fred Drake0ac9b072000-09-12 21:58:06 +0000971 * NONTERMINAL, we can't use it. Not sure the implementation
972 * allows this condition, but the API doesn't preclude it.
Fred Drakeff9ea482000-04-19 13:54:15 +0000973 */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000974 PyObject *err = Py_BuildValue("os", tuple,
975 "Illegal component tuple.");
976 PyErr_SetObject(parser_error, err);
977 Py_XDECREF(err);
978 }
Guido van Rossum3d602e31996-07-21 02:33:56 +0000979
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000980 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000981}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000982
983
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000984/*
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000985 * Validation routines used within the validation section:
986 */
Jeremy Hylton938ace62002-07-17 16:30:39 +0000987static int validate_terminal(node *terminal, int type, char *string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000988
Fred Drakeff9ea482000-04-19 13:54:15 +0000989#define validate_ampersand(ch) validate_terminal(ch, AMPER, "&")
990#define validate_circumflex(ch) validate_terminal(ch, CIRCUMFLEX, "^")
991#define validate_colon(ch) validate_terminal(ch, COLON, ":")
992#define validate_comma(ch) validate_terminal(ch, COMMA, ",")
993#define validate_dedent(ch) validate_terminal(ch, DEDENT, "")
994#define validate_equal(ch) validate_terminal(ch, EQUAL, "=")
995#define validate_indent(ch) validate_terminal(ch, INDENT, (char*)NULL)
996#define validate_lparen(ch) validate_terminal(ch, LPAR, "(")
997#define validate_newline(ch) validate_terminal(ch, NEWLINE, (char*)NULL)
998#define validate_rparen(ch) validate_terminal(ch, RPAR, ")")
999#define validate_semi(ch) validate_terminal(ch, SEMI, ";")
1000#define validate_star(ch) validate_terminal(ch, STAR, "*")
1001#define validate_vbar(ch) validate_terminal(ch, VBAR, "|")
1002#define validate_doublestar(ch) validate_terminal(ch, DOUBLESTAR, "**")
1003#define validate_dot(ch) validate_terminal(ch, DOT, ".")
Anthony Baxterc2a5a632004-08-02 06:10:11 +00001004#define validate_at(ch) validate_terminal(ch, AT, "@")
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001005#define validate_rarrow(ch) validate_terminal(ch, RARROW, "->")
Fred Drakeff9ea482000-04-19 13:54:15 +00001006#define validate_name(ch, str) validate_terminal(ch, NAME, str)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001007
Fred Drake0ac9b072000-09-12 21:58:06 +00001008#define VALIDATER(n) static int validate_##n(node *tree)
1009
Fred Drakeff9ea482000-04-19 13:54:15 +00001010VALIDATER(node); VALIDATER(small_stmt);
1011VALIDATER(class); VALIDATER(node);
1012VALIDATER(parameters); VALIDATER(suite);
1013VALIDATER(testlist); VALIDATER(varargslist);
Guido van Rossumfc158e22007-11-15 19:17:28 +00001014VALIDATER(vfpdef);
Fred Drakeff9ea482000-04-19 13:54:15 +00001015VALIDATER(stmt); VALIDATER(simple_stmt);
1016VALIDATER(expr_stmt); VALIDATER(power);
Guido van Rossum452bf512007-02-09 05:32:43 +00001017VALIDATER(del_stmt);
Nick Coghlan650f0d02007-04-15 12:05:43 +00001018VALIDATER(return_stmt); VALIDATER(raise_stmt);
1019VALIDATER(import_stmt); VALIDATER(import_stmt);
1020VALIDATER(import_name); VALIDATER(yield_stmt);
Mark Dickinson407b3bd2012-04-29 22:18:31 +01001021VALIDATER(global_stmt); VALIDATER(nonlocal_stmt);
1022VALIDATER(assert_stmt);
Benjamin Peterson4905e802009-09-27 02:43:28 +00001023VALIDATER(compound_stmt); VALIDATER(test_or_star_expr);
Fred Drakeff9ea482000-04-19 13:54:15 +00001024VALIDATER(while); VALIDATER(for);
1025VALIDATER(try); VALIDATER(except_clause);
1026VALIDATER(test); VALIDATER(and_test);
1027VALIDATER(not_test); VALIDATER(comparison);
Guido van Rossumfc158e22007-11-15 19:17:28 +00001028VALIDATER(comp_op);
Guido van Rossum0368b722007-05-11 16:50:42 +00001029VALIDATER(star_expr); VALIDATER(expr);
Fred Drakeff9ea482000-04-19 13:54:15 +00001030VALIDATER(xor_expr); VALIDATER(and_expr);
1031VALIDATER(shift_expr); VALIDATER(arith_expr);
1032VALIDATER(term); VALIDATER(factor);
1033VALIDATER(atom); VALIDATER(lambdef);
1034VALIDATER(trailer); VALIDATER(subscript);
1035VALIDATER(subscriptlist); VALIDATER(sliceop);
Nick Coghlan650f0d02007-04-15 12:05:43 +00001036VALIDATER(exprlist); VALIDATER(dictorsetmaker);
Fred Drakeff9ea482000-04-19 13:54:15 +00001037VALIDATER(arglist); VALIDATER(argument);
Benjamin Peterson4905e802009-09-27 02:43:28 +00001038VALIDATER(comp_for);
Nick Coghlan650f0d02007-04-15 12:05:43 +00001039VALIDATER(comp_iter); VALIDATER(comp_if);
1040VALIDATER(testlist_comp); VALIDATER(yield_expr);
Benjamin Peterson4905e802009-09-27 02:43:28 +00001041VALIDATER(or_test);
Nick Coghlan650f0d02007-04-15 12:05:43 +00001042VALIDATER(test_nocond); VALIDATER(lambdef_nocond);
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001043VALIDATER(yield_arg);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001044
Fred Drake0ac9b072000-09-12 21:58:06 +00001045#undef VALIDATER
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001046
Fred Drakeff9ea482000-04-19 13:54:15 +00001047#define is_even(n) (((n) & 1) == 0)
1048#define is_odd(n) (((n) & 1) == 1)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001049
1050
1051static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001052validate_ntype(node *n, int t)
Guido van Rossum47478871996-08-21 14:32:37 +00001053{
Fred Drake0ac9b072000-09-12 21:58:06 +00001054 if (TYPE(n) != t) {
1055 PyErr_Format(parser_error, "Expected node type %d, got %d.",
1056 t, TYPE(n));
1057 return 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001058 }
Fred Drake0ac9b072000-09-12 21:58:06 +00001059 return 1;
Fred Drakeff9ea482000-04-19 13:54:15 +00001060}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001061
1062
Fred Drakee7ab64e2000-04-25 04:14:46 +00001063/* Verifies that the number of child nodes is exactly 'num', raising
1064 * an exception if it isn't. The exception message does not indicate
1065 * the exact number of nodes, allowing this to be used to raise the
1066 * "right" exception when the wrong number of nodes is present in a
1067 * specific variant of a statement's syntax. This is commonly used
1068 * in that fashion.
1069 */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001070static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001071validate_numnodes(node *n, int num, const char *const name)
Guido van Rossum47478871996-08-21 14:32:37 +00001072{
Guido van Rossum3d602e31996-07-21 02:33:56 +00001073 if (NCH(n) != num) {
Fred Drake0ac9b072000-09-12 21:58:06 +00001074 PyErr_Format(parser_error,
1075 "Illegal number of children for %s node.", name);
1076 return 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001077 }
Fred Drake0ac9b072000-09-12 21:58:06 +00001078 return 1;
Fred Drakeff9ea482000-04-19 13:54:15 +00001079}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001080
1081
1082static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001083validate_terminal(node *terminal, int type, char *string)
Guido van Rossum47478871996-08-21 14:32:37 +00001084{
Guido van Rossum3d602e31996-07-21 02:33:56 +00001085 int res = (validate_ntype(terminal, type)
Fred Drakeff9ea482000-04-19 13:54:15 +00001086 && ((string == 0) || (strcmp(string, STR(terminal)) == 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001087
1088 if (!res && !PyErr_Occurred()) {
Fred Drake0ac9b072000-09-12 21:58:06 +00001089 PyErr_Format(parser_error,
1090 "Illegal terminal: expected \"%s\"", string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001091 }
1092 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001093}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001094
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04001095/* X (',' X) [','] */
Guido van Rossum47478871996-08-21 14:32:37 +00001096static int
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04001097validate_repeating_list_variable(node *tree,
1098 int list_node_type,
1099 int (*validate_child_func_inc)(node *, int *),
1100 int *pos,
1101 const char *const list_node_type_name)
Guido van Rossum47478871996-08-21 14:32:37 +00001102{
1103 int nch = NCH(tree);
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04001104 int res = (nch && validate_ntype(tree, list_node_type));
Guido van Rossum47478871996-08-21 14:32:37 +00001105
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04001106 if (!res && !PyErr_Occurred()) {
1107 /* Unconditionally raise. */
1108 (void) validate_numnodes(tree, 1, list_node_type_name);
1109 }
Guido van Rossum47478871996-08-21 14:32:37 +00001110 else {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04001111 for ( ; res && *pos < nch; ) {
1112 res = validate_child_func_inc(tree, pos);
1113 if (!res || *pos >= nch)
1114 break;
1115 res = validate_comma(CHILD(tree, (*pos)++));
Fred Drakeff9ea482000-04-19 13:54:15 +00001116 }
Guido van Rossum47478871996-08-21 14:32:37 +00001117 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04001118 return res;
1119}
1120
1121/* X (',' X) [','] */
1122static int
1123validate_repeating_list(node *tree,
1124 int list_node_type,
1125 int (*validate_child_func)(node *),
1126 const char *const list_node_type_name)
1127{
1128 int nch = NCH(tree);
1129 int res = (nch && validate_ntype(tree, list_node_type));
1130 int pos = 0;
1131
1132 if (!res && !PyErr_Occurred()) {
1133 /* Unconditionally raise. */
1134 (void) validate_numnodes(tree, 1, list_node_type_name);
1135 }
1136 else {
1137 for ( ; res && pos < nch; ) {
1138 res = validate_child_func(CHILD(tree, pos++));
1139 if (!res || pos >= nch)
1140 break;
1141 res = validate_comma(CHILD(tree, pos++));
1142 }
1143 }
1144 return res;
Fred Drakeff9ea482000-04-19 13:54:15 +00001145}
Guido van Rossum47478871996-08-21 14:32:37 +00001146
1147
Fred Drakecff283c2000-08-21 22:24:43 +00001148/* validate_class()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001149 *
1150 * classdef:
Fred Drakeff9ea482000-04-19 13:54:15 +00001151 * 'class' NAME ['(' testlist ')'] ':' suite
Guido van Rossum3d602e31996-07-21 02:33:56 +00001152 */
Guido van Rossum47478871996-08-21 14:32:37 +00001153static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001154validate_class(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001155{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001156 int nch = NCH(tree);
Brett Cannonf4189912005-04-09 02:30:16 +00001157 int res = (validate_ntype(tree, classdef) &&
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001158 ((nch == 4) || (nch == 6) || (nch == 7)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001159
Guido van Rossum3d602e31996-07-21 02:33:56 +00001160 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001161 res = (validate_name(CHILD(tree, 0), "class")
1162 && validate_ntype(CHILD(tree, 1), NAME)
1163 && validate_colon(CHILD(tree, nch - 2))
1164 && validate_suite(CHILD(tree, nch - 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001165 }
Brett Cannonf4189912005-04-09 02:30:16 +00001166 else {
Fred Drakeff9ea482000-04-19 13:54:15 +00001167 (void) validate_numnodes(tree, 4, "class");
Brett Cannonf4189912005-04-09 02:30:16 +00001168 }
Guido van Rossumfc158e22007-11-15 19:17:28 +00001169
Brett Cannonf4189912005-04-09 02:30:16 +00001170 if (res) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001171 if (nch == 7) {
1172 res = ((validate_lparen(CHILD(tree, 2)) &&
1173 validate_arglist(CHILD(tree, 3)) &&
1174 validate_rparen(CHILD(tree, 4))));
1175 }
1176 else if (nch == 6) {
1177 res = (validate_lparen(CHILD(tree,2)) &&
1178 validate_rparen(CHILD(tree,3)));
1179 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001180 }
1181 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001182}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001183
1184
Guido van Rossum3d602e31996-07-21 02:33:56 +00001185/* if_stmt:
Fred Drakeff9ea482000-04-19 13:54:15 +00001186 * 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
Guido van Rossum3d602e31996-07-21 02:33:56 +00001187 */
Guido van Rossum47478871996-08-21 14:32:37 +00001188static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001189validate_if(node *tree)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001190{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001191 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001192 int res = (validate_ntype(tree, if_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001193 && (nch >= 4)
1194 && validate_name(CHILD(tree, 0), "if")
1195 && validate_test(CHILD(tree, 1))
1196 && validate_colon(CHILD(tree, 2))
1197 && validate_suite(CHILD(tree, 3)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001198
1199 if (res && ((nch % 4) == 3)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001200 /* ... 'else' ':' suite */
1201 res = (validate_name(CHILD(tree, nch - 3), "else")
1202 && validate_colon(CHILD(tree, nch - 2))
1203 && validate_suite(CHILD(tree, nch - 1)));
1204 nch -= 3;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001205 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001206 else if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +00001207 (void) validate_numnodes(tree, 4, "if");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001208 if ((nch % 4) != 0)
Fred Drakeff9ea482000-04-19 13:54:15 +00001209 /* Will catch the case for nch < 4 */
1210 res = validate_numnodes(tree, 0, "if");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001211 else if (res && (nch > 4)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001212 /* ... ('elif' test ':' suite)+ ... */
1213 int j = 4;
1214 while ((j < nch) && res) {
1215 res = (validate_name(CHILD(tree, j), "elif")
1216 && validate_colon(CHILD(tree, j + 2))
1217 && validate_test(CHILD(tree, j + 1))
1218 && validate_suite(CHILD(tree, j + 3)));
1219 j += 4;
1220 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001221 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001222 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001223}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001224
1225
Guido van Rossum3d602e31996-07-21 02:33:56 +00001226/* parameters:
Fred Drakeff9ea482000-04-19 13:54:15 +00001227 * '(' [varargslist] ')'
Guido van Rossum3d602e31996-07-21 02:33:56 +00001228 *
1229 */
Guido van Rossum47478871996-08-21 14:32:37 +00001230static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001231validate_parameters(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001232{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001233 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001234 int res = validate_ntype(tree, parameters) && ((nch == 2) || (nch == 3));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001235
Guido van Rossum3d602e31996-07-21 02:33:56 +00001236 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001237 res = (validate_lparen(CHILD(tree, 0))
1238 && validate_rparen(CHILD(tree, nch - 1)));
1239 if (res && (nch == 3))
1240 res = validate_varargslist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001241 }
Fred Drakeff9ea482000-04-19 13:54:15 +00001242 else {
1243 (void) validate_numnodes(tree, 2, "parameters");
1244 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001245 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001246}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001247
1248
Fred Drakecff283c2000-08-21 22:24:43 +00001249/* validate_suite()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001250 *
1251 * suite:
Fred Drakeff9ea482000-04-19 13:54:15 +00001252 * simple_stmt
Guido van Rossum3d602e31996-07-21 02:33:56 +00001253 * | NEWLINE INDENT stmt+ DEDENT
1254 */
Guido van Rossum47478871996-08-21 14:32:37 +00001255static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001256validate_suite(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001257{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001258 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001259 int res = (validate_ntype(tree, suite) && ((nch == 1) || (nch >= 4)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001260
Guido van Rossum3d602e31996-07-21 02:33:56 +00001261 if (res && (nch == 1))
Fred Drakeff9ea482000-04-19 13:54:15 +00001262 res = validate_simple_stmt(CHILD(tree, 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001263 else if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001264 /* NEWLINE INDENT stmt+ DEDENT */
1265 res = (validate_newline(CHILD(tree, 0))
1266 && validate_indent(CHILD(tree, 1))
1267 && validate_stmt(CHILD(tree, 2))
1268 && validate_dedent(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001269
Fred Drakeff9ea482000-04-19 13:54:15 +00001270 if (res && (nch > 4)) {
1271 int i = 3;
1272 --nch; /* forget the DEDENT */
1273 for ( ; res && (i < nch); ++i)
1274 res = validate_stmt(CHILD(tree, i));
1275 }
1276 else if (nch < 4)
1277 res = validate_numnodes(tree, 4, "suite");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001278 }
1279 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001280}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001281
1282
Guido van Rossum47478871996-08-21 14:32:37 +00001283static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001284validate_testlist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001285{
Guido van Rossum47478871996-08-21 14:32:37 +00001286 return (validate_repeating_list(tree, testlist,
Fred Drakeff9ea482000-04-19 13:54:15 +00001287 validate_test, "testlist"));
1288}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001289
Guido van Rossum1c917072001-10-15 15:44:05 +00001290static int
Benjamin Peterson4905e802009-09-27 02:43:28 +00001291validate_testlist_star_expr(node *tl)
Guido van Rossum2d3b9862002-05-24 15:47:06 +00001292{
Benjamin Peterson4905e802009-09-27 02:43:28 +00001293 return (validate_repeating_list(tl, testlist_star_expr, validate_test_or_star_expr,
1294 "testlist"));
Guido van Rossum2d3b9862002-05-24 15:47:06 +00001295}
1296
1297
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001298/* validate either vfpdef or tfpdef.
1299 * vfpdef: NAME
1300 * tfpdef: NAME [':' test]
Neal Norwitzc1505362006-12-28 06:47:50 +00001301 */
1302static int
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001303validate_vfpdef(node *tree)
Neal Norwitzc1505362006-12-28 06:47:50 +00001304{
1305 int nch = NCH(tree);
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001306 if (TYPE(tree) == vfpdef) {
Neal Norwitzc1505362006-12-28 06:47:50 +00001307 return nch == 1 && validate_name(CHILD(tree, 0), NULL);
1308 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001309 else if (TYPE(tree) == tfpdef) {
Neal Norwitzc1505362006-12-28 06:47:50 +00001310 if (nch == 1) {
1311 return validate_name(CHILD(tree, 0), NULL);
1312 }
1313 else if (nch == 3) {
1314 return validate_name(CHILD(tree, 0), NULL) &&
1315 validate_colon(CHILD(tree, 1)) &&
1316 validate_test(CHILD(tree, 2));
1317 }
1318 }
1319 return 0;
1320}
1321
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001322/* '*' [vfpdef] (',' vfpdef ['=' test])* [',' '**' vfpdef] | '**' vfpdef
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001323 * ..or tfpdef in place of vfpdef. vfpdef: NAME; tfpdef: NAME [':' test]
Fred Drakecff283c2000-08-21 22:24:43 +00001324 */
1325static int
1326validate_varargslist_trailer(node *tree, int start)
1327{
1328 int nch = NCH(tree);
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001329 int res = 0;
Fred Drakecff283c2000-08-21 22:24:43 +00001330
1331 if (nch <= start) {
1332 err_string("expected variable argument trailer for varargslist");
1333 return 0;
1334 }
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001335 if (TYPE(CHILD(tree, start)) == STAR) {
Fred Drakecff283c2000-08-21 22:24:43 +00001336 /*
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001337 * '*' [vfpdef]
Fred Drakecff283c2000-08-21 22:24:43 +00001338 */
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001339 res = validate_star(CHILD(tree, start++));
1340 if (res && start < nch && (TYPE(CHILD(tree, start)) == vfpdef ||
1341 TYPE(CHILD(tree, start)) == tfpdef))
1342 res = validate_vfpdef(CHILD(tree, start++));
1343 /*
1344 * (',' vfpdef ['=' test])*
1345 */
1346 while (res && start + 1 < nch && (
1347 TYPE(CHILD(tree, start + 1)) == vfpdef ||
1348 TYPE(CHILD(tree, start + 1)) == tfpdef)) {
1349 res = (validate_comma(CHILD(tree, start++))
1350 && validate_vfpdef(CHILD(tree, start++)));
1351 if (res && start + 1 < nch && TYPE(CHILD(tree, start)) == EQUAL)
1352 res = (validate_equal(CHILD(tree, start++))
1353 && validate_test(CHILD(tree, start++)));
1354 }
1355 /*
1356 * [',' '**' vfpdef]
1357 */
1358 if (res && start + 2 < nch && TYPE(CHILD(tree, start+1)) == DOUBLESTAR)
1359 res = (validate_comma(CHILD(tree, start++))
1360 && validate_doublestar(CHILD(tree, start++))
1361 && validate_vfpdef(CHILD(tree, start++)));
1362 }
1363 else if (TYPE(CHILD(tree, start)) == DOUBLESTAR) {
1364 /*
1365 * '**' vfpdef
1366 */
1367 if (start + 1 < nch)
1368 res = (validate_doublestar(CHILD(tree, start++))
1369 && validate_vfpdef(CHILD(tree, start++)));
Guido van Rossum4f72a782006-10-27 23:31:49 +00001370 else {
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001371 res = 0;
1372 err_string("expected vfpdef after ** in varargslist trailer");
Guido van Rossum4f72a782006-10-27 23:31:49 +00001373 }
Fred Drakecff283c2000-08-21 22:24:43 +00001374 }
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001375 else {
1376 res = 0;
1377 err_string("expected * or ** in varargslist trailer");
Fred Drakecff283c2000-08-21 22:24:43 +00001378 }
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01001379
1380 if (res && start != nch) {
1381 res = 0;
1382 err_string("unexpected extra children in varargslist trailer");
1383 }
Fred Drakecff283c2000-08-21 22:24:43 +00001384 return res;
1385}
1386
1387
Neal Norwitzc1505362006-12-28 06:47:50 +00001388/* validate_varargslist()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001389 *
Neal Norwitzc1505362006-12-28 06:47:50 +00001390 * Validate typedargslist or varargslist.
1391 *
1392 * typedargslist: ((tfpdef ['=' test] ',')*
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001393 * ('*' [tfpdef] (',' tfpdef ['=' test])* [',' '**' tfpdef] |
1394 * '**' tfpdef)
Neal Norwitzc1505362006-12-28 06:47:50 +00001395 * | tfpdef ['=' test] (',' tfpdef ['=' test])* [','])
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001396 * tfpdef: NAME [':' test]
Neal Norwitzc1505362006-12-28 06:47:50 +00001397 * varargslist: ((vfpdef ['=' test] ',')*
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001398 * ('*' [vfpdef] (',' vfpdef ['=' test])* [',' '**' vfpdef] |
1399 * '**' vfpdef)
Neal Norwitzc1505362006-12-28 06:47:50 +00001400 * | vfpdef ['=' test] (',' vfpdef ['=' test])* [','])
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001401 * vfpdef: NAME
Guido van Rossum3d602e31996-07-21 02:33:56 +00001402 *
1403 */
Guido van Rossum47478871996-08-21 14:32:37 +00001404static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001405validate_varargslist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001406{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001407 int nch = NCH(tree);
Neal Norwitzc1505362006-12-28 06:47:50 +00001408 int res = (TYPE(tree) == varargslist ||
1409 TYPE(tree) == typedargslist) &&
1410 (nch != 0);
Fred Drakecff283c2000-08-21 22:24:43 +00001411 int sym;
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001412 node *ch;
1413 int i = 0;
Guido van Rossumfc158e22007-11-15 19:17:28 +00001414
Fred Drakeb6429a22000-12-11 22:08:27 +00001415 if (!res)
1416 return 0;
Fred Drakecff283c2000-08-21 22:24:43 +00001417 if (nch < 1) {
1418 err_string("varargslist missing child nodes");
1419 return 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001420 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001421 while (i < nch) {
Guido van Rossumfc158e22007-11-15 19:17:28 +00001422 ch = CHILD(tree, i);
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001423 sym = TYPE(ch);
1424 if (sym == vfpdef || sym == tfpdef) {
1425 /* validate (vfpdef ['=' test] ',')+ */
1426 res = validate_vfpdef(ch);
Fred Drakecff283c2000-08-21 22:24:43 +00001427 ++i;
Fred Drakeb6429a22000-12-11 22:08:27 +00001428 if (res && (i+2 <= nch) && TYPE(CHILD(tree, i)) == EQUAL) {
1429 res = (validate_equal(CHILD(tree, i))
1430 && validate_test(CHILD(tree, i+1)));
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001431 if (res)
1432 i += 2;
Fred Drakecff283c2000-08-21 22:24:43 +00001433 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001434 if (res && i < nch) {
1435 res = validate_comma(CHILD(tree, i));
1436 ++i;
Fred Drakecff283c2000-08-21 22:24:43 +00001437 }
Guido van Rossum1bc535d2007-05-15 18:46:22 +00001438 } else if (sym == DOUBLESTAR || sym == STAR) {
1439 res = validate_varargslist_trailer(tree, i);
1440 break;
1441 } else {
1442 res = 0;
1443 err_string("illegal formation for varargslist");
Fred Drakeff9ea482000-04-19 13:54:15 +00001444 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001445 }
Fred Drakecff283c2000-08-21 22:24:43 +00001446 return res;
Fred Drakeff9ea482000-04-19 13:54:15 +00001447}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001448
1449
Nick Coghlan650f0d02007-04-15 12:05:43 +00001450/* comp_iter: comp_for | comp_if
Fred Drakecff283c2000-08-21 22:24:43 +00001451 */
1452static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00001453validate_comp_iter(node *tree)
Fred Drakecff283c2000-08-21 22:24:43 +00001454{
Nick Coghlan650f0d02007-04-15 12:05:43 +00001455 int res = (validate_ntype(tree, comp_iter)
1456 && validate_numnodes(tree, 1, "comp_iter"));
1457 if (res && TYPE(CHILD(tree, 0)) == comp_for)
1458 res = validate_comp_for(CHILD(tree, 0));
Fred Drakecff283c2000-08-21 22:24:43 +00001459 else
Nick Coghlan650f0d02007-04-15 12:05:43 +00001460 res = validate_comp_if(CHILD(tree, 0));
Fred Drakecff283c2000-08-21 22:24:43 +00001461
1462 return res;
1463}
1464
Nick Coghlan650f0d02007-04-15 12:05:43 +00001465/* comp_for: 'for' exprlist 'in' test [comp_iter]
Raymond Hettinger354433a2004-05-19 08:20:33 +00001466 */
1467static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00001468validate_comp_for(node *tree)
Fred Drakecff283c2000-08-21 22:24:43 +00001469{
1470 int nch = NCH(tree);
1471 int res;
1472
1473 if (nch == 5)
Nick Coghlan650f0d02007-04-15 12:05:43 +00001474 res = validate_comp_iter(CHILD(tree, 4));
Fred Drakecff283c2000-08-21 22:24:43 +00001475 else
Nick Coghlan650f0d02007-04-15 12:05:43 +00001476 res = validate_numnodes(tree, 4, "comp_for");
Raymond Hettinger354433a2004-05-19 08:20:33 +00001477
1478 if (res)
1479 res = (validate_name(CHILD(tree, 0), "for")
1480 && validate_exprlist(CHILD(tree, 1))
1481 && validate_name(CHILD(tree, 2), "in")
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00001482 && validate_or_test(CHILD(tree, 3)));
Raymond Hettinger354433a2004-05-19 08:20:33 +00001483
1484 return res;
1485}
1486
Nick Coghlan650f0d02007-04-15 12:05:43 +00001487/* comp_if: 'if' test_nocond [comp_iter]
Fred Drakecff283c2000-08-21 22:24:43 +00001488 */
1489static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00001490validate_comp_if(node *tree)
Fred Drakecff283c2000-08-21 22:24:43 +00001491{
1492 int nch = NCH(tree);
1493 int res;
1494
1495 if (nch == 3)
Nick Coghlan650f0d02007-04-15 12:05:43 +00001496 res = validate_comp_iter(CHILD(tree, 2));
Fred Drakecff283c2000-08-21 22:24:43 +00001497 else
Nick Coghlan650f0d02007-04-15 12:05:43 +00001498 res = validate_numnodes(tree, 2, "comp_if");
Fred Drakecff283c2000-08-21 22:24:43 +00001499
1500 if (res)
1501 res = (validate_name(CHILD(tree, 0), "if")
Nick Coghlan650f0d02007-04-15 12:05:43 +00001502 && validate_test_nocond(CHILD(tree, 1)));
Fred Drakecff283c2000-08-21 22:24:43 +00001503
1504 return res;
1505}
1506
1507
Guido van Rossum3d602e31996-07-21 02:33:56 +00001508/* simple_stmt | compound_stmt
1509 *
1510 */
Guido van Rossum47478871996-08-21 14:32:37 +00001511static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001512validate_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001513{
1514 int res = (validate_ntype(tree, stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001515 && validate_numnodes(tree, 1, "stmt"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001516
Guido van Rossum3d602e31996-07-21 02:33:56 +00001517 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001518 tree = CHILD(tree, 0);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001519
Fred Drakeff9ea482000-04-19 13:54:15 +00001520 if (TYPE(tree) == simple_stmt)
1521 res = validate_simple_stmt(tree);
1522 else
1523 res = validate_compound_stmt(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001524 }
1525 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001526}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001527
1528
Guido van Rossum3d602e31996-07-21 02:33:56 +00001529/* small_stmt (';' small_stmt)* [';'] NEWLINE
1530 *
1531 */
Guido van Rossum47478871996-08-21 14:32:37 +00001532static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001533validate_simple_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001534{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001535 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001536 int res = (validate_ntype(tree, simple_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001537 && (nch >= 2)
1538 && validate_small_stmt(CHILD(tree, 0))
1539 && validate_newline(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001540
Guido van Rossum3d602e31996-07-21 02:33:56 +00001541 if (nch < 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00001542 res = validate_numnodes(tree, 2, "simple_stmt");
1543 --nch; /* forget the NEWLINE */
Guido van Rossum3d602e31996-07-21 02:33:56 +00001544 if (res && is_even(nch))
Fred Drakeff9ea482000-04-19 13:54:15 +00001545 res = validate_semi(CHILD(tree, --nch));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001546 if (res && (nch > 2)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001547 int i;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001548
Fred Drakeff9ea482000-04-19 13:54:15 +00001549 for (i = 1; res && (i < nch); i += 2)
1550 res = (validate_semi(CHILD(tree, i))
1551 && validate_small_stmt(CHILD(tree, i + 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001552 }
1553 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001554}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001555
1556
Guido van Rossum47478871996-08-21 14:32:37 +00001557static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001558validate_small_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001559{
1560 int nch = NCH(tree);
Fred Drake0ac9b072000-09-12 21:58:06 +00001561 int res = validate_numnodes(tree, 1, "small_stmt");
Guido van Rossum3d602e31996-07-21 02:33:56 +00001562
Fred Drake0ac9b072000-09-12 21:58:06 +00001563 if (res) {
1564 int ntype = TYPE(CHILD(tree, 0));
1565
1566 if ( (ntype == expr_stmt)
Fred Drake0ac9b072000-09-12 21:58:06 +00001567 || (ntype == del_stmt)
1568 || (ntype == pass_stmt)
1569 || (ntype == flow_stmt)
1570 || (ntype == import_stmt)
1571 || (ntype == global_stmt)
Mark Dickinson407b3bd2012-04-29 22:18:31 +01001572 || (ntype == nonlocal_stmt)
Georg Brandl7cae87c2006-09-06 06:51:57 +00001573 || (ntype == assert_stmt))
Fred Drake0ac9b072000-09-12 21:58:06 +00001574 res = validate_node(CHILD(tree, 0));
1575 else {
1576 res = 0;
1577 err_string("illegal small_stmt child type");
1578 }
1579 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001580 else if (nch == 1) {
Fred Drake0ac9b072000-09-12 21:58:06 +00001581 res = 0;
1582 PyErr_Format(parser_error,
1583 "Unrecognized child node of small_stmt: %d.",
1584 TYPE(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001585 }
1586 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001587}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001588
1589
1590/* compound_stmt:
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00001591 * if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decorated
Guido van Rossum3d602e31996-07-21 02:33:56 +00001592 */
Guido van Rossum47478871996-08-21 14:32:37 +00001593static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001594validate_compound_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001595{
1596 int res = (validate_ntype(tree, compound_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001597 && validate_numnodes(tree, 1, "compound_stmt"));
Fred Drake0ac9b072000-09-12 21:58:06 +00001598 int ntype;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001599
1600 if (!res)
Fred Drakeff9ea482000-04-19 13:54:15 +00001601 return (0);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001602
1603 tree = CHILD(tree, 0);
Fred Drake0ac9b072000-09-12 21:58:06 +00001604 ntype = TYPE(tree);
1605 if ( (ntype == if_stmt)
1606 || (ntype == while_stmt)
1607 || (ntype == for_stmt)
1608 || (ntype == try_stmt)
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00001609 || (ntype == with_stmt)
Fred Drake0ac9b072000-09-12 21:58:06 +00001610 || (ntype == funcdef)
Guido van Rossumd59da4b2007-05-22 18:11:13 +00001611 || (ntype == classdef)
1612 || (ntype == decorated))
Fred Drakeff9ea482000-04-19 13:54:15 +00001613 res = validate_node(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001614 else {
Fred Drake0ac9b072000-09-12 21:58:06 +00001615 res = 0;
1616 PyErr_Format(parser_error,
1617 "Illegal compound statement type: %d.", TYPE(tree));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001618 }
1619 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001620}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001621
Guido van Rossum47478871996-08-21 14:32:37 +00001622static int
Benjamin Peterson4905e802009-09-27 02:43:28 +00001623validate_yield_or_testlist(node *tree, int tse)
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001624{
Benjamin Peterson4905e802009-09-27 02:43:28 +00001625 if (TYPE(tree) == yield_expr) {
1626 return validate_yield_expr(tree);
1627 }
1628 else {
1629 if (tse)
1630 return validate_testlist_star_expr(tree);
1631 else
1632 return validate_testlist(tree);
1633 }
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001634}
1635
1636static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001637validate_expr_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001638{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001639 int j;
1640 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001641 int res = (validate_ntype(tree, expr_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001642 && is_odd(nch)
Benjamin Peterson4905e802009-09-27 02:43:28 +00001643 && validate_testlist_star_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001644
Fred Drake28f739a2000-08-25 22:42:40 +00001645 if (res && nch == 3
1646 && TYPE(CHILD(tree, 1)) == augassign) {
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001647 res = validate_numnodes(CHILD(tree, 1), 1, "augassign")
Benjamin Peterson4905e802009-09-27 02:43:28 +00001648 && validate_yield_or_testlist(CHILD(tree, 2), 0);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001649
Fred Drake28f739a2000-08-25 22:42:40 +00001650 if (res) {
1651 char *s = STR(CHILD(CHILD(tree, 1), 0));
1652
1653 res = (strcmp(s, "+=") == 0
1654 || strcmp(s, "-=") == 0
1655 || strcmp(s, "*=") == 0
1656 || strcmp(s, "/=") == 0
Michael W. Hudson5e83b7a2003-01-29 14:20:23 +00001657 || strcmp(s, "//=") == 0
Fred Drake28f739a2000-08-25 22:42:40 +00001658 || strcmp(s, "%=") == 0
1659 || strcmp(s, "&=") == 0
1660 || strcmp(s, "|=") == 0
1661 || strcmp(s, "^=") == 0
1662 || strcmp(s, "<<=") == 0
1663 || strcmp(s, ">>=") == 0
1664 || strcmp(s, "**=") == 0);
1665 if (!res)
Ezio Melotti42da6632011-03-15 05:18:48 +02001666 err_string("illegal augmented assignment operator");
Fred Drake28f739a2000-08-25 22:42:40 +00001667 }
1668 }
1669 else {
1670 for (j = 1; res && (j < nch); j += 2)
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001671 res = validate_equal(CHILD(tree, j))
Benjamin Peterson4905e802009-09-27 02:43:28 +00001672 && validate_yield_or_testlist(CHILD(tree, j + 1), 1);
Fred Drake28f739a2000-08-25 22:42:40 +00001673 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001674 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001675}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001676
1677
Guido van Rossum47478871996-08-21 14:32:37 +00001678static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001679validate_del_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001680{
1681 return (validate_numnodes(tree, 2, "del_stmt")
Fred Drakeff9ea482000-04-19 13:54:15 +00001682 && validate_name(CHILD(tree, 0), "del")
1683 && validate_exprlist(CHILD(tree, 1)));
1684}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001685
1686
Guido van Rossum47478871996-08-21 14:32:37 +00001687static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001688validate_return_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001689{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001690 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001691 int res = (validate_ntype(tree, return_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001692 && ((nch == 1) || (nch == 2))
1693 && validate_name(CHILD(tree, 0), "return"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001694
Guido van Rossum3d602e31996-07-21 02:33:56 +00001695 if (res && (nch == 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00001696 res = validate_testlist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001697
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001698 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001699}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001700
1701
Mark Dickinsoncf360b92012-05-07 12:01:27 +01001702/*
1703 * raise_stmt:
1704 *
1705 * 'raise' [test ['from' test]]
1706 */
Guido van Rossum47478871996-08-21 14:32:37 +00001707static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001708validate_raise_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001709{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001710 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001711 int res = (validate_ntype(tree, raise_stmt)
Mark Dickinsoncf360b92012-05-07 12:01:27 +01001712 && ((nch == 1) || (nch == 2) || (nch == 4)));
1713
1714 if (!res && !PyErr_Occurred())
1715 (void) validate_numnodes(tree, 2, "raise");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001716
Guido van Rossum3d602e31996-07-21 02:33:56 +00001717 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001718 res = validate_name(CHILD(tree, 0), "raise");
1719 if (res && (nch >= 2))
1720 res = validate_test(CHILD(tree, 1));
Mark Dickinsoncf360b92012-05-07 12:01:27 +01001721 if (res && (nch == 4)) {
1722 res = (validate_name(CHILD(tree, 2), "from")
Fred Drakeff9ea482000-04-19 13:54:15 +00001723 && validate_test(CHILD(tree, 3)));
Fred Drakeff9ea482000-04-19 13:54:15 +00001724 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001725 }
1726 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001727}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001728
1729
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001730/* yield_expr: 'yield' [yield_arg]
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001731 */
1732static int
1733validate_yield_expr(node *tree)
1734{
1735 int nch = NCH(tree);
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001736 if (nch < 1 || nch > 2)
1737 return 0;
1738 if (!validate_ntype(tree, yield_expr))
1739 return 0;
1740 if (!validate_name(CHILD(tree, 0), "yield"))
1741 return 0;
1742 if (nch == 2) {
1743 if (!validate_yield_arg(CHILD(tree, 1)))
1744 return 0;
1745 }
1746 return 1;
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001747}
1748
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001749/* yield_arg: 'from' test | testlist
1750 */
1751static int
1752validate_yield_arg(node *tree)
1753{
1754 int nch = NCH(tree);
1755 if (!validate_ntype(tree, yield_arg))
1756 return 0;
1757 switch (nch) {
1758 case 1:
1759 if (!validate_testlist(CHILD(tree, nch - 1)))
1760 return 0;
1761 break;
1762 case 2:
1763 if (!validate_name(CHILD(tree, 0), "from"))
1764 return 0;
1765 if (!validate_test(CHILD(tree, 1)))
1766 return 0;
1767 break;
1768 default:
1769 return 0;
1770 }
1771 return 1;
1772}
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001773
1774/* yield_stmt: yield_expr
Fred Drake02126f22001-07-17 02:59:15 +00001775 */
1776static int
1777validate_yield_stmt(node *tree)
1778{
1779 return (validate_ntype(tree, yield_stmt)
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001780 && validate_numnodes(tree, 1, "yield_stmt")
1781 && validate_yield_expr(CHILD(tree, 0)));
Fred Drake02126f22001-07-17 02:59:15 +00001782}
1783
1784
Fred Drakecff283c2000-08-21 22:24:43 +00001785static int
1786validate_import_as_name(node *tree)
1787{
1788 int nch = NCH(tree);
1789 int ok = validate_ntype(tree, import_as_name);
1790
1791 if (ok) {
1792 if (nch == 1)
1793 ok = validate_name(CHILD(tree, 0), NULL);
1794 else if (nch == 3)
1795 ok = (validate_name(CHILD(tree, 0), NULL)
1796 && validate_name(CHILD(tree, 1), "as")
1797 && validate_name(CHILD(tree, 2), NULL));
1798 else
1799 ok = validate_numnodes(tree, 3, "import_as_name");
1800 }
1801 return ok;
1802}
1803
1804
Fred Drake71137082001-01-07 05:59:59 +00001805/* dotted_name: NAME ("." NAME)*
1806 */
1807static int
1808validate_dotted_name(node *tree)
1809{
1810 int nch = NCH(tree);
1811 int res = (validate_ntype(tree, dotted_name)
1812 && is_odd(nch)
1813 && validate_name(CHILD(tree, 0), NULL));
1814 int i;
1815
1816 for (i = 1; res && (i < nch); i += 2) {
1817 res = (validate_dot(CHILD(tree, i))
1818 && validate_name(CHILD(tree, i+1), NULL));
1819 }
1820 return res;
1821}
1822
1823
Fred Drakecff283c2000-08-21 22:24:43 +00001824/* dotted_as_name: dotted_name [NAME NAME]
1825 */
1826static int
1827validate_dotted_as_name(node *tree)
1828{
1829 int nch = NCH(tree);
1830 int res = validate_ntype(tree, dotted_as_name);
1831
1832 if (res) {
1833 if (nch == 1)
Fred Drake71137082001-01-07 05:59:59 +00001834 res = validate_dotted_name(CHILD(tree, 0));
Fred Drakecff283c2000-08-21 22:24:43 +00001835 else if (nch == 3)
Fred Drake71137082001-01-07 05:59:59 +00001836 res = (validate_dotted_name(CHILD(tree, 0))
Fred Drakecff283c2000-08-21 22:24:43 +00001837 && validate_name(CHILD(tree, 1), "as")
1838 && validate_name(CHILD(tree, 2), NULL));
1839 else {
1840 res = 0;
Fred Drake661ea262000-10-24 19:57:45 +00001841 err_string("illegal number of children for dotted_as_name");
Fred Drakecff283c2000-08-21 22:24:43 +00001842 }
1843 }
1844 return res;
1845}
1846
1847
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001848/* dotted_as_name (',' dotted_as_name)* */
1849static int
1850validate_dotted_as_names(node *tree)
1851{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001852 int nch = NCH(tree);
1853 int res = is_odd(nch) && validate_dotted_as_name(CHILD(tree, 0));
1854 int i;
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001855
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001856 for (i = 1; res && (i < nch); i += 2)
1857 res = (validate_comma(CHILD(tree, i))
1858 && validate_dotted_as_name(CHILD(tree, i + 1)));
1859 return (res);
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001860}
1861
1862
1863/* import_as_name (',' import_as_name)* [','] */
1864static int
1865validate_import_as_names(node *tree)
1866{
1867 int nch = NCH(tree);
1868 int res = validate_import_as_name(CHILD(tree, 0));
1869 int i;
1870
1871 for (i = 1; res && (i + 1 < nch); i += 2)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001872 res = (validate_comma(CHILD(tree, i))
1873 && validate_import_as_name(CHILD(tree, i + 1)));
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001874 return (res);
1875}
1876
1877
1878/* 'import' dotted_as_names */
1879static int
1880validate_import_name(node *tree)
1881{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001882 return (validate_ntype(tree, import_name)
1883 && validate_numnodes(tree, 2, "import_name")
1884 && validate_name(CHILD(tree, 0), "import")
1885 && validate_dotted_as_names(CHILD(tree, 1)));
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001886}
1887
Mark Dickinsonfeb3b752010-07-04 18:38:57 +00001888/* Helper function to count the number of leading dots (or ellipsis tokens) in
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001889 * 'from ...module import name'
1890 */
1891static int
1892count_from_dots(node *tree)
1893{
Mark Dickinsonfeb3b752010-07-04 18:38:57 +00001894 int i;
1895 for (i = 1; i < NCH(tree); i++)
1896 if (TYPE(CHILD(tree, i)) != DOT && TYPE(CHILD(tree, i)) != ELLIPSIS)
1897 break;
1898 return i - 1;
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001899}
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001900
Mark Dickinson2cc8a5e2010-07-04 18:11:51 +00001901/* import_from: ('from' ('.'* dotted_name | '.'+)
1902 * 'import' ('*' | '(' import_as_names ')' | import_as_names))
Guido van Rossum3d602e31996-07-21 02:33:56 +00001903 */
Guido van Rossum47478871996-08-21 14:32:37 +00001904static int
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001905validate_import_from(node *tree)
1906{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001907 int nch = NCH(tree);
1908 int ndots = count_from_dots(tree);
1909 int havename = (TYPE(CHILD(tree, ndots + 1)) == dotted_name);
1910 int offset = ndots + havename;
1911 int res = validate_ntype(tree, import_from)
Mark Dickinson2cc8a5e2010-07-04 18:11:51 +00001912 && (offset >= 1)
1913 && (nch >= 3 + offset)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001914 && validate_name(CHILD(tree, 0), "from")
1915 && (!havename || validate_dotted_name(CHILD(tree, ndots + 1)))
1916 && validate_name(CHILD(tree, offset + 1), "import");
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001917
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001918 if (res && TYPE(CHILD(tree, offset + 2)) == LPAR)
1919 res = ((nch == offset + 5)
1920 && validate_lparen(CHILD(tree, offset + 2))
1921 && validate_import_as_names(CHILD(tree, offset + 3))
1922 && validate_rparen(CHILD(tree, offset + 4)));
1923 else if (res && TYPE(CHILD(tree, offset + 2)) != STAR)
1924 res = validate_import_as_names(CHILD(tree, offset + 2));
1925 return (res);
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001926}
1927
1928
1929/* import_stmt: import_name | import_from */
1930static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001931validate_import_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001932{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001933 int nch = NCH(tree);
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001934 int res = validate_numnodes(tree, 1, "import_stmt");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001935
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001936 if (res) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001937 int ntype = TYPE(CHILD(tree, 0));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001938
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001939 if (ntype == import_name || ntype == import_from)
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001940 res = validate_node(CHILD(tree, 0));
Fred Drakeff9ea482000-04-19 13:54:15 +00001941 else {
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001942 res = 0;
1943 err_string("illegal import_stmt child type");
Fred Drakeff9ea482000-04-19 13:54:15 +00001944 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001945 }
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001946 else if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001947 res = 0;
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001948 PyErr_Format(parser_error,
1949 "Unrecognized child node of import_stmt: %d.",
1950 TYPE(CHILD(tree, 0)));
1951 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001952 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001953}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001954
1955
Mark Dickinson407b3bd2012-04-29 22:18:31 +01001956/* global_stmt:
1957 *
1958 * 'global' NAME (',' NAME)*
1959 */
Guido van Rossum47478871996-08-21 14:32:37 +00001960static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001961validate_global_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001962{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001963 int j;
1964 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001965 int res = (validate_ntype(tree, global_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001966 && is_even(nch) && (nch >= 2));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001967
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00001968 if (!res && !PyErr_Occurred())
1969 err_string("illegal global statement");
1970
Guido van Rossum3d602e31996-07-21 02:33:56 +00001971 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00001972 res = (validate_name(CHILD(tree, 0), "global")
1973 && validate_ntype(CHILD(tree, 1), NAME));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001974 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00001975 res = (validate_comma(CHILD(tree, j))
1976 && validate_ntype(CHILD(tree, j + 1), NAME));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001977
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001978 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001979}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001980
Mark Dickinson407b3bd2012-04-29 22:18:31 +01001981/* nonlocal_stmt:
1982 *
1983 * 'nonlocal' NAME (',' NAME)*
1984 */
1985static int
1986validate_nonlocal_stmt(node *tree)
1987{
1988 int j;
1989 int nch = NCH(tree);
1990 int res = (validate_ntype(tree, nonlocal_stmt)
1991 && is_even(nch) && (nch >= 2));
1992
1993 if (!res && !PyErr_Occurred())
1994 err_string("illegal nonlocal statement");
1995
1996 if (res)
1997 res = (validate_name(CHILD(tree, 0), "nonlocal")
1998 && validate_ntype(CHILD(tree, 1), NAME));
1999 for (j = 2; res && (j < nch); j += 2)
2000 res = (validate_comma(CHILD(tree, j))
2001 && validate_ntype(CHILD(tree, j + 1), NAME));
2002
2003 return res;
2004}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002005
Guido van Rossum925e5471997-04-02 05:32:13 +00002006/* assert_stmt:
2007 *
2008 * 'assert' test [',' test]
2009 */
2010static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002011validate_assert_stmt(node *tree)
Guido van Rossum925e5471997-04-02 05:32:13 +00002012{
2013 int nch = NCH(tree);
2014 int res = (validate_ntype(tree, assert_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002015 && ((nch == 2) || (nch == 4))
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00002016 && (validate_name(CHILD(tree, 0), "assert"))
Fred Drakeff9ea482000-04-19 13:54:15 +00002017 && validate_test(CHILD(tree, 1)));
Guido van Rossum925e5471997-04-02 05:32:13 +00002018
2019 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00002020 err_string("illegal assert statement");
Guido van Rossum925e5471997-04-02 05:32:13 +00002021 if (res && (nch > 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00002022 res = (validate_comma(CHILD(tree, 2))
2023 && validate_test(CHILD(tree, 3)));
Guido van Rossum925e5471997-04-02 05:32:13 +00002024
2025 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002026}
Guido van Rossum925e5471997-04-02 05:32:13 +00002027
2028
Guido van Rossum47478871996-08-21 14:32:37 +00002029static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002030validate_while(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002031{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002032 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002033 int res = (validate_ntype(tree, while_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002034 && ((nch == 4) || (nch == 7))
2035 && validate_name(CHILD(tree, 0), "while")
2036 && validate_test(CHILD(tree, 1))
2037 && validate_colon(CHILD(tree, 2))
2038 && validate_suite(CHILD(tree, 3)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002039
Guido van Rossum3d602e31996-07-21 02:33:56 +00002040 if (res && (nch == 7))
Fred Drakeff9ea482000-04-19 13:54:15 +00002041 res = (validate_name(CHILD(tree, 4), "else")
2042 && validate_colon(CHILD(tree, 5))
2043 && validate_suite(CHILD(tree, 6)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002044
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002045 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002046}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002047
2048
Guido van Rossum47478871996-08-21 14:32:37 +00002049static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002050validate_for(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002051{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002052 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002053 int res = (validate_ntype(tree, for_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002054 && ((nch == 6) || (nch == 9))
2055 && validate_name(CHILD(tree, 0), "for")
2056 && validate_exprlist(CHILD(tree, 1))
2057 && validate_name(CHILD(tree, 2), "in")
2058 && validate_testlist(CHILD(tree, 3))
2059 && validate_colon(CHILD(tree, 4))
2060 && validate_suite(CHILD(tree, 5)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002061
Guido van Rossum3d602e31996-07-21 02:33:56 +00002062 if (res && (nch == 9))
Fred Drakeff9ea482000-04-19 13:54:15 +00002063 res = (validate_name(CHILD(tree, 6), "else")
2064 && validate_colon(CHILD(tree, 7))
2065 && validate_suite(CHILD(tree, 8)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002066
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002067 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002068}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002069
2070
Guido van Rossum3d602e31996-07-21 02:33:56 +00002071/* try_stmt:
Fred Drakeff9ea482000-04-19 13:54:15 +00002072 * 'try' ':' suite (except_clause ':' suite)+ ['else' ':' suite]
Georg Brandleee31162008-12-07 15:15:22 +00002073 ['finally' ':' suite]
Guido van Rossum3d602e31996-07-21 02:33:56 +00002074 * | 'try' ':' suite 'finally' ':' suite
2075 *
2076 */
Guido van Rossum47478871996-08-21 14:32:37 +00002077static int
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +00002078validate_try(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002079{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002080 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002081 int pos = 3;
2082 int res = (validate_ntype(tree, try_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002083 && (nch >= 6) && ((nch % 3) == 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002084
2085 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002086 res = (validate_name(CHILD(tree, 0), "try")
2087 && validate_colon(CHILD(tree, 1))
2088 && validate_suite(CHILD(tree, 2))
2089 && validate_colon(CHILD(tree, nch - 2))
2090 && validate_suite(CHILD(tree, nch - 1)));
Fred Drake0ac9b072000-09-12 21:58:06 +00002091 else if (!PyErr_Occurred()) {
Fred Drake22269b52000-07-03 18:07:43 +00002092 const char* name = "except";
Fred Drakeff9ea482000-04-19 13:54:15 +00002093 if (TYPE(CHILD(tree, nch - 3)) != except_clause)
2094 name = STR(CHILD(tree, nch - 3));
Fred Drake0ac9b072000-09-12 21:58:06 +00002095
2096 PyErr_Format(parser_error,
2097 "Illegal number of children for try/%s node.", name);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002098 }
Georg Brandleee31162008-12-07 15:15:22 +00002099 /* Handle try/finally statement */
2100 if (res && (TYPE(CHILD(tree, pos)) == NAME) &&
2101 (strcmp(STR(CHILD(tree, pos)), "finally") == 0)) {
2102 res = (validate_numnodes(tree, 6, "try/finally")
2103 && validate_colon(CHILD(tree, 4))
2104 && validate_suite(CHILD(tree, 5)));
2105 return (res);
2106 }
2107 /* try/except statement: skip past except_clause sections */
Antoine Pitrou37d1c182009-05-14 21:54:00 +00002108 while (res && pos < nch && (TYPE(CHILD(tree, pos)) == except_clause)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002109 res = (validate_except_clause(CHILD(tree, pos))
2110 && validate_colon(CHILD(tree, pos + 1))
2111 && validate_suite(CHILD(tree, pos + 2)));
2112 pos += 3;
Guido van Rossum3d602e31996-07-21 02:33:56 +00002113 }
Georg Brandleee31162008-12-07 15:15:22 +00002114 /* skip else clause */
Antoine Pitrou37d1c182009-05-14 21:54:00 +00002115 if (res && pos < nch && (TYPE(CHILD(tree, pos)) == NAME) &&
Georg Brandleee31162008-12-07 15:15:22 +00002116 (strcmp(STR(CHILD(tree, pos)), "else") == 0)) {
2117 res = (validate_colon(CHILD(tree, pos + 1))
2118 && validate_suite(CHILD(tree, pos + 2)));
2119 pos += 3;
2120 }
2121 if (res && pos < nch) {
2122 /* last clause must be a finally */
2123 res = (validate_name(CHILD(tree, pos), "finally")
2124 && validate_numnodes(tree, pos + 3, "try/except/finally")
2125 && validate_colon(CHILD(tree, pos + 1))
2126 && validate_suite(CHILD(tree, pos + 2)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002127 }
2128 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002129}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002130
2131
Guido van Rossum47478871996-08-21 14:32:37 +00002132static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002133validate_except_clause(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002134{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002135 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002136 int res = (validate_ntype(tree, except_clause)
Fred Drakeff9ea482000-04-19 13:54:15 +00002137 && ((nch == 1) || (nch == 2) || (nch == 4))
2138 && validate_name(CHILD(tree, 0), "except"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002139
Guido van Rossum3d602e31996-07-21 02:33:56 +00002140 if (res && (nch > 1))
Fred Drakeff9ea482000-04-19 13:54:15 +00002141 res = validate_test(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002142 if (res && (nch == 4))
Guido van Rossumb940e112007-01-10 16:19:56 +00002143 res = (validate_name(CHILD(tree, 2), "as")
2144 && validate_ntype(CHILD(tree, 3), NAME));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002145
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002146 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002147}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002148
2149
Guido van Rossum47478871996-08-21 14:32:37 +00002150static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002151validate_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002152{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002153 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002154 int res = validate_ntype(tree, test) && is_odd(nch);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002155
Guido van Rossum3d602e31996-07-21 02:33:56 +00002156 if (res && (TYPE(CHILD(tree, 0)) == lambdef))
Fred Drakeff9ea482000-04-19 13:54:15 +00002157 res = ((nch == 1)
2158 && validate_lambdef(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002159 else if (res) {
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002160 res = validate_or_test(CHILD(tree, 0));
2161 res = (res && (nch == 1 || (nch == 5 &&
2162 validate_name(CHILD(tree, 1), "if") &&
2163 validate_or_test(CHILD(tree, 2)) &&
2164 validate_name(CHILD(tree, 3), "else") &&
2165 validate_test(CHILD(tree, 4)))));
2166 }
2167 return (res);
2168}
2169
2170static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00002171validate_test_nocond(node *tree)
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002172{
2173 int nch = NCH(tree);
Nick Coghlan650f0d02007-04-15 12:05:43 +00002174 int res = validate_ntype(tree, test_nocond) && (nch == 1);
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002175
Nick Coghlan650f0d02007-04-15 12:05:43 +00002176 if (res && (TYPE(CHILD(tree, 0)) == lambdef_nocond))
2177 res = (validate_lambdef_nocond(CHILD(tree, 0)));
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002178 else if (res) {
2179 res = (validate_or_test(CHILD(tree, 0)));
2180 }
2181 return (res);
2182}
2183
2184static int
2185validate_or_test(node *tree)
2186{
2187 int nch = NCH(tree);
2188 int res = validate_ntype(tree, or_test) && is_odd(nch);
2189
2190 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002191 int pos;
2192 res = validate_and_test(CHILD(tree, 0));
2193 for (pos = 1; res && (pos < nch); pos += 2)
2194 res = (validate_name(CHILD(tree, pos), "or")
2195 && validate_and_test(CHILD(tree, pos + 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002196 }
2197 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002198}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002199
2200
Guido van Rossum47478871996-08-21 14:32:37 +00002201static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002202validate_and_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002203{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002204 int pos;
2205 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002206 int res = (validate_ntype(tree, and_test)
Fred Drakeff9ea482000-04-19 13:54:15 +00002207 && is_odd(nch)
2208 && validate_not_test(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002209
Guido van Rossum3d602e31996-07-21 02:33:56 +00002210 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002211 res = (validate_name(CHILD(tree, pos), "and")
2212 && validate_not_test(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002213
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002214 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002215}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002216
2217
Guido van Rossum47478871996-08-21 14:32:37 +00002218static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002219validate_not_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002220{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002221 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002222 int res = validate_ntype(tree, not_test) && ((nch == 1) || (nch == 2));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002223
Guido van Rossum3d602e31996-07-21 02:33:56 +00002224 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002225 if (nch == 2)
2226 res = (validate_name(CHILD(tree, 0), "not")
2227 && validate_not_test(CHILD(tree, 1)));
2228 else if (nch == 1)
2229 res = validate_comparison(CHILD(tree, 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002230 }
2231 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002232}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002233
2234
Guido van Rossum47478871996-08-21 14:32:37 +00002235static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002236validate_comparison(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002237{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002238 int pos;
2239 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002240 int res = (validate_ntype(tree, comparison)
Fred Drakeff9ea482000-04-19 13:54:15 +00002241 && is_odd(nch)
Benjamin Peterson4905e802009-09-27 02:43:28 +00002242 && validate_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002243
Guido van Rossum3d602e31996-07-21 02:33:56 +00002244 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002245 res = (validate_comp_op(CHILD(tree, pos))
Benjamin Peterson4905e802009-09-27 02:43:28 +00002246 && validate_expr(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002247
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002248 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002249}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002250
2251
Guido van Rossum47478871996-08-21 14:32:37 +00002252static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002253validate_comp_op(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002254{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002255 int res = 0;
2256 int nch = NCH(tree);
2257
Guido van Rossum3d602e31996-07-21 02:33:56 +00002258 if (!validate_ntype(tree, comp_op))
Fred Drakeff9ea482000-04-19 13:54:15 +00002259 return (0);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002260 if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002261 /*
2262 * Only child will be a terminal with a well-defined symbolic name
2263 * or a NAME with a string of either 'is' or 'in'
2264 */
2265 tree = CHILD(tree, 0);
2266 switch (TYPE(tree)) {
Nick Coghlan1f7ce622012-01-13 21:43:40 +10002267 case LESS:
2268 case GREATER:
2269 case EQEQUAL:
2270 case EQUAL:
2271 case LESSEQUAL:
2272 case GREATEREQUAL:
2273 case NOTEQUAL:
Fred Drakeff9ea482000-04-19 13:54:15 +00002274 res = 1;
2275 break;
Nick Coghlan1f7ce622012-01-13 21:43:40 +10002276 case NAME:
Fred Drakeff9ea482000-04-19 13:54:15 +00002277 res = ((strcmp(STR(tree), "in") == 0)
2278 || (strcmp(STR(tree), "is") == 0));
2279 if (!res) {
Fred Drake0ac9b072000-09-12 21:58:06 +00002280 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +00002281 "illegal operator '%s'", STR(tree));
Fred Drakeff9ea482000-04-19 13:54:15 +00002282 }
2283 break;
2284 default:
Fred Drake661ea262000-10-24 19:57:45 +00002285 err_string("illegal comparison operator type");
Fred Drakeff9ea482000-04-19 13:54:15 +00002286 break;
2287 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002288 }
Guido van Rossuma376cc51996-12-05 23:43:35 +00002289 else if ((res = validate_numnodes(tree, 2, "comp_op")) != 0) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002290 res = (validate_ntype(CHILD(tree, 0), NAME)
2291 && validate_ntype(CHILD(tree, 1), NAME)
2292 && (((strcmp(STR(CHILD(tree, 0)), "is") == 0)
2293 && (strcmp(STR(CHILD(tree, 1)), "not") == 0))
2294 || ((strcmp(STR(CHILD(tree, 0)), "not") == 0)
2295 && (strcmp(STR(CHILD(tree, 1)), "in") == 0))));
2296 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00002297 err_string("unknown comparison operator");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002298 }
2299 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002300}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002301
2302
Guido van Rossum47478871996-08-21 14:32:37 +00002303static int
Guido van Rossum0368b722007-05-11 16:50:42 +00002304validate_star_expr(node *tree)
2305{
2306 int res = validate_ntype(tree, star_expr);
2307 if (!res) return res;
Benjamin Peterson4905e802009-09-27 02:43:28 +00002308 if (!validate_numnodes(tree, 2, "star_expr"))
2309 return 0;
2310 return validate_ntype(CHILD(tree, 0), STAR) && \
2311 validate_expr(CHILD(tree, 1));
Guido van Rossum0368b722007-05-11 16:50:42 +00002312}
2313
2314
2315static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002316validate_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002317{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002318 int j;
2319 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002320 int res = (validate_ntype(tree, expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002321 && is_odd(nch)
2322 && validate_xor_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002323
Guido van Rossum3d602e31996-07-21 02:33:56 +00002324 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002325 res = (validate_xor_expr(CHILD(tree, j))
2326 && validate_vbar(CHILD(tree, j - 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002327
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002328 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002329}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002330
2331
Guido van Rossum47478871996-08-21 14:32:37 +00002332static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002333validate_xor_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002334{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002335 int j;
2336 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002337 int res = (validate_ntype(tree, xor_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002338 && is_odd(nch)
2339 && validate_and_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002340
Guido van Rossum3d602e31996-07-21 02:33:56 +00002341 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002342 res = (validate_circumflex(CHILD(tree, j - 1))
2343 && validate_and_expr(CHILD(tree, j)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002344
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002345 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002346}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002347
2348
Guido van Rossum47478871996-08-21 14:32:37 +00002349static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002350validate_and_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002351{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002352 int pos;
2353 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002354 int res = (validate_ntype(tree, and_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002355 && is_odd(nch)
2356 && validate_shift_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002357
Guido van Rossum3d602e31996-07-21 02:33:56 +00002358 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002359 res = (validate_ampersand(CHILD(tree, pos))
2360 && validate_shift_expr(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002361
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002362 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002363}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002364
2365
2366static int
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +00002367validate_chain_two_ops(node *tree, int (*termvalid)(node *), int op1, int op2)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002368 {
2369 int pos = 1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002370 int nch = NCH(tree);
2371 int res = (is_odd(nch)
Fred Drakeff9ea482000-04-19 13:54:15 +00002372 && (*termvalid)(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002373
Guido van Rossum3d602e31996-07-21 02:33:56 +00002374 for ( ; res && (pos < nch); pos += 2) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002375 if (TYPE(CHILD(tree, pos)) != op1)
2376 res = validate_ntype(CHILD(tree, pos), op2);
2377 if (res)
2378 res = (*termvalid)(CHILD(tree, pos + 1));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002379 }
2380 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002381}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002382
2383
Guido van Rossum47478871996-08-21 14:32:37 +00002384static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002385validate_shift_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002386{
2387 return (validate_ntype(tree, shift_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002388 && validate_chain_two_ops(tree, validate_arith_expr,
2389 LEFTSHIFT, RIGHTSHIFT));
2390}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002391
2392
Guido van Rossum47478871996-08-21 14:32:37 +00002393static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002394validate_arith_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002395{
2396 return (validate_ntype(tree, arith_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002397 && validate_chain_two_ops(tree, validate_term, PLUS, MINUS));
2398}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002399
2400
Guido van Rossum47478871996-08-21 14:32:37 +00002401static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002402validate_term(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002403{
2404 int pos = 1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002405 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002406 int res = (validate_ntype(tree, term)
Fred Drakeff9ea482000-04-19 13:54:15 +00002407 && is_odd(nch)
2408 && validate_factor(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002409
Guido van Rossum3d602e31996-07-21 02:33:56 +00002410 for ( ; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002411 res = (((TYPE(CHILD(tree, pos)) == STAR)
2412 || (TYPE(CHILD(tree, pos)) == SLASH)
Michael W. Hudson5e83b7a2003-01-29 14:20:23 +00002413 || (TYPE(CHILD(tree, pos)) == DOUBLESLASH)
Fred Drakeff9ea482000-04-19 13:54:15 +00002414 || (TYPE(CHILD(tree, pos)) == PERCENT))
2415 && validate_factor(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002416
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002417 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002418}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002419
2420
Guido van Rossum3d602e31996-07-21 02:33:56 +00002421/* factor:
2422 *
2423 * factor: ('+'|'-'|'~') factor | power
2424 */
Guido van Rossum47478871996-08-21 14:32:37 +00002425static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002426validate_factor(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002427{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002428 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002429 int res = (validate_ntype(tree, factor)
Fred Drakeff9ea482000-04-19 13:54:15 +00002430 && (((nch == 2)
2431 && ((TYPE(CHILD(tree, 0)) == PLUS)
2432 || (TYPE(CHILD(tree, 0)) == MINUS)
2433 || (TYPE(CHILD(tree, 0)) == TILDE))
2434 && validate_factor(CHILD(tree, 1)))
2435 || ((nch == 1)
2436 && validate_power(CHILD(tree, 0)))));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002437 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002438}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002439
2440
Guido van Rossum3d602e31996-07-21 02:33:56 +00002441/* power:
2442 *
2443 * power: atom trailer* ('**' factor)*
2444 */
Guido van Rossum47478871996-08-21 14:32:37 +00002445static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002446validate_power(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002447{
2448 int pos = 1;
2449 int nch = NCH(tree);
2450 int res = (validate_ntype(tree, power) && (nch >= 1)
Fred Drakeff9ea482000-04-19 13:54:15 +00002451 && validate_atom(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002452
2453 while (res && (pos < nch) && (TYPE(CHILD(tree, pos)) == trailer))
Fred Drakeff9ea482000-04-19 13:54:15 +00002454 res = validate_trailer(CHILD(tree, pos++));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002455 if (res && (pos < nch)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002456 if (!is_even(nch - pos)) {
Fred Drake661ea262000-10-24 19:57:45 +00002457 err_string("illegal number of nodes for 'power'");
Fred Drakeff9ea482000-04-19 13:54:15 +00002458 return (0);
2459 }
2460 for ( ; res && (pos < (nch - 1)); pos += 2)
2461 res = (validate_doublestar(CHILD(tree, pos))
2462 && validate_factor(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002463 }
2464 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002465}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002466
2467
Guido van Rossum47478871996-08-21 14:32:37 +00002468static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002469validate_atom(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002470{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002471 int pos;
2472 int nch = NCH(tree);
Fred Drakecff283c2000-08-21 22:24:43 +00002473 int res = validate_ntype(tree, atom);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002474
Fred Drakecff283c2000-08-21 22:24:43 +00002475 if (res && nch < 1)
2476 res = validate_numnodes(tree, nch+1, "atom");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002477 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002478 switch (TYPE(CHILD(tree, 0))) {
2479 case LPAR:
2480 res = ((nch <= 3)
2481 && (validate_rparen(CHILD(tree, nch - 1))));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002482
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00002483 if (res && (nch == 3)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002484 if (TYPE(CHILD(tree, 1))==yield_expr)
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002485 res = validate_yield_expr(CHILD(tree, 1));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002486 else
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002487 res = validate_testlist_comp(CHILD(tree, 1));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002488 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002489 break;
2490 case LSQB:
Fred Drakecff283c2000-08-21 22:24:43 +00002491 if (nch == 2)
2492 res = validate_ntype(CHILD(tree, 1), RSQB);
2493 else if (nch == 3)
Nick Coghlan650f0d02007-04-15 12:05:43 +00002494 res = (validate_testlist_comp(CHILD(tree, 1))
Fred Drakecff283c2000-08-21 22:24:43 +00002495 && validate_ntype(CHILD(tree, 2), RSQB));
2496 else {
2497 res = 0;
2498 err_string("illegal list display atom");
2499 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002500 break;
2501 case LBRACE:
2502 res = ((nch <= 3)
2503 && validate_ntype(CHILD(tree, nch - 1), RBRACE));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002504
Fred Drakeff9ea482000-04-19 13:54:15 +00002505 if (res && (nch == 3))
Nick Coghlan650f0d02007-04-15 12:05:43 +00002506 res = validate_dictorsetmaker(CHILD(tree, 1));
Fred Drakeff9ea482000-04-19 13:54:15 +00002507 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00002508 case NAME:
2509 case NUMBER:
Mark Dickinsonda029fb2012-05-07 17:24:04 +01002510 case ELLIPSIS:
Fred Drakeff9ea482000-04-19 13:54:15 +00002511 res = (nch == 1);
2512 break;
2513 case STRING:
2514 for (pos = 1; res && (pos < nch); ++pos)
2515 res = validate_ntype(CHILD(tree, pos), STRING);
2516 break;
2517 default:
2518 res = 0;
2519 break;
2520 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002521 }
2522 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002523}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002524
2525
Nick Coghlan650f0d02007-04-15 12:05:43 +00002526/* testlist_comp:
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002527 * (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
Fred Drake85bf3bb2000-08-23 15:35:26 +00002528 */
Fred Drakecff283c2000-08-21 22:24:43 +00002529static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00002530validate_testlist_comp(node *tree)
Fred Drakecff283c2000-08-21 22:24:43 +00002531{
2532 int nch = NCH(tree);
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002533 int ok;
Fred Drakecff283c2000-08-21 22:24:43 +00002534
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002535 if (nch == 0) {
Nick Coghlan650f0d02007-04-15 12:05:43 +00002536 err_string("missing child nodes of testlist_comp");
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002537 return 0;
Nick Coghlan650f0d02007-04-15 12:05:43 +00002538 }
Fred Drakecff283c2000-08-21 22:24:43 +00002539
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002540 if (nch == 2 && TYPE(CHILD(tree, 1)) == comp_for) {
2541 ok = (validate_test(CHILD(tree, 0))
2542 && validate_comp_for(CHILD(tree, 1)));
2543 }
Fred Drakecff283c2000-08-21 22:24:43 +00002544 else {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002545 ok = validate_repeating_list(tree,
2546 testlist_comp,
2547 validate_test_or_star_expr,
2548 "testlist_comp");
Raymond Hettinger354433a2004-05-19 08:20:33 +00002549 }
2550 return ok;
2551}
Fred Drakecff283c2000-08-21 22:24:43 +00002552
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002553/* decorator:
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002554 * '@' dotted_name [ '(' [arglist] ')' ] NEWLINE
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002555 */
2556static int
2557validate_decorator(node *tree)
2558{
2559 int ok;
2560 int nch = NCH(tree);
2561 ok = (validate_ntype(tree, decorator) &&
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002562 (nch == 3 || nch == 5 || nch == 6) &&
2563 validate_at(CHILD(tree, 0)) &&
2564 validate_dotted_name(CHILD(tree, 1)) &&
2565 validate_newline(RCHILD(tree, -1)));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002566
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002567 if (ok && nch != 3) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002568 ok = (validate_lparen(CHILD(tree, 2)) &&
2569 validate_rparen(RCHILD(tree, -2)));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002570
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002571 if (ok && nch == 6)
2572 ok = validate_arglist(CHILD(tree, 3));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002573 }
2574
2575 return ok;
2576}
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002577
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002578/* decorators:
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002579 * decorator+
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002580 */
2581static int
2582validate_decorators(node *tree)
2583{
Guido van Rossumfc158e22007-11-15 19:17:28 +00002584 int i, nch, ok;
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002585 nch = NCH(tree);
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002586 ok = validate_ntype(tree, decorators) && nch >= 1;
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002587
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002588 for (i = 0; ok && i < nch; ++i)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002589 ok = validate_decorator(CHILD(tree, i));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002590
2591 return ok;
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002592}
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002593
Georg Brandl0c315622009-05-25 21:10:36 +00002594/* with_item:
2595 * test ['as' expr]
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002596 */
2597static int
Georg Brandl0c315622009-05-25 21:10:36 +00002598validate_with_item(node *tree)
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002599{
2600 int nch = NCH(tree);
Georg Brandl0c315622009-05-25 21:10:36 +00002601 int ok = (validate_ntype(tree, with_item)
2602 && (nch == 1 || nch == 3)
2603 && validate_test(CHILD(tree, 0)));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002604 if (ok && nch == 3)
Georg Brandl0c315622009-05-25 21:10:36 +00002605 ok = (validate_name(CHILD(tree, 1), "as")
2606 && validate_expr(CHILD(tree, 2)));
2607 return ok;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002608}
2609
Georg Brandl0c315622009-05-25 21:10:36 +00002610/* with_stmt:
2611 * 0 1 ... -2 -1
2612 * 'with' with_item (',' with_item)* ':' suite
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002613 */
2614static int
2615validate_with_stmt(node *tree)
2616{
Georg Brandl0c315622009-05-25 21:10:36 +00002617 int i;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002618 int nch = NCH(tree);
2619 int ok = (validate_ntype(tree, with_stmt)
Georg Brandl0c315622009-05-25 21:10:36 +00002620 && (nch % 2 == 0)
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002621 && validate_name(CHILD(tree, 0), "with")
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002622 && validate_colon(RCHILD(tree, -2))
2623 && validate_suite(RCHILD(tree, -1)));
Georg Brandl0c315622009-05-25 21:10:36 +00002624 for (i = 1; ok && i < nch - 2; i += 2)
2625 ok = validate_with_item(CHILD(tree, i));
2626 return ok;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00002627}
2628
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01002629/* funcdef: 'def' NAME parameters ['->' test] ':' suite */
2630
Guido van Rossum47478871996-08-21 14:32:37 +00002631static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002632validate_funcdef(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002633{
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002634 int nch = NCH(tree);
Mark Dickinsonea7e9f92012-04-29 18:34:40 +01002635 int res = validate_ntype(tree, funcdef);
2636 if (res) {
2637 if (nch == 5) {
2638 res = (validate_name(CHILD(tree, 0), "def")
2639 && validate_ntype(CHILD(tree, 1), NAME)
2640 && validate_parameters(CHILD(tree, 2))
2641 && validate_colon(CHILD(tree, 3))
2642 && validate_suite(CHILD(tree, 4)));
2643 }
2644 else if (nch == 7) {
2645 res = (validate_name(CHILD(tree, 0), "def")
2646 && validate_ntype(CHILD(tree, 1), NAME)
2647 && validate_parameters(CHILD(tree, 2))
2648 && validate_rarrow(CHILD(tree, 3))
2649 && validate_test(CHILD(tree, 4))
2650 && validate_colon(CHILD(tree, 5))
2651 && validate_suite(CHILD(tree, 6)));
2652 }
2653 else {
2654 res = 0;
2655 err_string("illegal number of children for funcdef");
2656 }
2657 }
2658 return res;
Fred Drakeff9ea482000-04-19 13:54:15 +00002659}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002660
2661
Guido van Rossumd59da4b2007-05-22 18:11:13 +00002662/* decorated
2663 * decorators (classdef | funcdef)
2664 */
2665static int
2666validate_decorated(node *tree)
2667{
Mark Dickinson2bd61a92010-07-04 16:37:31 +00002668 int nch = NCH(tree);
2669 int ok = (validate_ntype(tree, decorated)
2670 && (nch == 2)
2671 && validate_decorators(RCHILD(tree, -2)));
2672 if (TYPE(RCHILD(tree, -1)) == funcdef)
2673 ok = ok && validate_funcdef(RCHILD(tree, -1));
2674 else
2675 ok = ok && validate_class(RCHILD(tree, -1));
2676 return ok;
Guido van Rossumd59da4b2007-05-22 18:11:13 +00002677}
2678
Guido van Rossum47478871996-08-21 14:32:37 +00002679static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002680validate_lambdef(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002681{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002682 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002683 int res = (validate_ntype(tree, lambdef)
Fred Drakeff9ea482000-04-19 13:54:15 +00002684 && ((nch == 3) || (nch == 4))
2685 && validate_name(CHILD(tree, 0), "lambda")
2686 && validate_colon(CHILD(tree, nch - 2))
2687 && validate_test(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002688
Guido van Rossum3d602e31996-07-21 02:33:56 +00002689 if (res && (nch == 4))
Fred Drakeff9ea482000-04-19 13:54:15 +00002690 res = validate_varargslist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002691 else if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +00002692 (void) validate_numnodes(tree, 3, "lambdef");
Guido van Rossum3d602e31996-07-21 02:33:56 +00002693
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002694 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002695}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002696
2697
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002698static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00002699validate_lambdef_nocond(node *tree)
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002700{
2701 int nch = NCH(tree);
Nick Coghlan650f0d02007-04-15 12:05:43 +00002702 int res = (validate_ntype(tree, lambdef_nocond)
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002703 && ((nch == 3) || (nch == 4))
2704 && validate_name(CHILD(tree, 0), "lambda")
2705 && validate_colon(CHILD(tree, nch - 2))
2706 && validate_test(CHILD(tree, nch - 1)));
2707
2708 if (res && (nch == 4))
2709 res = validate_varargslist(CHILD(tree, 1));
2710 else if (!res && !PyErr_Occurred())
Nick Coghlan650f0d02007-04-15 12:05:43 +00002711 (void) validate_numnodes(tree, 3, "lambdef_nocond");
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002712
2713 return (res);
2714}
2715
2716
Guido van Rossum3d602e31996-07-21 02:33:56 +00002717/* arglist:
2718 *
Fred Drakecff283c2000-08-21 22:24:43 +00002719 * (argument ',')* (argument [','] | '*' test [',' '**' test] | '**' test)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002720 */
Guido van Rossum47478871996-08-21 14:32:37 +00002721static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002722validate_arglist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002723{
Fred Drakee7ab64e2000-04-25 04:14:46 +00002724 int nch = NCH(tree);
Fred Drakecff283c2000-08-21 22:24:43 +00002725 int i = 0;
2726 int ok = 1;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002727
2728 if (nch <= 0)
2729 /* raise the right error from having an invalid number of children */
2730 return validate_numnodes(tree, nch + 1, "arglist");
2731
Raymond Hettinger354433a2004-05-19 08:20:33 +00002732 if (nch > 1) {
2733 for (i=0; i<nch; i++) {
2734 if (TYPE(CHILD(tree, i)) == argument) {
2735 node *ch = CHILD(tree, i);
Nick Coghlan650f0d02007-04-15 12:05:43 +00002736 if (NCH(ch) == 2 && TYPE(CHILD(ch, 1)) == comp_for) {
Raymond Hettinger354433a2004-05-19 08:20:33 +00002737 err_string("need '(', ')' for generator expression");
2738 return 0;
2739 }
2740 }
2741 }
2742 }
2743
Fred Drakecff283c2000-08-21 22:24:43 +00002744 while (ok && nch-i >= 2) {
2745 /* skip leading (argument ',') */
2746 ok = (validate_argument(CHILD(tree, i))
2747 && validate_comma(CHILD(tree, i+1)));
2748 if (ok)
2749 i += 2;
2750 else
2751 PyErr_Clear();
2752 }
2753 ok = 1;
2754 if (nch-i > 0) {
Fred Drakecff283c2000-08-21 22:24:43 +00002755 int sym = TYPE(CHILD(tree, i));
2756
2757 if (sym == argument) {
2758 ok = validate_argument(CHILD(tree, i));
2759 if (ok && i+1 != nch) {
2760 err_string("illegal arglist specification"
2761 " (extra stuff on end)");
2762 ok = 0;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002763 }
Fred Drakecff283c2000-08-21 22:24:43 +00002764 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002765 else {
Fred Drakecff283c2000-08-21 22:24:43 +00002766 err_string("illegal arglist specification");
2767 ok = 0;
2768 }
Fred Drakee7ab64e2000-04-25 04:14:46 +00002769 }
2770 return (ok);
Fred Drakeff9ea482000-04-19 13:54:15 +00002771}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002772
2773
2774
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002775/* argument: ( test [comp_for] |
2776 * test '=' test |
2777 * '**' expr |
2778 * star_expr )
Guido van Rossum3d602e31996-07-21 02:33:56 +00002779 */
Guido van Rossum47478871996-08-21 14:32:37 +00002780static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002781validate_argument(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002782{
2783 int nch = NCH(tree);
2784 int res = (validate_ntype(tree, argument)
Nick Coghlan1f7ce622012-01-13 21:43:40 +10002785 && ((nch == 1) || (nch == 2) || (nch == 3)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002786
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002787 if (res) {
2788 if (TYPE(CHILD(tree, 0)) == DOUBLESTAR) {
2789 res = validate_expr(CHILD(tree, 1));
2790 }
2791 else if (nch == 1) {
2792 res = validate_test_or_star_expr(CHILD(tree, 0));
2793 }
2794 else if (nch == 2) {
2795 res = (validate_test(CHILD(tree, 0))
2796 && validate_comp_for(CHILD(tree, 1)));
2797 }
2798 else if (res && (nch == 3)) {
2799 res = (validate_test(CHILD(tree, 0))
2800 && validate_equal(CHILD(tree, 1))
2801 && validate_test(CHILD(tree, 2)));
2802 }
2803 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00002804 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002805}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002806
2807
2808
2809/* trailer:
2810 *
Guido van Rossum47478871996-08-21 14:32:37 +00002811 * '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME
Guido van Rossum3d602e31996-07-21 02:33:56 +00002812 */
Guido van Rossum47478871996-08-21 14:32:37 +00002813static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002814validate_trailer(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002815{
2816 int nch = NCH(tree);
2817 int res = validate_ntype(tree, trailer) && ((nch == 2) || (nch == 3));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002818
2819 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002820 switch (TYPE(CHILD(tree, 0))) {
2821 case LPAR:
2822 res = validate_rparen(CHILD(tree, nch - 1));
2823 if (res && (nch == 3))
2824 res = validate_arglist(CHILD(tree, 1));
2825 break;
2826 case LSQB:
2827 res = (validate_numnodes(tree, 3, "trailer")
2828 && validate_subscriptlist(CHILD(tree, 1))
2829 && validate_ntype(CHILD(tree, 2), RSQB));
2830 break;
2831 case DOT:
2832 res = (validate_numnodes(tree, 2, "trailer")
2833 && validate_ntype(CHILD(tree, 1), NAME));
2834 break;
2835 default:
2836 res = 0;
2837 break;
2838 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002839 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002840 else {
2841 (void) validate_numnodes(tree, 2, "trailer");
2842 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002843 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002844}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002845
2846
Guido van Rossum47478871996-08-21 14:32:37 +00002847/* subscriptlist:
2848 *
2849 * subscript (',' subscript)* [',']
2850 */
2851static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002852validate_subscriptlist(node *tree)
Guido van Rossum47478871996-08-21 14:32:37 +00002853{
2854 return (validate_repeating_list(tree, subscriptlist,
Fred Drakeff9ea482000-04-19 13:54:15 +00002855 validate_subscript, "subscriptlist"));
2856}
Guido van Rossum47478871996-08-21 14:32:37 +00002857
2858
Guido van Rossum3d602e31996-07-21 02:33:56 +00002859/* subscript:
2860 *
Guido van Rossum47478871996-08-21 14:32:37 +00002861 * '.' '.' '.' | test | [test] ':' [test] [sliceop]
Guido van Rossum3d602e31996-07-21 02:33:56 +00002862 */
Guido van Rossum47478871996-08-21 14:32:37 +00002863static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002864validate_subscript(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002865{
Guido van Rossum47478871996-08-21 14:32:37 +00002866 int offset = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002867 int nch = NCH(tree);
Guido van Rossum47478871996-08-21 14:32:37 +00002868 int res = validate_ntype(tree, subscript) && (nch >= 1) && (nch <= 4);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002869
Guido van Rossum47478871996-08-21 14:32:37 +00002870 if (!res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002871 if (!PyErr_Occurred())
2872 err_string("invalid number of arguments for subscript node");
2873 return (0);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002874 }
Guido van Rossum47478871996-08-21 14:32:37 +00002875 if (TYPE(CHILD(tree, 0)) == DOT)
Fred Drakeff9ea482000-04-19 13:54:15 +00002876 /* take care of ('.' '.' '.') possibility */
2877 return (validate_numnodes(tree, 3, "subscript")
2878 && validate_dot(CHILD(tree, 0))
2879 && validate_dot(CHILD(tree, 1))
2880 && validate_dot(CHILD(tree, 2)));
Guido van Rossum47478871996-08-21 14:32:37 +00002881 if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002882 if (TYPE(CHILD(tree, 0)) == test)
2883 res = validate_test(CHILD(tree, 0));
2884 else
2885 res = validate_colon(CHILD(tree, 0));
2886 return (res);
Guido van Rossum47478871996-08-21 14:32:37 +00002887 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002888 /* Must be [test] ':' [test] [sliceop],
2889 * but at least one of the optional components will
2890 * be present, but we don't know which yet.
Guido van Rossum47478871996-08-21 14:32:37 +00002891 */
2892 if ((TYPE(CHILD(tree, 0)) != COLON) || (nch == 4)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002893 res = validate_test(CHILD(tree, 0));
2894 offset = 1;
Guido van Rossum47478871996-08-21 14:32:37 +00002895 }
2896 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002897 res = validate_colon(CHILD(tree, offset));
Guido van Rossum47478871996-08-21 14:32:37 +00002898 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002899 int rem = nch - ++offset;
2900 if (rem) {
2901 if (TYPE(CHILD(tree, offset)) == test) {
2902 res = validate_test(CHILD(tree, offset));
2903 ++offset;
2904 --rem;
2905 }
2906 if (res && rem)
2907 res = validate_sliceop(CHILD(tree, offset));
2908 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002909 }
2910 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002911}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002912
2913
Guido van Rossum47478871996-08-21 14:32:37 +00002914static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002915validate_sliceop(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002916{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002917 int nch = NCH(tree);
Guido van Rossum47478871996-08-21 14:32:37 +00002918 int res = ((nch == 1) || validate_numnodes(tree, 2, "sliceop"))
Fred Drakeff9ea482000-04-19 13:54:15 +00002919 && validate_ntype(tree, sliceop);
Guido van Rossum47478871996-08-21 14:32:37 +00002920 if (!res && !PyErr_Occurred()) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002921 res = validate_numnodes(tree, 1, "sliceop");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002922 }
Guido van Rossum47478871996-08-21 14:32:37 +00002923 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002924 res = validate_colon(CHILD(tree, 0));
Guido van Rossum47478871996-08-21 14:32:37 +00002925 if (res && (nch == 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00002926 res = validate_test(CHILD(tree, 1));
Guido van Rossum47478871996-08-21 14:32:37 +00002927
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002928 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002929}
Guido van Rossum47478871996-08-21 14:32:37 +00002930
2931
2932static int
Benjamin Peterson4905e802009-09-27 02:43:28 +00002933validate_test_or_star_expr(node *n)
2934{
2935 if (TYPE(n) == test)
2936 return validate_test(n);
2937 return validate_star_expr(n);
2938}
2939
2940static int
2941validate_expr_or_star_expr(node *n)
2942{
2943 if (TYPE(n) == expr)
2944 return validate_expr(n);
2945 return validate_star_expr(n);
2946}
2947
2948
2949static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002950validate_exprlist(node *tree)
Guido van Rossum47478871996-08-21 14:32:37 +00002951{
2952 return (validate_repeating_list(tree, exprlist,
Benjamin Peterson4905e802009-09-27 02:43:28 +00002953 validate_expr_or_star_expr, "exprlist"));
Fred Drakeff9ea482000-04-19 13:54:15 +00002954}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002955
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002956/* Incrementing validate functions returns nonzero iff success (like other
2957 * validate functions, and advance *i by the length of the matched pattern. */
2958
2959/* test ':' test */
2960static int
2961validate_test_colon_test_inc(node *tree, int *i)
2962{
2963 return (validate_test(CHILD(tree, (*i)++))
2964 && validate_colon(CHILD(tree, (*i)++))
2965 && validate_test(CHILD(tree, (*i)++)));
2966}
2967
2968/* test ':' test | '**' expr */
2969static int
2970validate_dict_element_inc(node *tree, int *i)
2971{
2972 int nch = NCH(tree);
2973 int res = 0;
2974 if (nch - *i >= 2) {
2975 if (TYPE(CHILD(tree, *i+1)) == COLON) {
2976 /* test ':' test */
2977 res = validate_test_colon_test_inc(tree, i);
2978 } else {
2979 /* '**' expr */
2980 res = (validate_doublestar(CHILD(tree, (*i)++))
2981 && validate_expr(CHILD(tree, (*i)++)));
2982 }
2983 }
2984 return res;
2985}
2986
Mark Dickinson11c1dee2012-05-07 16:34:34 +01002987/*
2988 * dictorsetmaker:
2989 *
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002990 * ( ((test ':' test | '**' expr)
2991 * (comp_for | (',' (test ':' test | '**' expr))* [','])) |
2992 * ((test | '*' test)
2993 * (comp_for | (',' (test | '*' test))* [','])) )
Mark Dickinson11c1dee2012-05-07 16:34:34 +01002994 */
Guido van Rossum47478871996-08-21 14:32:37 +00002995static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00002996validate_dictorsetmaker(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002997{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002998 int nch = NCH(tree);
Mark Dickinson11c1dee2012-05-07 16:34:34 +01002999 int res;
3000 int i = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003001
Mark Dickinson11c1dee2012-05-07 16:34:34 +01003002 res = validate_ntype(tree, dictorsetmaker);
3003 if (!res)
3004 return 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +00003005
Mark Dickinson11c1dee2012-05-07 16:34:34 +01003006 if (nch - i < 1) {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003007 /* Unconditionally raise. */
Mark Dickinson11c1dee2012-05-07 16:34:34 +01003008 (void) validate_numnodes(tree, 1, "dictorsetmaker");
3009 return 0;
3010 }
3011
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003012 if (nch - i >= 2
3013 && ((TYPE(CHILD(tree, i+1)) == COLON) ||
3014 (TYPE(CHILD(tree, i)) == DOUBLESTAR))) {
Mark Dickinson11c1dee2012-05-07 16:34:34 +01003015 /* Dictionary display or dictionary comprehension. */
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003016 if (nch - i >= 4 && TYPE(CHILD(tree, i+3)) == comp_for) {
Mark Dickinson11c1dee2012-05-07 16:34:34 +01003017 /* Dictionary comprehension. */
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003018 res = (validate_test_colon_test_inc(tree, &i)
3019 && validate_comp_for(CHILD(tree, i++)));
Mark Dickinson11c1dee2012-05-07 16:34:34 +01003020 if (!res)
3021 return 0;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003022 } else {
Mark Dickinson11c1dee2012-05-07 16:34:34 +01003023 /* Dictionary display. */
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003024 return validate_repeating_list_variable(
3025 tree,
3026 dictorsetmaker,
3027 validate_dict_element_inc,
3028 &i,
3029 "dictorsetmaker");
Fred Drakeff9ea482000-04-19 13:54:15 +00003030 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003031 } else {
Mark Dickinson11c1dee2012-05-07 16:34:34 +01003032 /* Set display or set comprehension. */
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003033 if (nch - i >= 2 && TYPE(CHILD(tree, i + 1)) == comp_for) {
Mark Dickinson11c1dee2012-05-07 16:34:34 +01003034 /* Set comprehension. */
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003035 res = (validate_test(CHILD(tree, i++))
3036 && validate_comp_for(CHILD(tree, i++)));
Mark Dickinson11c1dee2012-05-07 16:34:34 +01003037 if (!res)
3038 return 0;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003039 } else {
Mark Dickinson11c1dee2012-05-07 16:34:34 +01003040 /* Set display. */
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003041 return validate_repeating_list(tree,
3042 dictorsetmaker,
3043 validate_test_or_star_expr,
3044 "dictorsetmaker");
Mark Dickinson11c1dee2012-05-07 16:34:34 +01003045 }
3046 }
3047
3048 if (nch - i > 0) {
3049 err_string("Illegal trailing nodes for dictorsetmaker.");
3050 return 0;
3051 }
3052
3053 return 1;
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_eval_input(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003059{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003060 int pos;
3061 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00003062 int res = (validate_ntype(tree, eval_input)
Fred Drakeff9ea482000-04-19 13:54:15 +00003063 && (nch >= 2)
3064 && validate_testlist(CHILD(tree, 0))
3065 && validate_ntype(CHILD(tree, nch - 1), ENDMARKER));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003066
Guido van Rossum3d602e31996-07-21 02:33:56 +00003067 for (pos = 1; res && (pos < (nch - 1)); ++pos)
Fred Drakeff9ea482000-04-19 13:54:15 +00003068 res = validate_ntype(CHILD(tree, pos), NEWLINE);
Guido van Rossum3d602e31996-07-21 02:33:56 +00003069
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003070 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003071}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003072
3073
Guido van Rossum47478871996-08-21 14:32:37 +00003074static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003075validate_node(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003076{
Fred Drakeff9ea482000-04-19 13:54:15 +00003077 int nch = 0; /* num. children on current node */
3078 int res = 1; /* result value */
3079 node* next = 0; /* node to process after this one */
Guido van Rossum3d602e31996-07-21 02:33:56 +00003080
Martin v. Löwisb28f6e72001-06-23 19:55:38 +00003081 while (res && (tree != 0)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003082 nch = NCH(tree);
3083 next = 0;
3084 switch (TYPE(tree)) {
3085 /*
3086 * Definition nodes.
3087 */
3088 case funcdef:
3089 res = validate_funcdef(tree);
3090 break;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00003091 case with_stmt:
3092 res = validate_with_stmt(tree);
3093 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003094 case classdef:
3095 res = validate_class(tree);
3096 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003097 case decorated:
3098 res = validate_decorated(tree);
3099 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003100 /*
3101 * "Trivial" parse tree nodes.
3102 * (Why did I call these trivial?)
3103 */
3104 case stmt:
3105 res = validate_stmt(tree);
3106 break;
3107 case small_stmt:
3108 /*
Mark Dickinson407b3bd2012-04-29 22:18:31 +01003109 * expr_stmt | del_stmt | pass_stmt | flow_stmt |
3110 * import_stmt | global_stmt | nonlocal_stmt | assert_stmt
Fred Drakeff9ea482000-04-19 13:54:15 +00003111 */
3112 res = validate_small_stmt(tree);
3113 break;
3114 case flow_stmt:
3115 res = (validate_numnodes(tree, 1, "flow_stmt")
3116 && ((TYPE(CHILD(tree, 0)) == break_stmt)
3117 || (TYPE(CHILD(tree, 0)) == continue_stmt)
Fred Drake02126f22001-07-17 02:59:15 +00003118 || (TYPE(CHILD(tree, 0)) == yield_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00003119 || (TYPE(CHILD(tree, 0)) == return_stmt)
3120 || (TYPE(CHILD(tree, 0)) == raise_stmt)));
3121 if (res)
3122 next = CHILD(tree, 0);
3123 else if (nch == 1)
Fred Drake661ea262000-10-24 19:57:45 +00003124 err_string("illegal flow_stmt type");
Fred Drakeff9ea482000-04-19 13:54:15 +00003125 break;
Fred Drake02126f22001-07-17 02:59:15 +00003126 case yield_stmt:
3127 res = validate_yield_stmt(tree);
3128 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003129 /*
3130 * Compound statements.
3131 */
3132 case simple_stmt:
3133 res = validate_simple_stmt(tree);
3134 break;
3135 case compound_stmt:
3136 res = validate_compound_stmt(tree);
3137 break;
3138 /*
Thomas Wouters7e474022000-07-16 12:04:32 +00003139 * Fundamental statements.
Fred Drakeff9ea482000-04-19 13:54:15 +00003140 */
3141 case expr_stmt:
3142 res = validate_expr_stmt(tree);
3143 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003144 case del_stmt:
3145 res = validate_del_stmt(tree);
3146 break;
3147 case pass_stmt:
3148 res = (validate_numnodes(tree, 1, "pass")
3149 && validate_name(CHILD(tree, 0), "pass"));
3150 break;
3151 case break_stmt:
3152 res = (validate_numnodes(tree, 1, "break")
3153 && validate_name(CHILD(tree, 0), "break"));
3154 break;
3155 case continue_stmt:
3156 res = (validate_numnodes(tree, 1, "continue")
3157 && validate_name(CHILD(tree, 0), "continue"));
3158 break;
3159 case return_stmt:
3160 res = validate_return_stmt(tree);
3161 break;
3162 case raise_stmt:
3163 res = validate_raise_stmt(tree);
3164 break;
3165 case import_stmt:
3166 res = validate_import_stmt(tree);
3167 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003168 case import_name:
3169 res = validate_import_name(tree);
3170 break;
3171 case import_from:
3172 res = validate_import_from(tree);
3173 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003174 case global_stmt:
3175 res = validate_global_stmt(tree);
3176 break;
Mark Dickinson407b3bd2012-04-29 22:18:31 +01003177 case nonlocal_stmt:
3178 res = validate_nonlocal_stmt(tree);
3179 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003180 case assert_stmt:
3181 res = validate_assert_stmt(tree);
3182 break;
3183 case if_stmt:
3184 res = validate_if(tree);
3185 break;
3186 case while_stmt:
3187 res = validate_while(tree);
3188 break;
3189 case for_stmt:
3190 res = validate_for(tree);
3191 break;
3192 case try_stmt:
3193 res = validate_try(tree);
3194 break;
3195 case suite:
3196 res = validate_suite(tree);
3197 break;
3198 /*
3199 * Expression nodes.
3200 */
3201 case testlist:
3202 res = validate_testlist(tree);
3203 break;
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00003204 case yield_expr:
3205 res = validate_yield_expr(tree);
3206 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003207 case test:
3208 res = validate_test(tree);
3209 break;
3210 case and_test:
3211 res = validate_and_test(tree);
3212 break;
3213 case not_test:
3214 res = validate_not_test(tree);
3215 break;
3216 case comparison:
3217 res = validate_comparison(tree);
3218 break;
3219 case exprlist:
3220 res = validate_exprlist(tree);
3221 break;
3222 case comp_op:
3223 res = validate_comp_op(tree);
3224 break;
3225 case expr:
3226 res = validate_expr(tree);
3227 break;
3228 case xor_expr:
3229 res = validate_xor_expr(tree);
3230 break;
3231 case and_expr:
3232 res = validate_and_expr(tree);
3233 break;
3234 case shift_expr:
3235 res = validate_shift_expr(tree);
3236 break;
3237 case arith_expr:
3238 res = validate_arith_expr(tree);
3239 break;
3240 case term:
3241 res = validate_term(tree);
3242 break;
3243 case factor:
3244 res = validate_factor(tree);
3245 break;
3246 case power:
3247 res = validate_power(tree);
3248 break;
3249 case atom:
3250 res = validate_atom(tree);
3251 break;
Guido van Rossum3d602e31996-07-21 02:33:56 +00003252
Fred Drakeff9ea482000-04-19 13:54:15 +00003253 default:
3254 /* Hopefully never reached! */
Fred Drake661ea262000-10-24 19:57:45 +00003255 err_string("unrecognized node type");
Fred Drakeff9ea482000-04-19 13:54:15 +00003256 res = 0;
3257 break;
3258 }
3259 tree = next;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003260 }
3261 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003262}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003263
3264
Guido van Rossum47478871996-08-21 14:32:37 +00003265static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003266validate_expr_tree(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003267{
3268 int res = validate_eval_input(tree);
3269
3270 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00003271 err_string("could not validate expression tuple");
Guido van Rossum3d602e31996-07-21 02:33:56 +00003272
3273 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003274}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003275
3276
Guido van Rossum3d602e31996-07-21 02:33:56 +00003277/* file_input:
Fred Drakeff9ea482000-04-19 13:54:15 +00003278 * (NEWLINE | stmt)* ENDMARKER
Guido van Rossum3d602e31996-07-21 02:33:56 +00003279 */
Guido van Rossum47478871996-08-21 14:32:37 +00003280static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003281validate_file_input(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003282{
Fred Drakec2683dd2001-07-17 19:32:05 +00003283 int j;
Guido van Rossum3d602e31996-07-21 02:33:56 +00003284 int nch = NCH(tree) - 1;
3285 int res = ((nch >= 0)
Fred Drakeff9ea482000-04-19 13:54:15 +00003286 && validate_ntype(CHILD(tree, nch), ENDMARKER));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003287
Fred Drakec2683dd2001-07-17 19:32:05 +00003288 for (j = 0; res && (j < nch); ++j) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003289 if (TYPE(CHILD(tree, j)) == stmt)
3290 res = validate_stmt(CHILD(tree, j));
3291 else
3292 res = validate_newline(CHILD(tree, j));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003293 }
Thomas Wouters7e474022000-07-16 12:04:32 +00003294 /* This stays in to prevent any internal failures from getting to the
Fred Drakeff9ea482000-04-19 13:54:15 +00003295 * user. Hopefully, this won't be needed. If a user reports getting
3296 * this, we have some debugging to do.
Guido van Rossum3d602e31996-07-21 02:33:56 +00003297 */
3298 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00003299 err_string("VALIDATION FAILURE: report this to the maintainer!");
Guido van Rossum3d602e31996-07-21 02:33:56 +00003300
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003301 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003302}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003303
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00003304static int
3305validate_encoding_decl(node *tree)
3306{
3307 int nch = NCH(tree);
3308 int res = ((nch == 1)
3309 && validate_file_input(CHILD(tree, 0)));
3310
3311 if (!res && !PyErr_Occurred())
3312 err_string("Error Parsing encoding_decl");
3313
3314 return res;
3315}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003316
Fred Drake43f8f9b1998-04-13 16:25:46 +00003317static PyObject*
3318pickle_constructor = NULL;
3319
3320
3321static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +00003322parser__pickler(PyObject *self, PyObject *args)
Fred Drake43f8f9b1998-04-13 16:25:46 +00003323{
Fred Drake268397f1998-04-29 14:16:32 +00003324 NOTE(ARGUNUSED(self))
Fred Drake43f8f9b1998-04-13 16:25:46 +00003325 PyObject *result = NULL;
Fred Drakec2683dd2001-07-17 19:32:05 +00003326 PyObject *st = NULL;
Fred Drake2a6875e1999-09-20 22:32:18 +00003327 PyObject *empty_dict = NULL;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003328
Fred Drakec2683dd2001-07-17 19:32:05 +00003329 if (PyArg_ParseTuple(args, "O!:_pickler", &PyST_Type, &st)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003330 PyObject *newargs;
3331 PyObject *tuple;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003332
Fred Drake2a6875e1999-09-20 22:32:18 +00003333 if ((empty_dict = PyDict_New()) == NULL)
3334 goto finally;
Fred Drakec2683dd2001-07-17 19:32:05 +00003335 if ((newargs = Py_BuildValue("Oi", st, 1)) == NULL)
Fred Drakeff9ea482000-04-19 13:54:15 +00003336 goto finally;
Fred Drakec2683dd2001-07-17 19:32:05 +00003337 tuple = parser_st2tuple((PyST_Object*)NULL, newargs, empty_dict);
Fred Drakeff9ea482000-04-19 13:54:15 +00003338 if (tuple != NULL) {
3339 result = Py_BuildValue("O(O)", pickle_constructor, tuple);
3340 Py_DECREF(tuple);
3341 }
Fred Drake2a6875e1999-09-20 22:32:18 +00003342 Py_DECREF(empty_dict);
Fred Drakeff9ea482000-04-19 13:54:15 +00003343 Py_DECREF(newargs);
Fred Drake43f8f9b1998-04-13 16:25:46 +00003344 }
3345 finally:
Fred Drake2a6875e1999-09-20 22:32:18 +00003346 Py_XDECREF(empty_dict);
3347
Fred Drake43f8f9b1998-04-13 16:25:46 +00003348 return (result);
Fred Drakeff9ea482000-04-19 13:54:15 +00003349}
Fred Drake43f8f9b1998-04-13 16:25:46 +00003350
3351
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003352/* Functions exported by this module. Most of this should probably
Fred Drakec2683dd2001-07-17 19:32:05 +00003353 * be converted into an ST object with methods, but that is better
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003354 * done directly in Python, allowing subclasses to be created directly.
Guido van Rossum3d602e31996-07-21 02:33:56 +00003355 * We'd really have to write a wrapper around it all anyway to allow
3356 * inheritance.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003357 */
3358static PyMethodDef parser_functions[] = {
Fred Drakec2683dd2001-07-17 19:32:05 +00003359 {"compilest", (PyCFunction)parser_compilest, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003360 PyDoc_STR("Compiles an ST object into a code object.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003361 {"expr", (PyCFunction)parser_expr, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003362 PyDoc_STR("Creates an ST object from an expression.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003363 {"isexpr", (PyCFunction)parser_isexpr, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003364 PyDoc_STR("Determines if an ST object was created from an expression.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003365 {"issuite", (PyCFunction)parser_issuite, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003366 PyDoc_STR("Determines if an ST object was created from a suite.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003367 {"suite", (PyCFunction)parser_suite, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003368 PyDoc_STR("Creates an ST object from a suite.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003369 {"sequence2st", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003370 PyDoc_STR("Creates an ST object from a tree representation.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003371 {"st2tuple", (PyCFunction)parser_st2tuple, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003372 PyDoc_STR("Creates a tuple-tree representation of an ST.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003373 {"st2list", (PyCFunction)parser_st2list, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003374 PyDoc_STR("Creates a list-tree representation of an ST.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003375 {"tuple2st", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003376 PyDoc_STR("Creates an ST object from a tree representation.")},
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003377
Fred Drake43f8f9b1998-04-13 16:25:46 +00003378 /* private stuff: support pickle module */
Fred Drake13130bc2001-08-15 16:44:56 +00003379 {"_pickler", (PyCFunction)parser__pickler, METH_VARARGS,
Neal Norwitz200788c2002-08-13 22:20:41 +00003380 PyDoc_STR("Returns the pickle magic to allow ST objects to be pickled.")},
Fred Drake43f8f9b1998-04-13 16:25:46 +00003381
Fred Drake268397f1998-04-29 14:16:32 +00003382 {NULL, NULL, 0, NULL}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003383 };
3384
3385
Martin v. Löwis1a214512008-06-11 05:26:20 +00003386
3387static struct PyModuleDef parsermodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003388 PyModuleDef_HEAD_INIT,
3389 "parser",
3390 NULL,
3391 -1,
3392 parser_functions,
3393 NULL,
3394 NULL,
3395 NULL,
3396 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00003397};
3398
3399PyMODINIT_FUNC PyInit_parser(void); /* supply a prototype */
Fred Drake28f739a2000-08-25 22:42:40 +00003400
Mark Hammond62b1ab12002-07-23 06:31:15 +00003401PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00003402PyInit_parser(void)
Fred Drake28f739a2000-08-25 22:42:40 +00003403{
Fred Drake13130bc2001-08-15 16:44:56 +00003404 PyObject *module, *copyreg;
Fred Drakec2683dd2001-07-17 19:32:05 +00003405
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +00003406 if (PyType_Ready(&PyST_Type) < 0)
3407 return NULL;
Martin v. Löwis1a214512008-06-11 05:26:20 +00003408 module = PyModule_Create(&parsermodule);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00003409 if (module == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003410 return NULL;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003411
Fred Drake7a15ba51999-09-09 14:21:52 +00003412 if (parser_error == 0)
3413 parser_error = PyErr_NewException("parser.ParserError", NULL, NULL);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003414
Tim Peters6a627252003-07-21 14:25:23 +00003415 if (parser_error == 0)
Martin v. Löwis1a214512008-06-11 05:26:20 +00003416 return NULL;
Tim Peters6a627252003-07-21 14:25:23 +00003417 /* CAUTION: The code next used to skip bumping the refcount on
Martin v. Löwis1a214512008-06-11 05:26:20 +00003418 * parser_error. That's a disaster if PyInit_parser() gets called more
Tim Peters6a627252003-07-21 14:25:23 +00003419 * than once. By incref'ing, we ensure that each module dict that
3420 * gets created owns its reference to the shared parser_error object,
3421 * and the file static parser_error vrbl owns a reference too.
3422 */
3423 Py_INCREF(parser_error);
3424 if (PyModule_AddObject(module, "ParserError", parser_error) != 0)
Martin v. Löwis1a214512008-06-11 05:26:20 +00003425 return NULL;
Tim Peters6a627252003-07-21 14:25:23 +00003426
Fred Drakec2683dd2001-07-17 19:32:05 +00003427 Py_INCREF(&PyST_Type);
Fred Drake13130bc2001-08-15 16:44:56 +00003428 PyModule_AddObject(module, "STType", (PyObject*)&PyST_Type);
Guido van Rossum3d602e31996-07-21 02:33:56 +00003429
Fred Drake13130bc2001-08-15 16:44:56 +00003430 PyModule_AddStringConstant(module, "__copyright__",
3431 parser_copyright_string);
3432 PyModule_AddStringConstant(module, "__doc__",
3433 parser_doc_string);
3434 PyModule_AddStringConstant(module, "__version__",
3435 parser_version_string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003436
Fred Drake78bdb9b2001-07-19 20:17:15 +00003437 /* Register to support pickling.
3438 * If this fails, the import of this module will fail because an
3439 * exception will be raised here; should we clear the exception?
3440 */
Alexandre Vassalottif7fa63d2008-05-11 08:55:36 +00003441 copyreg = PyImport_ImportModuleNoBlock("copyreg");
Fred Drake13130bc2001-08-15 16:44:56 +00003442 if (copyreg != NULL) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003443 PyObject *func, *pickler;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02003444 _Py_IDENTIFIER(pickle);
3445 _Py_IDENTIFIER(sequence2st);
3446 _Py_IDENTIFIER(_pickler);
Fred Drake43f8f9b1998-04-13 16:25:46 +00003447
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +02003448 func = _PyObject_GetAttrId(copyreg, &PyId_pickle);
3449 pickle_constructor = _PyObject_GetAttrId(module, &PyId_sequence2st);
3450 pickler = _PyObject_GetAttrId(module, &PyId__pickler);
Fred Drakeff9ea482000-04-19 13:54:15 +00003451 Py_XINCREF(pickle_constructor);
3452 if ((func != NULL) && (pickle_constructor != NULL)
3453 && (pickler != NULL)) {
3454 PyObject *res;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003455
Thomas Wouters477c8d52006-05-27 19:21:47 +00003456 res = PyObject_CallFunctionObjArgs(func, &PyST_Type, pickler,
3457 pickle_constructor, NULL);
Fred Drakeff9ea482000-04-19 13:54:15 +00003458 Py_XDECREF(res);
3459 }
3460 Py_XDECREF(func);
Fred Drake13130bc2001-08-15 16:44:56 +00003461 Py_XDECREF(pickle_constructor);
3462 Py_XDECREF(pickler);
3463 Py_DECREF(copyreg);
Fred Drake43f8f9b1998-04-13 16:25:46 +00003464 }
Martin v. Löwis1a214512008-06-11 05:26:20 +00003465 return module;
Fred Drakeff9ea482000-04-19 13:54:15 +00003466}