blob: 79555428d1b62fdca18f7926e3b63822384fa9e9 [file] [log] [blame]
Guido van Rossum3d602e31996-07-21 02:33:56 +00001/* parsermodule.c
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002 *
Guido van Rossum47478871996-08-21 14:32:37 +00003 * Copyright 1995-1996 by Fred L. Drake, Jr. and Virginia Polytechnic
4 * Institute and State University, Blacksburg, Virginia, USA.
5 * Portions copyright 1991-1995 by Stichting Mathematisch Centrum,
6 * Amsterdam, The Netherlands. Copying is permitted under the terms
7 * associated with the main Python distribution, with the additional
8 * restriction that this additional notice be included and maintained
9 * on all distributed copies.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000010 *
Guido van Rossum47478871996-08-21 14:32:37 +000011 * This module serves to replace the original parser module written
12 * by Guido. The functionality is not matched precisely, but the
13 * original may be implemented on top of this. This is desirable
14 * since the source of the text to be parsed is now divorced from
15 * this interface.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000016 *
Guido van Rossum47478871996-08-21 14:32:37 +000017 * Unlike the prior interface, the ability to give a parse tree
18 * produced by Python code as a tuple to the compiler is enabled by
19 * this module. See the documentation for more details.
Fred Drake268397f1998-04-29 14:16:32 +000020 *
21 * I've added some annotations that help with the lint code-checking
22 * program, but they're not complete by a long shot. The real errors
23 * that lint detects are gone, but there are still warnings with
24 * Py_[X]DECREF() and Py_[X]INCREF() macros. The lint annotations
25 * look like "NOTE(...)".
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000026 */
27
Fred Drakeff9ea482000-04-19 13:54:15 +000028#include "Python.h" /* general Python API */
Benjamin Petersondcee09d2008-10-31 02:16:05 +000029#include "Python-ast.h" /* mod_ty */
Fred Drakeff9ea482000-04-19 13:54:15 +000030#include "graminit.h" /* symbols defined in the grammar */
31#include "node.h" /* internal parser structure */
Fred Drake8b55b2d2001-12-05 22:10:44 +000032#include "errcode.h" /* error codes for PyNode_*() */
Fred Drakeff9ea482000-04-19 13:54:15 +000033#include "token.h" /* token definitions */
Benjamin Petersondcee09d2008-10-31 02:16:05 +000034#include "grammar.h"
35#include "parsetok.h"
Fred Drakeff9ea482000-04-19 13:54:15 +000036 /* ISTERMINAL() / ISNONTERMINAL() */
Benjamin Petersondcee09d2008-10-31 02:16:05 +000037#include "compile.h"
38#undef Yield
39#include "ast.h"
40#include "pyarena.h"
41
42extern grammar _PyParser_Grammar; /* From graminit.c */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000043
Fred Drake268397f1998-04-29 14:16:32 +000044#ifdef lint
45#include <note.h>
46#else
47#define NOTE(x)
48#endif
49
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000050/* String constants used to initialize module attributes.
51 *
52 */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000053static char parser_copyright_string[] =
54"Copyright 1995-1996 by Virginia Polytechnic Institute & State\n\
Guido van Rossum2a288461996-08-21 21:55:43 +000055University, Blacksburg, Virginia, USA, and Fred L. Drake, Jr., Reston,\n\
56Virginia, USA. Portions copyright 1991-1995 by Stichting Mathematisch\n\
57Centrum, Amsterdam, The Netherlands.";
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000058
59
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000060PyDoc_STRVAR(parser_doc_string,
61"This is an interface to Python's internal parser.");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000062
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000063static char parser_version_string[] = "0.5";
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000064
65
Martin v. Löwis18e16552006-02-15 17:27:45 +000066typedef PyObject* (*SeqMaker) (Py_ssize_t length);
Fred Drakeff9ea482000-04-19 13:54:15 +000067typedef int (*SeqInserter) (PyObject* sequence,
Martin v. Löwis18e16552006-02-15 17:27:45 +000068 Py_ssize_t index,
Fred Drakeff9ea482000-04-19 13:54:15 +000069 PyObject* element);
Guido van Rossum47478871996-08-21 14:32:37 +000070
Thomas Wouters7e474022000-07-16 12:04:32 +000071/* The function below is copyrighted by Stichting Mathematisch Centrum. The
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000072 * original copyright statement is included below, and continues to apply
73 * in full to the function immediately following. All other material is
74 * original, copyrighted by Fred L. Drake, Jr. and Virginia Polytechnic
75 * Institute and State University. Changes were made to comply with the
Guido van Rossum2a288461996-08-21 21:55:43 +000076 * new naming conventions. Added arguments to provide support for creating
77 * lists as well as tuples, and optionally including the line numbers.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000078 */
79
Guido van Rossum52f2c051993-11-10 12:53:24 +000080
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000081static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +000082node2tuple(node *n, /* node to convert */
83 SeqMaker mkseq, /* create sequence */
84 SeqInserter addelem, /* func. to add elem. in seq. */
Jeremy Hylton60e96f62006-08-22 20:46:00 +000085 int lineno, /* include line numbers? */
86 int col_offset) /* include column offsets? */
Guido van Rossum47478871996-08-21 14:32:37 +000087{
Guido van Rossum3d602e31996-07-21 02:33:56 +000088 if (n == NULL) {
Fred Drakeff9ea482000-04-19 13:54:15 +000089 Py_INCREF(Py_None);
90 return (Py_None);
Guido van Rossum3d602e31996-07-21 02:33:56 +000091 }
92 if (ISNONTERMINAL(TYPE(n))) {
Fred Drakeff9ea482000-04-19 13:54:15 +000093 int i;
94 PyObject *v;
95 PyObject *w;
Fred Drake268397f1998-04-29 14:16:32 +000096
Jeremy Hyltonaccb62b2002-12-31 18:17:44 +000097 v = mkseq(1 + NCH(n) + (TYPE(n) == encoding_decl));
Fred Drakeff9ea482000-04-19 13:54:15 +000098 if (v == NULL)
99 return (v);
100 w = PyInt_FromLong(TYPE(n));
101 if (w == NULL) {
102 Py_DECREF(v);
103 return ((PyObject*) NULL);
104 }
105 (void) addelem(v, 0, w);
106 for (i = 0; i < NCH(n); i++) {
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000107 w = node2tuple(CHILD(n, i), mkseq, addelem, lineno, col_offset);
Fred Drakeff9ea482000-04-19 13:54:15 +0000108 if (w == NULL) {
109 Py_DECREF(v);
110 return ((PyObject*) NULL);
111 }
112 (void) addelem(v, i+1, w);
113 }
Tim Peters6a627252003-07-21 14:25:23 +0000114
Jeremy Hyltonaccb62b2002-12-31 18:17:44 +0000115 if (TYPE(n) == encoding_decl)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000116 (void) addelem(v, i+1, PyString_FromString(STR(n)));
Fred Drakeff9ea482000-04-19 13:54:15 +0000117 return (v);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000118 }
119 else if (ISTERMINAL(TYPE(n))) {
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000120 PyObject *result = mkseq(2 + lineno + col_offset);
Fred Drakeff9ea482000-04-19 13:54:15 +0000121 if (result != NULL) {
122 (void) addelem(result, 0, PyInt_FromLong(TYPE(n)));
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000123 (void) addelem(result, 1, PyString_FromString(STR(n)));
Fred Drakeff9ea482000-04-19 13:54:15 +0000124 if (lineno == 1)
125 (void) addelem(result, 2, PyInt_FromLong(n->n_lineno));
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000126 if (col_offset == 1)
127 (void) addelem(result, 3, PyInt_FromLong(n->n_col_offset));
Fred Drakeff9ea482000-04-19 13:54:15 +0000128 }
129 return (result);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000130 }
131 else {
Fred Drakeff9ea482000-04-19 13:54:15 +0000132 PyErr_SetString(PyExc_SystemError,
133 "unrecognized parse tree node type");
134 return ((PyObject*) NULL);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000135 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000136}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000137/*
138 * End of material copyrighted by Stichting Mathematisch Centrum.
139 */
Guido van Rossum52f2c051993-11-10 12:53:24 +0000140
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000141
142
143/* There are two types of intermediate objects we're interested in:
Fred Drakec2683dd2001-07-17 19:32:05 +0000144 * 'eval' and 'exec' types. These constants can be used in the st_type
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000145 * field of the object type to identify which any given object represents.
146 * These should probably go in an external header to allow other extensions
147 * to use them, but then, we really should be using C++ too. ;-)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000148 */
149
Fred Drakec2683dd2001-07-17 19:32:05 +0000150#define PyST_EXPR 1
151#define PyST_SUITE 2
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000152
153
154/* These are the internal objects and definitions required to implement the
Fred Drakec2683dd2001-07-17 19:32:05 +0000155 * ST type. Most of the internal names are more reminiscent of the 'old'
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000156 * naming style, but the code uses the new naming convention.
157 */
158
159static PyObject*
160parser_error = 0;
161
162
Fred Drakec2683dd2001-07-17 19:32:05 +0000163typedef struct {
Fred Drakeff9ea482000-04-19 13:54:15 +0000164 PyObject_HEAD /* standard object header */
Fred Drakec2683dd2001-07-17 19:32:05 +0000165 node* st_node; /* the node* returned by the parser */
166 int st_type; /* EXPR or SUITE ? */
Benjamin Petersondcee09d2008-10-31 02:16:05 +0000167 PyCompilerFlags st_flags; /* Parser and compiler flags */
Fred Drakec2683dd2001-07-17 19:32:05 +0000168} PyST_Object;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000169
170
Jeremy Hylton938ace62002-07-17 16:30:39 +0000171static void parser_free(PyST_Object *st);
Jesus Cea3e3192d2012-08-03 14:25:53 +0200172static PyObject* parser_sizeof(PyST_Object *, void *);
Jeremy Hylton938ace62002-07-17 16:30:39 +0000173static int parser_compare(PyST_Object *left, PyST_Object *right);
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000174static PyObject *parser_getattr(PyObject *self, char *name);
Jesus Cea4fa7a5f2012-08-03 15:51:11 +0200175static PyObject* parser_compilest(PyST_Object *, PyObject *, PyObject *);
176static PyObject* parser_isexpr(PyST_Object *, PyObject *, PyObject *);
177static PyObject* parser_issuite(PyST_Object *, PyObject *, PyObject *);
178static PyObject* parser_st2list(PyST_Object *, PyObject *, PyObject *);
179static PyObject* parser_st2tuple(PyST_Object *, PyObject *, PyObject *);
Fred Drake503d8d61998-04-13 18:45:18 +0000180
Jesus Cea4fa7a5f2012-08-03 15:51:11 +0200181#define PUBLIC_METHOD_TYPE (METH_VARARGS|METH_KEYWORDS)
182
183static PyMethodDef
184parser_methods[] = {
185 {"compile", (PyCFunction)parser_compilest, PUBLIC_METHOD_TYPE,
186 PyDoc_STR("Compile this ST object into a code object.")},
187 {"isexpr", (PyCFunction)parser_isexpr, PUBLIC_METHOD_TYPE,
188 PyDoc_STR("Determines if this ST object was created from an expression.")},
189 {"issuite", (PyCFunction)parser_issuite, PUBLIC_METHOD_TYPE,
190 PyDoc_STR("Determines if this ST object was created from a suite.")},
191 {"tolist", (PyCFunction)parser_st2list, PUBLIC_METHOD_TYPE,
192 PyDoc_STR("Creates a list-tree representation of this ST.")},
193 {"totuple", (PyCFunction)parser_st2tuple, PUBLIC_METHOD_TYPE,
194 PyDoc_STR("Creates a tuple-tree representation of this ST.")},
195 {"__sizeof__", (PyCFunction)parser_sizeof, METH_NOARGS,
196 PyDoc_STR("Returns size in memory, in bytes.")},
197 {NULL, NULL, 0, NULL}
198};
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000199
Fred Drake268397f1998-04-29 14:16:32 +0000200static
Fred Drakec2683dd2001-07-17 19:32:05 +0000201PyTypeObject PyST_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +0000202 PyVarObject_HEAD_INIT(NULL, 0)
Guido van Rossum14648392001-12-08 18:02:58 +0000203 "parser.st", /* tp_name */
Fred Drakec2683dd2001-07-17 19:32:05 +0000204 (int) sizeof(PyST_Object), /* tp_basicsize */
Fred Drakeff9ea482000-04-19 13:54:15 +0000205 0, /* tp_itemsize */
206 (destructor)parser_free, /* tp_dealloc */
207 0, /* tp_print */
208 parser_getattr, /* tp_getattr */
209 0, /* tp_setattr */
210 (cmpfunc)parser_compare, /* tp_compare */
211 0, /* tp_repr */
212 0, /* tp_as_number */
213 0, /* tp_as_sequence */
214 0, /* tp_as_mapping */
215 0, /* tp_hash */
216 0, /* tp_call */
217 0, /* tp_str */
218 0, /* tp_getattro */
219 0, /* tp_setattro */
Fred Drake69b9ae41997-05-23 04:04:17 +0000220
221 /* Functions to access object as input/output buffer */
Fred Drakeff9ea482000-04-19 13:54:15 +0000222 0, /* tp_as_buffer */
Fred Drake69b9ae41997-05-23 04:04:17 +0000223
Fred Drakeff9ea482000-04-19 13:54:15 +0000224 Py_TPFLAGS_DEFAULT, /* tp_flags */
Fred Drake69b9ae41997-05-23 04:04:17 +0000225
226 /* __doc__ */
Jesus Cea3e3192d2012-08-03 14:25:53 +0200227 "Intermediate representation of a Python parse tree.",
228 0, /* tp_traverse */
229 0, /* tp_clear */
230 0, /* tp_richcompare */
231 0, /* tp_weaklistoffset */
232 0, /* tp_iter */
233 0, /* tp_iternext */
234 parser_methods, /* tp_methods */
Fred Drakec2683dd2001-07-17 19:32:05 +0000235}; /* PyST_Type */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000236
237
238static int
Fred Drakeff9ea482000-04-19 13:54:15 +0000239parser_compare_nodes(node *left, node *right)
Guido van Rossum47478871996-08-21 14:32:37 +0000240{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000241 int j;
Guido van Rossum52f2c051993-11-10 12:53:24 +0000242
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000243 if (TYPE(left) < TYPE(right))
Fred Drakeff9ea482000-04-19 13:54:15 +0000244 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000245
246 if (TYPE(right) < TYPE(left))
Fred Drakeff9ea482000-04-19 13:54:15 +0000247 return (1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000248
249 if (ISTERMINAL(TYPE(left)))
Fred Drakeff9ea482000-04-19 13:54:15 +0000250 return (strcmp(STR(left), STR(right)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000251
252 if (NCH(left) < NCH(right))
Fred Drakeff9ea482000-04-19 13:54:15 +0000253 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000254
255 if (NCH(right) < NCH(left))
Fred Drakeff9ea482000-04-19 13:54:15 +0000256 return (1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000257
258 for (j = 0; j < NCH(left); ++j) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000259 int v = parser_compare_nodes(CHILD(left, j), CHILD(right, j));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000260
Fred Drakeff9ea482000-04-19 13:54:15 +0000261 if (v != 0)
262 return (v);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000263 }
264 return (0);
Fred Drakeff9ea482000-04-19 13:54:15 +0000265}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000266
267
Fred Drakec2683dd2001-07-17 19:32:05 +0000268/* int parser_compare(PyST_Object* left, PyST_Object* right)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000269 *
270 * Comparison function used by the Python operators ==, !=, <, >, <=, >=
271 * This really just wraps a call to parser_compare_nodes() with some easy
272 * checks and protection code.
273 *
274 */
275static int
Fred Drakec2683dd2001-07-17 19:32:05 +0000276parser_compare(PyST_Object *left, PyST_Object *right)
Guido van Rossum47478871996-08-21 14:32:37 +0000277{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000278 if (left == right)
Fred Drakeff9ea482000-04-19 13:54:15 +0000279 return (0);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000280
281 if ((left == 0) || (right == 0))
Fred Drakeff9ea482000-04-19 13:54:15 +0000282 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000283
Fred Drakec2683dd2001-07-17 19:32:05 +0000284 return (parser_compare_nodes(left->st_node, right->st_node));
Fred Drakeff9ea482000-04-19 13:54:15 +0000285}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000286
287
Fred Drakec2683dd2001-07-17 19:32:05 +0000288/* parser_newstobject(node* st)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000289 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000290 * Allocates a new Python object representing an ST. This is simply the
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000291 * 'wrapper' object that holds a node* and allows it to be passed around in
292 * Python code.
293 *
294 */
295static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000296parser_newstobject(node *st, int type)
Guido van Rossum47478871996-08-21 14:32:37 +0000297{
Fred Drakec2683dd2001-07-17 19:32:05 +0000298 PyST_Object* o = PyObject_New(PyST_Object, &PyST_Type);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000299
300 if (o != 0) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000301 o->st_node = st;
302 o->st_type = type;
Benjamin Petersondcee09d2008-10-31 02:16:05 +0000303 o->st_flags.cf_flags = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000304 }
Fred Drake268397f1998-04-29 14:16:32 +0000305 else {
Fred Drakec2683dd2001-07-17 19:32:05 +0000306 PyNode_Free(st);
Fred Drake268397f1998-04-29 14:16:32 +0000307 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000308 return ((PyObject*)o);
Fred Drakeff9ea482000-04-19 13:54:15 +0000309}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000310
311
Fred Drakec2683dd2001-07-17 19:32:05 +0000312/* void parser_free(PyST_Object* st)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000313 *
314 * This is called by a del statement that reduces the reference count to 0.
315 *
316 */
317static void
Fred Drakec2683dd2001-07-17 19:32:05 +0000318parser_free(PyST_Object *st)
Guido van Rossum47478871996-08-21 14:32:37 +0000319{
Fred Drakec2683dd2001-07-17 19:32:05 +0000320 PyNode_Free(st->st_node);
321 PyObject_Del(st);
Fred Drakeff9ea482000-04-19 13:54:15 +0000322}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000323
324
Fred Drakec2683dd2001-07-17 19:32:05 +0000325/* parser_st2tuple(PyObject* self, PyObject* args, PyObject* kw)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000326 *
327 * This provides conversion from a node* to a tuple object that can be
Fred Drakec2683dd2001-07-17 19:32:05 +0000328 * returned to the Python-level caller. The ST object is not modified.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000329 *
330 */
331static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000332parser_st2tuple(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000333{
Guido van Rossum47478871996-08-21 14:32:37 +0000334 PyObject *line_option = 0;
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000335 PyObject *col_option = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000336 PyObject *res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000337 int ok;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000338
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000339 static char *keywords[] = {"ast", "line_info", "col_info", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000340
Fred Drake268397f1998-04-29 14:16:32 +0000341 if (self == NULL) {
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000342 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|OO:st2tuple", keywords,
343 &PyST_Type, &self, &line_option,
344 &col_option);
Fred Drake268397f1998-04-29 14:16:32 +0000345 }
Fred Drake503d8d61998-04-13 18:45:18 +0000346 else
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000347 ok = PyArg_ParseTupleAndKeywords(args, kw, "|OO:totuple", &keywords[1],
348 &line_option, &col_option);
Fred Drake268397f1998-04-29 14:16:32 +0000349 if (ok != 0) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000350 int lineno = 0;
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000351 int col_offset = 0;
Fred Drakeff9ea482000-04-19 13:54:15 +0000352 if (line_option != NULL) {
Antoine Pitrouc5bef752012-08-15 23:16:51 +0200353 lineno = PyObject_IsTrue(line_option);
354 if (lineno < 0)
355 return NULL;
Fred Drakeff9ea482000-04-19 13:54:15 +0000356 }
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000357 if (col_option != NULL) {
Antoine Pitrouc5bef752012-08-15 23:16:51 +0200358 col_offset = PyObject_IsTrue(col_option);
359 if (col_offset < 0)
360 return NULL;
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000361 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000362 /*
Fred Drakec2683dd2001-07-17 19:32:05 +0000363 * Convert ST into a tuple representation. Use Guido's function,
Fred Drakeff9ea482000-04-19 13:54:15 +0000364 * since it's known to work already.
365 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000366 res = node2tuple(((PyST_Object*)self)->st_node,
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000367 PyTuple_New, PyTuple_SetItem, lineno, col_offset);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000368 }
369 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000370}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000371
Georg Brandlf9efabb2008-07-23 15:16:45 +0000372static PyObject*
373parser_ast2tuple(PyST_Object *self, PyObject *args, PyObject *kw)
374{
375 if (PyErr_WarnPy3k("ast2tuple is removed in 3.x; use st2tuple", 1) < 0)
376 return NULL;
377 return parser_st2tuple(self, args, kw);
378}
379
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000380
Fred Drakec2683dd2001-07-17 19:32:05 +0000381/* parser_st2list(PyObject* self, PyObject* args, PyObject* kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000382 *
Fred Drake2a6875e1999-09-20 22:32:18 +0000383 * This provides conversion from a node* to a list object that can be
Fred Drakec2683dd2001-07-17 19:32:05 +0000384 * returned to the Python-level caller. The ST object is not modified.
Guido van Rossum47478871996-08-21 14:32:37 +0000385 *
386 */
387static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000388parser_st2list(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000389{
Guido van Rossum47478871996-08-21 14:32:37 +0000390 PyObject *line_option = 0;
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000391 PyObject *col_option = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000392 PyObject *res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000393 int ok;
Guido van Rossum47478871996-08-21 14:32:37 +0000394
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000395 static char *keywords[] = {"ast", "line_info", "col_info", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000396
Fred Drake503d8d61998-04-13 18:45:18 +0000397 if (self == NULL)
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000398 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|OO:st2list", keywords,
399 &PyST_Type, &self, &line_option,
400 &col_option);
Fred Drake503d8d61998-04-13 18:45:18 +0000401 else
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000402 ok = PyArg_ParseTupleAndKeywords(args, kw, "|OO:tolist", &keywords[1],
403 &line_option, &col_option);
Fred Drake503d8d61998-04-13 18:45:18 +0000404 if (ok) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000405 int lineno = 0;
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000406 int col_offset = 0;
Fred Drakeff9ea482000-04-19 13:54:15 +0000407 if (line_option != 0) {
Antoine Pitrouc5bef752012-08-15 23:16:51 +0200408 lineno = PyObject_IsTrue(line_option);
409 if (lineno < 0)
410 return NULL;
Fred Drakeff9ea482000-04-19 13:54:15 +0000411 }
Antoine Pitrouc5bef752012-08-15 23:16:51 +0200412 if (col_option != 0) {
413 col_offset = PyObject_IsTrue(col_option);
414 if (col_offset < 0)
415 return NULL;
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000416 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000417 /*
Fred Drakec2683dd2001-07-17 19:32:05 +0000418 * Convert ST into a tuple representation. Use Guido's function,
Fred Drakeff9ea482000-04-19 13:54:15 +0000419 * since it's known to work already.
420 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000421 res = node2tuple(self->st_node,
Jeremy Hylton60e96f62006-08-22 20:46:00 +0000422 PyList_New, PyList_SetItem, lineno, col_offset);
Guido van Rossum47478871996-08-21 14:32:37 +0000423 }
424 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000425}
Guido van Rossum47478871996-08-21 14:32:37 +0000426
Georg Brandlf9efabb2008-07-23 15:16:45 +0000427static PyObject*
428parser_ast2list(PyST_Object *self, PyObject *args, PyObject *kw)
429{
430 if (PyErr_WarnPy3k("ast2list is removed in 3.x; use st2list", 1) < 0)
431 return NULL;
432 return parser_st2list(self, args, kw);
433}
434
Guido van Rossum47478871996-08-21 14:32:37 +0000435
Fred Drakec2683dd2001-07-17 19:32:05 +0000436/* parser_compilest(PyObject* self, PyObject* args)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000437 *
438 * This function creates code objects from the parse tree represented by
439 * the passed-in data object. An optional file name is passed in as well.
440 *
441 */
442static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000443parser_compilest(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000444{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000445 PyObject* res = 0;
Benjamin Petersondcee09d2008-10-31 02:16:05 +0000446 PyArena* arena;
447 mod_ty mod;
Fred Drakec2683dd2001-07-17 19:32:05 +0000448 char* str = "<syntax-tree>";
Fred Drake503d8d61998-04-13 18:45:18 +0000449 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000450
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000451 static char *keywords[] = {"ast", "filename", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000452
Fred Drake503d8d61998-04-13 18:45:18 +0000453 if (self == NULL)
Fred Drakec2683dd2001-07-17 19:32:05 +0000454 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|s:compilest", keywords,
455 &PyST_Type, &self, &str);
Fred Drake503d8d61998-04-13 18:45:18 +0000456 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000457 ok = PyArg_ParseTupleAndKeywords(args, kw, "|s:compile", &keywords[1],
Fred Drake7a15ba51999-09-09 14:21:52 +0000458 &str);
Fred Drake503d8d61998-04-13 18:45:18 +0000459
Benjamin Petersondcee09d2008-10-31 02:16:05 +0000460 if (ok) {
461 arena = PyArena_New();
462 if (arena) {
463 mod = PyAST_FromNode(self->st_node, &(self->st_flags), str, arena);
464 if (mod) {
465 res = (PyObject *)PyAST_Compile(mod, str, &(self->st_flags), arena);
466 }
467 PyArena_Free(arena);
468 }
469 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000470
471 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000472}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000473
Georg Brandlf9efabb2008-07-23 15:16:45 +0000474static PyObject*
475parser_compileast(PyST_Object *self, PyObject *args, PyObject *kw)
476{
477 if (PyErr_WarnPy3k("compileast is removed in 3.x; use compilest", 1) < 0)
478 return NULL;
479 return parser_compilest(self, args, kw);
480}
481
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000482
483/* PyObject* parser_isexpr(PyObject* self, PyObject* args)
484 * PyObject* parser_issuite(PyObject* self, PyObject* args)
485 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000486 * Checks the passed-in ST object to determine if it is an expression or
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000487 * a statement suite, respectively. The return is a Python truth value.
488 *
489 */
490static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000491parser_isexpr(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000492{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000493 PyObject* res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000494 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000495
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000496 static char *keywords[] = {"ast", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000497
Fred Drake503d8d61998-04-13 18:45:18 +0000498 if (self == NULL)
Fred Drakeff9ea482000-04-19 13:54:15 +0000499 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:isexpr", keywords,
Fred Drakec2683dd2001-07-17 19:32:05 +0000500 &PyST_Type, &self);
Fred Drake503d8d61998-04-13 18:45:18 +0000501 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000502 ok = PyArg_ParseTupleAndKeywords(args, kw, ":isexpr", &keywords[1]);
Fred Drake503d8d61998-04-13 18:45:18 +0000503
504 if (ok) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000505 /* Check to see if the ST represents an expression or not. */
506 res = (self->st_type == PyST_EXPR) ? Py_True : Py_False;
Fred Drakeff9ea482000-04-19 13:54:15 +0000507 Py_INCREF(res);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000508 }
509 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000510}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000511
512
513static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000514parser_issuite(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000515{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000516 PyObject* res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000517 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000518
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000519 static char *keywords[] = {"ast", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000520
Fred Drake503d8d61998-04-13 18:45:18 +0000521 if (self == NULL)
Fred Drakeff9ea482000-04-19 13:54:15 +0000522 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:issuite", keywords,
Fred Drakec2683dd2001-07-17 19:32:05 +0000523 &PyST_Type, &self);
Fred Drake503d8d61998-04-13 18:45:18 +0000524 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000525 ok = PyArg_ParseTupleAndKeywords(args, kw, ":issuite", &keywords[1]);
Fred Drake503d8d61998-04-13 18:45:18 +0000526
527 if (ok) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000528 /* Check to see if the ST represents an expression or not. */
529 res = (self->st_type == PyST_EXPR) ? Py_False : Py_True;
Fred Drakeff9ea482000-04-19 13:54:15 +0000530 Py_INCREF(res);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000531 }
532 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000533}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000534
535
Fred Drake503d8d61998-04-13 18:45:18 +0000536static PyObject*
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000537parser_getattr(PyObject *self, char *name)
Fred Drake503d8d61998-04-13 18:45:18 +0000538{
Fred Drake503d8d61998-04-13 18:45:18 +0000539 return (Py_FindMethod(parser_methods, self, name));
Fred Drakeff9ea482000-04-19 13:54:15 +0000540}
Fred Drake503d8d61998-04-13 18:45:18 +0000541
542
Guido van Rossum3d602e31996-07-21 02:33:56 +0000543/* err_string(char* message)
544 *
545 * Sets the error string for an exception of type ParserError.
546 *
547 */
548static void
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +0000549err_string(char *message)
Guido van Rossum47478871996-08-21 14:32:37 +0000550{
Guido van Rossum3d602e31996-07-21 02:33:56 +0000551 PyErr_SetString(parser_error, message);
Fred Drakeff9ea482000-04-19 13:54:15 +0000552}
Guido van Rossum3d602e31996-07-21 02:33:56 +0000553
554
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000555/* PyObject* parser_do_parse(PyObject* args, int type)
556 *
557 * Internal function to actually execute the parse and return the result if
Jeremy Hyltonaccb62b2002-12-31 18:17:44 +0000558 * successful or set an exception if not.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000559 *
560 */
561static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +0000562parser_do_parse(PyObject *args, PyObject *kw, char *argspec, int type)
Guido van Rossum47478871996-08-21 14:32:37 +0000563{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000564 char* string = 0;
565 PyObject* res = 0;
Benjamin Petersondcee09d2008-10-31 02:16:05 +0000566 int flags = 0;
567 perrdetail err;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000568
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000569 static char *keywords[] = {"source", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000570
571 if (PyArg_ParseTupleAndKeywords(args, kw, argspec, keywords, &string)) {
Benjamin Petersondcee09d2008-10-31 02:16:05 +0000572 node* n = PyParser_ParseStringFlagsFilenameEx(string, NULL,
573 &_PyParser_Grammar,
574 (type == PyST_EXPR)
575 ? eval_input : file_input,
576 &err, &flags);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000577
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000578 if (n) {
579 res = parser_newstobject(n, type);
Benjamin Petersondcee09d2008-10-31 02:16:05 +0000580 if (res)
581 ((PyST_Object *)res)->st_flags.cf_flags = flags & PyCF_MASK;
582 }
583 else
584 PyParser_SetError(&err);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000585 }
586 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000587}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000588
589
590/* PyObject* parser_expr(PyObject* self, PyObject* args)
591 * PyObject* parser_suite(PyObject* self, PyObject* args)
592 *
593 * External interfaces to the parser itself. Which is called determines if
594 * the parser attempts to recognize an expression ('eval' form) or statement
595 * suite ('exec' form). The real work is done by parser_do_parse() above.
596 *
597 */
598static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000599parser_expr(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000600{
Fred Drake268397f1998-04-29 14:16:32 +0000601 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000602 return (parser_do_parse(args, kw, "s:expr", PyST_EXPR));
Fred Drakeff9ea482000-04-19 13:54:15 +0000603}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000604
605
606static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000607parser_suite(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000608{
Fred Drake268397f1998-04-29 14:16:32 +0000609 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000610 return (parser_do_parse(args, kw, "s:suite", PyST_SUITE));
Fred Drakeff9ea482000-04-19 13:54:15 +0000611}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000612
613
614
Fred Drakec2683dd2001-07-17 19:32:05 +0000615/* This is the messy part of the code. Conversion from a tuple to an ST
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000616 * object requires that the input tuple be valid without having to rely on
617 * catching an exception from the compiler. This is done to allow the
618 * compiler itself to remain fast, since most of its input will come from
619 * the parser directly, and therefore be known to be syntactically correct.
620 * This validation is done to ensure that we don't core dump the compile
621 * phase, returning an exception instead.
622 *
623 * Two aspects can be broken out in this code: creating a node tree from
624 * the tuple passed in, and verifying that it is indeed valid. It may be
Fred Drakec2683dd2001-07-17 19:32:05 +0000625 * advantageous to expand the number of ST types to include funcdefs and
626 * lambdadefs to take advantage of the optimizer, recognizing those STs
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000627 * here. They are not necessary, and not quite as useful in a raw form.
628 * For now, let's get expressions and suites working reliably.
629 */
630
631
Jeremy Hylton938ace62002-07-17 16:30:39 +0000632static node* build_node_tree(PyObject *tuple);
633static int validate_expr_tree(node *tree);
634static int validate_file_input(node *tree);
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000635static int validate_encoding_decl(node *tree);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000636
Fred Drakec2683dd2001-07-17 19:32:05 +0000637/* PyObject* parser_tuple2st(PyObject* self, PyObject* args)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000638 *
639 * This is the public function, called from the Python code. It receives a
Fred Drakec2683dd2001-07-17 19:32:05 +0000640 * single tuple object from the caller, and creates an ST object if the
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000641 * tuple can be validated. It does this by checking the first code of the
642 * tuple, and, if acceptable, builds the internal representation. If this
643 * step succeeds, the internal representation is validated as fully as
644 * possible with the various validate_*() routines defined below.
645 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000646 * This function must be changed if support is to be added for PyST_FRAGMENT
647 * ST objects.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000648 *
649 */
650static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000651parser_tuple2st(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000652{
Fred Drake268397f1998-04-29 14:16:32 +0000653 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000654 PyObject *st = 0;
Fred Drake0ac9b072000-09-12 21:58:06 +0000655 PyObject *tuple;
656 node *tree;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000657
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000658 static char *keywords[] = {"sequence", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000659
Fred Drakec2683dd2001-07-17 19:32:05 +0000660 if (!PyArg_ParseTupleAndKeywords(args, kw, "O:sequence2st", keywords,
Fred Drake7a15ba51999-09-09 14:21:52 +0000661 &tuple))
Fred Drakeff9ea482000-04-19 13:54:15 +0000662 return (0);
Guido van Rossum47478871996-08-21 14:32:37 +0000663 if (!PySequence_Check(tuple)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000664 PyErr_SetString(PyExc_ValueError,
Fred Drakec2683dd2001-07-17 19:32:05 +0000665 "sequence2st() requires a single sequence argument");
Fred Drakeff9ea482000-04-19 13:54:15 +0000666 return (0);
Guido van Rossum47478871996-08-21 14:32:37 +0000667 }
668 /*
Fred Drake0ac9b072000-09-12 21:58:06 +0000669 * Convert the tree to the internal form before checking it.
Guido van Rossum47478871996-08-21 14:32:37 +0000670 */
Fred Drake0ac9b072000-09-12 21:58:06 +0000671 tree = build_node_tree(tuple);
672 if (tree != 0) {
673 int start_sym = TYPE(tree);
674 if (start_sym == eval_input) {
675 /* Might be an eval form. */
676 if (validate_expr_tree(tree))
Fred Drakec2683dd2001-07-17 19:32:05 +0000677 st = parser_newstobject(tree, PyST_EXPR);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000678 else
679 PyNode_Free(tree);
Fred Drakeff9ea482000-04-19 13:54:15 +0000680 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000681 else if (start_sym == file_input) {
682 /* This looks like an exec form so far. */
683 if (validate_file_input(tree))
Fred Drakec2683dd2001-07-17 19:32:05 +0000684 st = parser_newstobject(tree, PyST_SUITE);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000685 else
686 PyNode_Free(tree);
Fred Drake0ac9b072000-09-12 21:58:06 +0000687 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000688 else if (start_sym == encoding_decl) {
689 /* This looks like an encoding_decl so far. */
690 if (validate_encoding_decl(tree))
691 st = parser_newstobject(tree, PyST_SUITE);
692 else
693 PyNode_Free(tree);
694 }
Fred Drake0ac9b072000-09-12 21:58:06 +0000695 else {
696 /* This is a fragment, at best. */
697 PyNode_Free(tree);
Fred Drake661ea262000-10-24 19:57:45 +0000698 err_string("parse tree does not use a valid start symbol");
Fred Drake0ac9b072000-09-12 21:58:06 +0000699 }
Guido van Rossum47478871996-08-21 14:32:37 +0000700 }
Andrew Svetlov4bb142b2012-12-18 21:27:37 +0200701 /* Make sure we raise an exception on all errors. We should never
Guido van Rossum47478871996-08-21 14:32:37 +0000702 * get this, but we'd do well to be sure something is done.
703 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000704 if (st == NULL && !PyErr_Occurred())
705 err_string("unspecified ST error occurred");
Guido van Rossum3d602e31996-07-21 02:33:56 +0000706
Fred Drakec2683dd2001-07-17 19:32:05 +0000707 return st;
Fred Drakeff9ea482000-04-19 13:54:15 +0000708}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000709
Georg Brandlf9efabb2008-07-23 15:16:45 +0000710static PyObject*
711parser_tuple2ast(PyST_Object *self, PyObject *args, PyObject *kw)
712{
713 if (PyErr_WarnPy3k("tuple2ast is removed in 3.x; use tuple2st", 1) < 0)
714 return NULL;
715 return parser_tuple2st(self, args, kw);
716}
717
Jesus Cea3e3192d2012-08-03 14:25:53 +0200718static PyObject *
719parser_sizeof(PyST_Object *st, void *unused)
720{
721 Py_ssize_t res;
722
Serhiy Storchakac06a6d02015-12-19 20:07:48 +0200723 res = _PyObject_SIZE(Py_TYPE(st)) + _PyNode_SizeOf(st->st_node);
Jesus Cea3e3192d2012-08-03 14:25:53 +0200724 return PyLong_FromSsize_t(res);
725}
726
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000727
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000728/* node* build_node_children()
729 *
730 * Iterate across the children of the current non-terminal node and build
731 * their structures. If successful, return the root of this portion of
732 * the tree, otherwise, 0. Any required exception will be specified already,
733 * and no memory will have been deallocated.
734 *
735 */
736static node*
Fred Drakeff9ea482000-04-19 13:54:15 +0000737build_node_children(PyObject *tuple, node *root, int *line_num)
Guido van Rossum47478871996-08-21 14:32:37 +0000738{
Martin v. Löwis18e16552006-02-15 17:27:45 +0000739 Py_ssize_t len = PyObject_Size(tuple);
740 Py_ssize_t i;
741 int err;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000742
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300743 if (len < 0) {
744 return NULL;
745 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000746 for (i = 1; i < len; ++i) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000747 /* elem must always be a sequence, however simple */
Fred Drakeff9ea482000-04-19 13:54:15 +0000748 PyObject* elem = PySequence_GetItem(tuple, i);
749 int ok = elem != NULL;
750 long type = 0;
751 char *strn = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000752
Fred Drakeff9ea482000-04-19 13:54:15 +0000753 if (ok)
754 ok = PySequence_Check(elem);
755 if (ok) {
756 PyObject *temp = PySequence_GetItem(elem, 0);
757 if (temp == NULL)
758 ok = 0;
759 else {
760 ok = PyInt_Check(temp);
761 if (ok)
762 type = PyInt_AS_LONG(temp);
763 Py_DECREF(temp);
764 }
765 }
766 if (!ok) {
Neal Norwitzd1e0ef62006-03-20 04:08:12 +0000767 PyObject *err = Py_BuildValue("os", elem,
768 "Illegal node construct.");
769 PyErr_SetObject(parser_error, err);
770 Py_XDECREF(err);
Fred Drakeff9ea482000-04-19 13:54:15 +0000771 Py_XDECREF(elem);
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300772 return NULL;
Fred Drakeff9ea482000-04-19 13:54:15 +0000773 }
774 if (ISTERMINAL(type)) {
Martin v. Löwis18e16552006-02-15 17:27:45 +0000775 Py_ssize_t len = PyObject_Size(elem);
Fred Drake0ac9b072000-09-12 21:58:06 +0000776 PyObject *temp;
Guido van Rossum47478871996-08-21 14:32:37 +0000777
Fred Drake0ac9b072000-09-12 21:58:06 +0000778 if ((len != 2) && (len != 3)) {
Fred Drake661ea262000-10-24 19:57:45 +0000779 err_string("terminal nodes must have 2 or 3 entries");
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300780 Py_DECREF(elem);
781 return NULL;
Fred Drake0ac9b072000-09-12 21:58:06 +0000782 }
783 temp = PySequence_GetItem(elem, 1);
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300784 if (temp == NULL) {
785 Py_DECREF(elem);
786 return NULL;
787 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000788 if (!PyString_Check(temp)) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000789 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +0000790 "second item in terminal node must be a string,"
791 " found %s",
Christian Heimese93237d2007-12-19 02:37:44 +0000792 Py_TYPE(temp)->tp_name);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000793 Py_DECREF(temp);
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300794 Py_DECREF(elem);
795 return NULL;
Fred Drake0ac9b072000-09-12 21:58:06 +0000796 }
797 if (len == 3) {
798 PyObject *o = PySequence_GetItem(elem, 2);
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300799 if (o == NULL) {
800 Py_DECREF(temp);
801 Py_DECREF(elem);
802 return NULL;
Fred Drakeff9ea482000-04-19 13:54:15 +0000803 }
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300804 if (PyInt_Check(o))
805 *line_num = PyInt_AS_LONG(o);
806 else {
807 PyErr_Format(parser_error,
808 "third item in terminal node must be an"
809 " integer, found %s",
810 Py_TYPE(temp)->tp_name);
811 Py_DECREF(o);
812 Py_DECREF(temp);
813 Py_DECREF(elem);
814 return NULL;
815 }
816 Py_DECREF(o);
Fred Drakeff9ea482000-04-19 13:54:15 +0000817 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000818 len = PyString_GET_SIZE(temp) + 1;
Tim Petersc9d78aa2006-03-26 23:27:58 +0000819 strn = (char *)PyObject_MALLOC(len);
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300820 if (strn == NULL) {
821 Py_DECREF(temp);
822 Py_DECREF(elem);
823 PyErr_NoMemory();
824 return NULL;
825 }
826 (void) memcpy(strn, PyString_AS_STRING(temp), len);
Fred Drake0ac9b072000-09-12 21:58:06 +0000827 Py_DECREF(temp);
Fred Drakeff9ea482000-04-19 13:54:15 +0000828 }
829 else if (!ISNONTERMINAL(type)) {
830 /*
831 * It has to be one or the other; this is an error.
Andrew Svetlov4bb142b2012-12-18 21:27:37 +0200832 * Raise an exception.
Fred Drakeff9ea482000-04-19 13:54:15 +0000833 */
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300834 PyObject *err = Py_BuildValue("Os", elem, "unknown node type.");
Neal Norwitzd1e0ef62006-03-20 04:08:12 +0000835 PyErr_SetObject(parser_error, err);
836 Py_XDECREF(err);
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300837 Py_DECREF(elem);
838 return NULL;
Fred Drakeff9ea482000-04-19 13:54:15 +0000839 }
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000840 err = PyNode_AddChild(root, type, strn, *line_num, 0);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000841 if (err == E_NOMEM) {
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300842 Py_DECREF(elem);
Tim Petersc9d78aa2006-03-26 23:27:58 +0000843 PyObject_FREE(strn);
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300844 PyErr_NoMemory();
845 return NULL;
Fred Drake8b55b2d2001-12-05 22:10:44 +0000846 }
847 if (err == E_OVERFLOW) {
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300848 Py_DECREF(elem);
Tim Petersc9d78aa2006-03-26 23:27:58 +0000849 PyObject_FREE(strn);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000850 PyErr_SetString(PyExc_ValueError,
851 "unsupported number of child nodes");
852 return NULL;
853 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000854
Fred Drakeff9ea482000-04-19 13:54:15 +0000855 if (ISNONTERMINAL(type)) {
856 node* new_child = CHILD(root, i - 1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000857
Fred Drakeff9ea482000-04-19 13:54:15 +0000858 if (new_child != build_node_children(elem, new_child, line_num)) {
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300859 Py_DECREF(elem);
860 return NULL;
Fred Drakeff9ea482000-04-19 13:54:15 +0000861 }
862 }
863 else if (type == NEWLINE) { /* It's true: we increment the */
864 ++(*line_num); /* line number *after* the newline! */
865 }
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300866 Py_DECREF(elem);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000867 }
Tim Petersc9d78aa2006-03-26 23:27:58 +0000868 return root;
Fred Drakeff9ea482000-04-19 13:54:15 +0000869}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000870
871
872static node*
Fred Drakeff9ea482000-04-19 13:54:15 +0000873build_node_tree(PyObject *tuple)
Guido van Rossum47478871996-08-21 14:32:37 +0000874{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000875 node* res = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000876 PyObject *temp = PySequence_GetItem(tuple, 0);
Fred Drake0ac9b072000-09-12 21:58:06 +0000877 long num = -1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000878
Guido van Rossum47478871996-08-21 14:32:37 +0000879 if (temp != NULL)
Fred Drakeff9ea482000-04-19 13:54:15 +0000880 num = PyInt_AsLong(temp);
Guido van Rossum47478871996-08-21 14:32:37 +0000881 Py_XDECREF(temp);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000882 if (ISTERMINAL(num)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000883 /*
884 * The tuple is simple, but it doesn't start with a start symbol.
Andrew Svetlov4bb142b2012-12-18 21:27:37 +0200885 * Raise an exception now and be done with it.
Fred Drakeff9ea482000-04-19 13:54:15 +0000886 */
Fred Drake0ac9b072000-09-12 21:58:06 +0000887 tuple = Py_BuildValue("os", tuple,
Fred Drakec2683dd2001-07-17 19:32:05 +0000888 "Illegal syntax-tree; cannot start with terminal symbol.");
Fred Drakeff9ea482000-04-19 13:54:15 +0000889 PyErr_SetObject(parser_error, tuple);
Neal Norwitzd1e0ef62006-03-20 04:08:12 +0000890 Py_XDECREF(tuple);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000891 }
892 else if (ISNONTERMINAL(num)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000893 /*
894 * Not efficient, but that can be handled later.
895 */
896 int line_num = 0;
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000897 PyObject *encoding = NULL;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000898
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000899 if (num == encoding_decl) {
900 encoding = PySequence_GetItem(tuple, 2);
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300901 if (encoding == NULL) {
902 PyErr_SetString(parser_error, "missed encoding");
903 return NULL;
904 }
905 if (!PyString_Check(encoding)) {
906 PyErr_Format(parser_error,
907 "encoding must be a string, found %.200s",
908 Py_TYPE(encoding)->tp_name);
909 Py_DECREF(encoding);
910 return NULL;
911 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000912 /* tuple isn't borrowed anymore here, need to DECREF */
913 tuple = PySequence_GetSlice(tuple, 0, 2);
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300914 if (tuple == NULL) {
915 Py_DECREF(encoding);
916 return NULL;
917 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000918 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000919 res = PyNode_New(num);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000920 if (res != NULL) {
921 if (res != build_node_children(tuple, res, &line_num)) {
922 PyNode_Free(res);
923 res = NULL;
924 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000925 if (res && encoding) {
Martin v. Löwisad0a4622006-02-16 14:30:23 +0000926 Py_ssize_t len;
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000927 len = PyString_GET_SIZE(encoding) + 1;
Tim Petersc9d78aa2006-03-26 23:27:58 +0000928 res->n_str = (char *)PyObject_MALLOC(len);
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300929 if (res->n_str == NULL) {
930 PyNode_Free(res);
931 Py_DECREF(encoding);
932 Py_DECREF(tuple);
933 PyErr_NoMemory();
934 return NULL;
935 }
936 (void) memcpy(res->n_str, PyString_AS_STRING(encoding), len);
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000937 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000938 }
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300939 if (encoding != NULL) {
940 Py_DECREF(encoding);
941 Py_DECREF(tuple);
942 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000943 }
Neal Norwitzd1e0ef62006-03-20 04:08:12 +0000944 else {
Fred Drakeff9ea482000-04-19 13:54:15 +0000945 /* The tuple is illegal -- if the number is neither TERMINAL nor
Fred Drake0ac9b072000-09-12 21:58:06 +0000946 * NONTERMINAL, we can't use it. Not sure the implementation
947 * allows this condition, but the API doesn't preclude it.
Fred Drakeff9ea482000-04-19 13:54:15 +0000948 */
Serhiy Storchaka2a1bf062017-04-20 00:48:57 +0300949 PyObject *err = Py_BuildValue("Os", tuple,
Neal Norwitzd1e0ef62006-03-20 04:08:12 +0000950 "Illegal component tuple.");
951 PyErr_SetObject(parser_error, err);
952 Py_XDECREF(err);
953 }
Guido van Rossum3d602e31996-07-21 02:33:56 +0000954
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000955 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000956}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000957
958
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000959/*
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000960 * Validation routines used within the validation section:
961 */
Jeremy Hylton938ace62002-07-17 16:30:39 +0000962static int validate_terminal(node *terminal, int type, char *string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000963
Fred Drakeff9ea482000-04-19 13:54:15 +0000964#define validate_ampersand(ch) validate_terminal(ch, AMPER, "&")
965#define validate_circumflex(ch) validate_terminal(ch, CIRCUMFLEX, "^")
966#define validate_colon(ch) validate_terminal(ch, COLON, ":")
967#define validate_comma(ch) validate_terminal(ch, COMMA, ",")
968#define validate_dedent(ch) validate_terminal(ch, DEDENT, "")
969#define validate_equal(ch) validate_terminal(ch, EQUAL, "=")
970#define validate_indent(ch) validate_terminal(ch, INDENT, (char*)NULL)
971#define validate_lparen(ch) validate_terminal(ch, LPAR, "(")
972#define validate_newline(ch) validate_terminal(ch, NEWLINE, (char*)NULL)
973#define validate_rparen(ch) validate_terminal(ch, RPAR, ")")
974#define validate_semi(ch) validate_terminal(ch, SEMI, ";")
975#define validate_star(ch) validate_terminal(ch, STAR, "*")
976#define validate_vbar(ch) validate_terminal(ch, VBAR, "|")
977#define validate_doublestar(ch) validate_terminal(ch, DOUBLESTAR, "**")
978#define validate_dot(ch) validate_terminal(ch, DOT, ".")
Anthony Baxterc2a5a632004-08-02 06:10:11 +0000979#define validate_at(ch) validate_terminal(ch, AT, "@")
Fred Drakeff9ea482000-04-19 13:54:15 +0000980#define validate_name(ch, str) validate_terminal(ch, NAME, str)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000981
Fred Drake0ac9b072000-09-12 21:58:06 +0000982#define VALIDATER(n) static int validate_##n(node *tree)
983
Fred Drakeff9ea482000-04-19 13:54:15 +0000984VALIDATER(node); VALIDATER(small_stmt);
985VALIDATER(class); VALIDATER(node);
986VALIDATER(parameters); VALIDATER(suite);
987VALIDATER(testlist); VALIDATER(varargslist);
988VALIDATER(fpdef); VALIDATER(fplist);
989VALIDATER(stmt); VALIDATER(simple_stmt);
990VALIDATER(expr_stmt); VALIDATER(power);
991VALIDATER(print_stmt); VALIDATER(del_stmt);
Fred Drakecff283c2000-08-21 22:24:43 +0000992VALIDATER(return_stmt); VALIDATER(list_iter);
Fred Drakeff9ea482000-04-19 13:54:15 +0000993VALIDATER(raise_stmt); VALIDATER(import_stmt);
Anthony Baxter1a4ddae2004-08-31 10:07:13 +0000994VALIDATER(import_name); VALIDATER(import_from);
Fred Drakecff283c2000-08-21 22:24:43 +0000995VALIDATER(global_stmt); VALIDATER(list_if);
996VALIDATER(assert_stmt); VALIDATER(list_for);
Fred Drakeff9ea482000-04-19 13:54:15 +0000997VALIDATER(exec_stmt); VALIDATER(compound_stmt);
998VALIDATER(while); VALIDATER(for);
999VALIDATER(try); VALIDATER(except_clause);
1000VALIDATER(test); VALIDATER(and_test);
1001VALIDATER(not_test); VALIDATER(comparison);
1002VALIDATER(comp_op); VALIDATER(expr);
1003VALIDATER(xor_expr); VALIDATER(and_expr);
1004VALIDATER(shift_expr); VALIDATER(arith_expr);
1005VALIDATER(term); VALIDATER(factor);
1006VALIDATER(atom); VALIDATER(lambdef);
1007VALIDATER(trailer); VALIDATER(subscript);
1008VALIDATER(subscriptlist); VALIDATER(sliceop);
Alexandre Vassalottiee936a22010-01-09 23:35:54 +00001009VALIDATER(exprlist); VALIDATER(dictorsetmaker);
Fred Drakeff9ea482000-04-19 13:54:15 +00001010VALIDATER(arglist); VALIDATER(argument);
Fred Drake02126f22001-07-17 02:59:15 +00001011VALIDATER(listmaker); VALIDATER(yield_stmt);
Alexandre Vassalottib6465472010-01-11 22:36:12 +00001012VALIDATER(testlist1); VALIDATER(comp_for);
1013VALIDATER(comp_iter); VALIDATER(comp_if);
1014VALIDATER(testlist_comp); VALIDATER(yield_expr);
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001015VALIDATER(yield_or_testlist); VALIDATER(or_test);
1016VALIDATER(old_test); VALIDATER(old_lambdef);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001017
Fred Drake0ac9b072000-09-12 21:58:06 +00001018#undef VALIDATER
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001019
Fred Drakeff9ea482000-04-19 13:54:15 +00001020#define is_even(n) (((n) & 1) == 0)
1021#define is_odd(n) (((n) & 1) == 1)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001022
1023
1024static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001025validate_ntype(node *n, int t)
Guido van Rossum47478871996-08-21 14:32:37 +00001026{
Fred Drake0ac9b072000-09-12 21:58:06 +00001027 if (TYPE(n) != t) {
1028 PyErr_Format(parser_error, "Expected node type %d, got %d.",
1029 t, TYPE(n));
1030 return 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001031 }
Fred Drake0ac9b072000-09-12 21:58:06 +00001032 return 1;
Fred Drakeff9ea482000-04-19 13:54:15 +00001033}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001034
1035
Fred Drakee7ab64e2000-04-25 04:14:46 +00001036/* Verifies that the number of child nodes is exactly 'num', raising
1037 * an exception if it isn't. The exception message does not indicate
1038 * the exact number of nodes, allowing this to be used to raise the
1039 * "right" exception when the wrong number of nodes is present in a
1040 * specific variant of a statement's syntax. This is commonly used
1041 * in that fashion.
1042 */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001043static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001044validate_numnodes(node *n, int num, const char *const name)
Guido van Rossum47478871996-08-21 14:32:37 +00001045{
Guido van Rossum3d602e31996-07-21 02:33:56 +00001046 if (NCH(n) != num) {
Fred Drake0ac9b072000-09-12 21:58:06 +00001047 PyErr_Format(parser_error,
1048 "Illegal number of children for %s node.", name);
1049 return 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001050 }
Fred Drake0ac9b072000-09-12 21:58:06 +00001051 return 1;
Fred Drakeff9ea482000-04-19 13:54:15 +00001052}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001053
1054
1055static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001056validate_terminal(node *terminal, int type, char *string)
Guido van Rossum47478871996-08-21 14:32:37 +00001057{
Guido van Rossum3d602e31996-07-21 02:33:56 +00001058 int res = (validate_ntype(terminal, type)
Fred Drakeff9ea482000-04-19 13:54:15 +00001059 && ((string == 0) || (strcmp(string, STR(terminal)) == 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001060
1061 if (!res && !PyErr_Occurred()) {
Fred Drake0ac9b072000-09-12 21:58:06 +00001062 PyErr_Format(parser_error,
1063 "Illegal terminal: expected \"%s\"", string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001064 }
1065 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001066}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001067
1068
Guido van Rossum47478871996-08-21 14:32:37 +00001069/* X (',' X) [',']
1070 */
1071static int
Thomas Woutersbd4bc4e2000-07-22 23:57:55 +00001072validate_repeating_list(node *tree, int ntype, int (*vfunc)(node *),
Fred Drakeff9ea482000-04-19 13:54:15 +00001073 const char *const name)
Guido van Rossum47478871996-08-21 14:32:37 +00001074{
1075 int nch = NCH(tree);
1076 int res = (nch && validate_ntype(tree, ntype)
Fred Drakeff9ea482000-04-19 13:54:15 +00001077 && vfunc(CHILD(tree, 0)));
Guido van Rossum47478871996-08-21 14:32:37 +00001078
1079 if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +00001080 (void) validate_numnodes(tree, 1, name);
Guido van Rossum47478871996-08-21 14:32:37 +00001081 else {
Fred Drakeff9ea482000-04-19 13:54:15 +00001082 if (is_even(nch))
1083 res = validate_comma(CHILD(tree, --nch));
1084 if (res && nch > 1) {
1085 int pos = 1;
1086 for ( ; res && pos < nch; pos += 2)
1087 res = (validate_comma(CHILD(tree, pos))
1088 && vfunc(CHILD(tree, pos + 1)));
1089 }
Guido van Rossum47478871996-08-21 14:32:37 +00001090 }
1091 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001092}
Guido van Rossum47478871996-08-21 14:32:37 +00001093
1094
Fred Drakecff283c2000-08-21 22:24:43 +00001095/* validate_class()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001096 *
1097 * classdef:
Fred Drakeff9ea482000-04-19 13:54:15 +00001098 * 'class' NAME ['(' testlist ')'] ':' suite
Guido van Rossum3d602e31996-07-21 02:33:56 +00001099 */
Guido van Rossum47478871996-08-21 14:32:37 +00001100static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001101validate_class(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001102{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001103 int nch = NCH(tree);
Brett Cannonf4189912005-04-09 02:30:16 +00001104 int res = (validate_ntype(tree, classdef) &&
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001105 ((nch == 4) || (nch == 6) || (nch == 7)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001106
Guido van Rossum3d602e31996-07-21 02:33:56 +00001107 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001108 res = (validate_name(CHILD(tree, 0), "class")
1109 && validate_ntype(CHILD(tree, 1), NAME)
1110 && validate_colon(CHILD(tree, nch - 2))
1111 && validate_suite(CHILD(tree, nch - 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001112 }
Brett Cannonf4189912005-04-09 02:30:16 +00001113 else {
Fred Drakeff9ea482000-04-19 13:54:15 +00001114 (void) validate_numnodes(tree, 4, "class");
Brett Cannonf4189912005-04-09 02:30:16 +00001115 }
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001116
Brett Cannonf4189912005-04-09 02:30:16 +00001117 if (res) {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001118 if (nch == 7) {
1119 res = ((validate_lparen(CHILD(tree, 2)) &&
1120 validate_testlist(CHILD(tree, 3)) &&
1121 validate_rparen(CHILD(tree, 4))));
1122 }
1123 else if (nch == 6) {
1124 res = (validate_lparen(CHILD(tree,2)) &&
1125 validate_rparen(CHILD(tree,3)));
1126 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001127 }
1128 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001129}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001130
1131
Guido van Rossum3d602e31996-07-21 02:33:56 +00001132/* if_stmt:
Fred Drakeff9ea482000-04-19 13:54:15 +00001133 * 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
Guido van Rossum3d602e31996-07-21 02:33:56 +00001134 */
Guido van Rossum47478871996-08-21 14:32:37 +00001135static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001136validate_if(node *tree)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001137{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001138 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001139 int res = (validate_ntype(tree, if_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001140 && (nch >= 4)
1141 && validate_name(CHILD(tree, 0), "if")
1142 && validate_test(CHILD(tree, 1))
1143 && validate_colon(CHILD(tree, 2))
1144 && validate_suite(CHILD(tree, 3)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001145
1146 if (res && ((nch % 4) == 3)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001147 /* ... 'else' ':' suite */
1148 res = (validate_name(CHILD(tree, nch - 3), "else")
1149 && validate_colon(CHILD(tree, nch - 2))
1150 && validate_suite(CHILD(tree, nch - 1)));
1151 nch -= 3;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001152 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001153 else if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +00001154 (void) validate_numnodes(tree, 4, "if");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001155 if ((nch % 4) != 0)
Fred Drakeff9ea482000-04-19 13:54:15 +00001156 /* Will catch the case for nch < 4 */
1157 res = validate_numnodes(tree, 0, "if");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001158 else if (res && (nch > 4)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001159 /* ... ('elif' test ':' suite)+ ... */
1160 int j = 4;
1161 while ((j < nch) && res) {
1162 res = (validate_name(CHILD(tree, j), "elif")
1163 && validate_colon(CHILD(tree, j + 2))
1164 && validate_test(CHILD(tree, j + 1))
1165 && validate_suite(CHILD(tree, j + 3)));
1166 j += 4;
1167 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001168 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001169 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001170}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001171
1172
Guido van Rossum3d602e31996-07-21 02:33:56 +00001173/* parameters:
Fred Drakeff9ea482000-04-19 13:54:15 +00001174 * '(' [varargslist] ')'
Guido van Rossum3d602e31996-07-21 02:33:56 +00001175 *
1176 */
Guido van Rossum47478871996-08-21 14:32:37 +00001177static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001178validate_parameters(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001179{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001180 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001181 int res = validate_ntype(tree, parameters) && ((nch == 2) || (nch == 3));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001182
Guido van Rossum3d602e31996-07-21 02:33:56 +00001183 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001184 res = (validate_lparen(CHILD(tree, 0))
1185 && validate_rparen(CHILD(tree, nch - 1)));
1186 if (res && (nch == 3))
1187 res = validate_varargslist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001188 }
Fred Drakeff9ea482000-04-19 13:54:15 +00001189 else {
1190 (void) validate_numnodes(tree, 2, "parameters");
1191 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001192 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001193}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001194
1195
Fred Drakecff283c2000-08-21 22:24:43 +00001196/* validate_suite()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001197 *
1198 * suite:
Fred Drakeff9ea482000-04-19 13:54:15 +00001199 * simple_stmt
Guido van Rossum3d602e31996-07-21 02:33:56 +00001200 * | NEWLINE INDENT stmt+ DEDENT
1201 */
Guido van Rossum47478871996-08-21 14:32:37 +00001202static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001203validate_suite(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001204{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001205 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001206 int res = (validate_ntype(tree, suite) && ((nch == 1) || (nch >= 4)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001207
Guido van Rossum3d602e31996-07-21 02:33:56 +00001208 if (res && (nch == 1))
Fred Drakeff9ea482000-04-19 13:54:15 +00001209 res = validate_simple_stmt(CHILD(tree, 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001210 else if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001211 /* NEWLINE INDENT stmt+ DEDENT */
1212 res = (validate_newline(CHILD(tree, 0))
1213 && validate_indent(CHILD(tree, 1))
1214 && validate_stmt(CHILD(tree, 2))
1215 && validate_dedent(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001216
Fred Drakeff9ea482000-04-19 13:54:15 +00001217 if (res && (nch > 4)) {
1218 int i = 3;
1219 --nch; /* forget the DEDENT */
1220 for ( ; res && (i < nch); ++i)
1221 res = validate_stmt(CHILD(tree, i));
1222 }
1223 else if (nch < 4)
1224 res = validate_numnodes(tree, 4, "suite");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001225 }
1226 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001227}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001228
1229
Guido van Rossum47478871996-08-21 14:32:37 +00001230static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001231validate_testlist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001232{
Guido van Rossum47478871996-08-21 14:32:37 +00001233 return (validate_repeating_list(tree, testlist,
Fred Drakeff9ea482000-04-19 13:54:15 +00001234 validate_test, "testlist"));
1235}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001236
1237
Guido van Rossum1c917072001-10-15 15:44:05 +00001238static int
Guido van Rossum2d3b9862002-05-24 15:47:06 +00001239validate_testlist1(node *tree)
1240{
1241 return (validate_repeating_list(tree, testlist1,
1242 validate_test, "testlist1"));
1243}
1244
1245
1246static int
Guido van Rossum1c917072001-10-15 15:44:05 +00001247validate_testlist_safe(node *tree)
1248{
1249 return (validate_repeating_list(tree, testlist_safe,
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00001250 validate_old_test, "testlist_safe"));
Guido van Rossum1c917072001-10-15 15:44:05 +00001251}
1252
1253
Fred Drakecff283c2000-08-21 22:24:43 +00001254/* '*' NAME [',' '**' NAME] | '**' NAME
1255 */
1256static int
1257validate_varargslist_trailer(node *tree, int start)
1258{
1259 int nch = NCH(tree);
1260 int res = 0;
1261 int sym;
1262
1263 if (nch <= start) {
1264 err_string("expected variable argument trailer for varargslist");
1265 return 0;
1266 }
1267 sym = TYPE(CHILD(tree, start));
1268 if (sym == STAR) {
1269 /*
1270 * ('*' NAME [',' '**' NAME]
1271 */
1272 if (nch-start == 2)
1273 res = validate_name(CHILD(tree, start+1), NULL);
1274 else if (nch-start == 5)
1275 res = (validate_name(CHILD(tree, start+1), NULL)
1276 && validate_comma(CHILD(tree, start+2))
1277 && validate_doublestar(CHILD(tree, start+3))
1278 && validate_name(CHILD(tree, start+4), NULL));
1279 }
1280 else if (sym == DOUBLESTAR) {
1281 /*
1282 * '**' NAME
1283 */
1284 if (nch-start == 2)
1285 res = validate_name(CHILD(tree, start+1), NULL);
1286 }
1287 if (!res)
1288 err_string("illegal variable argument trailer for varargslist");
1289 return res;
1290}
1291
1292
1293/* validate_varargslist()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001294 *
1295 * varargslist:
Guido van Rossum3d602e31996-07-21 02:33:56 +00001296 * (fpdef ['=' test] ',')*
Fred Drakecff283c2000-08-21 22:24:43 +00001297 * ('*' NAME [',' '**' NAME]
1298 * | '**' NAME)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001299 * | fpdef ['=' test] (',' fpdef ['=' test])* [',']
1300 *
1301 */
Guido van Rossum47478871996-08-21 14:32:37 +00001302static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001303validate_varargslist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001304{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001305 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001306 int res = validate_ntype(tree, varargslist) && (nch != 0);
Fred Drakecff283c2000-08-21 22:24:43 +00001307 int sym;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001308
Fred Drakeb6429a22000-12-11 22:08:27 +00001309 if (!res)
1310 return 0;
Fred Drakecff283c2000-08-21 22:24:43 +00001311 if (nch < 1) {
1312 err_string("varargslist missing child nodes");
1313 return 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001314 }
Fred Drakecff283c2000-08-21 22:24:43 +00001315 sym = TYPE(CHILD(tree, 0));
1316 if (sym == STAR || sym == DOUBLESTAR)
Fred Drakeb6429a22000-12-11 22:08:27 +00001317 /* whole thing matches:
1318 * '*' NAME [',' '**' NAME] | '**' NAME
1319 */
Fred Drakecff283c2000-08-21 22:24:43 +00001320 res = validate_varargslist_trailer(tree, 0);
1321 else if (sym == fpdef) {
1322 int i = 0;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001323
Fred Drakecff283c2000-08-21 22:24:43 +00001324 sym = TYPE(CHILD(tree, nch-1));
1325 if (sym == NAME) {
1326 /*
1327 * (fpdef ['=' test] ',')+
1328 * ('*' NAME [',' '**' NAME]
1329 * | '**' NAME)
1330 */
1331 /* skip over (fpdef ['=' test] ',')+ */
1332 while (res && (i+2 <= nch)) {
1333 res = validate_fpdef(CHILD(tree, i));
1334 ++i;
1335 if (res && TYPE(CHILD(tree, i)) == EQUAL && (i+2 <= nch)) {
1336 res = (validate_equal(CHILD(tree, i))
1337 && validate_test(CHILD(tree, i+1)));
1338 if (res)
1339 i += 2;
Fred Drakeff9ea482000-04-19 13:54:15 +00001340 }
Fred Drakecff283c2000-08-21 22:24:43 +00001341 if (res && i < nch) {
1342 res = validate_comma(CHILD(tree, i));
Fred Drakeb6429a22000-12-11 22:08:27 +00001343 ++i;
1344 if (res && i < nch
1345 && (TYPE(CHILD(tree, i)) == DOUBLESTAR
1346 || TYPE(CHILD(tree, i)) == STAR))
1347 break;
Fred Drakecff283c2000-08-21 22:24:43 +00001348 }
1349 }
Fred Drakeb6429a22000-12-11 22:08:27 +00001350 /* ... '*' NAME [',' '**' NAME] | '**' NAME
1351 * i --^^^
1352 */
Fred Drakecff283c2000-08-21 22:24:43 +00001353 if (res)
1354 res = validate_varargslist_trailer(tree, i);
1355 }
1356 else {
1357 /*
1358 * fpdef ['=' test] (',' fpdef ['=' test])* [',']
1359 */
Fred Drakeb6429a22000-12-11 22:08:27 +00001360 /* strip trailing comma node */
Fred Drakecff283c2000-08-21 22:24:43 +00001361 if (sym == COMMA) {
1362 res = validate_comma(CHILD(tree, nch-1));
1363 if (!res)
1364 return 0;
1365 --nch;
1366 }
1367 /*
1368 * fpdef ['=' test] (',' fpdef ['=' test])*
1369 */
1370 res = validate_fpdef(CHILD(tree, 0));
1371 ++i;
Fred Drakeb6429a22000-12-11 22:08:27 +00001372 if (res && (i+2 <= nch) && TYPE(CHILD(tree, i)) == EQUAL) {
1373 res = (validate_equal(CHILD(tree, i))
1374 && validate_test(CHILD(tree, i+1)));
Fred Drakecff283c2000-08-21 22:24:43 +00001375 i += 2;
1376 }
1377 /*
1378 * ... (',' fpdef ['=' test])*
1379 * i ---^^^
1380 */
1381 while (res && (nch - i) >= 2) {
1382 res = (validate_comma(CHILD(tree, i))
1383 && validate_fpdef(CHILD(tree, i+1)));
1384 i += 2;
Fred Drakeb6429a22000-12-11 22:08:27 +00001385 if (res && (nch - i) >= 2 && TYPE(CHILD(tree, i)) == EQUAL) {
1386 res = (validate_equal(CHILD(tree, i))
Fred Drakecff283c2000-08-21 22:24:43 +00001387 && validate_test(CHILD(tree, i+1)));
Fred Drakeb6429a22000-12-11 22:08:27 +00001388 i += 2;
Fred Drakecff283c2000-08-21 22:24:43 +00001389 }
1390 }
1391 if (res && nch - i != 0) {
1392 res = 0;
1393 err_string("illegal formation for varargslist");
Fred Drakeff9ea482000-04-19 13:54:15 +00001394 }
1395 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001396 }
Fred Drakecff283c2000-08-21 22:24:43 +00001397 return res;
Fred Drakeff9ea482000-04-19 13:54:15 +00001398}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001399
1400
Fred Drakecff283c2000-08-21 22:24:43 +00001401/* list_iter: list_for | list_if
1402 */
1403static int
1404validate_list_iter(node *tree)
1405{
1406 int res = (validate_ntype(tree, list_iter)
1407 && validate_numnodes(tree, 1, "list_iter"));
1408 if (res && TYPE(CHILD(tree, 0)) == list_for)
1409 res = validate_list_for(CHILD(tree, 0));
1410 else
1411 res = validate_list_if(CHILD(tree, 0));
1412
1413 return res;
1414}
1415
Alexandre Vassalottib6465472010-01-11 22:36:12 +00001416/* comp_iter: comp_for | comp_if
Raymond Hettinger354433a2004-05-19 08:20:33 +00001417 */
1418static int
Alexandre Vassalottib6465472010-01-11 22:36:12 +00001419validate_comp_iter(node *tree)
Raymond Hettinger354433a2004-05-19 08:20:33 +00001420{
Alexandre Vassalottib6465472010-01-11 22:36:12 +00001421 int res = (validate_ntype(tree, comp_iter)
1422 && validate_numnodes(tree, 1, "comp_iter"));
1423 if (res && TYPE(CHILD(tree, 0)) == comp_for)
1424 res = validate_comp_for(CHILD(tree, 0));
Raymond Hettinger354433a2004-05-19 08:20:33 +00001425 else
Alexandre Vassalottib6465472010-01-11 22:36:12 +00001426 res = validate_comp_if(CHILD(tree, 0));
Raymond Hettinger354433a2004-05-19 08:20:33 +00001427
1428 return res;
1429}
1430
Fred Drakecff283c2000-08-21 22:24:43 +00001431/* list_for: 'for' exprlist 'in' testlist [list_iter]
1432 */
1433static int
1434validate_list_for(node *tree)
1435{
1436 int nch = NCH(tree);
1437 int res;
1438
1439 if (nch == 5)
1440 res = validate_list_iter(CHILD(tree, 4));
1441 else
1442 res = validate_numnodes(tree, 4, "list_for");
1443
1444 if (res)
1445 res = (validate_name(CHILD(tree, 0), "for")
1446 && validate_exprlist(CHILD(tree, 1))
1447 && validate_name(CHILD(tree, 2), "in")
Guido van Rossum1c917072001-10-15 15:44:05 +00001448 && validate_testlist_safe(CHILD(tree, 3)));
Fred Drakecff283c2000-08-21 22:24:43 +00001449
1450 return res;
1451}
1452
Alexandre Vassalottib6465472010-01-11 22:36:12 +00001453/* comp_for: 'for' exprlist 'in' test [comp_iter]
Raymond Hettinger354433a2004-05-19 08:20:33 +00001454 */
1455static int
Alexandre Vassalottib6465472010-01-11 22:36:12 +00001456validate_comp_for(node *tree)
Raymond Hettinger354433a2004-05-19 08:20:33 +00001457{
1458 int nch = NCH(tree);
1459 int res;
1460
1461 if (nch == 5)
Alexandre Vassalottib6465472010-01-11 22:36:12 +00001462 res = validate_comp_iter(CHILD(tree, 4));
Raymond Hettinger354433a2004-05-19 08:20:33 +00001463 else
Alexandre Vassalottib6465472010-01-11 22:36:12 +00001464 res = validate_numnodes(tree, 4, "comp_for");
Raymond Hettinger354433a2004-05-19 08:20:33 +00001465
1466 if (res)
1467 res = (validate_name(CHILD(tree, 0), "for")
1468 && validate_exprlist(CHILD(tree, 1))
1469 && validate_name(CHILD(tree, 2), "in")
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00001470 && validate_or_test(CHILD(tree, 3)));
Raymond Hettinger354433a2004-05-19 08:20:33 +00001471
1472 return res;
1473}
1474
Neal Norwitz4b194fa2006-04-12 05:24:39 +00001475/* list_if: 'if' old_test [list_iter]
Fred Drakecff283c2000-08-21 22:24:43 +00001476 */
1477static int
1478validate_list_if(node *tree)
1479{
1480 int nch = NCH(tree);
1481 int res;
1482
1483 if (nch == 3)
1484 res = validate_list_iter(CHILD(tree, 2));
1485 else
1486 res = validate_numnodes(tree, 2, "list_if");
1487
1488 if (res)
1489 res = (validate_name(CHILD(tree, 0), "if")
Neal Norwitz4b194fa2006-04-12 05:24:39 +00001490 && validate_old_test(CHILD(tree, 1)));
Fred Drakecff283c2000-08-21 22:24:43 +00001491
1492 return res;
1493}
1494
Alexandre Vassalottib6465472010-01-11 22:36:12 +00001495/* comp_if: 'if' old_test [comp_iter]
Raymond Hettinger354433a2004-05-19 08:20:33 +00001496 */
1497static int
Alexandre Vassalottib6465472010-01-11 22:36:12 +00001498validate_comp_if(node *tree)
Raymond Hettinger354433a2004-05-19 08:20:33 +00001499{
1500 int nch = NCH(tree);
1501 int res;
1502
1503 if (nch == 3)
Alexandre Vassalottib6465472010-01-11 22:36:12 +00001504 res = validate_comp_iter(CHILD(tree, 2));
Raymond Hettinger354433a2004-05-19 08:20:33 +00001505 else
Alexandre Vassalottib6465472010-01-11 22:36:12 +00001506 res = validate_numnodes(tree, 2, "comp_if");
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001507
Raymond Hettinger354433a2004-05-19 08:20:33 +00001508 if (res)
1509 res = (validate_name(CHILD(tree, 0), "if")
Neal Norwitz4b194fa2006-04-12 05:24:39 +00001510 && validate_old_test(CHILD(tree, 1)));
Raymond Hettinger354433a2004-05-19 08:20:33 +00001511
1512 return res;
1513}
Fred Drakecff283c2000-08-21 22:24:43 +00001514
1515/* validate_fpdef()
Guido van Rossum3d602e31996-07-21 02:33:56 +00001516 *
1517 * fpdef:
Fred Drakeff9ea482000-04-19 13:54:15 +00001518 * NAME
Guido van Rossum3d602e31996-07-21 02:33:56 +00001519 * | '(' fplist ')'
1520 */
Guido van Rossum47478871996-08-21 14:32:37 +00001521static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001522validate_fpdef(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001523{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001524 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001525 int res = validate_ntype(tree, fpdef);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001526
Guido van Rossum3d602e31996-07-21 02:33:56 +00001527 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001528 if (nch == 1)
1529 res = validate_ntype(CHILD(tree, 0), NAME);
1530 else if (nch == 3)
1531 res = (validate_lparen(CHILD(tree, 0))
1532 && validate_fplist(CHILD(tree, 1))
1533 && validate_rparen(CHILD(tree, 2)));
1534 else
1535 res = validate_numnodes(tree, 1, "fpdef");
Guido van Rossum3d602e31996-07-21 02:33:56 +00001536 }
1537 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001538}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001539
1540
Guido van Rossum47478871996-08-21 14:32:37 +00001541static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001542validate_fplist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001543{
Guido van Rossum47478871996-08-21 14:32:37 +00001544 return (validate_repeating_list(tree, fplist,
Fred Drakeff9ea482000-04-19 13:54:15 +00001545 validate_fpdef, "fplist"));
1546}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001547
1548
Guido van Rossum3d602e31996-07-21 02:33:56 +00001549/* simple_stmt | compound_stmt
1550 *
1551 */
Guido van Rossum47478871996-08-21 14:32:37 +00001552static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001553validate_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001554{
1555 int res = (validate_ntype(tree, stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001556 && validate_numnodes(tree, 1, "stmt"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001557
Guido van Rossum3d602e31996-07-21 02:33:56 +00001558 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001559 tree = CHILD(tree, 0);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001560
Fred Drakeff9ea482000-04-19 13:54:15 +00001561 if (TYPE(tree) == simple_stmt)
1562 res = validate_simple_stmt(tree);
1563 else
1564 res = validate_compound_stmt(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001565 }
1566 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001567}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001568
1569
Guido van Rossum3d602e31996-07-21 02:33:56 +00001570/* small_stmt (';' small_stmt)* [';'] NEWLINE
1571 *
1572 */
Guido van Rossum47478871996-08-21 14:32:37 +00001573static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001574validate_simple_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001575{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001576 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001577 int res = (validate_ntype(tree, simple_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001578 && (nch >= 2)
1579 && validate_small_stmt(CHILD(tree, 0))
1580 && validate_newline(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001581
Guido van Rossum3d602e31996-07-21 02:33:56 +00001582 if (nch < 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00001583 res = validate_numnodes(tree, 2, "simple_stmt");
1584 --nch; /* forget the NEWLINE */
Guido van Rossum3d602e31996-07-21 02:33:56 +00001585 if (res && is_even(nch))
Fred Drakeff9ea482000-04-19 13:54:15 +00001586 res = validate_semi(CHILD(tree, --nch));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001587 if (res && (nch > 2)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001588 int i;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001589
Fred Drakeff9ea482000-04-19 13:54:15 +00001590 for (i = 1; res && (i < nch); i += 2)
1591 res = (validate_semi(CHILD(tree, i))
1592 && validate_small_stmt(CHILD(tree, i + 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001593 }
1594 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001595}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001596
1597
Guido van Rossum47478871996-08-21 14:32:37 +00001598static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001599validate_small_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001600{
1601 int nch = NCH(tree);
Fred Drake0ac9b072000-09-12 21:58:06 +00001602 int res = validate_numnodes(tree, 1, "small_stmt");
Guido van Rossum3d602e31996-07-21 02:33:56 +00001603
Fred Drake0ac9b072000-09-12 21:58:06 +00001604 if (res) {
1605 int ntype = TYPE(CHILD(tree, 0));
1606
1607 if ( (ntype == expr_stmt)
1608 || (ntype == print_stmt)
1609 || (ntype == del_stmt)
1610 || (ntype == pass_stmt)
1611 || (ntype == flow_stmt)
1612 || (ntype == import_stmt)
1613 || (ntype == global_stmt)
1614 || (ntype == assert_stmt)
1615 || (ntype == exec_stmt))
1616 res = validate_node(CHILD(tree, 0));
1617 else {
1618 res = 0;
1619 err_string("illegal small_stmt child type");
1620 }
1621 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001622 else if (nch == 1) {
Fred Drake0ac9b072000-09-12 21:58:06 +00001623 res = 0;
1624 PyErr_Format(parser_error,
1625 "Unrecognized child node of small_stmt: %d.",
1626 TYPE(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001627 }
1628 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001629}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001630
1631
1632/* compound_stmt:
Benjamin Peterson9dfe6a82008-11-24 04:09:03 +00001633 * if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decorated
Guido van Rossum3d602e31996-07-21 02:33:56 +00001634 */
Guido van Rossum47478871996-08-21 14:32:37 +00001635static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001636validate_compound_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001637{
1638 int res = (validate_ntype(tree, compound_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001639 && validate_numnodes(tree, 1, "compound_stmt"));
Fred Drake0ac9b072000-09-12 21:58:06 +00001640 int ntype;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001641
1642 if (!res)
Fred Drakeff9ea482000-04-19 13:54:15 +00001643 return (0);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001644
1645 tree = CHILD(tree, 0);
Fred Drake0ac9b072000-09-12 21:58:06 +00001646 ntype = TYPE(tree);
1647 if ( (ntype == if_stmt)
1648 || (ntype == while_stmt)
1649 || (ntype == for_stmt)
1650 || (ntype == try_stmt)
Benjamin Peterson9dfe6a82008-11-24 04:09:03 +00001651 || (ntype == with_stmt)
Fred Drake0ac9b072000-09-12 21:58:06 +00001652 || (ntype == funcdef)
Christian Heimes5224d282008-02-23 15:01:05 +00001653 || (ntype == classdef)
1654 || (ntype == decorated))
Fred Drakeff9ea482000-04-19 13:54:15 +00001655 res = validate_node(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001656 else {
Fred Drake0ac9b072000-09-12 21:58:06 +00001657 res = 0;
1658 PyErr_Format(parser_error,
1659 "Illegal compound statement type: %d.", TYPE(tree));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001660 }
1661 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001662}
Guido van Rossum3d602e31996-07-21 02:33:56 +00001663
Guido van Rossum47478871996-08-21 14:32:37 +00001664static int
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001665validate_yield_or_testlist(node *tree)
1666{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001667 if (TYPE(tree) == yield_expr)
1668 return validate_yield_expr(tree);
1669 else
1670 return validate_testlist(tree);
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001671}
1672
1673static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001674validate_expr_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001675{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001676 int j;
1677 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001678 int res = (validate_ntype(tree, expr_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001679 && is_odd(nch)
1680 && validate_testlist(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001681
Fred Drake28f739a2000-08-25 22:42:40 +00001682 if (res && nch == 3
1683 && TYPE(CHILD(tree, 1)) == augassign) {
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001684 res = validate_numnodes(CHILD(tree, 1), 1, "augassign")
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001685 && validate_yield_or_testlist(CHILD(tree, 2));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001686
Fred Drake28f739a2000-08-25 22:42:40 +00001687 if (res) {
1688 char *s = STR(CHILD(CHILD(tree, 1), 0));
1689
1690 res = (strcmp(s, "+=") == 0
1691 || strcmp(s, "-=") == 0
1692 || strcmp(s, "*=") == 0
1693 || strcmp(s, "/=") == 0
Michael W. Hudson5e83b7a2003-01-29 14:20:23 +00001694 || strcmp(s, "//=") == 0
Fred Drake28f739a2000-08-25 22:42:40 +00001695 || strcmp(s, "%=") == 0
1696 || strcmp(s, "&=") == 0
1697 || strcmp(s, "|=") == 0
1698 || strcmp(s, "^=") == 0
1699 || strcmp(s, "<<=") == 0
1700 || strcmp(s, ">>=") == 0
1701 || strcmp(s, "**=") == 0);
1702 if (!res)
Ezio Melotti24b07bc2011-03-15 18:55:01 +02001703 err_string("illegal augmented assignment operator");
Fred Drake28f739a2000-08-25 22:42:40 +00001704 }
1705 }
1706 else {
1707 for (j = 1; res && (j < nch); j += 2)
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001708 res = validate_equal(CHILD(tree, j))
1709 && validate_yield_or_testlist(CHILD(tree, j + 1));
Fred Drake28f739a2000-08-25 22:42:40 +00001710 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001711 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001712}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001713
1714
Guido van Rossum3d602e31996-07-21 02:33:56 +00001715/* print_stmt:
1716 *
Fred Drakecff283c2000-08-21 22:24:43 +00001717 * 'print' ( [ test (',' test)* [','] ]
1718 * | '>>' test [ (',' test)+ [','] ] )
Guido van Rossum3d602e31996-07-21 02:33:56 +00001719 */
Guido van Rossum47478871996-08-21 14:32:37 +00001720static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001721validate_print_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001722{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001723 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001724 int res = (validate_ntype(tree, print_stmt)
Fred Drakecff283c2000-08-21 22:24:43 +00001725 && (nch > 0)
Fred Drakeff9ea482000-04-19 13:54:15 +00001726 && validate_name(CHILD(tree, 0), "print"));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001727
Fred Drakecff283c2000-08-21 22:24:43 +00001728 if (res && nch > 1) {
1729 int sym = TYPE(CHILD(tree, 1));
1730 int i = 1;
1731 int allow_trailing_comma = 1;
Guido van Rossum3d602e31996-07-21 02:33:56 +00001732
Fred Drakecff283c2000-08-21 22:24:43 +00001733 if (sym == test)
1734 res = validate_test(CHILD(tree, i++));
1735 else {
1736 if (nch < 3)
1737 res = validate_numnodes(tree, 3, "print_stmt");
1738 else {
1739 res = (validate_ntype(CHILD(tree, i), RIGHTSHIFT)
1740 && validate_test(CHILD(tree, i+1)));
1741 i += 2;
1742 allow_trailing_comma = 0;
1743 }
1744 }
1745 if (res) {
1746 /* ... (',' test)* [','] */
1747 while (res && i+2 <= nch) {
1748 res = (validate_comma(CHILD(tree, i))
1749 && validate_test(CHILD(tree, i+1)));
1750 allow_trailing_comma = 1;
1751 i += 2;
1752 }
1753 if (res && !allow_trailing_comma)
1754 res = validate_numnodes(tree, i, "print_stmt");
1755 else if (res && i < nch)
1756 res = validate_comma(CHILD(tree, i));
1757 }
1758 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001759 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001760}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001761
1762
Guido van Rossum47478871996-08-21 14:32:37 +00001763static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001764validate_del_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001765{
1766 return (validate_numnodes(tree, 2, "del_stmt")
Fred Drakeff9ea482000-04-19 13:54:15 +00001767 && validate_name(CHILD(tree, 0), "del")
1768 && validate_exprlist(CHILD(tree, 1)));
1769}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001770
1771
Guido van Rossum47478871996-08-21 14:32:37 +00001772static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001773validate_return_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001774{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001775 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001776 int res = (validate_ntype(tree, return_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001777 && ((nch == 1) || (nch == 2))
1778 && validate_name(CHILD(tree, 0), "return"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001779
Guido van Rossum3d602e31996-07-21 02:33:56 +00001780 if (res && (nch == 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00001781 res = validate_testlist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001782
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001783 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001784}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001785
1786
Guido van Rossum47478871996-08-21 14:32:37 +00001787static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001788validate_raise_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001789{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001790 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001791 int res = (validate_ntype(tree, raise_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00001792 && ((nch == 1) || (nch == 2) || (nch == 4) || (nch == 6)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001793
Guido van Rossum3d602e31996-07-21 02:33:56 +00001794 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001795 res = validate_name(CHILD(tree, 0), "raise");
1796 if (res && (nch >= 2))
1797 res = validate_test(CHILD(tree, 1));
1798 if (res && nch > 2) {
1799 res = (validate_comma(CHILD(tree, 2))
1800 && validate_test(CHILD(tree, 3)));
1801 if (res && (nch > 4))
1802 res = (validate_comma(CHILD(tree, 4))
1803 && validate_test(CHILD(tree, 5)));
1804 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001805 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001806 else
Fred Drakeff9ea482000-04-19 13:54:15 +00001807 (void) validate_numnodes(tree, 2, "raise");
Guido van Rossum3d602e31996-07-21 02:33:56 +00001808 if (res && (nch == 4))
Fred Drakeff9ea482000-04-19 13:54:15 +00001809 res = (validate_comma(CHILD(tree, 2))
1810 && validate_test(CHILD(tree, 3)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00001811
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001812 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001813}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001814
1815
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001816/* yield_expr: 'yield' [testlist]
1817 */
1818static int
1819validate_yield_expr(node *tree)
1820{
1821 int nch = NCH(tree);
1822 int res = (validate_ntype(tree, yield_expr)
1823 && ((nch == 1) || (nch == 2))
1824 && validate_name(CHILD(tree, 0), "yield"));
1825
1826 if (res && (nch == 2))
1827 res = validate_testlist(CHILD(tree, 1));
1828
1829 return (res);
1830}
1831
1832
1833/* yield_stmt: yield_expr
Fred Drake02126f22001-07-17 02:59:15 +00001834 */
1835static int
1836validate_yield_stmt(node *tree)
1837{
1838 return (validate_ntype(tree, yield_stmt)
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00001839 && validate_numnodes(tree, 1, "yield_stmt")
1840 && validate_yield_expr(CHILD(tree, 0)));
Fred Drake02126f22001-07-17 02:59:15 +00001841}
1842
1843
Fred Drakecff283c2000-08-21 22:24:43 +00001844static int
1845validate_import_as_name(node *tree)
1846{
1847 int nch = NCH(tree);
1848 int ok = validate_ntype(tree, import_as_name);
1849
1850 if (ok) {
1851 if (nch == 1)
1852 ok = validate_name(CHILD(tree, 0), NULL);
1853 else if (nch == 3)
1854 ok = (validate_name(CHILD(tree, 0), NULL)
1855 && validate_name(CHILD(tree, 1), "as")
1856 && validate_name(CHILD(tree, 2), NULL));
1857 else
1858 ok = validate_numnodes(tree, 3, "import_as_name");
1859 }
1860 return ok;
1861}
1862
1863
Fred Drake71137082001-01-07 05:59:59 +00001864/* dotted_name: NAME ("." NAME)*
1865 */
1866static int
1867validate_dotted_name(node *tree)
1868{
1869 int nch = NCH(tree);
1870 int res = (validate_ntype(tree, dotted_name)
1871 && is_odd(nch)
1872 && validate_name(CHILD(tree, 0), NULL));
1873 int i;
1874
1875 for (i = 1; res && (i < nch); i += 2) {
1876 res = (validate_dot(CHILD(tree, i))
1877 && validate_name(CHILD(tree, i+1), NULL));
1878 }
1879 return res;
1880}
1881
1882
Fred Drakecff283c2000-08-21 22:24:43 +00001883/* dotted_as_name: dotted_name [NAME NAME]
1884 */
1885static int
1886validate_dotted_as_name(node *tree)
1887{
1888 int nch = NCH(tree);
1889 int res = validate_ntype(tree, dotted_as_name);
1890
1891 if (res) {
1892 if (nch == 1)
Fred Drake71137082001-01-07 05:59:59 +00001893 res = validate_dotted_name(CHILD(tree, 0));
Fred Drakecff283c2000-08-21 22:24:43 +00001894 else if (nch == 3)
Fred Drake71137082001-01-07 05:59:59 +00001895 res = (validate_dotted_name(CHILD(tree, 0))
Fred Drakecff283c2000-08-21 22:24:43 +00001896 && validate_name(CHILD(tree, 1), "as")
1897 && validate_name(CHILD(tree, 2), NULL));
1898 else {
1899 res = 0;
Fred Drake661ea262000-10-24 19:57:45 +00001900 err_string("illegal number of children for dotted_as_name");
Fred Drakecff283c2000-08-21 22:24:43 +00001901 }
1902 }
1903 return res;
1904}
1905
1906
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001907/* dotted_as_name (',' dotted_as_name)* */
1908static int
1909validate_dotted_as_names(node *tree)
1910{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001911 int nch = NCH(tree);
1912 int res = is_odd(nch) && validate_dotted_as_name(CHILD(tree, 0));
1913 int i;
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001914
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001915 for (i = 1; res && (i < nch); i += 2)
1916 res = (validate_comma(CHILD(tree, i))
1917 && validate_dotted_as_name(CHILD(tree, i + 1)));
1918 return (res);
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001919}
1920
1921
1922/* import_as_name (',' import_as_name)* [','] */
1923static int
1924validate_import_as_names(node *tree)
1925{
1926 int nch = NCH(tree);
1927 int res = validate_import_as_name(CHILD(tree, 0));
1928 int i;
1929
1930 for (i = 1; res && (i + 1 < nch); i += 2)
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001931 res = (validate_comma(CHILD(tree, i))
1932 && validate_import_as_name(CHILD(tree, i + 1)));
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001933 return (res);
1934}
1935
1936
1937/* 'import' dotted_as_names */
1938static int
1939validate_import_name(node *tree)
1940{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001941 return (validate_ntype(tree, import_name)
1942 && validate_numnodes(tree, 2, "import_name")
1943 && validate_name(CHILD(tree, 0), "import")
1944 && validate_dotted_as_names(CHILD(tree, 1)));
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001945}
1946
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001947/* Helper function to count the number of leading dots in
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001948 * 'from ...module import name'
1949 */
1950static int
1951count_from_dots(node *tree)
1952{
1953 int i;
Benjamin Peterson6624a9f2008-11-03 15:14:51 +00001954 for (i = 1; i < NCH(tree); i++)
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001955 if (TYPE(CHILD(tree, i)) != DOT)
1956 break;
Benjamin Peterson6624a9f2008-11-03 15:14:51 +00001957 return i-1;
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001958}
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001959
Mark Dickinson75b44b32010-07-04 16:47:56 +00001960/* import_from: ('from' ('.'* dotted_name | '.'+)
1961 * 'import' ('*' | '(' import_as_names ')' | import_as_names))
Guido van Rossum3d602e31996-07-21 02:33:56 +00001962 */
Guido van Rossum47478871996-08-21 14:32:37 +00001963static int
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001964validate_import_from(node *tree)
1965{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001966 int nch = NCH(tree);
1967 int ndots = count_from_dots(tree);
1968 int havename = (TYPE(CHILD(tree, ndots + 1)) == dotted_name);
1969 int offset = ndots + havename;
1970 int res = validate_ntype(tree, import_from)
Mark Dickinson75b44b32010-07-04 16:47:56 +00001971 && (offset >= 1)
1972 && (nch >= 3 + offset)
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001973 && validate_name(CHILD(tree, 0), "from")
1974 && (!havename || validate_dotted_name(CHILD(tree, ndots + 1)))
1975 && validate_name(CHILD(tree, offset + 1), "import");
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001976
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001977 if (res && TYPE(CHILD(tree, offset + 2)) == LPAR)
1978 res = ((nch == offset + 5)
1979 && validate_lparen(CHILD(tree, offset + 2))
1980 && validate_import_as_names(CHILD(tree, offset + 3))
1981 && validate_rparen(CHILD(tree, offset + 4)));
1982 else if (res && TYPE(CHILD(tree, offset + 2)) != STAR)
1983 res = validate_import_as_names(CHILD(tree, offset + 2));
1984 return (res);
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001985}
1986
1987
1988/* import_stmt: import_name | import_from */
1989static int
Fred Drakeff9ea482000-04-19 13:54:15 +00001990validate_import_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00001991{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001992 int nch = NCH(tree);
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001993 int res = validate_numnodes(tree, 1, "import_stmt");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001994
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001995 if (res) {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001996 int ntype = TYPE(CHILD(tree, 0));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001997
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001998 if (ntype == import_name || ntype == import_from)
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00001999 res = validate_node(CHILD(tree, 0));
Fred Drakeff9ea482000-04-19 13:54:15 +00002000 else {
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00002001 res = 0;
2002 err_string("illegal import_stmt child type");
Fred Drakeff9ea482000-04-19 13:54:15 +00002003 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002004 }
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00002005 else if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002006 res = 0;
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00002007 PyErr_Format(parser_error,
2008 "Unrecognized child node of import_stmt: %d.",
2009 TYPE(CHILD(tree, 0)));
2010 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002011 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002012}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002013
2014
Anthony Baxter1a4ddae2004-08-31 10:07:13 +00002015
2016
Guido van Rossum47478871996-08-21 14:32:37 +00002017static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002018validate_global_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002019{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002020 int j;
2021 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002022 int res = (validate_ntype(tree, global_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002023 && is_even(nch) && (nch >= 2));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002024
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00002025 if (!res && !PyErr_Occurred())
2026 err_string("illegal global statement");
2027
Guido van Rossum3d602e31996-07-21 02:33:56 +00002028 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002029 res = (validate_name(CHILD(tree, 0), "global")
2030 && validate_ntype(CHILD(tree, 1), NAME));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002031 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002032 res = (validate_comma(CHILD(tree, j))
2033 && validate_ntype(CHILD(tree, j + 1), NAME));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002034
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002035 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002036}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002037
2038
Guido van Rossum3d602e31996-07-21 02:33:56 +00002039/* exec_stmt:
2040 *
2041 * 'exec' expr ['in' test [',' test]]
2042 */
Guido van Rossum47478871996-08-21 14:32:37 +00002043static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002044validate_exec_stmt(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002045{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002046 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002047 int res = (validate_ntype(tree, exec_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002048 && ((nch == 2) || (nch == 4) || (nch == 6))
2049 && validate_name(CHILD(tree, 0), "exec")
2050 && validate_expr(CHILD(tree, 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002051
Guido van Rossum3d602e31996-07-21 02:33:56 +00002052 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00002053 err_string("illegal exec statement");
Guido van Rossum3d602e31996-07-21 02:33:56 +00002054 if (res && (nch > 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00002055 res = (validate_name(CHILD(tree, 2), "in")
2056 && validate_test(CHILD(tree, 3)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002057 if (res && (nch == 6))
Fred Drakeff9ea482000-04-19 13:54:15 +00002058 res = (validate_comma(CHILD(tree, 4))
2059 && validate_test(CHILD(tree, 5)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002060
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002061 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002062}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002063
2064
Guido van Rossum925e5471997-04-02 05:32:13 +00002065/* assert_stmt:
2066 *
2067 * 'assert' test [',' test]
2068 */
2069static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002070validate_assert_stmt(node *tree)
Guido van Rossum925e5471997-04-02 05:32:13 +00002071{
2072 int nch = NCH(tree);
2073 int res = (validate_ntype(tree, assert_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002074 && ((nch == 2) || (nch == 4))
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00002075 && (validate_name(CHILD(tree, 0), "assert"))
Fred Drakeff9ea482000-04-19 13:54:15 +00002076 && validate_test(CHILD(tree, 1)));
Guido van Rossum925e5471997-04-02 05:32:13 +00002077
2078 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00002079 err_string("illegal assert statement");
Guido van Rossum925e5471997-04-02 05:32:13 +00002080 if (res && (nch > 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00002081 res = (validate_comma(CHILD(tree, 2))
2082 && validate_test(CHILD(tree, 3)));
Guido van Rossum925e5471997-04-02 05:32:13 +00002083
2084 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002085}
Guido van Rossum925e5471997-04-02 05:32:13 +00002086
2087
Guido van Rossum47478871996-08-21 14:32:37 +00002088static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002089validate_while(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002090{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002091 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002092 int res = (validate_ntype(tree, while_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002093 && ((nch == 4) || (nch == 7))
2094 && validate_name(CHILD(tree, 0), "while")
2095 && validate_test(CHILD(tree, 1))
2096 && validate_colon(CHILD(tree, 2))
2097 && validate_suite(CHILD(tree, 3)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002098
Guido van Rossum3d602e31996-07-21 02:33:56 +00002099 if (res && (nch == 7))
Fred Drakeff9ea482000-04-19 13:54:15 +00002100 res = (validate_name(CHILD(tree, 4), "else")
2101 && validate_colon(CHILD(tree, 5))
2102 && validate_suite(CHILD(tree, 6)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002103
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002104 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002105}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002106
2107
Guido van Rossum47478871996-08-21 14:32:37 +00002108static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002109validate_for(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002110{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002111 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002112 int res = (validate_ntype(tree, for_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002113 && ((nch == 6) || (nch == 9))
2114 && validate_name(CHILD(tree, 0), "for")
2115 && validate_exprlist(CHILD(tree, 1))
2116 && validate_name(CHILD(tree, 2), "in")
2117 && validate_testlist(CHILD(tree, 3))
2118 && validate_colon(CHILD(tree, 4))
2119 && validate_suite(CHILD(tree, 5)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002120
Guido van Rossum3d602e31996-07-21 02:33:56 +00002121 if (res && (nch == 9))
Fred Drakeff9ea482000-04-19 13:54:15 +00002122 res = (validate_name(CHILD(tree, 6), "else")
2123 && validate_colon(CHILD(tree, 7))
2124 && validate_suite(CHILD(tree, 8)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002125
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002126 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002127}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002128
2129
Guido van Rossum3d602e31996-07-21 02:33:56 +00002130/* try_stmt:
Fred Drakeff9ea482000-04-19 13:54:15 +00002131 * 'try' ':' suite (except_clause ':' suite)+ ['else' ':' suite]
Georg Brandlfe879e82008-12-05 12:09:41 +00002132 ['finally' ':' suite]
Guido van Rossum3d602e31996-07-21 02:33:56 +00002133 * | 'try' ':' suite 'finally' ':' suite
2134 *
2135 */
Guido van Rossum47478871996-08-21 14:32:37 +00002136static int
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +00002137validate_try(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002138{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002139 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002140 int pos = 3;
2141 int res = (validate_ntype(tree, try_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00002142 && (nch >= 6) && ((nch % 3) == 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002143
2144 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00002145 res = (validate_name(CHILD(tree, 0), "try")
2146 && validate_colon(CHILD(tree, 1))
2147 && validate_suite(CHILD(tree, 2))
2148 && validate_colon(CHILD(tree, nch - 2))
2149 && validate_suite(CHILD(tree, nch - 1)));
Fred Drake0ac9b072000-09-12 21:58:06 +00002150 else if (!PyErr_Occurred()) {
Fred Drake22269b52000-07-03 18:07:43 +00002151 const char* name = "except";
Fred Drakeff9ea482000-04-19 13:54:15 +00002152 if (TYPE(CHILD(tree, nch - 3)) != except_clause)
2153 name = STR(CHILD(tree, nch - 3));
Fred Drake0ac9b072000-09-12 21:58:06 +00002154
2155 PyErr_Format(parser_error,
2156 "Illegal number of children for try/%s node.", name);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002157 }
Georg Brandlfe879e82008-12-05 12:09:41 +00002158 /* Handle try/finally statement */
2159 if (res && (TYPE(CHILD(tree, pos)) == NAME) &&
2160 (strcmp(STR(CHILD(tree, pos)), "finally") == 0)) {
2161 res = (validate_numnodes(tree, 6, "try/finally")
2162 && validate_colon(CHILD(tree, 4))
2163 && validate_suite(CHILD(tree, 5)));
2164 return (res);
2165 }
2166 /* try/except statement: skip past except_clause sections */
Antoine Pitrou42b5bcf2009-05-14 21:48:09 +00002167 while (res && pos < nch && (TYPE(CHILD(tree, pos)) == except_clause)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002168 res = (validate_except_clause(CHILD(tree, pos))
2169 && validate_colon(CHILD(tree, pos + 1))
2170 && validate_suite(CHILD(tree, pos + 2)));
2171 pos += 3;
Guido van Rossum3d602e31996-07-21 02:33:56 +00002172 }
Georg Brandlfe879e82008-12-05 12:09:41 +00002173 /* skip else clause */
Antoine Pitrou42b5bcf2009-05-14 21:48:09 +00002174 if (res && pos < nch && (TYPE(CHILD(tree, pos)) == NAME) &&
Georg Brandlfe879e82008-12-05 12:09:41 +00002175 (strcmp(STR(CHILD(tree, pos)), "else") == 0)) {
2176 res = (validate_colon(CHILD(tree, pos + 1))
2177 && validate_suite(CHILD(tree, pos + 2)));
2178 pos += 3;
2179 }
2180 if (res && pos < nch) {
2181 /* last clause must be a finally */
2182 res = (validate_name(CHILD(tree, pos), "finally")
2183 && validate_numnodes(tree, pos + 3, "try/except/finally")
2184 && validate_colon(CHILD(tree, pos + 1))
2185 && validate_suite(CHILD(tree, pos + 2)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002186 }
2187 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002188}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002189
2190
Guido van Rossum47478871996-08-21 14:32:37 +00002191static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002192validate_except_clause(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002193{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002194 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002195 int res = (validate_ntype(tree, except_clause)
Fred Drakeff9ea482000-04-19 13:54:15 +00002196 && ((nch == 1) || (nch == 2) || (nch == 4))
2197 && validate_name(CHILD(tree, 0), "except"));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002198
Guido van Rossum3d602e31996-07-21 02:33:56 +00002199 if (res && (nch > 1))
Fred Drakeff9ea482000-04-19 13:54:15 +00002200 res = validate_test(CHILD(tree, 1));
Mark Dickinson070f0ab2010-06-30 16:27:57 +00002201 if (res && (nch == 4)) {
2202 if (TYPE(CHILD(tree, 2)) == NAME)
2203 res = validate_name(CHILD(tree, 2), "as");
2204 else
2205 res = validate_comma(CHILD(tree, 2));
2206 res = res && validate_test(CHILD(tree, 3));
2207 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002208 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002209}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002210
2211
Guido van Rossum47478871996-08-21 14:32:37 +00002212static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002213validate_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002214{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002215 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002216 int res = validate_ntype(tree, test) && is_odd(nch);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002217
Guido van Rossum3d602e31996-07-21 02:33:56 +00002218 if (res && (TYPE(CHILD(tree, 0)) == lambdef))
Fred Drakeff9ea482000-04-19 13:54:15 +00002219 res = ((nch == 1)
2220 && validate_lambdef(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002221 else if (res) {
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002222 res = validate_or_test(CHILD(tree, 0));
2223 res = (res && (nch == 1 || (nch == 5 &&
2224 validate_name(CHILD(tree, 1), "if") &&
2225 validate_or_test(CHILD(tree, 2)) &&
2226 validate_name(CHILD(tree, 3), "else") &&
2227 validate_test(CHILD(tree, 4)))));
2228 }
2229 return (res);
2230}
2231
2232static int
2233validate_old_test(node *tree)
2234{
2235 int nch = NCH(tree);
2236 int res = validate_ntype(tree, old_test) && (nch == 1);
2237
2238 if (res && (TYPE(CHILD(tree, 0)) == old_lambdef))
2239 res = (validate_old_lambdef(CHILD(tree, 0)));
2240 else if (res) {
2241 res = (validate_or_test(CHILD(tree, 0)));
2242 }
2243 return (res);
2244}
2245
2246static int
2247validate_or_test(node *tree)
2248{
2249 int nch = NCH(tree);
2250 int res = validate_ntype(tree, or_test) && is_odd(nch);
2251
2252 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002253 int pos;
2254 res = validate_and_test(CHILD(tree, 0));
2255 for (pos = 1; res && (pos < nch); pos += 2)
2256 res = (validate_name(CHILD(tree, pos), "or")
2257 && validate_and_test(CHILD(tree, pos + 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002258 }
2259 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002260}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002261
2262
Guido van Rossum47478871996-08-21 14:32:37 +00002263static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002264validate_and_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002265{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002266 int pos;
2267 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002268 int res = (validate_ntype(tree, and_test)
Fred Drakeff9ea482000-04-19 13:54:15 +00002269 && is_odd(nch)
2270 && validate_not_test(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002271
Guido van Rossum3d602e31996-07-21 02:33:56 +00002272 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002273 res = (validate_name(CHILD(tree, pos), "and")
2274 && validate_not_test(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002275
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002276 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002277}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002278
2279
Guido van Rossum47478871996-08-21 14:32:37 +00002280static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002281validate_not_test(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002282{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002283 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002284 int res = validate_ntype(tree, not_test) && ((nch == 1) || (nch == 2));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002285
Guido van Rossum3d602e31996-07-21 02:33:56 +00002286 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002287 if (nch == 2)
2288 res = (validate_name(CHILD(tree, 0), "not")
2289 && validate_not_test(CHILD(tree, 1)));
2290 else if (nch == 1)
2291 res = validate_comparison(CHILD(tree, 0));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002292 }
2293 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002294}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002295
2296
Guido van Rossum47478871996-08-21 14:32:37 +00002297static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002298validate_comparison(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002299{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002300 int pos;
2301 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002302 int res = (validate_ntype(tree, comparison)
Fred Drakeff9ea482000-04-19 13:54:15 +00002303 && is_odd(nch)
2304 && validate_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002305
Guido van Rossum3d602e31996-07-21 02:33:56 +00002306 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002307 res = (validate_comp_op(CHILD(tree, pos))
2308 && validate_expr(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002309
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002310 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002311}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002312
2313
Guido van Rossum47478871996-08-21 14:32:37 +00002314static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002315validate_comp_op(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002316{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002317 int res = 0;
2318 int nch = NCH(tree);
2319
Guido van Rossum3d602e31996-07-21 02:33:56 +00002320 if (!validate_ntype(tree, comp_op))
Fred Drakeff9ea482000-04-19 13:54:15 +00002321 return (0);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002322 if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002323 /*
2324 * Only child will be a terminal with a well-defined symbolic name
2325 * or a NAME with a string of either 'is' or 'in'
2326 */
2327 tree = CHILD(tree, 0);
2328 switch (TYPE(tree)) {
2329 case LESS:
2330 case GREATER:
2331 case EQEQUAL:
2332 case EQUAL:
2333 case LESSEQUAL:
2334 case GREATEREQUAL:
2335 case NOTEQUAL:
2336 res = 1;
2337 break;
2338 case NAME:
2339 res = ((strcmp(STR(tree), "in") == 0)
2340 || (strcmp(STR(tree), "is") == 0));
2341 if (!res) {
Fred Drake0ac9b072000-09-12 21:58:06 +00002342 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +00002343 "illegal operator '%s'", STR(tree));
Fred Drakeff9ea482000-04-19 13:54:15 +00002344 }
2345 break;
2346 default:
Fred Drake661ea262000-10-24 19:57:45 +00002347 err_string("illegal comparison operator type");
Fred Drakeff9ea482000-04-19 13:54:15 +00002348 break;
2349 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002350 }
Guido van Rossuma376cc51996-12-05 23:43:35 +00002351 else if ((res = validate_numnodes(tree, 2, "comp_op")) != 0) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002352 res = (validate_ntype(CHILD(tree, 0), NAME)
2353 && validate_ntype(CHILD(tree, 1), NAME)
2354 && (((strcmp(STR(CHILD(tree, 0)), "is") == 0)
2355 && (strcmp(STR(CHILD(tree, 1)), "not") == 0))
2356 || ((strcmp(STR(CHILD(tree, 0)), "not") == 0)
2357 && (strcmp(STR(CHILD(tree, 1)), "in") == 0))));
2358 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00002359 err_string("unknown comparison operator");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002360 }
2361 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002362}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002363
2364
Guido van Rossum47478871996-08-21 14:32:37 +00002365static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002366validate_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002367{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002368 int j;
2369 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002370 int res = (validate_ntype(tree, expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002371 && is_odd(nch)
2372 && validate_xor_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002373
Guido van Rossum3d602e31996-07-21 02:33:56 +00002374 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002375 res = (validate_xor_expr(CHILD(tree, j))
2376 && validate_vbar(CHILD(tree, j - 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002377
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002378 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002379}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002380
2381
Guido van Rossum47478871996-08-21 14:32:37 +00002382static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002383validate_xor_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002384{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002385 int j;
2386 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002387 int res = (validate_ntype(tree, xor_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002388 && is_odd(nch)
2389 && validate_and_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002390
Guido van Rossum3d602e31996-07-21 02:33:56 +00002391 for (j = 2; res && (j < nch); j += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002392 res = (validate_circumflex(CHILD(tree, j - 1))
2393 && validate_and_expr(CHILD(tree, j)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002394
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002395 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002396}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002397
2398
Guido van Rossum47478871996-08-21 14:32:37 +00002399static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002400validate_and_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002401{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002402 int pos;
2403 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002404 int res = (validate_ntype(tree, and_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002405 && is_odd(nch)
2406 && validate_shift_expr(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002407
Guido van Rossum3d602e31996-07-21 02:33:56 +00002408 for (pos = 1; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002409 res = (validate_ampersand(CHILD(tree, pos))
2410 && validate_shift_expr(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002411
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002412 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002413}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002414
2415
2416static int
Peter Schneider-Kamp286da3b2000-07-10 12:43:58 +00002417validate_chain_two_ops(node *tree, int (*termvalid)(node *), int op1, int op2)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002418 {
2419 int pos = 1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002420 int nch = NCH(tree);
2421 int res = (is_odd(nch)
Fred Drakeff9ea482000-04-19 13:54:15 +00002422 && (*termvalid)(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002423
Guido van Rossum3d602e31996-07-21 02:33:56 +00002424 for ( ; res && (pos < nch); pos += 2) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002425 if (TYPE(CHILD(tree, pos)) != op1)
2426 res = validate_ntype(CHILD(tree, pos), op2);
2427 if (res)
2428 res = (*termvalid)(CHILD(tree, pos + 1));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002429 }
2430 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002431}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002432
2433
Guido van Rossum47478871996-08-21 14:32:37 +00002434static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002435validate_shift_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002436{
2437 return (validate_ntype(tree, shift_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002438 && validate_chain_two_ops(tree, validate_arith_expr,
2439 LEFTSHIFT, RIGHTSHIFT));
2440}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002441
2442
Guido van Rossum47478871996-08-21 14:32:37 +00002443static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002444validate_arith_expr(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002445{
2446 return (validate_ntype(tree, arith_expr)
Fred Drakeff9ea482000-04-19 13:54:15 +00002447 && validate_chain_two_ops(tree, validate_term, PLUS, MINUS));
2448}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002449
2450
Guido van Rossum47478871996-08-21 14:32:37 +00002451static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002452validate_term(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002453{
2454 int pos = 1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002455 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002456 int res = (validate_ntype(tree, term)
Fred Drakeff9ea482000-04-19 13:54:15 +00002457 && is_odd(nch)
2458 && validate_factor(CHILD(tree, 0)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002459
Guido van Rossum3d602e31996-07-21 02:33:56 +00002460 for ( ; res && (pos < nch); pos += 2)
Fred Drakeff9ea482000-04-19 13:54:15 +00002461 res = (((TYPE(CHILD(tree, pos)) == STAR)
2462 || (TYPE(CHILD(tree, pos)) == SLASH)
Michael W. Hudson5e83b7a2003-01-29 14:20:23 +00002463 || (TYPE(CHILD(tree, pos)) == DOUBLESLASH)
Fred Drakeff9ea482000-04-19 13:54:15 +00002464 || (TYPE(CHILD(tree, pos)) == PERCENT))
2465 && validate_factor(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002466
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002467 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002468}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002469
2470
Guido van Rossum3d602e31996-07-21 02:33:56 +00002471/* factor:
2472 *
2473 * factor: ('+'|'-'|'~') factor | power
2474 */
Guido van Rossum47478871996-08-21 14:32:37 +00002475static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002476validate_factor(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002477{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002478 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002479 int res = (validate_ntype(tree, factor)
Fred Drakeff9ea482000-04-19 13:54:15 +00002480 && (((nch == 2)
2481 && ((TYPE(CHILD(tree, 0)) == PLUS)
2482 || (TYPE(CHILD(tree, 0)) == MINUS)
2483 || (TYPE(CHILD(tree, 0)) == TILDE))
2484 && validate_factor(CHILD(tree, 1)))
2485 || ((nch == 1)
2486 && validate_power(CHILD(tree, 0)))));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002487 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002488}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002489
2490
Guido van Rossum3d602e31996-07-21 02:33:56 +00002491/* power:
2492 *
2493 * power: atom trailer* ('**' factor)*
2494 */
Guido van Rossum47478871996-08-21 14:32:37 +00002495static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002496validate_power(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002497{
2498 int pos = 1;
2499 int nch = NCH(tree);
2500 int res = (validate_ntype(tree, power) && (nch >= 1)
Fred Drakeff9ea482000-04-19 13:54:15 +00002501 && validate_atom(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002502
2503 while (res && (pos < nch) && (TYPE(CHILD(tree, pos)) == trailer))
Fred Drakeff9ea482000-04-19 13:54:15 +00002504 res = validate_trailer(CHILD(tree, pos++));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002505 if (res && (pos < nch)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002506 if (!is_even(nch - pos)) {
Fred Drake661ea262000-10-24 19:57:45 +00002507 err_string("illegal number of nodes for 'power'");
Fred Drakeff9ea482000-04-19 13:54:15 +00002508 return (0);
2509 }
2510 for ( ; res && (pos < (nch - 1)); pos += 2)
2511 res = (validate_doublestar(CHILD(tree, pos))
2512 && validate_factor(CHILD(tree, pos + 1)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002513 }
2514 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002515}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002516
2517
Guido van Rossum47478871996-08-21 14:32:37 +00002518static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002519validate_atom(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002520{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002521 int pos;
2522 int nch = NCH(tree);
Fred Drakecff283c2000-08-21 22:24:43 +00002523 int res = validate_ntype(tree, atom);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002524
Fred Drakecff283c2000-08-21 22:24:43 +00002525 if (res && nch < 1)
2526 res = validate_numnodes(tree, nch+1, "atom");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002527 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002528 switch (TYPE(CHILD(tree, 0))) {
2529 case LPAR:
2530 res = ((nch <= 3)
2531 && (validate_rparen(CHILD(tree, nch - 1))));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002532
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00002533 if (res && (nch == 3)) {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002534 if (TYPE(CHILD(tree, 1))==yield_expr)
2535 res = validate_yield_expr(CHILD(tree, 1));
2536 else
2537 res = validate_testlist_comp(CHILD(tree, 1));
2538 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002539 break;
2540 case LSQB:
Fred Drakecff283c2000-08-21 22:24:43 +00002541 if (nch == 2)
2542 res = validate_ntype(CHILD(tree, 1), RSQB);
2543 else if (nch == 3)
2544 res = (validate_listmaker(CHILD(tree, 1))
2545 && validate_ntype(CHILD(tree, 2), RSQB));
2546 else {
2547 res = 0;
2548 err_string("illegal list display atom");
2549 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002550 break;
2551 case LBRACE:
2552 res = ((nch <= 3)
2553 && validate_ntype(CHILD(tree, nch - 1), RBRACE));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002554
Fred Drakeff9ea482000-04-19 13:54:15 +00002555 if (res && (nch == 3))
Alexandre Vassalottiee936a22010-01-09 23:35:54 +00002556 res = validate_dictorsetmaker(CHILD(tree, 1));
Fred Drakeff9ea482000-04-19 13:54:15 +00002557 break;
2558 case BACKQUOTE:
2559 res = ((nch == 3)
Guido van Rossum2d3b9862002-05-24 15:47:06 +00002560 && validate_testlist1(CHILD(tree, 1))
Fred Drakeff9ea482000-04-19 13:54:15 +00002561 && validate_ntype(CHILD(tree, 2), BACKQUOTE));
2562 break;
2563 case NAME:
2564 case NUMBER:
2565 res = (nch == 1);
2566 break;
2567 case STRING:
2568 for (pos = 1; res && (pos < nch); ++pos)
2569 res = validate_ntype(CHILD(tree, pos), STRING);
2570 break;
2571 default:
2572 res = 0;
2573 break;
2574 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002575 }
2576 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002577}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002578
2579
Fred Drake85bf3bb2000-08-23 15:35:26 +00002580/* listmaker:
2581 * test ( list_for | (',' test)* [','] )
2582 */
Fred Drakecff283c2000-08-21 22:24:43 +00002583static int
2584validate_listmaker(node *tree)
2585{
2586 int nch = NCH(tree);
2587 int ok = nch;
2588
2589 if (nch == 0)
2590 err_string("missing child nodes of listmaker");
2591 else
2592 ok = validate_test(CHILD(tree, 0));
2593
2594 /*
Raymond Hettinger354433a2004-05-19 08:20:33 +00002595 * list_for | (',' test)* [',']
Fred Drakecff283c2000-08-21 22:24:43 +00002596 */
Fred Drake85bf3bb2000-08-23 15:35:26 +00002597 if (nch == 2 && TYPE(CHILD(tree, 1)) == list_for)
2598 ok = validate_list_for(CHILD(tree, 1));
Fred Drakecff283c2000-08-21 22:24:43 +00002599 else {
2600 /* (',' test)* [','] */
2601 int i = 1;
2602 while (ok && nch - i >= 2) {
2603 ok = (validate_comma(CHILD(tree, i))
2604 && validate_test(CHILD(tree, i+1)));
Fred Drake85bf3bb2000-08-23 15:35:26 +00002605 i += 2;
Fred Drakecff283c2000-08-21 22:24:43 +00002606 }
Fred Drake85bf3bb2000-08-23 15:35:26 +00002607 if (ok && i == nch-1)
2608 ok = validate_comma(CHILD(tree, i));
2609 else if (i != nch) {
2610 ok = 0;
2611 err_string("illegal trailing nodes for listmaker");
2612 }
Fred Drakecff283c2000-08-21 22:24:43 +00002613 }
2614 return ok;
2615}
2616
Alexandre Vassalottib6465472010-01-11 22:36:12 +00002617/* testlist_comp:
2618 * test ( comp_for | (',' test)* [','] )
Raymond Hettinger354433a2004-05-19 08:20:33 +00002619 */
2620static int
Alexandre Vassalottib6465472010-01-11 22:36:12 +00002621validate_testlist_comp(node *tree)
Raymond Hettinger354433a2004-05-19 08:20:33 +00002622{
2623 int nch = NCH(tree);
2624 int ok = nch;
2625
2626 if (nch == 0)
Alexandre Vassalottib6465472010-01-11 22:36:12 +00002627 err_string("missing child nodes of testlist_comp");
Raymond Hettinger354433a2004-05-19 08:20:33 +00002628 else {
2629 ok = validate_test(CHILD(tree, 0));
2630 }
2631
2632 /*
Alexandre Vassalottib6465472010-01-11 22:36:12 +00002633 * comp_for | (',' test)* [',']
Raymond Hettinger354433a2004-05-19 08:20:33 +00002634 */
Alexandre Vassalottib6465472010-01-11 22:36:12 +00002635 if (nch == 2 && TYPE(CHILD(tree, 1)) == comp_for)
2636 ok = validate_comp_for(CHILD(tree, 1));
Raymond Hettinger354433a2004-05-19 08:20:33 +00002637 else {
2638 /* (',' test)* [','] */
2639 int i = 1;
2640 while (ok && nch - i >= 2) {
2641 ok = (validate_comma(CHILD(tree, i))
2642 && validate_test(CHILD(tree, i+1)));
2643 i += 2;
2644 }
2645 if (ok && i == nch-1)
2646 ok = validate_comma(CHILD(tree, i));
2647 else if (i != nch) {
2648 ok = 0;
Alexandre Vassalottib6465472010-01-11 22:36:12 +00002649 err_string("illegal trailing nodes for testlist_comp");
Raymond Hettinger354433a2004-05-19 08:20:33 +00002650 }
2651 }
2652 return ok;
2653}
Fred Drakecff283c2000-08-21 22:24:43 +00002654
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002655/* decorator:
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002656 * '@' dotted_name [ '(' [arglist] ')' ] NEWLINE
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002657 */
2658static int
2659validate_decorator(node *tree)
2660{
2661 int ok;
2662 int nch = NCH(tree);
2663 ok = (validate_ntype(tree, decorator) &&
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002664 (nch == 3 || nch == 5 || nch == 6) &&
2665 validate_at(CHILD(tree, 0)) &&
2666 validate_dotted_name(CHILD(tree, 1)) &&
2667 validate_newline(RCHILD(tree, -1)));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002668
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002669 if (ok && nch != 3) {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002670 ok = (validate_lparen(CHILD(tree, 2)) &&
2671 validate_rparen(RCHILD(tree, -2)));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002672
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002673 if (ok && nch == 6)
2674 ok = validate_arglist(CHILD(tree, 3));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002675 }
2676
2677 return ok;
2678}
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002679
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002680/* decorators:
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002681 * decorator+
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002682 */
2683static int
2684validate_decorators(node *tree)
2685{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002686 int i, nch, ok;
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002687 nch = NCH(tree);
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002688 ok = validate_ntype(tree, decorators) && nch >= 1;
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002689
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002690 for (i = 0; ok && i < nch; ++i)
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002691 ok = validate_decorator(CHILD(tree, i));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002692
2693 return ok;
Michael W. Hudson0ccff072004-08-17 17:29:16 +00002694}
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002695
Georg Brandl944f6842009-05-25 21:02:56 +00002696/* with_item:
2697 * test ['as' expr]
Benjamin Peterson9dfe6a82008-11-24 04:09:03 +00002698 */
2699static int
Georg Brandl944f6842009-05-25 21:02:56 +00002700validate_with_item(node *tree)
Benjamin Peterson9dfe6a82008-11-24 04:09:03 +00002701{
2702 int nch = NCH(tree);
Georg Brandl944f6842009-05-25 21:02:56 +00002703 int ok = (validate_ntype(tree, with_item)
2704 && (nch == 1 || nch == 3)
2705 && validate_test(CHILD(tree, 0)));
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002706 if (ok && nch == 3)
Georg Brandl944f6842009-05-25 21:02:56 +00002707 ok = (validate_name(CHILD(tree, 1), "as")
2708 && validate_expr(CHILD(tree, 2)));
2709 return ok;
Benjamin Peterson9dfe6a82008-11-24 04:09:03 +00002710}
2711
Georg Brandl944f6842009-05-25 21:02:56 +00002712/* with_stmt:
2713 * 0 1 ... -2 -1
2714 * 'with' with_item (',' with_item)* ':' suite
Benjamin Peterson9dfe6a82008-11-24 04:09:03 +00002715 */
2716static int
2717validate_with_stmt(node *tree)
2718{
Georg Brandl944f6842009-05-25 21:02:56 +00002719 int i;
Benjamin Peterson9dfe6a82008-11-24 04:09:03 +00002720 int nch = NCH(tree);
2721 int ok = (validate_ntype(tree, with_stmt)
Georg Brandl944f6842009-05-25 21:02:56 +00002722 && (nch % 2 == 0)
Benjamin Peterson9dfe6a82008-11-24 04:09:03 +00002723 && validate_name(CHILD(tree, 0), "with")
Benjamin Peterson9dfe6a82008-11-24 04:09:03 +00002724 && validate_colon(RCHILD(tree, -2))
2725 && validate_suite(RCHILD(tree, -1)));
Georg Brandl944f6842009-05-25 21:02:56 +00002726 for (i = 1; ok && i < nch - 2; i += 2)
2727 ok = validate_with_item(CHILD(tree, i));
2728 return ok;
Benjamin Peterson9dfe6a82008-11-24 04:09:03 +00002729}
2730
Guido van Rossum3d602e31996-07-21 02:33:56 +00002731/* funcdef:
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002732 *
Christian Heimes5224d282008-02-23 15:01:05 +00002733 * -5 -4 -3 -2 -1
2734 * 'def' NAME parameters ':' suite
Guido van Rossum3d602e31996-07-21 02:33:56 +00002735 */
Guido van Rossum47478871996-08-21 14:32:37 +00002736static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002737validate_funcdef(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002738{
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002739 int nch = NCH(tree);
2740 int ok = (validate_ntype(tree, funcdef)
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002741 && (nch == 5)
2742 && validate_name(RCHILD(tree, -5), "def")
2743 && validate_ntype(RCHILD(tree, -4), NAME)
2744 && validate_colon(RCHILD(tree, -2))
2745 && validate_parameters(RCHILD(tree, -3))
2746 && validate_suite(RCHILD(tree, -1)));
Anthony Baxterc2a5a632004-08-02 06:10:11 +00002747 return ok;
Fred Drakeff9ea482000-04-19 13:54:15 +00002748}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002749
2750
Christian Heimes5224d282008-02-23 15:01:05 +00002751/* decorated
2752 * decorators (classdef | funcdef)
2753 */
2754static int
2755validate_decorated(node *tree)
2756{
Mark Dickinsona7ee59b2010-07-04 16:23:54 +00002757 int nch = NCH(tree);
2758 int ok = (validate_ntype(tree, decorated)
2759 && (nch == 2)
2760 && validate_decorators(RCHILD(tree, -2)));
2761 if (TYPE(RCHILD(tree, -1)) == funcdef)
2762 ok = ok && validate_funcdef(RCHILD(tree, -1));
2763 else
2764 ok = ok && validate_class(RCHILD(tree, -1));
2765 return ok;
Christian Heimes5224d282008-02-23 15:01:05 +00002766}
2767
Guido van Rossum47478871996-08-21 14:32:37 +00002768static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002769validate_lambdef(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002770{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002771 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00002772 int res = (validate_ntype(tree, lambdef)
Fred Drakeff9ea482000-04-19 13:54:15 +00002773 && ((nch == 3) || (nch == 4))
2774 && validate_name(CHILD(tree, 0), "lambda")
2775 && validate_colon(CHILD(tree, nch - 2))
2776 && validate_test(CHILD(tree, nch - 1)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002777
Guido van Rossum3d602e31996-07-21 02:33:56 +00002778 if (res && (nch == 4))
Fred Drakeff9ea482000-04-19 13:54:15 +00002779 res = validate_varargslist(CHILD(tree, 1));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002780 else if (!res && !PyErr_Occurred())
Fred Drakeff9ea482000-04-19 13:54:15 +00002781 (void) validate_numnodes(tree, 3, "lambdef");
Guido van Rossum3d602e31996-07-21 02:33:56 +00002782
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002783 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002784}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002785
2786
Thomas Wouterse2dd78c2006-02-27 16:25:11 +00002787static int
2788validate_old_lambdef(node *tree)
2789{
2790 int nch = NCH(tree);
2791 int res = (validate_ntype(tree, old_lambdef)
2792 && ((nch == 3) || (nch == 4))
2793 && validate_name(CHILD(tree, 0), "lambda")
2794 && validate_colon(CHILD(tree, nch - 2))
2795 && validate_test(CHILD(tree, nch - 1)));
2796
2797 if (res && (nch == 4))
2798 res = validate_varargslist(CHILD(tree, 1));
2799 else if (!res && !PyErr_Occurred())
2800 (void) validate_numnodes(tree, 3, "old_lambdef");
2801
2802 return (res);
2803}
2804
2805
Guido van Rossum3d602e31996-07-21 02:33:56 +00002806/* arglist:
2807 *
Fred Drakecff283c2000-08-21 22:24:43 +00002808 * (argument ',')* (argument [','] | '*' test [',' '**' test] | '**' test)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002809 */
Guido van Rossum47478871996-08-21 14:32:37 +00002810static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002811validate_arglist(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002812{
Fred Drakee7ab64e2000-04-25 04:14:46 +00002813 int nch = NCH(tree);
Fred Drakecff283c2000-08-21 22:24:43 +00002814 int i = 0;
2815 int ok = 1;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002816
2817 if (nch <= 0)
2818 /* raise the right error from having an invalid number of children */
2819 return validate_numnodes(tree, nch + 1, "arglist");
2820
Raymond Hettinger354433a2004-05-19 08:20:33 +00002821 if (nch > 1) {
2822 for (i=0; i<nch; i++) {
2823 if (TYPE(CHILD(tree, i)) == argument) {
2824 node *ch = CHILD(tree, i);
Alexandre Vassalottib6465472010-01-11 22:36:12 +00002825 if (NCH(ch) == 2 && TYPE(CHILD(ch, 1)) == comp_for) {
Raymond Hettinger354433a2004-05-19 08:20:33 +00002826 err_string("need '(', ')' for generator expression");
2827 return 0;
2828 }
2829 }
2830 }
2831 }
2832
Fred Drakecff283c2000-08-21 22:24:43 +00002833 while (ok && nch-i >= 2) {
2834 /* skip leading (argument ',') */
2835 ok = (validate_argument(CHILD(tree, i))
2836 && validate_comma(CHILD(tree, i+1)));
2837 if (ok)
2838 i += 2;
2839 else
2840 PyErr_Clear();
2841 }
2842 ok = 1;
2843 if (nch-i > 0) {
2844 /*
2845 * argument | '*' test [',' '**' test] | '**' test
Fred Drakee7ab64e2000-04-25 04:14:46 +00002846 */
Fred Drakecff283c2000-08-21 22:24:43 +00002847 int sym = TYPE(CHILD(tree, i));
2848
2849 if (sym == argument) {
2850 ok = validate_argument(CHILD(tree, i));
2851 if (ok && i+1 != nch) {
2852 err_string("illegal arglist specification"
2853 " (extra stuff on end)");
2854 ok = 0;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002855 }
Fred Drakecff283c2000-08-21 22:24:43 +00002856 }
2857 else if (sym == STAR) {
2858 ok = validate_star(CHILD(tree, i));
2859 if (ok && (nch-i == 2))
2860 ok = validate_test(CHILD(tree, i+1));
2861 else if (ok && (nch-i == 5))
2862 ok = (validate_test(CHILD(tree, i+1))
2863 && validate_comma(CHILD(tree, i+2))
2864 && validate_doublestar(CHILD(tree, i+3))
2865 && validate_test(CHILD(tree, i+4)));
Fred Drakee7ab64e2000-04-25 04:14:46 +00002866 else {
Fred Drakecff283c2000-08-21 22:24:43 +00002867 err_string("illegal use of '*' in arglist");
2868 ok = 0;
Fred Drakee7ab64e2000-04-25 04:14:46 +00002869 }
2870 }
Fred Drakecff283c2000-08-21 22:24:43 +00002871 else if (sym == DOUBLESTAR) {
2872 if (nch-i == 2)
2873 ok = (validate_doublestar(CHILD(tree, i))
2874 && validate_test(CHILD(tree, i+1)));
2875 else {
2876 err_string("illegal use of '**' in arglist");
2877 ok = 0;
2878 }
2879 }
2880 else {
2881 err_string("illegal arglist specification");
2882 ok = 0;
2883 }
Fred Drakee7ab64e2000-04-25 04:14:46 +00002884 }
2885 return (ok);
Fred Drakeff9ea482000-04-19 13:54:15 +00002886}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002887
2888
2889
2890/* argument:
2891 *
Alexandre Vassalottib6465472010-01-11 22:36:12 +00002892 * [test '='] test [comp_for]
Guido van Rossum3d602e31996-07-21 02:33:56 +00002893 */
Guido van Rossum47478871996-08-21 14:32:37 +00002894static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002895validate_argument(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002896{
2897 int nch = NCH(tree);
2898 int res = (validate_ntype(tree, argument)
Raymond Hettinger354433a2004-05-19 08:20:33 +00002899 && ((nch == 1) || (nch == 2) || (nch == 3))
Fred Drakeff9ea482000-04-19 13:54:15 +00002900 && validate_test(CHILD(tree, 0)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002901
Raymond Hettinger354433a2004-05-19 08:20:33 +00002902 if (res && (nch == 2))
Alexandre Vassalottib6465472010-01-11 22:36:12 +00002903 res = validate_comp_for(CHILD(tree, 1));
Raymond Hettinger354433a2004-05-19 08:20:33 +00002904 else if (res && (nch == 3))
Fred Drakeff9ea482000-04-19 13:54:15 +00002905 res = (validate_equal(CHILD(tree, 1))
2906 && validate_test(CHILD(tree, 2)));
Guido van Rossum3d602e31996-07-21 02:33:56 +00002907
2908 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002909}
Guido van Rossum3d602e31996-07-21 02:33:56 +00002910
2911
2912
2913/* trailer:
2914 *
Guido van Rossum47478871996-08-21 14:32:37 +00002915 * '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME
Guido van Rossum3d602e31996-07-21 02:33:56 +00002916 */
Guido van Rossum47478871996-08-21 14:32:37 +00002917static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002918validate_trailer(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002919{
2920 int nch = NCH(tree);
2921 int res = validate_ntype(tree, trailer) && ((nch == 2) || (nch == 3));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002922
2923 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002924 switch (TYPE(CHILD(tree, 0))) {
2925 case LPAR:
2926 res = validate_rparen(CHILD(tree, nch - 1));
2927 if (res && (nch == 3))
2928 res = validate_arglist(CHILD(tree, 1));
2929 break;
2930 case LSQB:
2931 res = (validate_numnodes(tree, 3, "trailer")
2932 && validate_subscriptlist(CHILD(tree, 1))
2933 && validate_ntype(CHILD(tree, 2), RSQB));
2934 break;
2935 case DOT:
2936 res = (validate_numnodes(tree, 2, "trailer")
2937 && validate_ntype(CHILD(tree, 1), NAME));
2938 break;
2939 default:
2940 res = 0;
2941 break;
2942 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002943 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002944 else {
2945 (void) validate_numnodes(tree, 2, "trailer");
2946 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002947 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00002948}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002949
2950
Guido van Rossum47478871996-08-21 14:32:37 +00002951/* subscriptlist:
2952 *
2953 * subscript (',' subscript)* [',']
2954 */
2955static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002956validate_subscriptlist(node *tree)
Guido van Rossum47478871996-08-21 14:32:37 +00002957{
2958 return (validate_repeating_list(tree, subscriptlist,
Fred Drakeff9ea482000-04-19 13:54:15 +00002959 validate_subscript, "subscriptlist"));
2960}
Guido van Rossum47478871996-08-21 14:32:37 +00002961
2962
Guido van Rossum3d602e31996-07-21 02:33:56 +00002963/* subscript:
2964 *
Guido van Rossum47478871996-08-21 14:32:37 +00002965 * '.' '.' '.' | test | [test] ':' [test] [sliceop]
Guido van Rossum3d602e31996-07-21 02:33:56 +00002966 */
Guido van Rossum47478871996-08-21 14:32:37 +00002967static int
Fred Drakeff9ea482000-04-19 13:54:15 +00002968validate_subscript(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00002969{
Guido van Rossum47478871996-08-21 14:32:37 +00002970 int offset = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002971 int nch = NCH(tree);
Guido van Rossum47478871996-08-21 14:32:37 +00002972 int res = validate_ntype(tree, subscript) && (nch >= 1) && (nch <= 4);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002973
Guido van Rossum47478871996-08-21 14:32:37 +00002974 if (!res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002975 if (!PyErr_Occurred())
2976 err_string("invalid number of arguments for subscript node");
2977 return (0);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002978 }
Guido van Rossum47478871996-08-21 14:32:37 +00002979 if (TYPE(CHILD(tree, 0)) == DOT)
Fred Drakeff9ea482000-04-19 13:54:15 +00002980 /* take care of ('.' '.' '.') possibility */
2981 return (validate_numnodes(tree, 3, "subscript")
2982 && validate_dot(CHILD(tree, 0))
2983 && validate_dot(CHILD(tree, 1))
2984 && validate_dot(CHILD(tree, 2)));
Guido van Rossum47478871996-08-21 14:32:37 +00002985 if (nch == 1) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002986 if (TYPE(CHILD(tree, 0)) == test)
2987 res = validate_test(CHILD(tree, 0));
2988 else
2989 res = validate_colon(CHILD(tree, 0));
2990 return (res);
Guido van Rossum47478871996-08-21 14:32:37 +00002991 }
Fred Drakeff9ea482000-04-19 13:54:15 +00002992 /* Must be [test] ':' [test] [sliceop],
2993 * but at least one of the optional components will
2994 * be present, but we don't know which yet.
Guido van Rossum47478871996-08-21 14:32:37 +00002995 */
2996 if ((TYPE(CHILD(tree, 0)) != COLON) || (nch == 4)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00002997 res = validate_test(CHILD(tree, 0));
2998 offset = 1;
Guido van Rossum47478871996-08-21 14:32:37 +00002999 }
3000 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00003001 res = validate_colon(CHILD(tree, offset));
Guido van Rossum47478871996-08-21 14:32:37 +00003002 if (res) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003003 int rem = nch - ++offset;
3004 if (rem) {
3005 if (TYPE(CHILD(tree, offset)) == test) {
3006 res = validate_test(CHILD(tree, offset));
3007 ++offset;
3008 --rem;
3009 }
3010 if (res && rem)
3011 res = validate_sliceop(CHILD(tree, offset));
3012 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003013 }
3014 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003015}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003016
3017
Guido van Rossum47478871996-08-21 14:32:37 +00003018static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003019validate_sliceop(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003020{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003021 int nch = NCH(tree);
Guido van Rossum47478871996-08-21 14:32:37 +00003022 int res = ((nch == 1) || validate_numnodes(tree, 2, "sliceop"))
Fred Drakeff9ea482000-04-19 13:54:15 +00003023 && validate_ntype(tree, sliceop);
Guido van Rossum47478871996-08-21 14:32:37 +00003024 if (!res && !PyErr_Occurred()) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003025 res = validate_numnodes(tree, 1, "sliceop");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003026 }
Guido van Rossum47478871996-08-21 14:32:37 +00003027 if (res)
Fred Drakeff9ea482000-04-19 13:54:15 +00003028 res = validate_colon(CHILD(tree, 0));
Guido van Rossum47478871996-08-21 14:32:37 +00003029 if (res && (nch == 2))
Fred Drakeff9ea482000-04-19 13:54:15 +00003030 res = validate_test(CHILD(tree, 1));
Guido van Rossum47478871996-08-21 14:32:37 +00003031
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003032 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003033}
Guido van Rossum47478871996-08-21 14:32:37 +00003034
3035
3036static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003037validate_exprlist(node *tree)
Guido van Rossum47478871996-08-21 14:32:37 +00003038{
3039 return (validate_repeating_list(tree, exprlist,
Fred Drakeff9ea482000-04-19 13:54:15 +00003040 validate_expr, "exprlist"));
3041}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003042
3043
Antoine Pitrouc83ea132010-05-09 14:46:46 +00003044/*
3045 * dictorsetmaker:
Alexandre Vassalottib6465472010-01-11 22:36:12 +00003046 *
3047 * (test ':' test (comp_for | (',' test ':' test)* [','])) |
3048 * (test (comp_for | (',' test)* [',']))
3049 */
Guido van Rossum47478871996-08-21 14:32:37 +00003050static int
Alexandre Vassalottiee936a22010-01-09 23:35:54 +00003051validate_dictorsetmaker(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003052{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003053 int nch = NCH(tree);
Alexandre Vassalottiee936a22010-01-09 23:35:54 +00003054 int ok = validate_ntype(tree, dictorsetmaker);
3055 int i = 0;
Alexandre Vassalottib6465472010-01-11 22:36:12 +00003056 int check_trailing_comma = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003057
Alexandre Vassalottiee936a22010-01-09 23:35:54 +00003058 assert(nch > 0);
Guido van Rossum3d602e31996-07-21 02:33:56 +00003059
Alexandre Vassalottiee936a22010-01-09 23:35:54 +00003060 if (ok && (nch == 1 || TYPE(CHILD(tree, 1)) == COMMA)) {
3061 /* We got a set:
Antoine Pitrouc83ea132010-05-09 14:46:46 +00003062 * test (',' test)* [',']
Alexandre Vassalottiee936a22010-01-09 23:35:54 +00003063 */
3064 ok = validate_test(CHILD(tree, i++));
3065 while (ok && nch - i >= 2) {
3066 ok = (validate_comma(CHILD(tree, i))
3067 && validate_test(CHILD(tree, i+1)));
3068 i += 2;
Fred Drakeff9ea482000-04-19 13:54:15 +00003069 }
Alexandre Vassalottib6465472010-01-11 22:36:12 +00003070 check_trailing_comma = 1;
3071 }
3072 else if (ok && TYPE(CHILD(tree, 1)) == comp_for) {
3073 /* We got a set comprehension:
3074 * test comp_for
3075 */
3076 ok = (validate_test(CHILD(tree, 0))
3077 && validate_comp_for(CHILD(tree, 1)));
3078 }
3079 else if (ok && NCH(tree) > 3 && TYPE(CHILD(tree, 3)) == comp_for) {
3080 /* We got a dict comprehension:
3081 * test ':' test comp_for
3082 */
3083 ok = (validate_test(CHILD(tree, 0))
3084 && validate_colon(CHILD(tree, 1))
3085 && validate_test(CHILD(tree, 2))
3086 && validate_comp_for(CHILD(tree, 3)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003087 }
Alexandre Vassalottiee936a22010-01-09 23:35:54 +00003088 else if (ok) {
3089 /* We got a dict:
3090 * test ':' test (',' test ':' test)* [',']
3091 */
3092 if (nch >= 3) {
3093 ok = (validate_test(CHILD(tree, i))
3094 && validate_colon(CHILD(tree, i+1))
3095 && validate_test(CHILD(tree, i+2)));
3096 i += 3;
3097 }
3098 else {
3099 ok = 0;
3100 err_string("illegal number of nodes for dictorsetmaker");
3101 }
3102
3103 while (ok && nch - i >= 4) {
3104 ok = (validate_comma(CHILD(tree, i))
3105 && validate_test(CHILD(tree, i+1))
3106 && validate_colon(CHILD(tree, i+2))
3107 && validate_test(CHILD(tree, i+3)));
3108 i += 4;
3109 }
Alexandre Vassalottib6465472010-01-11 22:36:12 +00003110 check_trailing_comma = 1;
Alexandre Vassalottiee936a22010-01-09 23:35:54 +00003111 }
Alexandre Vassalottib6465472010-01-11 22:36:12 +00003112 if (ok && check_trailing_comma) {
Alexandre Vassalottiee936a22010-01-09 23:35:54 +00003113 if (i == nch-1)
3114 ok = validate_comma(CHILD(tree, i));
3115 else if (i != nch) {
3116 ok = 0;
3117 err_string("illegal trailing nodes for dictorsetmaker");
3118 }
3119 }
3120
3121 return ok;
Fred Drakeff9ea482000-04-19 13:54:15 +00003122}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003123
3124
Guido van Rossum47478871996-08-21 14:32:37 +00003125static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003126validate_eval_input(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003127{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003128 int pos;
3129 int nch = NCH(tree);
Guido van Rossum3d602e31996-07-21 02:33:56 +00003130 int res = (validate_ntype(tree, eval_input)
Fred Drakeff9ea482000-04-19 13:54:15 +00003131 && (nch >= 2)
3132 && validate_testlist(CHILD(tree, 0))
3133 && validate_ntype(CHILD(tree, nch - 1), ENDMARKER));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003134
Guido van Rossum3d602e31996-07-21 02:33:56 +00003135 for (pos = 1; res && (pos < (nch - 1)); ++pos)
Fred Drakeff9ea482000-04-19 13:54:15 +00003136 res = validate_ntype(CHILD(tree, pos), NEWLINE);
Guido van Rossum3d602e31996-07-21 02:33:56 +00003137
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003138 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003139}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003140
3141
Guido van Rossum47478871996-08-21 14:32:37 +00003142static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003143validate_node(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003144{
Fred Drakeff9ea482000-04-19 13:54:15 +00003145 int nch = 0; /* num. children on current node */
3146 int res = 1; /* result value */
3147 node* next = 0; /* node to process after this one */
Guido van Rossum3d602e31996-07-21 02:33:56 +00003148
Martin v. Löwisb28f6e72001-06-23 19:55:38 +00003149 while (res && (tree != 0)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003150 nch = NCH(tree);
3151 next = 0;
3152 switch (TYPE(tree)) {
3153 /*
3154 * Definition nodes.
3155 */
3156 case funcdef:
3157 res = validate_funcdef(tree);
3158 break;
Benjamin Peterson9dfe6a82008-11-24 04:09:03 +00003159 case with_stmt:
3160 res = validate_with_stmt(tree);
3161 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003162 case classdef:
3163 res = validate_class(tree);
3164 break;
Antoine Pitrouc83ea132010-05-09 14:46:46 +00003165 case decorated:
3166 res = validate_decorated(tree);
3167 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003168 /*
3169 * "Trivial" parse tree nodes.
3170 * (Why did I call these trivial?)
3171 */
3172 case stmt:
3173 res = validate_stmt(tree);
3174 break;
3175 case small_stmt:
3176 /*
Fred Drake0ac9b072000-09-12 21:58:06 +00003177 * expr_stmt | print_stmt | del_stmt | pass_stmt | flow_stmt
Fred Drakeff9ea482000-04-19 13:54:15 +00003178 * | import_stmt | global_stmt | exec_stmt | assert_stmt
3179 */
3180 res = validate_small_stmt(tree);
3181 break;
3182 case flow_stmt:
3183 res = (validate_numnodes(tree, 1, "flow_stmt")
3184 && ((TYPE(CHILD(tree, 0)) == break_stmt)
3185 || (TYPE(CHILD(tree, 0)) == continue_stmt)
Fred Drake02126f22001-07-17 02:59:15 +00003186 || (TYPE(CHILD(tree, 0)) == yield_stmt)
Fred Drakeff9ea482000-04-19 13:54:15 +00003187 || (TYPE(CHILD(tree, 0)) == return_stmt)
3188 || (TYPE(CHILD(tree, 0)) == raise_stmt)));
3189 if (res)
3190 next = CHILD(tree, 0);
3191 else if (nch == 1)
Fred Drake661ea262000-10-24 19:57:45 +00003192 err_string("illegal flow_stmt type");
Fred Drakeff9ea482000-04-19 13:54:15 +00003193 break;
Fred Drake02126f22001-07-17 02:59:15 +00003194 case yield_stmt:
3195 res = validate_yield_stmt(tree);
3196 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003197 /*
3198 * Compound statements.
3199 */
3200 case simple_stmt:
3201 res = validate_simple_stmt(tree);
3202 break;
3203 case compound_stmt:
3204 res = validate_compound_stmt(tree);
3205 break;
3206 /*
Thomas Wouters7e474022000-07-16 12:04:32 +00003207 * Fundamental statements.
Fred Drakeff9ea482000-04-19 13:54:15 +00003208 */
3209 case expr_stmt:
3210 res = validate_expr_stmt(tree);
3211 break;
3212 case print_stmt:
3213 res = validate_print_stmt(tree);
3214 break;
3215 case del_stmt:
3216 res = validate_del_stmt(tree);
3217 break;
3218 case pass_stmt:
3219 res = (validate_numnodes(tree, 1, "pass")
3220 && validate_name(CHILD(tree, 0), "pass"));
3221 break;
3222 case break_stmt:
3223 res = (validate_numnodes(tree, 1, "break")
3224 && validate_name(CHILD(tree, 0), "break"));
3225 break;
3226 case continue_stmt:
3227 res = (validate_numnodes(tree, 1, "continue")
3228 && validate_name(CHILD(tree, 0), "continue"));
3229 break;
3230 case return_stmt:
3231 res = validate_return_stmt(tree);
3232 break;
3233 case raise_stmt:
3234 res = validate_raise_stmt(tree);
3235 break;
3236 case import_stmt:
3237 res = validate_import_stmt(tree);
3238 break;
Antoine Pitrouc83ea132010-05-09 14:46:46 +00003239 case import_name:
3240 res = validate_import_name(tree);
3241 break;
3242 case import_from:
3243 res = validate_import_from(tree);
3244 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003245 case global_stmt:
3246 res = validate_global_stmt(tree);
3247 break;
3248 case exec_stmt:
3249 res = validate_exec_stmt(tree);
3250 break;
3251 case assert_stmt:
3252 res = validate_assert_stmt(tree);
3253 break;
3254 case if_stmt:
3255 res = validate_if(tree);
3256 break;
3257 case while_stmt:
3258 res = validate_while(tree);
3259 break;
3260 case for_stmt:
3261 res = validate_for(tree);
3262 break;
3263 case try_stmt:
3264 res = validate_try(tree);
3265 break;
3266 case suite:
3267 res = validate_suite(tree);
3268 break;
3269 /*
3270 * Expression nodes.
3271 */
3272 case testlist:
3273 res = validate_testlist(tree);
3274 break;
Phillip J. Eby0d6615f2005-08-02 00:46:46 +00003275 case yield_expr:
3276 res = validate_yield_expr(tree);
3277 break;
Guido van Rossum2d3b9862002-05-24 15:47:06 +00003278 case testlist1:
3279 res = validate_testlist1(tree);
3280 break;
Fred Drakeff9ea482000-04-19 13:54:15 +00003281 case test:
3282 res = validate_test(tree);
3283 break;
3284 case and_test:
3285 res = validate_and_test(tree);
3286 break;
3287 case not_test:
3288 res = validate_not_test(tree);
3289 break;
3290 case comparison:
3291 res = validate_comparison(tree);
3292 break;
3293 case exprlist:
3294 res = validate_exprlist(tree);
3295 break;
3296 case comp_op:
3297 res = validate_comp_op(tree);
3298 break;
3299 case expr:
3300 res = validate_expr(tree);
3301 break;
3302 case xor_expr:
3303 res = validate_xor_expr(tree);
3304 break;
3305 case and_expr:
3306 res = validate_and_expr(tree);
3307 break;
3308 case shift_expr:
3309 res = validate_shift_expr(tree);
3310 break;
3311 case arith_expr:
3312 res = validate_arith_expr(tree);
3313 break;
3314 case term:
3315 res = validate_term(tree);
3316 break;
3317 case factor:
3318 res = validate_factor(tree);
3319 break;
3320 case power:
3321 res = validate_power(tree);
3322 break;
3323 case atom:
3324 res = validate_atom(tree);
3325 break;
Guido van Rossum3d602e31996-07-21 02:33:56 +00003326
Fred Drakeff9ea482000-04-19 13:54:15 +00003327 default:
3328 /* Hopefully never reached! */
Fred Drake661ea262000-10-24 19:57:45 +00003329 err_string("unrecognized node type");
Fred Drakeff9ea482000-04-19 13:54:15 +00003330 res = 0;
3331 break;
3332 }
3333 tree = next;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003334 }
3335 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003336}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003337
3338
Guido van Rossum47478871996-08-21 14:32:37 +00003339static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003340validate_expr_tree(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003341{
3342 int res = validate_eval_input(tree);
3343
3344 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00003345 err_string("could not validate expression tuple");
Guido van Rossum3d602e31996-07-21 02:33:56 +00003346
3347 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003348}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003349
3350
Guido van Rossum3d602e31996-07-21 02:33:56 +00003351/* file_input:
Fred Drakeff9ea482000-04-19 13:54:15 +00003352 * (NEWLINE | stmt)* ENDMARKER
Guido van Rossum3d602e31996-07-21 02:33:56 +00003353 */
Guido van Rossum47478871996-08-21 14:32:37 +00003354static int
Fred Drakeff9ea482000-04-19 13:54:15 +00003355validate_file_input(node *tree)
Guido van Rossum3d602e31996-07-21 02:33:56 +00003356{
Fred Drakec2683dd2001-07-17 19:32:05 +00003357 int j;
Guido van Rossum3d602e31996-07-21 02:33:56 +00003358 int nch = NCH(tree) - 1;
3359 int res = ((nch >= 0)
Fred Drakeff9ea482000-04-19 13:54:15 +00003360 && validate_ntype(CHILD(tree, nch), ENDMARKER));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003361
Fred Drakec2683dd2001-07-17 19:32:05 +00003362 for (j = 0; res && (j < nch); ++j) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003363 if (TYPE(CHILD(tree, j)) == stmt)
3364 res = validate_stmt(CHILD(tree, j));
3365 else
3366 res = validate_newline(CHILD(tree, j));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003367 }
Thomas Wouters7e474022000-07-16 12:04:32 +00003368 /* This stays in to prevent any internal failures from getting to the
Fred Drakeff9ea482000-04-19 13:54:15 +00003369 * user. Hopefully, this won't be needed. If a user reports getting
3370 * this, we have some debugging to do.
Guido van Rossum3d602e31996-07-21 02:33:56 +00003371 */
3372 if (!res && !PyErr_Occurred())
Fred Drake661ea262000-10-24 19:57:45 +00003373 err_string("VALIDATION FAILURE: report this to the maintainer!");
Guido van Rossum3d602e31996-07-21 02:33:56 +00003374
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003375 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00003376}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003377
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00003378static int
3379validate_encoding_decl(node *tree)
3380{
3381 int nch = NCH(tree);
3382 int res = ((nch == 1)
3383 && validate_file_input(CHILD(tree, 0)));
3384
3385 if (!res && !PyErr_Occurred())
3386 err_string("Error Parsing encoding_decl");
3387
3388 return res;
3389}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003390
Fred Drake43f8f9b1998-04-13 16:25:46 +00003391static PyObject*
3392pickle_constructor = NULL;
3393
3394
3395static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +00003396parser__pickler(PyObject *self, PyObject *args)
Fred Drake43f8f9b1998-04-13 16:25:46 +00003397{
Fred Drake268397f1998-04-29 14:16:32 +00003398 NOTE(ARGUNUSED(self))
Fred Drake43f8f9b1998-04-13 16:25:46 +00003399 PyObject *result = NULL;
Fred Drakec2683dd2001-07-17 19:32:05 +00003400 PyObject *st = NULL;
Fred Drake2a6875e1999-09-20 22:32:18 +00003401 PyObject *empty_dict = NULL;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003402
Fred Drakec2683dd2001-07-17 19:32:05 +00003403 if (PyArg_ParseTuple(args, "O!:_pickler", &PyST_Type, &st)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003404 PyObject *newargs;
3405 PyObject *tuple;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003406
Fred Drake2a6875e1999-09-20 22:32:18 +00003407 if ((empty_dict = PyDict_New()) == NULL)
3408 goto finally;
Fred Drakec2683dd2001-07-17 19:32:05 +00003409 if ((newargs = Py_BuildValue("Oi", st, 1)) == NULL)
Fred Drakeff9ea482000-04-19 13:54:15 +00003410 goto finally;
Fred Drakec2683dd2001-07-17 19:32:05 +00003411 tuple = parser_st2tuple((PyST_Object*)NULL, newargs, empty_dict);
Fred Drakeff9ea482000-04-19 13:54:15 +00003412 if (tuple != NULL) {
3413 result = Py_BuildValue("O(O)", pickle_constructor, tuple);
3414 Py_DECREF(tuple);
3415 }
Fred Drakeff9ea482000-04-19 13:54:15 +00003416 Py_DECREF(newargs);
Fred Drake43f8f9b1998-04-13 16:25:46 +00003417 }
3418 finally:
Fred Drake2a6875e1999-09-20 22:32:18 +00003419 Py_XDECREF(empty_dict);
3420
Fred Drake43f8f9b1998-04-13 16:25:46 +00003421 return (result);
Fred Drakeff9ea482000-04-19 13:54:15 +00003422}
Fred Drake43f8f9b1998-04-13 16:25:46 +00003423
3424
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003425/* Functions exported by this module. Most of this should probably
Fred Drakec2683dd2001-07-17 19:32:05 +00003426 * be converted into an ST object with methods, but that is better
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003427 * done directly in Python, allowing subclasses to be created directly.
Guido van Rossum3d602e31996-07-21 02:33:56 +00003428 * We'd really have to write a wrapper around it all anyway to allow
3429 * inheritance.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003430 */
3431static PyMethodDef parser_functions[] = {
Georg Brandlf9efabb2008-07-23 15:16:45 +00003432 {"ast2tuple", (PyCFunction)parser_ast2tuple, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003433 PyDoc_STR("Creates a tuple-tree representation of an ST.")},
Georg Brandlf9efabb2008-07-23 15:16:45 +00003434 {"ast2list", (PyCFunction)parser_ast2list, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003435 PyDoc_STR("Creates a list-tree representation of an ST.")},
Georg Brandlf9efabb2008-07-23 15:16:45 +00003436 {"compileast", (PyCFunction)parser_compileast,PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003437 PyDoc_STR("Compiles an ST object into a code object.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003438 {"compilest", (PyCFunction)parser_compilest, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003439 PyDoc_STR("Compiles an ST object into a code object.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003440 {"expr", (PyCFunction)parser_expr, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003441 PyDoc_STR("Creates an ST object from an expression.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003442 {"isexpr", (PyCFunction)parser_isexpr, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003443 PyDoc_STR("Determines if an ST object was created from an expression.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003444 {"issuite", (PyCFunction)parser_issuite, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003445 PyDoc_STR("Determines if an ST object was created from a suite.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003446 {"suite", (PyCFunction)parser_suite, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003447 PyDoc_STR("Creates an ST object from a suite.")},
Georg Brandlf9efabb2008-07-23 15:16:45 +00003448 {"sequence2ast", (PyCFunction)parser_tuple2ast, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003449 PyDoc_STR("Creates an ST object from a tree representation.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003450 {"sequence2st", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003451 PyDoc_STR("Creates an ST object from a tree representation.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003452 {"st2tuple", (PyCFunction)parser_st2tuple, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003453 PyDoc_STR("Creates a tuple-tree representation of an ST.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003454 {"st2list", (PyCFunction)parser_st2list, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003455 PyDoc_STR("Creates a list-tree representation of an ST.")},
Georg Brandlf9efabb2008-07-23 15:16:45 +00003456 {"tuple2ast", (PyCFunction)parser_tuple2ast, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003457 PyDoc_STR("Creates an ST object from a tree representation.")},
Fred Drakec2683dd2001-07-17 19:32:05 +00003458 {"tuple2st", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00003459 PyDoc_STR("Creates an ST object from a tree representation.")},
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003460
Fred Drake43f8f9b1998-04-13 16:25:46 +00003461 /* private stuff: support pickle module */
Fred Drake13130bc2001-08-15 16:44:56 +00003462 {"_pickler", (PyCFunction)parser__pickler, METH_VARARGS,
Neal Norwitz200788c2002-08-13 22:20:41 +00003463 PyDoc_STR("Returns the pickle magic to allow ST objects to be pickled.")},
Fred Drake43f8f9b1998-04-13 16:25:46 +00003464
Fred Drake268397f1998-04-29 14:16:32 +00003465 {NULL, NULL, 0, NULL}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003466 };
3467
3468
Mark Hammond62b1ab12002-07-23 06:31:15 +00003469PyMODINIT_FUNC initparser(void); /* supply a prototype */
Fred Drake28f739a2000-08-25 22:42:40 +00003470
Mark Hammond62b1ab12002-07-23 06:31:15 +00003471PyMODINIT_FUNC
Thomas Wouters5c669862000-07-24 15:49:08 +00003472initparser(void)
Fred Drake28f739a2000-08-25 22:42:40 +00003473{
Fred Drake13130bc2001-08-15 16:44:56 +00003474 PyObject *module, *copyreg;
Fred Drakec2683dd2001-07-17 19:32:05 +00003475
Christian Heimese93237d2007-12-19 02:37:44 +00003476 Py_TYPE(&PyST_Type) = &PyType_Type;
Guido van Rossumf2b2dac1997-01-23 23:29:44 +00003477 module = Py_InitModule("parser", parser_functions);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00003478 if (module == NULL)
Antoine Pitrouc83ea132010-05-09 14:46:46 +00003479 return;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003480
Fred Drake7a15ba51999-09-09 14:21:52 +00003481 if (parser_error == 0)
3482 parser_error = PyErr_NewException("parser.ParserError", NULL, NULL);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003483
Tim Peters6a627252003-07-21 14:25:23 +00003484 if (parser_error == 0)
Fred Drakec2683dd2001-07-17 19:32:05 +00003485 /* caller will check PyErr_Occurred() */
3486 return;
Tim Peters6a627252003-07-21 14:25:23 +00003487 /* CAUTION: The code next used to skip bumping the refcount on
3488 * parser_error. That's a disaster if initparser() gets called more
3489 * than once. By incref'ing, we ensure that each module dict that
3490 * gets created owns its reference to the shared parser_error object,
3491 * and the file static parser_error vrbl owns a reference too.
3492 */
3493 Py_INCREF(parser_error);
3494 if (PyModule_AddObject(module, "ParserError", parser_error) != 0)
3495 return;
3496
Fred Drakec2683dd2001-07-17 19:32:05 +00003497 Py_INCREF(&PyST_Type);
Fred Drake13130bc2001-08-15 16:44:56 +00003498 PyModule_AddObject(module, "ASTType", (PyObject*)&PyST_Type);
Fred Drakec2683dd2001-07-17 19:32:05 +00003499 Py_INCREF(&PyST_Type);
Fred Drake13130bc2001-08-15 16:44:56 +00003500 PyModule_AddObject(module, "STType", (PyObject*)&PyST_Type);
Guido van Rossum3d602e31996-07-21 02:33:56 +00003501
Fred Drake13130bc2001-08-15 16:44:56 +00003502 PyModule_AddStringConstant(module, "__copyright__",
3503 parser_copyright_string);
3504 PyModule_AddStringConstant(module, "__doc__",
3505 parser_doc_string);
3506 PyModule_AddStringConstant(module, "__version__",
3507 parser_version_string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00003508
Fred Drake78bdb9b2001-07-19 20:17:15 +00003509 /* Register to support pickling.
3510 * If this fails, the import of this module will fail because an
3511 * exception will be raised here; should we clear the exception?
3512 */
Georg Brandldffbf5f2008-05-20 07:49:57 +00003513 copyreg = PyImport_ImportModuleNoBlock("copy_reg");
Fred Drake13130bc2001-08-15 16:44:56 +00003514 if (copyreg != NULL) {
Fred Drakeff9ea482000-04-19 13:54:15 +00003515 PyObject *func, *pickler;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003516
Fred Drake13130bc2001-08-15 16:44:56 +00003517 func = PyObject_GetAttrString(copyreg, "pickle");
3518 pickle_constructor = PyObject_GetAttrString(module, "sequence2st");
3519 pickler = PyObject_GetAttrString(module, "_pickler");
Fred Drakeff9ea482000-04-19 13:54:15 +00003520 Py_XINCREF(pickle_constructor);
3521 if ((func != NULL) && (pickle_constructor != NULL)
3522 && (pickler != NULL)) {
3523 PyObject *res;
Fred Drake43f8f9b1998-04-13 16:25:46 +00003524
Georg Brandl684fd0c2006-05-25 19:15:31 +00003525 res = PyObject_CallFunctionObjArgs(func, &PyST_Type, pickler,
3526 pickle_constructor, NULL);
Fred Drakeff9ea482000-04-19 13:54:15 +00003527 Py_XDECREF(res);
3528 }
3529 Py_XDECREF(func);
Fred Drake13130bc2001-08-15 16:44:56 +00003530 Py_XDECREF(pickle_constructor);
3531 Py_XDECREF(pickler);
3532 Py_DECREF(copyreg);
Fred Drake43f8f9b1998-04-13 16:25:46 +00003533 }
Fred Drakeff9ea482000-04-19 13:54:15 +00003534}