blob: 515dcd9dc6c11033a6b7cd92d79534db997ab8f1 [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 Petersonc0747cf2008-11-03 20:31:38 +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 Pitrouf95a1b32010-05-09 15:52:27 +000017 int i;
18 asdl_seq *names;
Jeremy Hylton4db62b12001-02-27 19:07:02 +000019
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000020 assert(s->kind == ImportFrom_kind);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000021
Antoine Pitrouf95a1b32010-05-09 15:52:27 +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 = _PyUnicode_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 continue;
34 } else if (strcmp(feature, FUTURE_ABSOLUTE_IMPORT) == 0) {
35 continue;
36 } else if (strcmp(feature, FUTURE_WITH_STATEMENT) == 0) {
37 continue;
38 } else if (strcmp(feature, FUTURE_PRINT_FUNCTION) == 0) {
39 continue;
40 } else if (strcmp(feature, FUTURE_UNICODE_LITERALS) == 0) {
41 continue;
42 } else if (strcmp(feature, FUTURE_BARRY_AS_BDFL) == 0) {
43 ff->ff_features |= CO_FUTURE_BARRY_AS_BDFL;
44 } else if (strcmp(feature, "braces") == 0) {
45 PyErr_SetString(PyExc_SyntaxError,
46 "not a chance");
47 PyErr_SyntaxLocation(filename, s->lineno);
48 return 0;
49 } else {
50 PyErr_Format(PyExc_SyntaxError,
51 UNDEFINED_FUTURE_FEATURE, feature);
52 PyErr_SyntaxLocation(filename, s->lineno);
53 return 0;
54 }
55 }
56 return 1;
Jeremy Hylton4db62b12001-02-27 19:07:02 +000057}
58
Neal Norwitz6576bd82005-11-13 18:41:28 +000059static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000060future_parse(PyFutureFeatures *ff, mod_ty mod, const char *filename)
Jeremy Hylton39e2f3f2001-02-28 01:58:08 +000061{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000062 int i, found_docstring = 0, done = 0, prev_line = 0;
Jeremy Hylton39e2f3f2001-02-28 01:58:08 +000063
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000064 static PyObject *future;
65 if (!future) {
66 future = PyUnicode_InternFromString("__future__");
67 if (!future)
68 return 0;
69 }
Jeremy Hylton4db62b12001-02-27 19:07:02 +000070
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000071 if (!(mod->kind == Module_kind || mod->kind == Interactive_kind))
72 return 1;
Jeremy Hylton4db62b12001-02-27 19:07:02 +000073
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000074 /* A subsequent pass will detect future imports that don't
75 appear at the beginning of the file. There's one case,
76 however, that is easier to handle here: A series of imports
77 joined by semi-colons, where the first import is a future
78 statement but some subsequent import has the future form
79 but is preceded by a regular import.
80 */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000081
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000082
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000083 for (i = 0; i < asdl_seq_LEN(mod->v.Module.body); i++) {
84 stmt_ty s = (stmt_ty)asdl_seq_GET(mod->v.Module.body, i);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000085
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000086 if (done && s->lineno > prev_line)
87 return 1;
88 prev_line = s->lineno;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000089
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000090 /* The tests below will return from this function unless it is
91 still possible to find a future statement. The only things
92 that can precede a future statement are another future
93 statement and a doc string.
94 */
95
96 if (s->kind == ImportFrom_kind) {
97 if (s->v.ImportFrom.module == future) {
98 if (done) {
99 PyErr_SetString(PyExc_SyntaxError,
100 ERR_LATE_FUTURE);
101 PyErr_SyntaxLocation(filename,
102 s->lineno);
103 return 0;
104 }
105 if (!future_check_features(ff, s, filename))
106 return 0;
107 ff->ff_lineno = s->lineno;
108 }
109 else
110 done = 1;
111 }
112 else if (s->kind == Expr_kind && !found_docstring) {
113 expr_ty e = s->v.Expr.value;
114 if (e->kind != Str_kind)
115 done = 1;
116 else
117 found_docstring = 1;
118 }
119 else
120 done = 1;
121 }
122 return 1;
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000123}
124
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000125
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000126PyFutureFeatures *
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000127PyFuture_FromAST(mod_ty mod, const char *filename)
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000128{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000129 PyFutureFeatures *ff;
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000130
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000131 ff = (PyFutureFeatures *)PyObject_Malloc(sizeof(PyFutureFeatures));
132 if (ff == NULL) {
133 PyErr_NoMemory();
134 return NULL;
135 }
136 ff->ff_features = 0;
137 ff->ff_lineno = -1;
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000138
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000139 if (!future_parse(ff, mod, filename)) {
140 PyObject_Free(ff);
141 return NULL;
142 }
143 return ff;
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000144}