2 """Generate C code from an ASDL description."""
5 # handle fields that have a type but no name
15 """Return a string for the C name of the type.
17 This function special cases the default types provided by asdl:
18 identifier, string, int, bool.
20 # XXX ack! need to figure out where Id is useful and where string
21 if isinstance(name
, asdl
.Id
):
23 if name
in asdl
.builtin_types
:
28 def reflow_lines(s
, depth
):
29 """Reflow the line s indented depth tabs.
31 Return a sequence of lines where no line extends beyond MAX_COL
32 when properly indented. The first line is properly indented based
33 exclusively on depth * TABSIZE. All following lines -- these are
34 the reflowed lines generated by this function -- start at the same
35 column as the first character beyond the opening { in the first
38 size
= MAX_COL
- depth
* TABSIZE
45 while len(cur
) > size
:
46 i
= cur
.rfind(' ', 0, size
)
47 # XXX this should be fixed for real
48 if i
== -1 and 'GeneratorExp' in cur
:
50 assert i
!= -1, "Impossible line %d to reflow: %r" % (size
, s
)
51 lines
.append(padding
+ cur
[:i
])
53 # find new size based on brace
54 j
= cur
.find('{', 0, i
)
56 j
+= 2 # account for the brace and the space after it
60 j
= cur
.find('(', 0, i
)
62 j
+= 1 # account for the paren (no space after it)
67 lines
.append(padding
+ cur
)
71 """Return True if a sum is a simple.
73 A sum is simple if its types have no fields, e.g.
74 unaryop = Invert | Not | UAdd | USub
82 class EmitVisitor(asdl
.VisitorBase
):
83 """Visit that emits lines"""
85 def __init__(self
, file):
87 super(EmitVisitor
, self
).__init
__()
89 def emit(self
, s
, depth
, reflow
=True):
90 # XXX reflow long lines?
92 lines
= reflow_lines(s
, depth
)
96 line
= (" " * TABSIZE
* depth
) + line
+ "\n"
100 class TypeDefVisitor(EmitVisitor
):
101 def visitModule(self
, mod
):
105 def visitType(self
, type, depth
=0):
106 self
.visit(type.value
, type.name
, depth
)
108 def visitSum(self
, sum, name
, depth
):
110 self
.simple_sum(sum, name
, depth
)
112 self
.sum_with_constructors(sum, name
, depth
)
114 def simple_sum(self
, sum, name
, depth
):
116 for i
in range(len(sum.types
)):
118 enum
.append("%s=%d" % (type.name
, i
+ 1))
119 enums
= ", ".join(enum
)
120 ctype
= get_c_type(name
)
121 s
= "typedef enum _%s { %s } %s;" % (name
, enums
, ctype
)
125 def sum_with_constructors(self
, sum, name
, depth
):
126 ctype
= get_c_type(name
)
127 s
= "typedef struct _%(name)s *%(ctype)s;" % locals()
131 def visitProduct(self
, product
, name
, depth
):
132 ctype
= get_c_type(name
)
133 s
= "typedef struct _%(name)s *%(ctype)s;" % locals()
138 class StructVisitor(EmitVisitor
):
139 """Visitor to generate typdefs for AST."""
141 def visitModule(self
, mod
):
145 def visitType(self
, type, depth
=0):
146 self
.visit(type.value
, type.name
, depth
)
148 def visitSum(self
, sum, name
, depth
):
149 if not is_simple(sum):
150 self
.sum_with_constructors(sum, name
, depth
)
152 def sum_with_constructors(self
, sum, name
, depth
):
153 def emit(s
, depth
=depth
):
154 self
.emit(s
% sys
._getframe
(1).f_locals
, depth
)
156 for i
in range(len(sum.types
)):
158 enum
.append("%s_kind=%d" % (type.name
, i
+ 1))
160 emit("enum _%(name)s_kind {" + ", ".join(enum
) + "};")
162 emit("struct _%(name)s {")
163 emit("enum _%(name)s_kind kind;", depth
+ 1)
164 emit("union {", depth
+ 1)
166 self
.visit(t
, depth
+ 2)
167 emit("} v;", depth
+ 1)
168 for field
in sum.attributes
:
169 # rudimentary attribute handling
170 type = str(field
.type)
171 assert type in asdl
.builtin_types
, type
172 emit("%s %s;" % (type, field
.name
), depth
+ 1);
176 def visitConstructor(self
, cons
, depth
):
178 self
.emit("struct {", depth
)
179 for f
in cons
.fields
:
180 self
.visit(f
, depth
+ 1)
181 self
.emit("} %s;" % cons
.name
, depth
)
184 # XXX not sure what I want here, nothing is probably fine
187 def visitField(self
, field
, depth
):
188 # XXX need to lookup field.type, because it might be something
190 ctype
= get_c_type(field
.type)
193 if field
.type.value
in ('cmpop',):
194 self
.emit("asdl_int_seq *%(name)s;" % locals(), depth
)
196 self
.emit("asdl_seq *%(name)s;" % locals(), depth
)
198 self
.emit("%(ctype)s %(name)s;" % locals(), depth
)
200 def visitProduct(self
, product
, name
, depth
):
201 self
.emit("struct _%(name)s {" % locals(), depth
)
202 for f
in product
.fields
:
203 self
.visit(f
, depth
+ 1)
204 self
.emit("};", depth
)
208 class PrototypeVisitor(EmitVisitor
):
209 """Generate function prototypes for the .h file"""
211 def visitModule(self
, mod
):
215 def visitType(self
, type):
216 self
.visit(type.value
, type.name
)
218 def visitSum(self
, sum, name
):
223 self
.visit(t
, name
, sum.attributes
)
225 def get_args(self
, fields
):
226 """Return list of C argument into, one for each field.
228 Argument info is 3-tuple of a C type, variable name, and flag
229 that is true if type can be NULL.
236 c
= unnamed
[name
] = unnamed
.get(name
, 0) + 1
238 name
= "name%d" % (c
- 1)
241 # XXX should extend get_c_type() to handle this
243 if f
.type.value
in ('cmpop',):
244 ctype
= "asdl_int_seq *"
248 ctype
= get_c_type(f
.type)
249 args
.append((ctype
, name
, f
.opt
or f
.seq
))
252 def visitConstructor(self
, cons
, type, attrs
):
253 args
= self
.get_args(cons
.fields
)
254 attrs
= self
.get_args(attrs
)
255 ctype
= get_c_type(type)
256 self
.emit_function(cons
.name
, ctype
, args
, attrs
)
258 def emit_function(self
, name
, ctype
, args
, attrs
, union
=True):
261 argstr
= ", ".join(["%s %s" % (atype
, aname
)
262 for atype
, aname
, opt
in args
])
263 argstr
+= ", PyArena *arena"
265 argstr
= "PyArena *arena"
267 for i
in range(1, len(args
)+1):
269 self
.emit("#define %s(%s) _Py_%s(%s)" % (name
, margs
, name
, margs
), 0,
271 self
.emit("%s _Py_%s(%s);" % (ctype
, name
, argstr
), False)
273 def visitProduct(self
, prod
, name
):
274 self
.emit_function(name
, get_c_type(name
),
275 self
.get_args(prod
.fields
), [], union
=False)
278 class FunctionVisitor(PrototypeVisitor
):
279 """Visitor to generate constructor functions for AST."""
281 def emit_function(self
, name
, ctype
, args
, attrs
, union
=True):
282 def emit(s
, depth
=0, reflow
=True):
283 self
.emit(s
, depth
, reflow
)
284 argstr
= ", ".join(["%s %s" % (atype
, aname
)
285 for atype
, aname
, opt
in args
+ attrs
])
287 argstr
+= ", PyArena *arena"
289 argstr
= "PyArena *arena"
290 self
.emit("%s" % ctype
, 0)
291 emit("%s(%s)" % (name
, argstr
))
293 emit("%s p;" % ctype
, 1)
294 for argtype
, argname
, opt
in args
:
295 # XXX hack alert: false is allowed for a bool
296 if not opt
and not (argtype
== "bool" or argtype
== "int"):
297 emit("if (!%s) {" % argname
, 1)
298 emit("PyErr_SetString(PyExc_ValueError,", 2)
299 msg
= "field %s is required for %s" % (argname
, name
)
300 emit(' "%s");' % msg
,
302 emit('return NULL;', 2)
305 emit("p = (%s)PyArena_Malloc(arena, sizeof(*p));" % ctype
, 1);
307 emit("return NULL;", 2)
309 self
.emit_body_union(name
, args
, attrs
)
311 self
.emit_body_struct(name
, args
, attrs
)
316 def emit_body_union(self
, name
, args
, attrs
):
317 def emit(s
, depth
=0, reflow
=True):
318 self
.emit(s
, depth
, reflow
)
319 emit("p->kind = %s_kind;" % name
, 1)
320 for argtype
, argname
, opt
in args
:
321 emit("p->v.%s.%s = %s;" % (name
, argname
, argname
), 1)
322 for argtype
, argname
, opt
in attrs
:
323 emit("p->%s = %s;" % (argname
, argname
), 1)
325 def emit_body_struct(self
, name
, args
, attrs
):
326 def emit(s
, depth
=0, reflow
=True):
327 self
.emit(s
, depth
, reflow
)
328 for argtype
, argname
, opt
in args
:
329 emit("p->%s = %s;" % (argname
, argname
), 1)
333 class PickleVisitor(EmitVisitor
):
335 def visitModule(self
, mod
):
339 def visitType(self
, type):
340 self
.visit(type.value
, type.name
)
342 def visitSum(self
, sum, name
):
345 def visitProduct(self
, sum, name
):
348 def visitConstructor(self
, cons
, name
):
351 def visitField(self
, sum):
355 class Obj2ModPrototypeVisitor(PickleVisitor
):
356 def visitProduct(self
, prod
, name
):
357 code
= "static int obj2ast_%s(PyObject* obj, %s* out, PyArena* arena);"
358 self
.emit(code
% (name
, get_c_type(name
)), 0)
360 visitSum
= visitProduct
363 class Obj2ModVisitor(PickleVisitor
):
364 def funcHeader(self
, name
):
365 ctype
= get_c_type(name
)
367 self
.emit("obj2ast_%s(PyObject* obj, %s* out, PyArena* arena)" % (name
, ctype
), 0)
369 self
.emit("PyObject* tmp = NULL;", 1)
370 self
.emit("int isinstance;", 1)
373 def sumTrailer(self
, name
):
375 self
.emit("tmp = PyObject_Repr(obj);", 1)
376 # there's really nothing more we can do if this fails ...
377 self
.emit("if (tmp == NULL) goto failed;", 1)
378 error
= "expected some sort of %s, but got %%.400s" % name
379 format
= "PyErr_Format(PyExc_TypeError, \"%s\", PyString_AS_STRING(tmp));"
380 self
.emit(format
% error
, 1, reflow
=False)
381 self
.emit("failed:", 0)
382 self
.emit("Py_XDECREF(tmp);", 1)
383 self
.emit("return 1;", 1)
387 def simpleSum(self
, sum, name
):
388 self
.funcHeader(name
)
390 line
= ("isinstance = PyObject_IsInstance(obj, "
391 "(PyObject *)%s_type);")
392 self
.emit(line
% (t
.name
,), 1)
393 self
.emit("if (isinstance == -1) {", 1)
394 self
.emit("return 1;", 2)
396 self
.emit("if (isinstance) {", 1)
397 self
.emit("*out = %s;" % t
.name
, 2)
398 self
.emit("return 0;", 2)
400 self
.sumTrailer(name
)
402 def buildArgs(self
, fields
):
403 return ", ".join(fields
+ ["arena"])
405 def complexSum(self
, sum, name
):
406 self
.funcHeader(name
)
407 for a
in sum.attributes
:
408 self
.visitAttributeDeclaration(a
, name
, sum=sum)
410 # XXX: should we only do this for 'expr'?
411 self
.emit("if (obj == Py_None) {", 1)
412 self
.emit("*out = NULL;", 2)
413 self
.emit("return 0;", 2)
415 for a
in sum.attributes
:
416 self
.visitField(a
, name
, sum=sum, depth
=1)
418 line
= "isinstance = PyObject_IsInstance(obj, (PyObject*)%s_type);"
419 self
.emit(line
% (t
.name
,), 1)
420 self
.emit("if (isinstance == -1) {", 1)
421 self
.emit("return 1;", 2)
423 self
.emit("if (isinstance) {", 1)
425 self
.visitFieldDeclaration(f
, t
.name
, sum=sum, depth
=2)
428 self
.visitField(f
, t
.name
, sum=sum, depth
=2)
429 args
= [f
.name
.value
for f
in t
.fields
] + [a
.name
.value
for a
in sum.attributes
]
430 self
.emit("*out = %s(%s);" % (t
.name
, self
.buildArgs(args
)), 2)
431 self
.emit("if (*out == NULL) goto failed;", 2)
432 self
.emit("return 0;", 2)
434 self
.sumTrailer(name
)
436 def visitAttributeDeclaration(self
, a
, name
, sum=sum):
437 ctype
= get_c_type(a
.type)
438 self
.emit("%s %s;" % (ctype
, a
.name
), 1)
440 def visitSum(self
, sum, name
):
442 self
.simpleSum(sum, name
)
444 self
.complexSum(sum, name
)
446 def visitProduct(self
, prod
, name
):
447 ctype
= get_c_type(name
)
449 self
.emit("obj2ast_%s(PyObject* obj, %s* out, PyArena* arena)" % (name
, ctype
), 0)
451 self
.emit("PyObject* tmp = NULL;", 1)
452 for f
in prod
.fields
:
453 self
.visitFieldDeclaration(f
, name
, prod
=prod
, depth
=1)
455 for f
in prod
.fields
:
456 self
.visitField(f
, name
, prod
=prod
, depth
=1)
457 args
= [f
.name
.value
for f
in prod
.fields
]
458 self
.emit("*out = %s(%s);" % (name
, self
.buildArgs(args
)), 1)
459 self
.emit("return 0;", 1)
460 self
.emit("failed:", 0)
461 self
.emit("Py_XDECREF(tmp);", 1)
462 self
.emit("return 1;", 1)
466 def visitFieldDeclaration(self
, field
, name
, sum=None, prod
=None, depth
=0):
467 ctype
= get_c_type(field
.type)
469 if self
.isSimpleType(field
):
470 self
.emit("asdl_int_seq* %s;" % field
.name
, depth
)
472 self
.emit("asdl_seq* %s;" % field
.name
, depth
)
474 ctype
= get_c_type(field
.type)
475 self
.emit("%s %s;" % (ctype
, field
.name
), depth
)
477 def isSimpleSum(self
, field
):
478 # XXX can the members of this list be determined automatically?
479 return field
.type.value
in ('expr_context', 'boolop', 'operator',
482 def isNumeric(self
, field
):
483 return get_c_type(field
.type) in ("int", "bool")
485 def isSimpleType(self
, field
):
486 return self
.isSimpleSum(field
) or self
.isNumeric(field
)
488 def visitField(self
, field
, name
, sum=None, prod
=None, depth
=0):
489 ctype
= get_c_type(field
.type)
490 self
.emit("if (PyObject_HasAttrString(obj, \"%s\")) {" % field
.name
, depth
)
491 self
.emit("int res;", depth
+1)
493 self
.emit("Py_ssize_t len;", depth
+1)
494 self
.emit("Py_ssize_t i;", depth
+1)
495 self
.emit("tmp = PyObject_GetAttrString(obj, \"%s\");" % field
.name
, depth
+1)
496 self
.emit("if (tmp == NULL) goto failed;", depth
+1)
498 self
.emit("if (!PyList_Check(tmp)) {", depth
+1)
499 self
.emit("PyErr_Format(PyExc_TypeError, \"%s field \\\"%s\\\" must "
500 "be a list, not a %%.200s\", tmp->ob_type->tp_name);" %
502 depth
+2, reflow
=False)
503 self
.emit("goto failed;", depth
+2)
504 self
.emit("}", depth
+1)
505 self
.emit("len = PyList_GET_SIZE(tmp);", depth
+1)
506 if self
.isSimpleType(field
):
507 self
.emit("%s = asdl_int_seq_new(len, arena);" % field
.name
, depth
+1)
509 self
.emit("%s = asdl_seq_new(len, arena);" % field
.name
, depth
+1)
510 self
.emit("if (%s == NULL) goto failed;" % field
.name
, depth
+1)
511 self
.emit("for (i = 0; i < len; i++) {", depth
+1)
512 self
.emit("%s value;" % ctype
, depth
+2)
513 self
.emit("res = obj2ast_%s(PyList_GET_ITEM(tmp, i), &value, arena);" %
514 field
.type, depth
+2, reflow
=False)
515 self
.emit("if (res != 0) goto failed;", depth
+2)
516 self
.emit("asdl_seq_SET(%s, i, value);" % field
.name
, depth
+2)
517 self
.emit("}", depth
+1)
519 self
.emit("res = obj2ast_%s(tmp, &%s, arena);" %
520 (field
.type, field
.name
), depth
+1)
521 self
.emit("if (res != 0) goto failed;", depth
+1)
523 self
.emit("Py_XDECREF(tmp);", depth
+1)
524 self
.emit("tmp = NULL;", depth
+1)
525 self
.emit("} else {", depth
)
527 message
= "required field \\\"%s\\\" missing from %s" % (field
.name
, name
)
528 format
= "PyErr_SetString(PyExc_TypeError, \"%s\");"
529 self
.emit(format
% message
, depth
+1, reflow
=False)
530 self
.emit("return 1;", depth
+1)
532 if self
.isNumeric(field
):
533 self
.emit("%s = 0;" % field
.name
, depth
+1)
534 elif not self
.isSimpleType(field
):
535 self
.emit("%s = NULL;" % field
.name
, depth
+1)
537 raise TypeError("could not determine the default value for %s" % field
.name
)
538 self
.emit("}", depth
)
541 class MarshalPrototypeVisitor(PickleVisitor
):
543 def prototype(self
, sum, name
):
544 ctype
= get_c_type(name
)
545 self
.emit("static int marshal_write_%s(PyObject **, int *, %s);"
548 visitProduct
= visitSum
= prototype
551 class PyTypesDeclareVisitor(PickleVisitor
):
553 def visitProduct(self
, prod
, name
):
554 self
.emit("static PyTypeObject *%s_type;" % name
, 0)
555 self
.emit("static PyObject* ast2obj_%s(void*);" % name
, 0)
557 self
.emit("static char *%s_fields[]={" % name
,0)
558 for f
in prod
.fields
:
559 self
.emit('"%s",' % f
.name
, 1)
562 def visitSum(self
, sum, name
):
563 self
.emit("static PyTypeObject *%s_type;" % name
, 0)
565 self
.emit("static char *%s_attributes[] = {" % name
, 0)
566 for a
in sum.attributes
:
567 self
.emit('"%s",' % a
.name
, 1)
571 ptype
= get_c_type(name
)
574 tnames
.append(str(t
.name
)+"_singleton")
575 tnames
= ", *".join(tnames
)
576 self
.emit("static PyObject *%s;" % tnames
, 0)
577 self
.emit("static PyObject* ast2obj_%s(%s);" % (name
, ptype
), 0)
579 self
.visitConstructor(t
, name
)
581 def visitConstructor(self
, cons
, name
):
582 self
.emit("static PyTypeObject *%s_type;" % cons
.name
, 0)
584 self
.emit("static char *%s_fields[]={" % cons
.name
, 0)
585 for t
in cons
.fields
:
586 self
.emit('"%s",' % t
.name
, 1)
589 class PyTypesVisitor(PickleVisitor
):
591 def visitModule(self
, mod
):
594 ast_type_init(PyObject *self, PyObject *args, PyObject *kw)
596 Py_ssize_t i, numfields = 0;
598 PyObject *key, *value, *fields;
599 fields = PyObject_GetAttrString((PyObject*)Py_TYPE(self), "_fields");
603 numfields = PySequence_Size(fields);
607 res = 0; /* if no error occurs, this stays 0 to the end */
608 if (PyTuple_GET_SIZE(args) > 0) {
609 if (numfields != PyTuple_GET_SIZE(args)) {
610 PyErr_Format(PyExc_TypeError, "%.400s constructor takes %s"
611 "%zd positional argument%s",
612 Py_TYPE(self)->tp_name,
613 numfields == 0 ? "" : "either 0 or ",
614 numfields, numfields == 1 ? "" : "s");
618 for (i = 0; i < PyTuple_GET_SIZE(args); i++) {
619 /* cannot be reached when fields is NULL */
620 PyObject *name = PySequence_GetItem(fields, i);
625 res = PyObject_SetAttr(self, name, PyTuple_GET_ITEM(args, i));
632 i = 0; /* needed by PyDict_Next */
633 while (PyDict_Next(kw, &i, &key, &value)) {
634 res = PyObject_SetAttr(self, key, value);
644 /* Pickling support */
646 ast_type_reduce(PyObject *self, PyObject *unused)
649 PyObject *dict = PyObject_GetAttrString(self, "__dict__");
651 if (PyErr_ExceptionMatches(PyExc_AttributeError))
657 res = Py_BuildValue("O()O", Py_TYPE(self), dict);
661 return Py_BuildValue("O()", Py_TYPE(self));
664 static PyMethodDef ast_type_methods[] = {
665 {"__reduce__", ast_type_reduce, METH_NOARGS, NULL},
669 static PyTypeObject AST_type = {
670 PyVarObject_HEAD_INIT(&PyType_Type, 0)
680 0, /* tp_as_number */
681 0, /* tp_as_sequence */
682 0, /* tp_as_mapping */
686 PyObject_GenericGetAttr, /* tp_getattro */
687 PyObject_GenericSetAttr, /* tp_setattro */
688 0, /* tp_as_buffer */
689 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
693 0, /* tp_richcompare */
694 0, /* tp_weaklistoffset */
697 ast_type_methods, /* tp_methods */
702 0, /* tp_descr_get */
703 0, /* tp_descr_set */
704 0, /* tp_dictoffset */
705 (initproc)ast_type_init, /* tp_init */
706 PyType_GenericAlloc, /* tp_alloc */
707 PyType_GenericNew, /* tp_new */
708 PyObject_Del, /* tp_free */
712 static PyTypeObject* make_type(char *type, PyTypeObject* base, char**fields, int num_fields)
714 PyObject *fnames, *result;
716 fnames = PyTuple_New(num_fields);
717 if (!fnames) return NULL;
718 for (i = 0; i < num_fields; i++) {
719 PyObject *field = PyString_FromString(fields[i]);
724 PyTuple_SET_ITEM(fnames, i, field);
726 result = PyObject_CallFunction((PyObject*)&PyType_Type, "s(O){sOss}",
727 type, base, "_fields", fnames, "__module__", "_ast");
729 return (PyTypeObject*)result;
732 static int add_attributes(PyTypeObject* type, char**attrs, int num_fields)
735 PyObject *s, *l = PyTuple_New(num_fields);
737 for(i = 0; i < num_fields; i++) {
738 s = PyString_FromString(attrs[i]);
743 PyTuple_SET_ITEM(l, i, s);
745 result = PyObject_SetAttrString((PyObject*)type, "_attributes", l) >= 0;
750 /* Conversion AST -> Python */
752 static PyObject* ast2obj_list(asdl_seq *seq, PyObject* (*func)(void*))
754 int i, n = asdl_seq_LEN(seq);
755 PyObject *result = PyList_New(n);
759 for (i = 0; i < n; i++) {
760 value = func(asdl_seq_GET(seq, i));
765 PyList_SET_ITEM(result, i, value);
770 static PyObject* ast2obj_object(void *o)
774 Py_INCREF((PyObject*)o);
777 #define ast2obj_identifier ast2obj_object
778 #define ast2obj_string ast2obj_object
779 static PyObject* ast2obj_bool(bool b)
781 return PyBool_FromLong(b);
784 static PyObject* ast2obj_int(long b)
786 return PyInt_FromLong(b);
789 /* Conversion Python -> AST */
791 static int obj2ast_object(PyObject* obj, PyObject** out, PyArena* arena)
796 PyArena_AddPyObject(arena, obj);
802 #define obj2ast_identifier obj2ast_object
803 #define obj2ast_string obj2ast_object
805 static int obj2ast_int(PyObject* obj, int* out, PyArena* arena)
808 if (!PyInt_Check(obj) && !PyLong_Check(obj)) {
809 PyObject *s = PyObject_Repr(obj);
810 if (s == NULL) return 1;
811 PyErr_Format(PyExc_ValueError, "invalid integer value: %.400s",
812 PyString_AS_STRING(s));
817 i = (int)PyLong_AsLong(obj);
818 if (i == -1 && PyErr_Occurred())
824 static int obj2ast_bool(PyObject* obj, bool* out, PyArena* arena)
826 if (!PyBool_Check(obj)) {
827 PyObject *s = PyObject_Repr(obj);
828 if (s == NULL) return 1;
829 PyErr_Format(PyExc_ValueError, "invalid boolean value: %.400s",
830 PyString_AS_STRING(s));
835 *out = (obj == Py_True);
839 static int add_ast_fields(void)
841 PyObject *empty_tuple, *d;
842 if (PyType_Ready(&AST_type) < 0)
844 d = AST_type.tp_dict;
845 empty_tuple = PyTuple_New(0);
847 PyDict_SetItemString(d, "_fields", empty_tuple) < 0 ||
848 PyDict_SetItemString(d, "_attributes", empty_tuple) < 0) {
849 Py_XDECREF(empty_tuple);
852 Py_DECREF(empty_tuple);
856 """, 0, reflow
=False)
858 self
.emit("static int init_types(void)",0)
860 self
.emit("static int initialized;", 1)
861 self
.emit("if (initialized) return 1;", 1)
862 self
.emit("if (add_ast_fields() < 0) return 0;", 1)
865 self
.emit("initialized = 1;", 1)
866 self
.emit("return 1;", 1);
869 def visitProduct(self
, prod
, name
):
871 fields
= name
.value
+"_fields"
874 self
.emit('%s_type = make_type("%s", &AST_type, %s, %d);' %
875 (name
, name
, fields
, len(prod
.fields
)), 1)
876 self
.emit("if (!%s_type) return 0;" % name
, 1)
878 def visitSum(self
, sum, name
):
879 self
.emit('%s_type = make_type("%s", &AST_type, NULL, 0);' %
881 self
.emit("if (!%s_type) return 0;" % name
, 1)
883 self
.emit("if (!add_attributes(%s_type, %s_attributes, %d)) return 0;" %
884 (name
, name
, len(sum.attributes
)), 1)
886 self
.emit("if (!add_attributes(%s_type, NULL, 0)) return 0;" % name
, 1)
887 simple
= is_simple(sum)
889 self
.visitConstructor(t
, name
, simple
)
891 def visitConstructor(self
, cons
, name
, simple
):
893 fields
= cons
.name
.value
+"_fields"
896 self
.emit('%s_type = make_type("%s", %s_type, %s, %d);' %
897 (cons
.name
, cons
.name
, name
, fields
, len(cons
.fields
)), 1)
898 self
.emit("if (!%s_type) return 0;" % cons
.name
, 1)
900 self
.emit("%s_singleton = PyType_GenericNew(%s_type, NULL, NULL);" %
901 (cons
.name
, cons
.name
), 1)
902 self
.emit("if (!%s_singleton) return 0;" % cons
.name
, 1)
905 def parse_version(mod
):
906 return mod
.version
.value
[12:-3]
908 class ASTModuleVisitor(PickleVisitor
):
910 def visitModule(self
, mod
):
911 self
.emit("PyMODINIT_FUNC", 0)
912 self
.emit("init_ast(void)", 0)
914 self
.emit("PyObject *m, *d;", 1)
915 self
.emit("if (!init_types()) return;", 1)
916 self
.emit('m = Py_InitModule3("_ast", NULL, NULL);', 1)
917 self
.emit("if (!m) return;", 1)
918 self
.emit("d = PyModule_GetDict(m);", 1)
919 self
.emit('if (PyDict_SetItemString(d, "AST", (PyObject*)&AST_type) < 0) return;', 1)
920 self
.emit('if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0)', 1)
921 self
.emit("return;", 2)
922 # Value of version: "$Revision$"
923 self
.emit('if (PyModule_AddStringConstant(m, "__version__", "%s") < 0)'
924 % parse_version(mod
), 1)
925 self
.emit("return;", 2)
930 def visitProduct(self
, prod
, name
):
933 def visitSum(self
, sum, name
):
936 self
.visitConstructor(t
, name
)
938 def visitConstructor(self
, cons
, name
):
939 self
.addObj(cons
.name
)
941 def addObj(self
, name
):
942 self
.emit('if (PyDict_SetItemString(d, "%s", (PyObject*)%s_type) < 0) return;' % (name
, name
), 1)
945 _SPECIALIZED_SEQUENCES
= ('stmt', 'expr')
947 def find_sequence(fields
, doing_specialization
):
948 """Return True if any field uses a sequence."""
951 if not doing_specialization
:
953 if str(f
.type) not in _SPECIALIZED_SEQUENCES
:
957 def has_sequence(types
, doing_specialization
):
959 if find_sequence(t
.fields
, doing_specialization
):
964 class StaticVisitor(PickleVisitor
):
965 CODE
= '''Very simple, always emit this static code. Overide CODE'''
967 def visit(self
, object):
968 self
.emit(self
.CODE
, 0, reflow
=False)
971 class ObjVisitor(PickleVisitor
):
973 def func_begin(self
, name
):
974 ctype
= get_c_type(name
)
975 self
.emit("PyObject*", 0)
976 self
.emit("ast2obj_%s(void* _o)" % (name
), 0)
978 self
.emit("%s o = (%s)_o;" % (ctype
, ctype
), 1)
979 self
.emit("PyObject *result = NULL, *value = NULL;", 1)
980 self
.emit('if (!o) {', 1)
981 self
.emit("Py_INCREF(Py_None);", 2)
982 self
.emit('return Py_None;', 2)
987 self
.emit("return result;", 1)
988 self
.emit("failed:", 0)
989 self
.emit("Py_XDECREF(value);", 1)
990 self
.emit("Py_XDECREF(result);", 1)
991 self
.emit("return NULL;", 1)
995 def visitSum(self
, sum, name
):
997 self
.simpleSum(sum, name
)
999 self
.func_begin(name
)
1000 self
.emit("switch (o->kind) {", 1)
1001 for i
in range(len(sum.types
)):
1003 self
.visitConstructor(t
, i
+ 1, name
)
1005 for a
in sum.attributes
:
1006 self
.emit("value = ast2obj_%s(o->%s);" % (a
.type, a
.name
), 1)
1007 self
.emit("if (!value) goto failed;", 1)
1008 self
.emit('if (PyObject_SetAttrString(result, "%s", value) < 0)' % a
.name
, 1)
1009 self
.emit('goto failed;', 2)
1010 self
.emit('Py_DECREF(value);', 1)
1013 def simpleSum(self
, sum, name
):
1014 self
.emit("PyObject* ast2obj_%s(%s_ty o)" % (name
, name
), 0)
1016 self
.emit("switch(o) {", 1)
1018 self
.emit("case %s:" % t
.name
, 2)
1019 self
.emit("Py_INCREF(%s_singleton);" % t
.name
, 3)
1020 self
.emit("return %s_singleton;" % t
.name
, 3)
1021 self
.emit("default:" % name
, 2)
1022 self
.emit('/* should never happen, but just in case ... */', 3)
1023 code
= "PyErr_Format(PyExc_SystemError, \"unknown %s found\");" % name
1024 self
.emit(code
, 3, reflow
=False)
1025 self
.emit("return NULL;", 3)
1029 def visitProduct(self
, prod
, name
):
1030 self
.func_begin(name
)
1031 self
.emit("result = PyType_GenericNew(%s_type, NULL, NULL);" % name
, 1);
1032 self
.emit("if (!result) return NULL;", 1)
1033 for field
in prod
.fields
:
1034 self
.visitField(field
, name
, 1, True)
1037 def visitConstructor(self
, cons
, enum
, name
):
1038 self
.emit("case %s_kind:" % cons
.name
, 1)
1039 self
.emit("result = PyType_GenericNew(%s_type, NULL, NULL);" % cons
.name
, 2);
1040 self
.emit("if (!result) goto failed;", 2)
1041 for f
in cons
.fields
:
1042 self
.visitField(f
, cons
.name
, 2, False)
1043 self
.emit("break;", 2)
1045 def visitField(self
, field
, name
, depth
, product
):
1047 self
.emit(s
, depth
+ d
)
1049 value
= "o->%s" % field
.name
1051 value
= "o->v.%s.%s" % (name
, field
.name
)
1052 self
.set(field
, value
, depth
)
1053 emit("if (!value) goto failed;", 0)
1054 emit('if (PyObject_SetAttrString(result, "%s", value) == -1)' % field
.name
, 0)
1055 emit("goto failed;", 1)
1056 emit("Py_DECREF(value);", 0)
1058 def emitSeq(self
, field
, value
, depth
, emit
):
1059 emit("seq = %s;" % value
, 0)
1060 emit("n = asdl_seq_LEN(seq);", 0)
1061 emit("value = PyList_New(n);", 0)
1062 emit("if (!value) goto failed;", 0)
1063 emit("for (i = 0; i < n; i++) {", 0)
1064 self
.set("value", field
, "asdl_seq_GET(seq, i)", depth
+ 1)
1065 emit("if (!value1) goto failed;", 1)
1066 emit("PyList_SET_ITEM(value, i, value1);", 1)
1067 emit("value1 = NULL;", 1)
1070 def set(self
, field
, value
, depth
):
1072 # XXX should really check for is_simple, but that requires a symbol table
1073 if field
.type.value
== "cmpop":
1074 # While the sequence elements are stored as void*,
1075 # ast2obj_cmpop expects an enum
1076 self
.emit("{", depth
)
1077 self
.emit("int i, n = asdl_seq_LEN(%s);" % value
, depth
+1)
1078 self
.emit("value = PyList_New(n);", depth
+1)
1079 self
.emit("if (!value) goto failed;", depth
+1)
1080 self
.emit("for(i = 0; i < n; i++)", depth
+1)
1081 # This cannot fail, so no need for error handling
1082 self
.emit("PyList_SET_ITEM(value, i, ast2obj_cmpop((cmpop_ty)asdl_seq_GET(%s, i)));" % value
,
1083 depth
+2, reflow
=False)
1084 self
.emit("}", depth
)
1086 self
.emit("value = ast2obj_list(%s, ast2obj_%s);" % (value
, field
.type), depth
)
1088 ctype
= get_c_type(field
.type)
1089 self
.emit("value = ast2obj_%s(%s);" % (field
.type, value
), depth
, reflow
=False)
1092 class PartingShots(StaticVisitor
):
1095 PyObject* PyAST_mod2obj(mod_ty t)
1098 return ast2obj_mod(t);
1101 /* mode is 0 for "exec", 1 for "eval" and 2 for "single" input */
1102 mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode)
1105 PyObject *req_type[] = {(PyObject*)Module_type, (PyObject*)Expression_type,
1106 (PyObject*)Interactive_type};
1107 char *req_name[] = {"Module", "Expression", "Interactive"};
1109 assert(0 <= mode && mode <= 2);
1113 isinstance = PyObject_IsInstance(ast, req_type[mode]);
1114 if (isinstance == -1)
1117 PyErr_Format(PyExc_TypeError, "expected %s node, got %.400s",
1118 req_name[mode], Py_TYPE(ast)->tp_name);
1121 if (obj2ast_mod(ast, &res, arena) != 0)
1127 int PyAST_Check(PyObject* obj)
1130 return PyObject_IsInstance(obj, (PyObject*)&AST_type);
1134 class ChainOfVisitors
:
1135 def __init__(self
, *visitors
):
1136 self
.visitors
= visitors
1138 def visit(self
, object):
1139 for v
in self
.visitors
:
1143 common_msg
= "/* File automatically generated by %s. */\n\n"
1149 This module must be committed separately after each AST grammar change;
1150 The __version__ number is set to the revision number of the commit
1151 containing the grammar change.
1158 components
= argv0
.split(os
.sep
)
1159 argv0
= os
.sep
.join(components
[-2:])
1160 auto_gen_msg
= common_msg
% argv0
1161 mod
= asdl
.parse(srcfile
)
1162 if not asdl
.check(mod
):
1165 p
= "%s/%s-ast.h" % (INC_DIR
, mod
.name
)
1167 f
.write(auto_gen_msg
)
1168 f
.write('#include "asdl.h"\n\n')
1169 c
= ChainOfVisitors(TypeDefVisitor(f
),
1171 PrototypeVisitor(f
),
1174 f
.write("PyObject* PyAST_mod2obj(mod_ty t);\n")
1175 f
.write("mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode);\n")
1176 f
.write("int PyAST_Check(PyObject* obj);\n")
1180 p
= os
.path
.join(SRC_DIR
, str(mod
.name
) + "-ast.c")
1182 f
.write(auto_gen_msg
)
1183 f
.write(c_file_msg
% parse_version(mod
))
1184 f
.write('#include "Python.h"\n')
1185 f
.write('#include "%s-ast.h"\n' % mod
.name
)
1187 f
.write("static PyTypeObject AST_type;\n")
1188 v
= ChainOfVisitors(
1189 PyTypesDeclareVisitor(f
),
1191 Obj2ModPrototypeVisitor(f
),
1195 ASTModuleVisitor(f
),
1201 if __name__
== "__main__":
1207 opts
, args
= getopt
.getopt(sys
.argv
[1:], "h:c:")
1209 print "Must specify exactly one output file"
1217 print "Must specify single input file"