blob: 87f58d340c2dbeec645e53bb3d0495b7ff6d9431 [file] [log] [blame]
Guido van Rossum3d602e31996-07-21 02:33:56 +00001/* parsermodule.c
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00002 *
Guido van Rossum47478871996-08-21 14:32:37 +00003 * Copyright 1995-1996 by Fred L. Drake, Jr. and Virginia Polytechnic
4 * Institute and State University, Blacksburg, Virginia, USA.
5 * Portions copyright 1991-1995 by Stichting Mathematisch Centrum,
6 * Amsterdam, The Netherlands. Copying is permitted under the terms
7 * associated with the main Python distribution, with the additional
8 * restriction that this additional notice be included and maintained
9 * on all distributed copies.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000010 *
Guido van Rossum47478871996-08-21 14:32:37 +000011 * This module serves to replace the original parser module written
12 * by Guido. The functionality is not matched precisely, but the
13 * original may be implemented on top of this. This is desirable
14 * since the source of the text to be parsed is now divorced from
15 * this interface.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000016 *
Guido van Rossum47478871996-08-21 14:32:37 +000017 * Unlike the prior interface, the ability to give a parse tree
18 * produced by Python code as a tuple to the compiler is enabled by
19 * this module. See the documentation for more details.
Fred Drake268397f1998-04-29 14:16:32 +000020 *
21 * I've added some annotations that help with the lint code-checking
22 * program, but they're not complete by a long shot. The real errors
23 * that lint detects are gone, but there are still warnings with
24 * Py_[X]DECREF() and Py_[X]INCREF() macros. The lint annotations
25 * look like "NOTE(...)".
Benjamin Peterson025e9eb2015-05-05 20:16:41 -040026 *
27 * To debug parser errors like
28 * "parser.ParserError: Expected node type 12, got 333."
29 * decode symbol numbers using the automatically-generated files
30 * Lib/symbol.h and Include/token.h.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000031 */
32
Fred Drakeff9ea482000-04-19 13:54:15 +000033#include "Python.h" /* general Python API */
Benjamin Petersonf216c942008-10-31 02:28:05 +000034#include "Python-ast.h" /* mod_ty */
Victor Stinner3bb183d2018-11-22 18:38:38 +010035#undef Yield /* undefine macro conflicting with <winbase.h> */
Victor Stinner5f2df882018-11-12 00:56:19 +010036#include "ast.h"
Fred Drakeff9ea482000-04-19 13:54:15 +000037#include "graminit.h" /* symbols defined in the grammar */
38#include "node.h" /* internal parser structure */
Fred Drake8b55b2d2001-12-05 22:10:44 +000039#include "errcode.h" /* error codes for PyNode_*() */
Fred Drakeff9ea482000-04-19 13:54:15 +000040#include "token.h" /* token definitions */
Victor Stinner5f2df882018-11-12 00:56:19 +010041 /* ISTERMINAL() / ISNONTERMINAL() */
Benjamin Petersonf216c942008-10-31 02:28:05 +000042#include "grammar.h"
43#include "parsetok.h"
Benjamin Petersonf216c942008-10-31 02:28:05 +000044
45extern grammar _PyParser_Grammar; /* From graminit.c */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000046
Fred Drake268397f1998-04-29 14:16:32 +000047#ifdef lint
48#include <note.h>
49#else
50#define NOTE(x)
51#endif
52
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000053/* String constants used to initialize module attributes.
54 *
55 */
Serhiy Storchaka2d06e842015-12-25 19:53:18 +020056static const char parser_copyright_string[] =
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000057"Copyright 1995-1996 by Virginia Polytechnic Institute & State\n\
Guido van Rossum2a288461996-08-21 21:55:43 +000058University, Blacksburg, Virginia, USA, and Fred L. Drake, Jr., Reston,\n\
59Virginia, USA. Portions copyright 1991-1995 by Stichting Mathematisch\n\
60Centrum, Amsterdam, The Netherlands.";
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000061
62
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000063PyDoc_STRVAR(parser_doc_string,
64"This is an interface to Python's internal parser.");
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000065
Serhiy Storchaka2d06e842015-12-25 19:53:18 +020066static const char parser_version_string[] = "0.5";
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000067
68
Martin v. Löwis18e16552006-02-15 17:27:45 +000069typedef PyObject* (*SeqMaker) (Py_ssize_t length);
Fred Drakeff9ea482000-04-19 13:54:15 +000070typedef int (*SeqInserter) (PyObject* sequence,
Martin v. Löwis18e16552006-02-15 17:27:45 +000071 Py_ssize_t index,
Fred Drakeff9ea482000-04-19 13:54:15 +000072 PyObject* element);
Guido van Rossum47478871996-08-21 14:32:37 +000073
Thomas Wouters7e474022000-07-16 12:04:32 +000074/* The function below is copyrighted by Stichting Mathematisch Centrum. The
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000075 * original copyright statement is included below, and continues to apply
76 * in full to the function immediately following. All other material is
77 * original, copyrighted by Fred L. Drake, Jr. and Virginia Polytechnic
78 * Institute and State University. Changes were made to comply with the
Guido van Rossum2a288461996-08-21 21:55:43 +000079 * new naming conventions. Added arguments to provide support for creating
80 * lists as well as tuples, and optionally including the line numbers.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000081 */
82
Guido van Rossum52f2c051993-11-10 12:53:24 +000083
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +000084static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +000085node2tuple(node *n, /* node to convert */
86 SeqMaker mkseq, /* create sequence */
87 SeqInserter addelem, /* func. to add elem. in seq. */
Thomas Wouters89f507f2006-12-13 04:49:30 +000088 int lineno, /* include line numbers? */
89 int col_offset) /* include column offsets? */
Guido van Rossum47478871996-08-21 14:32:37 +000090{
Victor Stinnerdf4572c2013-07-12 01:35:10 +020091 PyObject *result = NULL, *w;
92
Guido van Rossum3d602e31996-07-21 02:33:56 +000093 if (n == NULL) {
Serhiy Storchaka228b12e2017-01-23 09:47:21 +020094 Py_RETURN_NONE;
Guido van Rossum3d602e31996-07-21 02:33:56 +000095 }
Victor Stinnerdf4572c2013-07-12 01:35:10 +020096
Guido van Rossum3d602e31996-07-21 02:33:56 +000097 if (ISNONTERMINAL(TYPE(n))) {
Fred Drakeff9ea482000-04-19 13:54:15 +000098 int i;
Fred Drake268397f1998-04-29 14:16:32 +000099
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200100 result = mkseq(1 + NCH(n) + (TYPE(n) == encoding_decl));
101 if (result == NULL)
102 goto error;
103
Christian Heimes217cfd12007-12-02 14:31:20 +0000104 w = PyLong_FromLong(TYPE(n));
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200105 if (w == NULL)
106 goto error;
107 (void) addelem(result, 0, w);
108
Fred Drakeff9ea482000-04-19 13:54:15 +0000109 for (i = 0; i < NCH(n); i++) {
Thomas Wouters89f507f2006-12-13 04:49:30 +0000110 w = node2tuple(CHILD(n, i), mkseq, addelem, lineno, col_offset);
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200111 if (w == NULL)
112 goto error;
113 (void) addelem(result, i+1, w);
Fred Drakeff9ea482000-04-19 13:54:15 +0000114 }
Tim Peters6a627252003-07-21 14:25:23 +0000115
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200116 if (TYPE(n) == encoding_decl) {
117 w = PyUnicode_FromString(STR(n));
118 if (w == NULL)
119 goto error;
120 (void) addelem(result, i+1, w);
121 }
Guido van Rossum3d602e31996-07-21 02:33:56 +0000122 }
123 else if (ISTERMINAL(TYPE(n))) {
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200124 result = mkseq(2 + lineno + col_offset);
125 if (result == NULL)
126 goto error;
127
128 w = PyLong_FromLong(TYPE(n));
129 if (w == NULL)
130 goto error;
131 (void) addelem(result, 0, w);
132
133 w = PyUnicode_FromString(STR(n));
134 if (w == NULL)
135 goto error;
136 (void) addelem(result, 1, w);
137
Serhiy Storchakae5362ea2018-04-19 01:55:37 +0300138 if (lineno) {
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200139 w = PyLong_FromLong(n->n_lineno);
140 if (w == NULL)
141 goto error;
142 (void) addelem(result, 2, w);
Fred Drakeff9ea482000-04-19 13:54:15 +0000143 }
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200144
Serhiy Storchakae5362ea2018-04-19 01:55:37 +0300145 if (col_offset) {
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200146 w = PyLong_FromLong(n->n_col_offset);
147 if (w == NULL)
148 goto error;
Serhiy Storchakae5362ea2018-04-19 01:55:37 +0300149 (void) addelem(result, 2 + lineno, w);
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200150 }
Guido van Rossum3d602e31996-07-21 02:33:56 +0000151 }
152 else {
Fred Drakeff9ea482000-04-19 13:54:15 +0000153 PyErr_SetString(PyExc_SystemError,
154 "unrecognized parse tree node type");
155 return ((PyObject*) NULL);
Guido van Rossum3d602e31996-07-21 02:33:56 +0000156 }
Victor Stinnerdf4572c2013-07-12 01:35:10 +0200157 return result;
158
159error:
160 Py_XDECREF(result);
161 return NULL;
Fred Drakeff9ea482000-04-19 13:54:15 +0000162}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000163/*
164 * End of material copyrighted by Stichting Mathematisch Centrum.
165 */
Guido van Rossum52f2c051993-11-10 12:53:24 +0000166
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000167
168
169/* There are two types of intermediate objects we're interested in:
Fred Drakec2683dd2001-07-17 19:32:05 +0000170 * 'eval' and 'exec' types. These constants can be used in the st_type
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000171 * field of the object type to identify which any given object represents.
172 * These should probably go in an external header to allow other extensions
173 * to use them, but then, we really should be using C++ too. ;-)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000174 */
175
Fred Drakec2683dd2001-07-17 19:32:05 +0000176#define PyST_EXPR 1
177#define PyST_SUITE 2
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000178
179
180/* These are the internal objects and definitions required to implement the
Fred Drakec2683dd2001-07-17 19:32:05 +0000181 * ST type. Most of the internal names are more reminiscent of the 'old'
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000182 * naming style, but the code uses the new naming convention.
183 */
184
185static PyObject*
186parser_error = 0;
187
188
Fred Drakec2683dd2001-07-17 19:32:05 +0000189typedef struct {
Fred Drakeff9ea482000-04-19 13:54:15 +0000190 PyObject_HEAD /* standard object header */
Fred Drakec2683dd2001-07-17 19:32:05 +0000191 node* st_node; /* the node* returned by the parser */
192 int st_type; /* EXPR or SUITE ? */
Benjamin Petersonf216c942008-10-31 02:28:05 +0000193 PyCompilerFlags st_flags; /* Parser and compiler flags */
Fred Drakec2683dd2001-07-17 19:32:05 +0000194} PyST_Object;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000195
196
Jeremy Hylton938ace62002-07-17 16:30:39 +0000197static void parser_free(PyST_Object *st);
Jesus Ceae9c53182012-08-03 14:28:37 +0200198static PyObject* parser_sizeof(PyST_Object *, void *);
Mark Dickinson211c6252009-02-01 10:28:51 +0000199static PyObject* parser_richcompare(PyObject *left, PyObject *right, int op);
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000200static PyObject* parser_compilest(PyST_Object *, PyObject *, PyObject *);
201static PyObject* parser_isexpr(PyST_Object *, PyObject *, PyObject *);
202static PyObject* parser_issuite(PyST_Object *, PyObject *, PyObject *);
203static PyObject* parser_st2list(PyST_Object *, PyObject *, PyObject *);
204static PyObject* parser_st2tuple(PyST_Object *, PyObject *, PyObject *);
Fred Drake503d8d61998-04-13 18:45:18 +0000205
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000206#define PUBLIC_METHOD_TYPE (METH_VARARGS|METH_KEYWORDS)
207
208static PyMethodDef parser_methods[] = {
Serhiy Storchaka62be7422018-11-27 13:27:31 +0200209 {"compile", (PyCFunction)(void(*)(void))parser_compilest, PUBLIC_METHOD_TYPE,
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000210 PyDoc_STR("Compile this ST object into a code object.")},
Serhiy Storchaka62be7422018-11-27 13:27:31 +0200211 {"isexpr", (PyCFunction)(void(*)(void))parser_isexpr, PUBLIC_METHOD_TYPE,
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000212 PyDoc_STR("Determines if this ST object was created from an expression.")},
Serhiy Storchaka62be7422018-11-27 13:27:31 +0200213 {"issuite", (PyCFunction)(void(*)(void))parser_issuite, PUBLIC_METHOD_TYPE,
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000214 PyDoc_STR("Determines if this ST object was created from a suite.")},
Serhiy Storchaka62be7422018-11-27 13:27:31 +0200215 {"tolist", (PyCFunction)(void(*)(void))parser_st2list, PUBLIC_METHOD_TYPE,
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000216 PyDoc_STR("Creates a list-tree representation of this ST.")},
Serhiy Storchaka62be7422018-11-27 13:27:31 +0200217 {"totuple", (PyCFunction)(void(*)(void))parser_st2tuple, PUBLIC_METHOD_TYPE,
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000218 PyDoc_STR("Creates a tuple-tree representation of this ST.")},
Jesus Ceae9c53182012-08-03 14:28:37 +0200219 {"__sizeof__", (PyCFunction)parser_sizeof, METH_NOARGS,
220 PyDoc_STR("Returns size in memory, in bytes.")},
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000221 {NULL, NULL, 0, NULL}
222};
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000223
Fred Drake268397f1998-04-29 14:16:32 +0000224static
Fred Drakec2683dd2001-07-17 19:32:05 +0000225PyTypeObject PyST_Type = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +0000226 PyVarObject_HEAD_INIT(NULL, 0)
Guido van Rossum14648392001-12-08 18:02:58 +0000227 "parser.st", /* tp_name */
Fred Drakec2683dd2001-07-17 19:32:05 +0000228 (int) sizeof(PyST_Object), /* tp_basicsize */
Fred Drakeff9ea482000-04-19 13:54:15 +0000229 0, /* tp_itemsize */
230 (destructor)parser_free, /* tp_dealloc */
231 0, /* tp_print */
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000232 0, /* tp_getattr */
Fred Drakeff9ea482000-04-19 13:54:15 +0000233 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +0000234 0, /* tp_reserved */
Fred Drakeff9ea482000-04-19 13:54:15 +0000235 0, /* tp_repr */
236 0, /* tp_as_number */
237 0, /* tp_as_sequence */
238 0, /* tp_as_mapping */
239 0, /* tp_hash */
240 0, /* tp_call */
241 0, /* tp_str */
242 0, /* tp_getattro */
243 0, /* tp_setattro */
Fred Drake69b9ae41997-05-23 04:04:17 +0000244
245 /* Functions to access object as input/output buffer */
Fred Drakeff9ea482000-04-19 13:54:15 +0000246 0, /* tp_as_buffer */
Fred Drake69b9ae41997-05-23 04:04:17 +0000247
Fred Drakeff9ea482000-04-19 13:54:15 +0000248 Py_TPFLAGS_DEFAULT, /* tp_flags */
Fred Drake69b9ae41997-05-23 04:04:17 +0000249
250 /* __doc__ */
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000251 "Intermediate representation of a Python parse tree.",
252 0, /* tp_traverse */
253 0, /* tp_clear */
Mark Dickinson211c6252009-02-01 10:28:51 +0000254 parser_richcompare, /* tp_richcompare */
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +0000255 0, /* tp_weaklistoffset */
256 0, /* tp_iter */
257 0, /* tp_iternext */
258 parser_methods, /* tp_methods */
Fred Drakec2683dd2001-07-17 19:32:05 +0000259}; /* PyST_Type */
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000260
261
Mark Dickinson211c6252009-02-01 10:28:51 +0000262/* PyST_Type isn't subclassable, so just check ob_type */
263#define PyST_Object_Check(v) ((v)->ob_type == &PyST_Type)
264
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000265static int
Fred Drakeff9ea482000-04-19 13:54:15 +0000266parser_compare_nodes(node *left, node *right)
Guido van Rossum47478871996-08-21 14:32:37 +0000267{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000268 int j;
Guido van Rossum52f2c051993-11-10 12:53:24 +0000269
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000270 if (TYPE(left) < TYPE(right))
Fred Drakeff9ea482000-04-19 13:54:15 +0000271 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000272
273 if (TYPE(right) < TYPE(left))
Fred Drakeff9ea482000-04-19 13:54:15 +0000274 return (1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000275
276 if (ISTERMINAL(TYPE(left)))
Fred Drakeff9ea482000-04-19 13:54:15 +0000277 return (strcmp(STR(left), STR(right)));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000278
279 if (NCH(left) < NCH(right))
Fred Drakeff9ea482000-04-19 13:54:15 +0000280 return (-1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000281
282 if (NCH(right) < NCH(left))
Fred Drakeff9ea482000-04-19 13:54:15 +0000283 return (1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000284
285 for (j = 0; j < NCH(left); ++j) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000286 int v = parser_compare_nodes(CHILD(left, j), CHILD(right, j));
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000287
Fred Drakeff9ea482000-04-19 13:54:15 +0000288 if (v != 0)
289 return (v);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000290 }
291 return (0);
Fred Drakeff9ea482000-04-19 13:54:15 +0000292}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000293
Mark Dickinson211c6252009-02-01 10:28:51 +0000294/* parser_richcompare(PyObject* left, PyObject* right, int op)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000295 *
296 * Comparison function used by the Python operators ==, !=, <, >, <=, >=
297 * This really just wraps a call to parser_compare_nodes() with some easy
298 * checks and protection code.
299 *
300 */
Mark Dickinson211c6252009-02-01 10:28:51 +0000301
Mark Dickinson211c6252009-02-01 10:28:51 +0000302static PyObject *
303parser_richcompare(PyObject *left, PyObject *right, int op)
Guido van Rossum47478871996-08-21 14:32:37 +0000304{
Mark Dickinson211c6252009-02-01 10:28:51 +0000305 int result;
Mark Dickinson211c6252009-02-01 10:28:51 +0000306
307 /* neither argument should be NULL, unless something's gone wrong */
308 if (left == NULL || right == NULL) {
309 PyErr_BadInternalCall();
310 return NULL;
311 }
312
313 /* both arguments should be instances of PyST_Object */
314 if (!PyST_Object_Check(left) || !PyST_Object_Check(right)) {
stratakise8b19652017-11-02 11:32:54 +0100315 Py_RETURN_NOTIMPLEMENTED;
Mark Dickinson211c6252009-02-01 10:28:51 +0000316 }
317
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000318 if (left == right)
Mark Dickinson211c6252009-02-01 10:28:51 +0000319 /* if arguments are identical, they're equal */
320 result = 0;
321 else
322 result = parser_compare_nodes(((PyST_Object *)left)->st_node,
323 ((PyST_Object *)right)->st_node);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000324
stratakise8b19652017-11-02 11:32:54 +0100325 Py_RETURN_RICHCOMPARE(result, 0, op);
Fred Drakeff9ea482000-04-19 13:54:15 +0000326}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000327
Fred Drakec2683dd2001-07-17 19:32:05 +0000328/* parser_newstobject(node* st)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000329 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000330 * Allocates a new Python object representing an ST. This is simply the
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000331 * 'wrapper' object that holds a node* and allows it to be passed around in
332 * Python code.
333 *
334 */
335static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000336parser_newstobject(node *st, int type)
Guido van Rossum47478871996-08-21 14:32:37 +0000337{
Fred Drakec2683dd2001-07-17 19:32:05 +0000338 PyST_Object* o = PyObject_New(PyST_Object, &PyST_Type);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000339
340 if (o != 0) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000341 o->st_node = st;
342 o->st_type = type;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000343 o->st_flags.cf_flags = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000344 }
Fred Drake268397f1998-04-29 14:16:32 +0000345 else {
Fred Drakec2683dd2001-07-17 19:32:05 +0000346 PyNode_Free(st);
Fred Drake268397f1998-04-29 14:16:32 +0000347 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000348 return ((PyObject*)o);
Fred Drakeff9ea482000-04-19 13:54:15 +0000349}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000350
351
Fred Drakec2683dd2001-07-17 19:32:05 +0000352/* void parser_free(PyST_Object* st)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000353 *
354 * This is called by a del statement that reduces the reference count to 0.
355 *
356 */
357static void
Fred Drakec2683dd2001-07-17 19:32:05 +0000358parser_free(PyST_Object *st)
Guido van Rossum47478871996-08-21 14:32:37 +0000359{
Fred Drakec2683dd2001-07-17 19:32:05 +0000360 PyNode_Free(st->st_node);
361 PyObject_Del(st);
Fred Drakeff9ea482000-04-19 13:54:15 +0000362}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000363
Jesus Ceae9c53182012-08-03 14:28:37 +0200364static PyObject *
365parser_sizeof(PyST_Object *st, void *unused)
366{
367 Py_ssize_t res;
368
Serhiy Storchaka5c4064e2015-12-19 20:05:25 +0200369 res = _PyObject_SIZE(Py_TYPE(st)) + _PyNode_SizeOf(st->st_node);
Jesus Ceae9c53182012-08-03 14:28:37 +0200370 return PyLong_FromSsize_t(res);
371}
372
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000373
Fred Drakec2683dd2001-07-17 19:32:05 +0000374/* parser_st2tuple(PyObject* self, PyObject* args, PyObject* kw)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000375 *
376 * This provides conversion from a node* to a tuple object that can be
Fred Drakec2683dd2001-07-17 19:32:05 +0000377 * returned to the Python-level caller. The ST object is not modified.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000378 *
379 */
380static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000381parser_st2tuple(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000382{
Antoine Pitrou721738f2012-08-15 23:20:39 +0200383 int line_info = 0;
384 int col_info = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000385 PyObject *res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000386 int ok;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000387
Georg Brandl30704ea02008-07-23 15:07:12 +0000388 static char *keywords[] = {"st", "line_info", "col_info", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000389
Martin v. Löwis1a214512008-06-11 05:26:20 +0000390 if (self == NULL || PyModule_Check(self)) {
Antoine Pitrou721738f2012-08-15 23:20:39 +0200391 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|pp:st2tuple", keywords,
392 &PyST_Type, &self, &line_info,
393 &col_info);
Fred Drake268397f1998-04-29 14:16:32 +0000394 }
Fred Drake503d8d61998-04-13 18:45:18 +0000395 else
Antoine Pitrou721738f2012-08-15 23:20:39 +0200396 ok = PyArg_ParseTupleAndKeywords(args, kw, "|pp:totuple", &keywords[1],
397 &line_info, &col_info);
Fred Drake268397f1998-04-29 14:16:32 +0000398 if (ok != 0) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000399 /*
Fred Drakec2683dd2001-07-17 19:32:05 +0000400 * Convert ST into a tuple representation. Use Guido's function,
Fred Drakeff9ea482000-04-19 13:54:15 +0000401 * since it's known to work already.
402 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000403 res = node2tuple(((PyST_Object*)self)->st_node,
Antoine Pitrou721738f2012-08-15 23:20:39 +0200404 PyTuple_New, PyTuple_SetItem, line_info, col_info);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000405 }
406 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000407}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000408
409
Fred Drakec2683dd2001-07-17 19:32:05 +0000410/* parser_st2list(PyObject* self, PyObject* args, PyObject* kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000411 *
Fred Drake2a6875e1999-09-20 22:32:18 +0000412 * This provides conversion from a node* to a list object that can be
Fred Drakec2683dd2001-07-17 19:32:05 +0000413 * returned to the Python-level caller. The ST object is not modified.
Guido van Rossum47478871996-08-21 14:32:37 +0000414 *
415 */
416static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000417parser_st2list(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000418{
Antoine Pitrou721738f2012-08-15 23:20:39 +0200419 int line_info = 0;
420 int col_info = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000421 PyObject *res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000422 int ok;
Guido van Rossum47478871996-08-21 14:32:37 +0000423
Georg Brandl30704ea02008-07-23 15:07:12 +0000424 static char *keywords[] = {"st", "line_info", "col_info", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000425
Martin v. Löwis1a214512008-06-11 05:26:20 +0000426 if (self == NULL || PyModule_Check(self))
Antoine Pitrou721738f2012-08-15 23:20:39 +0200427 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|pp:st2list", keywords,
428 &PyST_Type, &self, &line_info,
429 &col_info);
Fred Drake503d8d61998-04-13 18:45:18 +0000430 else
Antoine Pitrou721738f2012-08-15 23:20:39 +0200431 ok = PyArg_ParseTupleAndKeywords(args, kw, "|pp:tolist", &keywords[1],
432 &line_info, &col_info);
Fred Drake503d8d61998-04-13 18:45:18 +0000433 if (ok) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000434 /*
Fred Drakec2683dd2001-07-17 19:32:05 +0000435 * Convert ST into a tuple representation. Use Guido's function,
Fred Drakeff9ea482000-04-19 13:54:15 +0000436 * since it's known to work already.
437 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000438 res = node2tuple(self->st_node,
Antoine Pitrou721738f2012-08-15 23:20:39 +0200439 PyList_New, PyList_SetItem, line_info, col_info);
Guido van Rossum47478871996-08-21 14:32:37 +0000440 }
441 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000442}
Guido van Rossum47478871996-08-21 14:32:37 +0000443
444
Fred Drakec2683dd2001-07-17 19:32:05 +0000445/* parser_compilest(PyObject* self, PyObject* args)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000446 *
447 * This function creates code objects from the parse tree represented by
448 * the passed-in data object. An optional file name is passed in as well.
449 *
450 */
451static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000452parser_compilest(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000453{
Victor Stinner14e461d2013-08-26 22:28:21 +0200454 PyObject* res = NULL;
455 PyArena* arena = NULL;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000456 mod_ty mod;
Victor Stinner14e461d2013-08-26 22:28:21 +0200457 PyObject* filename = NULL;
Fred Drake503d8d61998-04-13 18:45:18 +0000458 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000459
Georg Brandl30704ea02008-07-23 15:07:12 +0000460 static char *keywords[] = {"st", "filename", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000461
Martin v. Löwis1a214512008-06-11 05:26:20 +0000462 if (self == NULL || PyModule_Check(self))
Victor Stinner14e461d2013-08-26 22:28:21 +0200463 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|O&:compilest", keywords,
464 &PyST_Type, &self,
465 PyUnicode_FSDecoder, &filename);
Fred Drake503d8d61998-04-13 18:45:18 +0000466 else
Victor Stinner14e461d2013-08-26 22:28:21 +0200467 ok = PyArg_ParseTupleAndKeywords(args, kw, "|O&:compile", &keywords[1],
468 PyUnicode_FSDecoder, &filename);
469 if (!ok)
470 goto error;
Fred Drake503d8d61998-04-13 18:45:18 +0000471
Victor Stinner14e461d2013-08-26 22:28:21 +0200472 if (filename == NULL) {
473 filename = PyUnicode_FromString("<syntax-tree>");
474 if (filename == NULL)
475 goto error;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000476 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000477
Victor Stinner14e461d2013-08-26 22:28:21 +0200478 arena = PyArena_New();
479 if (!arena)
480 goto error;
481
482 mod = PyAST_FromNodeObject(self->st_node, &self->st_flags,
483 filename, arena);
484 if (!mod)
485 goto error;
486
487 res = (PyObject *)PyAST_CompileObject(mod, filename,
488 &self->st_flags, -1, arena);
489error:
490 Py_XDECREF(filename);
491 if (arena != NULL)
492 PyArena_Free(arena);
493 return res;
Fred Drakeff9ea482000-04-19 13:54:15 +0000494}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000495
496
497/* PyObject* parser_isexpr(PyObject* self, PyObject* args)
498 * PyObject* parser_issuite(PyObject* self, PyObject* args)
499 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000500 * Checks the passed-in ST object to determine if it is an expression or
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000501 * a statement suite, respectively. The return is a Python truth value.
502 *
503 */
504static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000505parser_isexpr(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000506{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000507 PyObject* res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000508 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000509
Georg Brandl30704ea02008-07-23 15:07:12 +0000510 static char *keywords[] = {"st", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000511
Martin v. Löwis1a214512008-06-11 05:26:20 +0000512 if (self == NULL || PyModule_Check(self))
Fred Drakeff9ea482000-04-19 13:54:15 +0000513 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:isexpr", keywords,
Fred Drakec2683dd2001-07-17 19:32:05 +0000514 &PyST_Type, &self);
Fred Drake503d8d61998-04-13 18:45:18 +0000515 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000516 ok = PyArg_ParseTupleAndKeywords(args, kw, ":isexpr", &keywords[1]);
Fred Drake503d8d61998-04-13 18:45:18 +0000517
518 if (ok) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000519 /* Check to see if the ST represents an expression or not. */
520 res = (self->st_type == PyST_EXPR) ? Py_True : Py_False;
Fred Drakeff9ea482000-04-19 13:54:15 +0000521 Py_INCREF(res);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000522 }
523 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000524}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000525
526
527static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000528parser_issuite(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000529{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000530 PyObject* res = 0;
Fred Drake503d8d61998-04-13 18:45:18 +0000531 int ok;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000532
Georg Brandl30704ea02008-07-23 15:07:12 +0000533 static char *keywords[] = {"st", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000534
Martin v. Löwis1a214512008-06-11 05:26:20 +0000535 if (self == NULL || PyModule_Check(self))
Fred Drakeff9ea482000-04-19 13:54:15 +0000536 ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:issuite", keywords,
Fred Drakec2683dd2001-07-17 19:32:05 +0000537 &PyST_Type, &self);
Fred Drake503d8d61998-04-13 18:45:18 +0000538 else
Fred Drakeff9ea482000-04-19 13:54:15 +0000539 ok = PyArg_ParseTupleAndKeywords(args, kw, ":issuite", &keywords[1]);
Fred Drake503d8d61998-04-13 18:45:18 +0000540
541 if (ok) {
Fred Drakec2683dd2001-07-17 19:32:05 +0000542 /* Check to see if the ST represents an expression or not. */
543 res = (self->st_type == PyST_EXPR) ? Py_False : Py_True;
Fred Drakeff9ea482000-04-19 13:54:15 +0000544 Py_INCREF(res);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000545 }
546 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000547}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000548
549
Serhiy Storchakaef1585e2015-12-25 20:01:53 +0200550/* err_string(const char* message)
Guido van Rossum3d602e31996-07-21 02:33:56 +0000551 *
552 * Sets the error string for an exception of type ParserError.
553 *
554 */
555static void
Serhiy Storchakaef1585e2015-12-25 20:01:53 +0200556err_string(const char *message)
Guido van Rossum47478871996-08-21 14:32:37 +0000557{
Guido van Rossum3d602e31996-07-21 02:33:56 +0000558 PyErr_SetString(parser_error, message);
Fred Drakeff9ea482000-04-19 13:54:15 +0000559}
Guido van Rossum3d602e31996-07-21 02:33:56 +0000560
561
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000562/* PyObject* parser_do_parse(PyObject* args, int type)
563 *
564 * Internal function to actually execute the parse and return the result if
Jeremy Hyltonaccb62b2002-12-31 18:17:44 +0000565 * successful or set an exception if not.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000566 *
567 */
568static PyObject*
Serhiy Storchakaef1585e2015-12-25 20:01:53 +0200569parser_do_parse(PyObject *args, PyObject *kw, const char *argspec, int type)
Guido van Rossum47478871996-08-21 14:32:37 +0000570{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000571 char* string = 0;
572 PyObject* res = 0;
Benjamin Petersonf216c942008-10-31 02:28:05 +0000573 int flags = 0;
574 perrdetail err;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000575
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000576 static char *keywords[] = {"source", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000577
578 if (PyArg_ParseTupleAndKeywords(args, kw, argspec, keywords, &string)) {
Benjamin Petersonf216c942008-10-31 02:28:05 +0000579 node* n = PyParser_ParseStringFlagsFilenameEx(string, NULL,
580 &_PyParser_Grammar,
581 (type == PyST_EXPR)
582 ? eval_input : file_input,
583 &err, &flags);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000584
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000585 if (n) {
586 res = parser_newstobject(n, type);
Benjamin Petersonf216c942008-10-31 02:28:05 +0000587 if (res)
588 ((PyST_Object *)res)->st_flags.cf_flags = flags & PyCF_MASK;
589 }
Benjamin Petersonf719957d2011-06-04 22:06:42 -0500590 else {
Benjamin Petersonf216c942008-10-31 02:28:05 +0000591 PyParser_SetError(&err);
Benjamin Petersonf719957d2011-06-04 22:06:42 -0500592 }
Benjamin Petersonf0cdbad2011-06-05 22:14:05 -0500593 PyParser_ClearError(&err);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000594 }
595 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +0000596}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000597
598
599/* PyObject* parser_expr(PyObject* self, PyObject* args)
600 * PyObject* parser_suite(PyObject* self, PyObject* args)
601 *
602 * External interfaces to the parser itself. Which is called determines if
603 * the parser attempts to recognize an expression ('eval' form) or statement
604 * suite ('exec' form). The real work is done by parser_do_parse() above.
605 *
606 */
607static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000608parser_expr(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000609{
Fred Drake268397f1998-04-29 14:16:32 +0000610 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000611 return (parser_do_parse(args, kw, "s:expr", PyST_EXPR));
Fred Drakeff9ea482000-04-19 13:54:15 +0000612}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000613
614
615static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000616parser_suite(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000617{
Fred Drake268397f1998-04-29 14:16:32 +0000618 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000619 return (parser_do_parse(args, kw, "s:suite", PyST_SUITE));
Fred Drakeff9ea482000-04-19 13:54:15 +0000620}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000621
622
623
Fred Drakec2683dd2001-07-17 19:32:05 +0000624/* This is the messy part of the code. Conversion from a tuple to an ST
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000625 * object requires that the input tuple be valid without having to rely on
626 * catching an exception from the compiler. This is done to allow the
627 * compiler itself to remain fast, since most of its input will come from
628 * the parser directly, and therefore be known to be syntactically correct.
629 * This validation is done to ensure that we don't core dump the compile
630 * phase, returning an exception instead.
631 *
632 * Two aspects can be broken out in this code: creating a node tree from
633 * the tuple passed in, and verifying that it is indeed valid. It may be
Fred Drakec2683dd2001-07-17 19:32:05 +0000634 * advantageous to expand the number of ST types to include funcdefs and
635 * lambdadefs to take advantage of the optimizer, recognizing those STs
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000636 * here. They are not necessary, and not quite as useful in a raw form.
637 * For now, let's get expressions and suites working reliably.
638 */
639
640
Jeremy Hylton938ace62002-07-17 16:30:39 +0000641static node* build_node_tree(PyObject *tuple);
Benjamin Peterson53595c42016-06-02 11:30:18 -0700642
643static int
644validate_node(node *tree)
645{
646 int type = TYPE(tree);
647 int nch = NCH(tree);
648 dfa *nt_dfa;
649 state *dfa_state;
650 int pos, arc;
651
652 assert(ISNONTERMINAL(type));
653 type -= NT_OFFSET;
654 if (type >= _PyParser_Grammar.g_ndfas) {
655 PyErr_Format(parser_error, "Unrecognized node type %d.", TYPE(tree));
656 return 0;
657 }
658 nt_dfa = &_PyParser_Grammar.g_dfa[type];
659 REQ(tree, nt_dfa->d_type);
660
661 /* Run the DFA for this nonterminal. */
662 dfa_state = &nt_dfa->d_state[nt_dfa->d_initial];
663 for (pos = 0; pos < nch; ++pos) {
664 node *ch = CHILD(tree, pos);
665 int ch_type = TYPE(ch);
Guido van Rossumdcfcd142019-01-31 03:40:27 -0800666 if (ch_type == suite && TYPE(tree) == funcdef) {
667 /* This is the opposite hack of what we do in parser.c
668 (search for func_body_suite), except we don't ever
669 support type comments here. */
670 ch_type = func_body_suite;
671 }
Benjamin Peterson53595c42016-06-02 11:30:18 -0700672 for (arc = 0; arc < dfa_state->s_narcs; ++arc) {
673 short a_label = dfa_state->s_arc[arc].a_lbl;
674 assert(a_label < _PyParser_Grammar.g_ll.ll_nlabels);
675 if (_PyParser_Grammar.g_ll.ll_label[a_label].lb_type == ch_type) {
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300676 /* The child is acceptable; if non-terminal, validate it recursively. */
Benjamin Peterson53595c42016-06-02 11:30:18 -0700677 if (ISNONTERMINAL(ch_type) && !validate_node(ch))
678 return 0;
679
680 /* Update the state, and move on to the next child. */
681 dfa_state = &nt_dfa->d_state[dfa_state->s_arc[arc].a_arrow];
682 goto arc_found;
683 }
684 }
685 /* What would this state have accepted? */
686 {
687 short a_label = dfa_state->s_arc->a_lbl;
688 int next_type;
689 if (!a_label) /* Wouldn't accept any more children */
690 goto illegal_num_children;
691
692 next_type = _PyParser_Grammar.g_ll.ll_label[a_label].lb_type;
693 if (ISNONTERMINAL(next_type))
694 PyErr_Format(parser_error, "Expected node type %d, got %d.",
695 next_type, ch_type);
696 else
697 PyErr_Format(parser_error, "Illegal terminal: expected %s.",
698 _PyParser_TokenNames[next_type]);
699 return 0;
700 }
701
702arc_found:
703 continue;
704 }
705 /* Are we in a final state? If so, return 1 for successful validation. */
706 for (arc = 0; arc < dfa_state->s_narcs; ++arc) {
707 if (!dfa_state->s_arc[arc].a_lbl) {
708 return 1;
709 }
710 }
711
712illegal_num_children:
713 PyErr_Format(parser_error,
714 "Illegal number of children for %s node.", nt_dfa->d_name);
715 return 0;
716}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000717
Fred Drakec2683dd2001-07-17 19:32:05 +0000718/* PyObject* parser_tuple2st(PyObject* self, PyObject* args)
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000719 *
720 * This is the public function, called from the Python code. It receives a
Fred Drakec2683dd2001-07-17 19:32:05 +0000721 * single tuple object from the caller, and creates an ST object if the
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000722 * tuple can be validated. It does this by checking the first code of the
723 * tuple, and, if acceptable, builds the internal representation. If this
724 * step succeeds, the internal representation is validated as fully as
Benjamin Peterson53595c42016-06-02 11:30:18 -0700725 * possible with the recursive validate_node() routine defined above.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000726 *
Fred Drakec2683dd2001-07-17 19:32:05 +0000727 * This function must be changed if support is to be added for PyST_FRAGMENT
728 * ST objects.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000729 *
730 */
731static PyObject*
Fred Drakec2683dd2001-07-17 19:32:05 +0000732parser_tuple2st(PyST_Object *self, PyObject *args, PyObject *kw)
Guido van Rossum47478871996-08-21 14:32:37 +0000733{
Fred Drake268397f1998-04-29 14:16:32 +0000734 NOTE(ARGUNUSED(self))
Fred Drakec2683dd2001-07-17 19:32:05 +0000735 PyObject *st = 0;
Fred Drake0ac9b072000-09-12 21:58:06 +0000736 PyObject *tuple;
737 node *tree;
Guido van Rossum3d602e31996-07-21 02:33:56 +0000738
Martin v. Löwisb79afb62006-02-27 17:01:22 +0000739 static char *keywords[] = {"sequence", NULL};
Fred Drake7a15ba51999-09-09 14:21:52 +0000740
Fred Drakec2683dd2001-07-17 19:32:05 +0000741 if (!PyArg_ParseTupleAndKeywords(args, kw, "O:sequence2st", keywords,
Fred Drake7a15ba51999-09-09 14:21:52 +0000742 &tuple))
Fred Drakeff9ea482000-04-19 13:54:15 +0000743 return (0);
Guido van Rossum47478871996-08-21 14:32:37 +0000744 if (!PySequence_Check(tuple)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000745 PyErr_SetString(PyExc_ValueError,
Fred Drakec2683dd2001-07-17 19:32:05 +0000746 "sequence2st() requires a single sequence argument");
Fred Drakeff9ea482000-04-19 13:54:15 +0000747 return (0);
Guido van Rossum47478871996-08-21 14:32:37 +0000748 }
749 /*
Fred Drake0ac9b072000-09-12 21:58:06 +0000750 * Convert the tree to the internal form before checking it.
Guido van Rossum47478871996-08-21 14:32:37 +0000751 */
Fred Drake0ac9b072000-09-12 21:58:06 +0000752 tree = build_node_tree(tuple);
753 if (tree != 0) {
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300754 node *validation_root = NULL;
Benjamin Peterson53595c42016-06-02 11:30:18 -0700755 int tree_type = 0;
756 switch (TYPE(tree)) {
757 case eval_input:
Fred Drake0ac9b072000-09-12 21:58:06 +0000758 /* Might be an eval form. */
Benjamin Peterson53595c42016-06-02 11:30:18 -0700759 tree_type = PyST_EXPR;
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300760 validation_root = tree;
Benjamin Peterson53595c42016-06-02 11:30:18 -0700761 break;
762 case encoding_decl:
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000763 /* This looks like an encoding_decl so far. */
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300764 if (NCH(tree) == 1) {
765 tree_type = PyST_SUITE;
766 validation_root = CHILD(tree, 0);
767 }
768 else {
Benjamin Peterson53595c42016-06-02 11:30:18 -0700769 err_string("Error Parsing encoding_decl");
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300770 }
771 break;
Benjamin Peterson53595c42016-06-02 11:30:18 -0700772 case file_input:
773 /* This looks like an exec form so far. */
Benjamin Peterson53595c42016-06-02 11:30:18 -0700774 tree_type = PyST_SUITE;
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300775 validation_root = tree;
Benjamin Peterson53595c42016-06-02 11:30:18 -0700776 break;
777 default:
Fred Drake0ac9b072000-09-12 21:58:06 +0000778 /* This is a fragment, at best. */
Fred Drake661ea262000-10-24 19:57:45 +0000779 err_string("parse tree does not use a valid start symbol");
Fred Drake0ac9b072000-09-12 21:58:06 +0000780 }
Benjamin Peterson53595c42016-06-02 11:30:18 -0700781
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300782 if (validation_root != NULL && validate_node(validation_root))
Benjamin Peterson53595c42016-06-02 11:30:18 -0700783 st = parser_newstobject(tree, tree_type);
784 else
785 PyNode_Free(tree);
Guido van Rossum47478871996-08-21 14:32:37 +0000786 }
Andrew Svetlov737fb892012-12-18 21:14:22 +0200787 /* Make sure we raise an exception on all errors. We should never
Guido van Rossum47478871996-08-21 14:32:37 +0000788 * get this, but we'd do well to be sure something is done.
789 */
Fred Drakec2683dd2001-07-17 19:32:05 +0000790 if (st == NULL && !PyErr_Occurred())
791 err_string("unspecified ST error occurred");
Guido van Rossum3d602e31996-07-21 02:33:56 +0000792
Fred Drakec2683dd2001-07-17 19:32:05 +0000793 return st;
Fred Drakeff9ea482000-04-19 13:54:15 +0000794}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000795
796
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000797/* node* build_node_children()
798 *
799 * Iterate across the children of the current non-terminal node and build
800 * their structures. If successful, return the root of this portion of
801 * the tree, otherwise, 0. Any required exception will be specified already,
802 * and no memory will have been deallocated.
803 *
804 */
805static node*
Fred Drakeff9ea482000-04-19 13:54:15 +0000806build_node_children(PyObject *tuple, node *root, int *line_num)
Guido van Rossum47478871996-08-21 14:32:37 +0000807{
Martin v. Löwis18e16552006-02-15 17:27:45 +0000808 Py_ssize_t len = PyObject_Size(tuple);
809 Py_ssize_t i;
810 int err;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000811
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300812 if (len < 0) {
813 return NULL;
814 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000815 for (i = 1; i < len; ++i) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000816 /* elem must always be a sequence, however simple */
Fred Drakeff9ea482000-04-19 13:54:15 +0000817 PyObject* elem = PySequence_GetItem(tuple, i);
818 int ok = elem != NULL;
Serhiy Storchaka78980432013-01-15 01:12:17 +0200819 int type = 0;
Fred Drakeff9ea482000-04-19 13:54:15 +0000820 char *strn = 0;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000821
Fred Drakeff9ea482000-04-19 13:54:15 +0000822 if (ok)
823 ok = PySequence_Check(elem);
824 if (ok) {
825 PyObject *temp = PySequence_GetItem(elem, 0);
826 if (temp == NULL)
827 ok = 0;
828 else {
Christian Heimes217cfd12007-12-02 14:31:20 +0000829 ok = PyLong_Check(temp);
Serhiy Storchaka78980432013-01-15 01:12:17 +0200830 if (ok) {
831 type = _PyLong_AsInt(temp);
832 if (type == -1 && PyErr_Occurred()) {
833 Py_DECREF(temp);
834 Py_DECREF(elem);
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300835 return NULL;
Serhiy Storchaka78980432013-01-15 01:12:17 +0200836 }
837 }
Fred Drakeff9ea482000-04-19 13:54:15 +0000838 Py_DECREF(temp);
839 }
840 }
841 if (!ok) {
Victor Stinner5f8d4852014-01-02 11:49:27 +0100842 PyObject *err = Py_BuildValue("Os", elem,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000843 "Illegal node construct.");
844 PyErr_SetObject(parser_error, err);
845 Py_XDECREF(err);
Fred Drakeff9ea482000-04-19 13:54:15 +0000846 Py_XDECREF(elem);
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300847 return NULL;
Fred Drakeff9ea482000-04-19 13:54:15 +0000848 }
849 if (ISTERMINAL(type)) {
Martin v. Löwis18e16552006-02-15 17:27:45 +0000850 Py_ssize_t len = PyObject_Size(elem);
Fred Drake0ac9b072000-09-12 21:58:06 +0000851 PyObject *temp;
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000852 const char *temp_str;
Guido van Rossum47478871996-08-21 14:32:37 +0000853
Fred Drake0ac9b072000-09-12 21:58:06 +0000854 if ((len != 2) && (len != 3)) {
Fred Drake661ea262000-10-24 19:57:45 +0000855 err_string("terminal nodes must have 2 or 3 entries");
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300856 Py_DECREF(elem);
857 return NULL;
Fred Drake0ac9b072000-09-12 21:58:06 +0000858 }
859 temp = PySequence_GetItem(elem, 1);
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300860 if (temp == NULL) {
861 Py_DECREF(elem);
862 return NULL;
863 }
Neal Norwitz3fcbea52007-08-26 04:51:28 +0000864 if (!PyUnicode_Check(temp)) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000865 PyErr_Format(parser_error,
Fred Drake661ea262000-10-24 19:57:45 +0000866 "second item in terminal node must be a string,"
867 " found %s",
Christian Heimes90aa7642007-12-19 02:45:37 +0000868 Py_TYPE(temp)->tp_name);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000869 Py_DECREF(temp);
Neal Norwitz2cde0eb2007-08-11 04:58:43 +0000870 Py_DECREF(elem);
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300871 return NULL;
Fred Drake0ac9b072000-09-12 21:58:06 +0000872 }
873 if (len == 3) {
874 PyObject *o = PySequence_GetItem(elem, 2);
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300875 if (o == NULL) {
876 Py_DECREF(temp);
877 Py_DECREF(elem);
878 return NULL;
879 }
880 if (PyLong_Check(o)) {
881 int num = _PyLong_AsInt(o);
882 if (num == -1 && PyErr_Occurred()) {
Fred Drake0ac9b072000-09-12 21:58:06 +0000883 Py_DECREF(o);
884 Py_DECREF(temp);
Neal Norwitz2cde0eb2007-08-11 04:58:43 +0000885 Py_DECREF(elem);
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300886 return NULL;
Fred Drake0ac9b072000-09-12 21:58:06 +0000887 }
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300888 *line_num = num;
Fred Drakeff9ea482000-04-19 13:54:15 +0000889 }
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300890 else {
891 PyErr_Format(parser_error,
892 "third item in terminal node must be an"
893 " integer, found %s",
894 Py_TYPE(temp)->tp_name);
895 Py_DECREF(o);
896 Py_DECREF(temp);
897 Py_DECREF(elem);
898 return NULL;
899 }
900 Py_DECREF(o);
Fred Drakeff9ea482000-04-19 13:54:15 +0000901 }
Serhiy Storchaka06515832016-11-20 09:13:07 +0200902 temp_str = PyUnicode_AsUTF8AndSize(temp, &len);
Alexander Belopolskye239d232010-12-08 23:31:48 +0000903 if (temp_str == NULL) {
904 Py_DECREF(temp);
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300905 Py_DECREF(elem);
906 return NULL;
Alexander Belopolskye239d232010-12-08 23:31:48 +0000907 }
Alexandre Vassalottia85998a2008-05-03 18:24:43 +0000908 strn = (char *)PyObject_MALLOC(len + 1);
Victor Stinner3bd6abd2013-07-12 01:33:59 +0200909 if (strn == NULL) {
910 Py_DECREF(temp);
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300911 Py_DECREF(elem);
Victor Stinner3bd6abd2013-07-12 01:33:59 +0200912 PyErr_NoMemory();
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300913 return NULL;
Victor Stinner3bd6abd2013-07-12 01:33:59 +0200914 }
915 (void) memcpy(strn, temp_str, len + 1);
Fred Drake0ac9b072000-09-12 21:58:06 +0000916 Py_DECREF(temp);
Fred Drakeff9ea482000-04-19 13:54:15 +0000917 }
918 else if (!ISNONTERMINAL(type)) {
919 /*
920 * It has to be one or the other; this is an error.
Andrew Svetlov737fb892012-12-18 21:14:22 +0200921 * Raise an exception.
Fred Drakeff9ea482000-04-19 13:54:15 +0000922 */
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300923 PyObject *err = Py_BuildValue("Os", elem, "unknown node type.");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000924 PyErr_SetObject(parser_error, err);
925 Py_XDECREF(err);
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300926 Py_DECREF(elem);
927 return NULL;
Fred Drakeff9ea482000-04-19 13:54:15 +0000928 }
Ivan Levkivskyi9932a222019-01-22 11:18:22 +0000929 err = PyNode_AddChild(root, type, strn, *line_num, 0, *line_num, 0);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000930 if (err == E_NOMEM) {
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300931 Py_DECREF(elem);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000932 PyObject_FREE(strn);
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300933 PyErr_NoMemory();
934 return NULL;
Fred Drake8b55b2d2001-12-05 22:10:44 +0000935 }
936 if (err == E_OVERFLOW) {
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300937 Py_DECREF(elem);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000938 PyObject_FREE(strn);
Fred Drake8b55b2d2001-12-05 22:10:44 +0000939 PyErr_SetString(PyExc_ValueError,
940 "unsupported number of child nodes");
941 return NULL;
942 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000943
Fred Drakeff9ea482000-04-19 13:54:15 +0000944 if (ISNONTERMINAL(type)) {
945 node* new_child = CHILD(root, i - 1);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000946
Fred Drakeff9ea482000-04-19 13:54:15 +0000947 if (new_child != build_node_children(elem, new_child, line_num)) {
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300948 Py_DECREF(elem);
949 return NULL;
Fred Drakeff9ea482000-04-19 13:54:15 +0000950 }
951 }
952 else if (type == NEWLINE) { /* It's true: we increment the */
953 ++(*line_num); /* line number *after* the newline! */
954 }
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300955 Py_DECREF(elem);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000956 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000957 return root;
Fred Drakeff9ea482000-04-19 13:54:15 +0000958}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000959
960
961static node*
Fred Drakeff9ea482000-04-19 13:54:15 +0000962build_node_tree(PyObject *tuple)
Guido van Rossum47478871996-08-21 14:32:37 +0000963{
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000964 node* res = 0;
Guido van Rossum47478871996-08-21 14:32:37 +0000965 PyObject *temp = PySequence_GetItem(tuple, 0);
Fred Drake0ac9b072000-09-12 21:58:06 +0000966 long num = -1;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000967
Guido van Rossum47478871996-08-21 14:32:37 +0000968 if (temp != NULL)
Christian Heimes217cfd12007-12-02 14:31:20 +0000969 num = PyLong_AsLong(temp);
Guido van Rossum47478871996-08-21 14:32:37 +0000970 Py_XDECREF(temp);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000971 if (ISTERMINAL(num)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000972 /*
973 * The tuple is simple, but it doesn't start with a start symbol.
Andrew Svetlov737fb892012-12-18 21:14:22 +0200974 * Raise an exception now and be done with it.
Fred Drakeff9ea482000-04-19 13:54:15 +0000975 */
Victor Stinner6684bdf2013-07-17 00:13:52 +0200976 tuple = Py_BuildValue("Os", tuple,
Fred Drakec2683dd2001-07-17 19:32:05 +0000977 "Illegal syntax-tree; cannot start with terminal symbol.");
Fred Drakeff9ea482000-04-19 13:54:15 +0000978 PyErr_SetObject(parser_error, tuple);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000979 Py_XDECREF(tuple);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000980 }
981 else if (ISNONTERMINAL(num)) {
Fred Drakeff9ea482000-04-19 13:54:15 +0000982 /*
983 * Not efficient, but that can be handled later.
984 */
985 int line_num = 0;
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000986 PyObject *encoding = NULL;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +0000987
Michael W. Hudsondf1252d2003-02-08 18:05:10 +0000988 if (num == encoding_decl) {
989 encoding = PySequence_GetItem(tuple, 2);
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +0300990 if (encoding == NULL) {
991 PyErr_SetString(parser_error, "missed encoding");
992 return NULL;
993 }
994 if (!PyUnicode_Check(encoding)) {
995 PyErr_Format(parser_error,
996 "encoding must be a string, found %.200s",
997 Py_TYPE(encoding)->tp_name);
998 Py_DECREF(encoding);
999 return NULL;
1000 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00001001 /* tuple isn't borrowed anymore here, need to DECREF */
1002 tuple = PySequence_GetSlice(tuple, 0, 2);
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +03001003 if (tuple == NULL) {
1004 Py_DECREF(encoding);
Alexander Belopolskye239d232010-12-08 23:31:48 +00001005 return NULL;
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +03001006 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00001007 }
Fred Drakeff9ea482000-04-19 13:54:15 +00001008 res = PyNode_New(num);
Fred Drake8b55b2d2001-12-05 22:10:44 +00001009 if (res != NULL) {
1010 if (res != build_node_children(tuple, res, &line_num)) {
1011 PyNode_Free(res);
1012 res = NULL;
1013 }
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00001014 if (res && encoding) {
Martin v. Löwisad0a4622006-02-16 14:30:23 +00001015 Py_ssize_t len;
Neal Norwitz3fcbea52007-08-26 04:51:28 +00001016 const char *temp;
Serhiy Storchaka06515832016-11-20 09:13:07 +02001017 temp = PyUnicode_AsUTF8AndSize(encoding, &len);
Alexander Belopolskye239d232010-12-08 23:31:48 +00001018 if (temp == NULL) {
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +03001019 PyNode_Free(res);
Alexander Belopolskye239d232010-12-08 23:31:48 +00001020 Py_DECREF(encoding);
1021 Py_DECREF(tuple);
1022 return NULL;
1023 }
Alexandre Vassalottia85998a2008-05-03 18:24:43 +00001024 res->n_str = (char *)PyObject_MALLOC(len + 1);
Victor Stinner3bd6abd2013-07-12 01:33:59 +02001025 if (res->n_str == NULL) {
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +03001026 PyNode_Free(res);
Victor Stinner3bd6abd2013-07-12 01:33:59 +02001027 Py_DECREF(encoding);
1028 Py_DECREF(tuple);
1029 PyErr_NoMemory();
1030 return NULL;
1031 }
1032 (void) memcpy(res->n_str, temp, len + 1);
Michael W. Hudsondf1252d2003-02-08 18:05:10 +00001033 }
Fred Drakeff9ea482000-04-19 13:54:15 +00001034 }
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +03001035 if (encoding != NULL) {
1036 Py_DECREF(encoding);
1037 Py_DECREF(tuple);
1038 }
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001039 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001040 else {
Fred Drakeff9ea482000-04-19 13:54:15 +00001041 /* The tuple is illegal -- if the number is neither TERMINAL nor
Fred Drake0ac9b072000-09-12 21:58:06 +00001042 * NONTERMINAL, we can't use it. Not sure the implementation
1043 * allows this condition, but the API doesn't preclude it.
Fred Drakeff9ea482000-04-19 13:54:15 +00001044 */
Serhiy Storchakaa79f4c22017-04-19 21:09:21 +03001045 PyObject *err = Py_BuildValue("Os", tuple,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001046 "Illegal component tuple.");
1047 PyErr_SetObject(parser_error, err);
1048 Py_XDECREF(err);
1049 }
Guido van Rossum3d602e31996-07-21 02:33:56 +00001050
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001051 return (res);
Fred Drakeff9ea482000-04-19 13:54:15 +00001052}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001053
1054
Fred Drake43f8f9b1998-04-13 16:25:46 +00001055static PyObject*
1056pickle_constructor = NULL;
1057
1058
1059static PyObject*
Fred Drakeff9ea482000-04-19 13:54:15 +00001060parser__pickler(PyObject *self, PyObject *args)
Fred Drake43f8f9b1998-04-13 16:25:46 +00001061{
Fred Drake268397f1998-04-29 14:16:32 +00001062 NOTE(ARGUNUSED(self))
Fred Drake43f8f9b1998-04-13 16:25:46 +00001063 PyObject *result = NULL;
Fred Drakec2683dd2001-07-17 19:32:05 +00001064 PyObject *st = NULL;
Fred Drake2a6875e1999-09-20 22:32:18 +00001065 PyObject *empty_dict = NULL;
Fred Drake43f8f9b1998-04-13 16:25:46 +00001066
Fred Drakec2683dd2001-07-17 19:32:05 +00001067 if (PyArg_ParseTuple(args, "O!:_pickler", &PyST_Type, &st)) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001068 PyObject *newargs;
1069 PyObject *tuple;
Fred Drake43f8f9b1998-04-13 16:25:46 +00001070
Fred Drake2a6875e1999-09-20 22:32:18 +00001071 if ((empty_dict = PyDict_New()) == NULL)
1072 goto finally;
Fred Drakec2683dd2001-07-17 19:32:05 +00001073 if ((newargs = Py_BuildValue("Oi", st, 1)) == NULL)
Fred Drakeff9ea482000-04-19 13:54:15 +00001074 goto finally;
Fred Drakec2683dd2001-07-17 19:32:05 +00001075 tuple = parser_st2tuple((PyST_Object*)NULL, newargs, empty_dict);
Fred Drakeff9ea482000-04-19 13:54:15 +00001076 if (tuple != NULL) {
1077 result = Py_BuildValue("O(O)", pickle_constructor, tuple);
1078 Py_DECREF(tuple);
1079 }
Fred Drakeff9ea482000-04-19 13:54:15 +00001080 Py_DECREF(newargs);
Fred Drake43f8f9b1998-04-13 16:25:46 +00001081 }
1082 finally:
Fred Drake2a6875e1999-09-20 22:32:18 +00001083 Py_XDECREF(empty_dict);
1084
Fred Drake43f8f9b1998-04-13 16:25:46 +00001085 return (result);
Fred Drakeff9ea482000-04-19 13:54:15 +00001086}
Fred Drake43f8f9b1998-04-13 16:25:46 +00001087
1088
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001089/* Functions exported by this module. Most of this should probably
Fred Drakec2683dd2001-07-17 19:32:05 +00001090 * be converted into an ST object with methods, but that is better
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001091 * done directly in Python, allowing subclasses to be created directly.
Guido van Rossum3d602e31996-07-21 02:33:56 +00001092 * We'd really have to write a wrapper around it all anyway to allow
1093 * inheritance.
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001094 */
1095static PyMethodDef parser_functions[] = {
Serhiy Storchaka62be7422018-11-27 13:27:31 +02001096 {"compilest", (PyCFunction)(void(*)(void))parser_compilest, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00001097 PyDoc_STR("Compiles an ST object into a code object.")},
Serhiy Storchaka62be7422018-11-27 13:27:31 +02001098 {"expr", (PyCFunction)(void(*)(void))parser_expr, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00001099 PyDoc_STR("Creates an ST object from an expression.")},
Serhiy Storchaka62be7422018-11-27 13:27:31 +02001100 {"isexpr", (PyCFunction)(void(*)(void))parser_isexpr, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00001101 PyDoc_STR("Determines if an ST object was created from an expression.")},
Serhiy Storchaka62be7422018-11-27 13:27:31 +02001102 {"issuite", (PyCFunction)(void(*)(void))parser_issuite, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00001103 PyDoc_STR("Determines if an ST object was created from a suite.")},
Serhiy Storchaka62be7422018-11-27 13:27:31 +02001104 {"suite", (PyCFunction)(void(*)(void))parser_suite, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00001105 PyDoc_STR("Creates an ST object from a suite.")},
Serhiy Storchaka62be7422018-11-27 13:27:31 +02001106 {"sequence2st", (PyCFunction)(void(*)(void))parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00001107 PyDoc_STR("Creates an ST object from a tree representation.")},
Serhiy Storchaka62be7422018-11-27 13:27:31 +02001108 {"st2tuple", (PyCFunction)(void(*)(void))parser_st2tuple, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00001109 PyDoc_STR("Creates a tuple-tree representation of an ST.")},
Serhiy Storchaka62be7422018-11-27 13:27:31 +02001110 {"st2list", (PyCFunction)(void(*)(void))parser_st2list, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00001111 PyDoc_STR("Creates a list-tree representation of an ST.")},
Serhiy Storchaka62be7422018-11-27 13:27:31 +02001112 {"tuple2st", (PyCFunction)(void(*)(void))parser_tuple2st, PUBLIC_METHOD_TYPE,
Neal Norwitz200788c2002-08-13 22:20:41 +00001113 PyDoc_STR("Creates an ST object from a tree representation.")},
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001114
Fred Drake43f8f9b1998-04-13 16:25:46 +00001115 /* private stuff: support pickle module */
Fred Drake13130bc2001-08-15 16:44:56 +00001116 {"_pickler", (PyCFunction)parser__pickler, METH_VARARGS,
Neal Norwitz200788c2002-08-13 22:20:41 +00001117 PyDoc_STR("Returns the pickle magic to allow ST objects to be pickled.")},
Fred Drake43f8f9b1998-04-13 16:25:46 +00001118
Fred Drake268397f1998-04-29 14:16:32 +00001119 {NULL, NULL, 0, NULL}
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001120 };
1121
1122
Martin v. Löwis1a214512008-06-11 05:26:20 +00001123
1124static struct PyModuleDef parsermodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001125 PyModuleDef_HEAD_INIT,
1126 "parser",
1127 NULL,
1128 -1,
1129 parser_functions,
1130 NULL,
1131 NULL,
1132 NULL,
1133 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00001134};
1135
1136PyMODINIT_FUNC PyInit_parser(void); /* supply a prototype */
Fred Drake28f739a2000-08-25 22:42:40 +00001137
Mark Hammond62b1ab12002-07-23 06:31:15 +00001138PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00001139PyInit_parser(void)
Fred Drake28f739a2000-08-25 22:42:40 +00001140{
Fred Drake13130bc2001-08-15 16:44:56 +00001141 PyObject *module, *copyreg;
Fred Drakec2683dd2001-07-17 19:32:05 +00001142
Amaury Forgeot d'Arce43d33a2008-07-02 20:50:16 +00001143 if (PyType_Ready(&PyST_Type) < 0)
1144 return NULL;
Martin v. Löwis1a214512008-06-11 05:26:20 +00001145 module = PyModule_Create(&parsermodule);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00001146 if (module == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001147 return NULL;
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001148
Fred Drake7a15ba51999-09-09 14:21:52 +00001149 if (parser_error == 0)
1150 parser_error = PyErr_NewException("parser.ParserError", NULL, NULL);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001151
Tim Peters6a627252003-07-21 14:25:23 +00001152 if (parser_error == 0)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001153 return NULL;
Tim Peters6a627252003-07-21 14:25:23 +00001154 /* CAUTION: The code next used to skip bumping the refcount on
Martin v. Löwis1a214512008-06-11 05:26:20 +00001155 * parser_error. That's a disaster if PyInit_parser() gets called more
Tim Peters6a627252003-07-21 14:25:23 +00001156 * than once. By incref'ing, we ensure that each module dict that
1157 * gets created owns its reference to the shared parser_error object,
1158 * and the file static parser_error vrbl owns a reference too.
1159 */
1160 Py_INCREF(parser_error);
1161 if (PyModule_AddObject(module, "ParserError", parser_error) != 0)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001162 return NULL;
Tim Peters6a627252003-07-21 14:25:23 +00001163
Fred Drakec2683dd2001-07-17 19:32:05 +00001164 Py_INCREF(&PyST_Type);
Fred Drake13130bc2001-08-15 16:44:56 +00001165 PyModule_AddObject(module, "STType", (PyObject*)&PyST_Type);
Guido van Rossum3d602e31996-07-21 02:33:56 +00001166
Fred Drake13130bc2001-08-15 16:44:56 +00001167 PyModule_AddStringConstant(module, "__copyright__",
1168 parser_copyright_string);
1169 PyModule_AddStringConstant(module, "__doc__",
1170 parser_doc_string);
1171 PyModule_AddStringConstant(module, "__version__",
1172 parser_version_string);
Guido van Rossumd9e9f9c1995-10-11 17:35:38 +00001173
Fred Drake78bdb9b2001-07-19 20:17:15 +00001174 /* Register to support pickling.
1175 * If this fails, the import of this module will fail because an
1176 * exception will be raised here; should we clear the exception?
1177 */
Alexandre Vassalottif7fa63d2008-05-11 08:55:36 +00001178 copyreg = PyImport_ImportModuleNoBlock("copyreg");
Fred Drake13130bc2001-08-15 16:44:56 +00001179 if (copyreg != NULL) {
Fred Drakeff9ea482000-04-19 13:54:15 +00001180 PyObject *func, *pickler;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02001181 _Py_IDENTIFIER(pickle);
1182 _Py_IDENTIFIER(sequence2st);
1183 _Py_IDENTIFIER(_pickler);
Fred Drake43f8f9b1998-04-13 16:25:46 +00001184
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +02001185 func = _PyObject_GetAttrId(copyreg, &PyId_pickle);
1186 pickle_constructor = _PyObject_GetAttrId(module, &PyId_sequence2st);
1187 pickler = _PyObject_GetAttrId(module, &PyId__pickler);
Fred Drakeff9ea482000-04-19 13:54:15 +00001188 Py_XINCREF(pickle_constructor);
1189 if ((func != NULL) && (pickle_constructor != NULL)
1190 && (pickler != NULL)) {
1191 PyObject *res;
Fred Drake43f8f9b1998-04-13 16:25:46 +00001192
Thomas Wouters477c8d52006-05-27 19:21:47 +00001193 res = PyObject_CallFunctionObjArgs(func, &PyST_Type, pickler,
1194 pickle_constructor, NULL);
Fred Drakeff9ea482000-04-19 13:54:15 +00001195 Py_XDECREF(res);
1196 }
1197 Py_XDECREF(func);
Fred Drake13130bc2001-08-15 16:44:56 +00001198 Py_XDECREF(pickle_constructor);
1199 Py_XDECREF(pickler);
1200 Py_DECREF(copyreg);
Fred Drake43f8f9b1998-04-13 16:25:46 +00001201 }
Martin v. Löwis1a214512008-06-11 05:26:20 +00001202 return module;
Fred Drakeff9ea482000-04-19 13:54:15 +00001203}