blob: 96be757b2ed616363fe9b7a8df727efc7766a41f [file] [log] [blame]
Jeremy Hylton4db62b12001-02-27 19:07:02 +00001#include "Python.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002#include "Python-ast.h"
Jeremy Hylton4db62b12001-02-27 19:07:02 +00003#include "node.h"
4#include "token.h"
5#include "graminit.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00006#include "code.h"
Jeremy Hylton4db62b12001-02-27 19:07:02 +00007#include "compile.h"
8#include "symtable.h"
9
10#define UNDEFINED_FUTURE_FEATURE "future feature %.100s is not defined"
Benjamin Peterson44a90c92008-10-30 23:59:18 +000011#define ERR_LATE_FUTURE \
12"from __future__ imports must occur at the beginning of the file"
Jeremy Hylton4db62b12001-02-27 19:07:02 +000013
14static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000015future_check_features(PyFutureFeatures *ff, stmt_ty s, const char *filename)
Jeremy Hylton4db62b12001-02-27 19:07:02 +000016{
Antoine Pitrouc83ea132010-05-09 14:46:46 +000017 int i;
18 asdl_seq *names;
Jeremy Hylton4db62b12001-02-27 19:07:02 +000019
Antoine Pitrouc83ea132010-05-09 14:46:46 +000020 assert(s->kind == ImportFrom_kind);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000021
Antoine Pitrouc83ea132010-05-09 14:46:46 +000022 names = s->v.ImportFrom.names;
23 for (i = 0; i < asdl_seq_LEN(names); i++) {
24 alias_ty name = (alias_ty)asdl_seq_GET(names, i);
25 const char *feature = PyString_AsString(name->name);
26 if (!feature)
27 return 0;
28 if (strcmp(feature, FUTURE_NESTED_SCOPES) == 0) {
29 continue;
30 } else if (strcmp(feature, FUTURE_GENERATORS) == 0) {
31 continue;
32 } else if (strcmp(feature, FUTURE_DIVISION) == 0) {
33 ff->ff_features |= CO_FUTURE_DIVISION;
34 } else if (strcmp(feature, FUTURE_ABSOLUTE_IMPORT) == 0) {
35 ff->ff_features |= CO_FUTURE_ABSOLUTE_IMPORT;
36 } else if (strcmp(feature, FUTURE_WITH_STATEMENT) == 0) {
37 ff->ff_features |= CO_FUTURE_WITH_STATEMENT;
38 } else if (strcmp(feature, FUTURE_PRINT_FUNCTION) == 0) {
39 ff->ff_features |= CO_FUTURE_PRINT_FUNCTION;
40 } else if (strcmp(feature, FUTURE_UNICODE_LITERALS) == 0) {
41 ff->ff_features |= CO_FUTURE_UNICODE_LITERALS;
42 } else if (strcmp(feature, "braces") == 0) {
43 PyErr_SetString(PyExc_SyntaxError,
44 "not a chance");
45 PyErr_SyntaxLocation(filename, s->lineno);
46 return 0;
47 } else {
48 PyErr_Format(PyExc_SyntaxError,
49 UNDEFINED_FUTURE_FEATURE, feature);
50 PyErr_SyntaxLocation(filename, s->lineno);
51 return 0;
52 }
53 }
54 return 1;
Jeremy Hylton4db62b12001-02-27 19:07:02 +000055}
56
Neal Norwitz6576bd82005-11-13 18:41:28 +000057static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000058future_parse(PyFutureFeatures *ff, mod_ty mod, const char *filename)
Jeremy Hylton39e2f3f2001-02-28 01:58:08 +000059{
Antoine Pitrouc83ea132010-05-09 14:46:46 +000060 int i, found_docstring = 0, done = 0, prev_line = 0;
Jeremy Hylton39e2f3f2001-02-28 01:58:08 +000061
Antoine Pitrouc83ea132010-05-09 14:46:46 +000062 static PyObject *future;
63 if (!future) {
64 future = PyString_InternFromString("__future__");
65 if (!future)
66 return 0;
67 }
Jeremy Hylton4db62b12001-02-27 19:07:02 +000068
Antoine Pitrouc83ea132010-05-09 14:46:46 +000069 if (!(mod->kind == Module_kind || mod->kind == Interactive_kind))
70 return 1;
Jeremy Hylton4db62b12001-02-27 19:07:02 +000071
Antoine Pitrouc83ea132010-05-09 14:46:46 +000072 /* A subsequent pass will detect future imports that don't
73 appear at the beginning of the file. There's one case,
74 however, that is easier to handle here: A series of imports
75 joined by semi-colons, where the first import is a future
76 statement but some subsequent import has the future form
77 but is preceded by a regular import.
78 */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000079
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000080
Antoine Pitrouc83ea132010-05-09 14:46:46 +000081 for (i = 0; i < asdl_seq_LEN(mod->v.Module.body); i++) {
82 stmt_ty s = (stmt_ty)asdl_seq_GET(mod->v.Module.body, i);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000083
Antoine Pitrouc83ea132010-05-09 14:46:46 +000084 if (done && s->lineno > prev_line)
85 return 1;
86 prev_line = s->lineno;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000087
Antoine Pitrouc83ea132010-05-09 14:46:46 +000088 /* The tests below will return from this function unless it is
89 still possible to find a future statement. The only things
90 that can precede a future statement are another future
91 statement and a doc string.
92 */
93
94 if (s->kind == ImportFrom_kind) {
95 if (s->v.ImportFrom.module == future) {
96 if (done) {
97 PyErr_SetString(PyExc_SyntaxError,
98 ERR_LATE_FUTURE);
99 PyErr_SyntaxLocation(filename,
100 s->lineno);
101 return 0;
102 }
103 if (!future_check_features(ff, s, filename))
104 return 0;
105 ff->ff_lineno = s->lineno;
106 }
107 else
108 done = 1;
109 }
110 else if (s->kind == Expr_kind && !found_docstring) {
111 expr_ty e = s->v.Expr.value;
112 if (e->kind != Str_kind)
113 done = 1;
114 else
115 found_docstring = 1;
116 }
117 else
118 done = 1;
119 }
120 return 1;
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000121}
122
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000123
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000124PyFutureFeatures *
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000125PyFuture_FromAST(mod_ty mod, const char *filename)
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000126{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000127 PyFutureFeatures *ff;
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000128
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000129 ff = (PyFutureFeatures *)PyObject_Malloc(sizeof(PyFutureFeatures));
130 if (ff == NULL) {
131 PyErr_NoMemory();
132 return NULL;
133 }
134 ff->ff_features = 0;
135 ff->ff_lineno = -1;
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000136
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000137 if (!future_parse(ff, mod, filename)) {
138 PyObject_Free(ff);
139 return NULL;
140 }
141 return ff;
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000142}