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 | 44a90c9 | 2008-10-30 23:59:18 +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 | c83ea13 | 2010-05-09 14:46:46 +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 | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 20 | assert(s->kind == ImportFrom_kind); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 21 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +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 = 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 Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 55 | } |
| 56 | |
Neal Norwitz | 6576bd8 | 2005-11-13 18:41:28 +0000 | [diff] [blame] | 57 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 58 | future_parse(PyFutureFeatures *ff, mod_ty mod, const char *filename) |
Jeremy Hylton | 39e2f3f | 2001-02-28 01:58:08 +0000 | [diff] [blame] | 59 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 60 | int i, found_docstring = 0, done = 0, prev_line = 0; |
Jeremy Hylton | 39e2f3f | 2001-02-28 01:58:08 +0000 | [diff] [blame] | 61 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 62 | if (!(mod->kind == Module_kind || mod->kind == Interactive_kind)) |
| 63 | return 1; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 64 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 65 | /* A subsequent pass will detect future imports that don't |
| 66 | appear at the beginning of the file. There's one case, |
| 67 | however, that is easier to handle here: A series of imports |
| 68 | joined by semi-colons, where the first import is a future |
| 69 | statement but some subsequent import has the future form |
| 70 | but is preceded by a regular import. |
| 71 | */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 72 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 73 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 74 | for (i = 0; i < asdl_seq_LEN(mod->v.Module.body); i++) { |
| 75 | 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] | 76 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 77 | if (done && s->lineno > prev_line) |
| 78 | return 1; |
| 79 | prev_line = s->lineno; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 80 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 81 | /* The tests below will return from this function unless it is |
| 82 | still possible to find a future statement. The only things |
| 83 | that can precede a future statement are another future |
| 84 | statement and a doc string. |
| 85 | */ |
| 86 | |
| 87 | if (s->kind == ImportFrom_kind) { |
Benjamin Peterson | 219a050 | 2012-03-22 10:39:16 -0400 | [diff] [blame] | 88 | identifier modname = s->v.ImportFrom.module; |
Benjamin Peterson | e90cdaa | 2012-03-22 08:56:15 -0400 | [diff] [blame] | 89 | if (modname && PyString_GET_SIZE(modname) == 10 && |
Benjamin Peterson | eff19a1 | 2012-03-22 08:19:04 -0400 | [diff] [blame] | 90 | !strcmp(PyString_AS_STRING(modname), "__future__")) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 91 | if (done) { |
| 92 | PyErr_SetString(PyExc_SyntaxError, |
| 93 | ERR_LATE_FUTURE); |
| 94 | PyErr_SyntaxLocation(filename, |
| 95 | s->lineno); |
| 96 | return 0; |
| 97 | } |
| 98 | if (!future_check_features(ff, s, filename)) |
| 99 | return 0; |
| 100 | ff->ff_lineno = s->lineno; |
| 101 | } |
| 102 | else |
| 103 | done = 1; |
| 104 | } |
| 105 | else if (s->kind == Expr_kind && !found_docstring) { |
| 106 | expr_ty e = s->v.Expr.value; |
| 107 | if (e->kind != Str_kind) |
| 108 | done = 1; |
| 109 | else |
| 110 | found_docstring = 1; |
| 111 | } |
| 112 | else |
| 113 | done = 1; |
| 114 | } |
| 115 | return 1; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 116 | } |
| 117 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 118 | |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 119 | PyFutureFeatures * |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 120 | PyFuture_FromAST(mod_ty mod, const char *filename) |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 121 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 122 | PyFutureFeatures *ff; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 123 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 124 | ff = (PyFutureFeatures *)PyObject_Malloc(sizeof(PyFutureFeatures)); |
| 125 | if (ff == NULL) { |
| 126 | PyErr_NoMemory(); |
| 127 | return NULL; |
| 128 | } |
| 129 | ff->ff_features = 0; |
| 130 | ff->ff_lineno = -1; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 131 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 132 | if (!future_parse(ff, mod, filename)) { |
| 133 | PyObject_Free(ff); |
| 134 | return NULL; |
| 135 | } |
| 136 | return ff; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 137 | } |