Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 1 | #include "Python.h" |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2 | #include "Python-ast.h" |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 3 | #include "node.h" |
| 4 | #include "token.h" |
| 5 | #include "graminit.h" |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 6 | #include "code.h" |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 7 | #include "compile.h" |
| 8 | #include "symtable.h" |
| 9 | |
| 10 | #define UNDEFINED_FUTURE_FEATURE "future feature %.100s is not defined" |
Benjamin Peterson | c0747cf | 2008-11-03 20:31:38 +0000 | [diff] [blame] | 11 | #define ERR_LATE_FUTURE \ |
| 12 | "from __future__ imports must occur at the beginning of the file" |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 13 | |
| 14 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 15 | future_check_features(PyFutureFeatures *ff, stmt_ty s, const char *filename) |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 16 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 17 | int i; |
| 18 | asdl_seq *names; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 19 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 20 | assert(s->kind == ImportFrom_kind); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 21 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 22 | 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"); |
Benjamin Peterson | d4efd9e | 2010-09-20 23:02:10 +0000 | [diff] [blame] | 47 | PyErr_SyntaxLocationEx(filename, s->lineno, s->col_offset); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 48 | return 0; |
| 49 | } else { |
| 50 | PyErr_Format(PyExc_SyntaxError, |
| 51 | UNDEFINED_FUTURE_FEATURE, feature); |
Benjamin Peterson | d4efd9e | 2010-09-20 23:02:10 +0000 | [diff] [blame] | 52 | PyErr_SyntaxLocationEx(filename, s->lineno, s->col_offset); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 53 | return 0; |
| 54 | } |
| 55 | } |
| 56 | return 1; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 57 | } |
| 58 | |
Neal Norwitz | 6576bd8 | 2005-11-13 18:41:28 +0000 | [diff] [blame] | 59 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 60 | future_parse(PyFutureFeatures *ff, mod_ty mod, const char *filename) |
Jeremy Hylton | 39e2f3f | 2001-02-28 01:58:08 +0000 | [diff] [blame] | 61 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 62 | int i, found_docstring = 0, done = 0, prev_line = 0; |
Jeremy Hylton | 39e2f3f | 2001-02-28 01:58:08 +0000 | [diff] [blame] | 63 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 64 | static PyObject *future; |
| 65 | if (!future) { |
| 66 | future = PyUnicode_InternFromString("__future__"); |
| 67 | if (!future) |
| 68 | return 0; |
| 69 | } |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 70 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 71 | if (!(mod->kind == Module_kind || mod->kind == Interactive_kind)) |
| 72 | return 1; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 73 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 74 | /* 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 Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 81 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 82 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 83 | 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 Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 85 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 86 | if (done && s->lineno > prev_line) |
| 87 | return 1; |
| 88 | prev_line = s->lineno; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 89 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 90 | /* 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); |
Benjamin Peterson | d4efd9e | 2010-09-20 23:02:10 +0000 | [diff] [blame] | 101 | PyErr_SyntaxLocationEx(filename, s->lineno, s->col_offset); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 102 | return 0; |
| 103 | } |
| 104 | if (!future_check_features(ff, s, filename)) |
| 105 | return 0; |
| 106 | ff->ff_lineno = s->lineno; |
| 107 | } |
| 108 | else |
| 109 | done = 1; |
| 110 | } |
| 111 | else if (s->kind == Expr_kind && !found_docstring) { |
| 112 | expr_ty e = s->v.Expr.value; |
| 113 | if (e->kind != Str_kind) |
| 114 | done = 1; |
| 115 | else |
| 116 | found_docstring = 1; |
| 117 | } |
| 118 | else |
| 119 | done = 1; |
| 120 | } |
| 121 | return 1; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 122 | } |
| 123 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 124 | |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 125 | PyFutureFeatures * |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 126 | PyFuture_FromAST(mod_ty mod, const char *filename) |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 127 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 128 | PyFutureFeatures *ff; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 129 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 130 | ff = (PyFutureFeatures *)PyObject_Malloc(sizeof(PyFutureFeatures)); |
| 131 | if (ff == NULL) { |
| 132 | PyErr_NoMemory(); |
| 133 | return NULL; |
| 134 | } |
| 135 | ff->ff_features = 0; |
| 136 | ff->ff_lineno = -1; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 137 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 138 | if (!future_parse(ff, mod, filename)) { |
| 139 | PyObject_Free(ff); |
| 140 | return NULL; |
| 141 | } |
| 142 | return ff; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 143 | } |