Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
32460232
Commit
32460232
authored
Aug 27, 2012
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved 'exec' and globals() utility code to new file Builtins.c
parent
f6c590d3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
134 additions
and
130 deletions
+134
-130
Cython/Compiler/Builtin.py
Cython/Compiler/Builtin.py
+3
-129
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+1
-1
Cython/Utility/Builtins.c
Cython/Utility/Builtins.c
+130
-0
No files found.
Cython/Compiler/Builtin.py
View file @
32460232
...
...
@@ -53,134 +53,8 @@ bad:
}
"""
)
globals_utility_code
=
UtilityCode
(
# This is a stub implementation until we have something more complete.
# Currently, we only handle the most common case of a read-only dict
# of Python names. Supporting cdef names in the module and write
# access requires a rewrite as a dedicated class.
proto
=
"""
static PyObject* __Pyx_Globals(void); /*proto*/
"""
,
impl
=
'''
static PyObject* __Pyx_Globals() {
Py_ssize_t i;
/*PyObject *d;*/
PyObject *names = NULL;
PyObject *globals = PyObject_GetAttrString(%(MODULE)s, "__dict__");
if (!globals) {
PyErr_SetString(PyExc_TypeError,
"current module must have __dict__ attribute");
goto bad;
}
names = PyObject_Dir(%(MODULE)s);
if (!names)
goto bad;
for (i = 0; i < PyList_GET_SIZE(names); i++) {
PyObject* name = PyList_GET_ITEM(names, i);
if (!PyDict_Contains(globals, name)) {
PyObject* value = PyObject_GetAttr(%(MODULE)s, PyList_GET_ITEM(names, i));
if (!value)
goto bad;
if (PyDict_SetItem(globals, name, value) < 0) {
Py_DECREF(value);
goto bad;
}
}
}
Py_DECREF(names);
return globals;
/*
d = PyDictProxy_New(globals);
Py_DECREF(globals);
return d;
*/
bad:
Py_XDECREF(names);
Py_XDECREF(globals);
return NULL;
}
'''
%
{
'MODULE'
:
Naming
.
module_cname
})
pyexec_utility_code
=
UtilityCode
(
proto
=
"""
static PyObject* __Pyx_PyRun(PyObject*, PyObject*, PyObject*);
static CYTHON_INLINE PyObject* __Pyx_PyRun2(PyObject*, PyObject*);
"""
,
impl
=
"""
static CYTHON_INLINE PyObject* __Pyx_PyRun2(PyObject* o, PyObject* globals) {
return __Pyx_PyRun(o, globals, NULL);
}
static PyObject* __Pyx_PyRun(PyObject* o, PyObject* globals, PyObject* locals) {
PyObject* result;
PyObject* s = 0;
char *code = 0;
if (!globals || globals == Py_None) {
globals = PyModule_GetDict(%s);"""
%
Naming
.
module_cname
+
"""
if (!globals)
goto bad;
} else if (!PyDict_Check(globals)) {
PyErr_Format(PyExc_TypeError, "exec() arg 2 must be a dict, not %.100s",
globals->ob_type->tp_name);
goto bad;
}
if (!locals || locals == Py_None) {
locals = globals;
}
if (PyDict_GetItemString(globals, "__builtins__") == NULL) {
PyDict_SetItemString(globals, "__builtins__", PyEval_GetBuiltins());
}
if (PyCode_Check(o)) {
if (PyCode_GetNumFree((PyCodeObject *)o) > 0) {
PyErr_SetString(PyExc_TypeError,
"code object passed to exec() may not contain free variables");
goto bad;
}
#if PY_VERSION_HEX < 0x030200B1
result = PyEval_EvalCode((PyCodeObject *)o, globals, locals);
#else
result = PyEval_EvalCode(o, globals, locals);
#endif
} else {
PyCompilerFlags cf;
cf.cf_flags = 0;
if (PyUnicode_Check(o)) {
cf.cf_flags = PyCF_SOURCE_IS_UTF8;
s = PyUnicode_AsUTF8String(o);
if (!s) goto bad;
o = s;
#if PY_MAJOR_VERSION >= 3
} else if (!PyBytes_Check(o)) {
#else
} else if (!PyString_Check(o)) {
#endif
PyErr_SetString(PyExc_TypeError,
"exec: arg 1 must be string, bytes or code object");
goto bad;
}
#if PY_MAJOR_VERSION >= 3
code = PyBytes_AS_STRING(o);
#else
code = PyString_AS_STRING(o);
#endif
if (PyEval_MergeCompilerFlags(&cf)) {
result = PyRun_StringFlags(code, Py_file_input, globals, locals, &cf);
} else {
result = PyRun_String(code, Py_file_input, globals, locals);
}
Py_XDECREF(s);
}
return result;
bad:
Py_XDECREF(s);
return 0;
}
"""
)
globals_utility_code
=
UtilityCode
.
load_cached
(
"Globals"
,
"Builtins.c"
)
pyexec_utility_code
=
UtilityCode
.
load_cached
(
"PyExec"
,
"Builtins.c"
)
intern_utility_code
=
UtilityCode
(
proto
=
"""
...
...
@@ -341,7 +215,7 @@ builtin_function_table = [
BuiltinFunction
(
'delattr'
,
"OO"
,
"r"
,
"PyObject_DelAttr"
),
BuiltinFunction
(
'dir'
,
"O"
,
"O"
,
"PyObject_Dir"
),
BuiltinFunction
(
'divmod'
,
"OO"
,
"O"
,
"PyNumber_Divmod"
),
BuiltinFunction
(
'exec'
,
"OOO"
,
"O"
,
"__Pyx_PyRun"
,
BuiltinFunction
(
'exec'
,
"OOO"
,
"O"
,
"__Pyx_PyRun
3
"
,
utility_code
=
pyexec_utility_code
),
BuiltinFunction
(
'exec'
,
"OO"
,
"O"
,
"__Pyx_PyRun2"
,
utility_code
=
pyexec_utility_code
),
...
...
Cython/Compiler/Nodes.py
View file @
32460232
...
...
@@ -4685,7 +4685,7 @@ class ExecStatNode(StatNode):
args
.
append
(
arg
.
py_result
()
)
args
=
tuple
(
args
+
[
'0'
,
'0'
][:
3
-
len
(
args
)])
temp_result
=
code
.
funcstate
.
allocate_temp
(
PyrexTypes
.
py_object_type
,
manage_ref
=
True
)
code
.
putln
(
"%s = __Pyx_PyRun(%s, %s, %s);"
%
(
code
.
putln
(
"%s = __Pyx_PyRun
3
(%s, %s, %s);"
%
(
(
temp_result
,)
+
args
))
for
arg
in
self
.
args
:
arg
.
generate_disposal_code
(
code
)
...
...
Cython/Utility/Builtins.c
0 → 100644
View file @
32460232
//////////////////// Globals.proto ////////////////////
static
PyObject
*
__Pyx_Globals
(
void
);
/*proto*/
//////////////////// Globals ////////////////////
//@substitute: naming
// This is a stub implementation until we have something more complete.
// Currently, we only handle the most common case of a read-only dict
// of Python names. Supporting cdef names in the module and write
// access requires a rewrite as a dedicated class.
static
PyObject
*
__Pyx_Globals
()
{
Py_ssize_t
i
;
/*PyObject *d;*/
PyObject
*
names
=
NULL
;
PyObject
*
globals
=
PyObject_GetAttrString
(
$
module_cname
,
"__dict__"
);
if
(
!
globals
)
{
PyErr_SetString
(
PyExc_TypeError
,
"current module must have __dict__ attribute"
);
goto
bad
;
}
names
=
PyObject_Dir
(
$
module_cname
);
if
(
!
names
)
goto
bad
;
for
(
i
=
0
;
i
<
PyList_GET_SIZE
(
names
);
i
++
)
{
PyObject
*
name
=
PyList_GET_ITEM
(
names
,
i
);
if
(
!
PyDict_Contains
(
globals
,
name
))
{
PyObject
*
value
=
PyObject_GetAttr
(
$
module_cname
,
PyList_GET_ITEM
(
names
,
i
));
if
(
!
value
)
goto
bad
;
if
(
PyDict_SetItem
(
globals
,
name
,
value
)
<
0
)
{
Py_DECREF
(
value
);
goto
bad
;
}
}
}
Py_DECREF
(
names
);
return
globals
;
// d = PyDictProxy_New(globals);
// Py_DECREF(globals);
// return d;
bad:
Py_XDECREF
(
names
);
Py_XDECREF
(
globals
);
return
NULL
;
}
//////////////////// PyExec.proto ////////////////////
static
PyObject
*
__Pyx_PyRun3
(
PyObject
*
,
PyObject
*
,
PyObject
*
);
static
CYTHON_INLINE
PyObject
*
__Pyx_PyRun2
(
PyObject
*
,
PyObject
*
);
//////////////////// PyExec ////////////////////
//@substitute: naming
static
CYTHON_INLINE
PyObject
*
__Pyx_PyRun2
(
PyObject
*
o
,
PyObject
*
globals
)
{
return
__Pyx_PyRun3
(
o
,
globals
,
NULL
);
}
static
PyObject
*
__Pyx_PyRun3
(
PyObject
*
o
,
PyObject
*
globals
,
PyObject
*
locals
)
{
PyObject
*
result
;
PyObject
*
s
=
0
;
char
*
code
=
0
;
if
(
!
globals
||
globals
==
Py_None
)
{
globals
=
PyModule_GetDict
(
$
module_cname
);
if
(
!
globals
)
goto
bad
;
}
else
if
(
!
PyDict_Check
(
globals
))
{
PyErr_Format
(
PyExc_TypeError
,
"exec() arg 2 must be a dict, not %.100s"
,
globals
->
ob_type
->
tp_name
);
goto
bad
;
}
if
(
!
locals
||
locals
==
Py_None
)
{
locals
=
globals
;
}
if
(
PyDict_GetItemString
(
globals
,
"__builtins__"
)
==
NULL
)
{
PyDict_SetItemString
(
globals
,
"__builtins__"
,
PyEval_GetBuiltins
());
}
if
(
PyCode_Check
(
o
))
{
if
(
PyCode_GetNumFree
((
PyCodeObject
*
)
o
)
>
0
)
{
PyErr_SetString
(
PyExc_TypeError
,
"code object passed to exec() may not contain free variables"
);
goto
bad
;
}
#if PY_VERSION_HEX < 0x030200B1
result
=
PyEval_EvalCode
((
PyCodeObject
*
)
o
,
globals
,
locals
);
#else
result
=
PyEval_EvalCode
(
o
,
globals
,
locals
);
#endif
}
else
{
PyCompilerFlags
cf
;
cf
.
cf_flags
=
0
;
if
(
PyUnicode_Check
(
o
))
{
cf
.
cf_flags
=
PyCF_SOURCE_IS_UTF8
;
s
=
PyUnicode_AsUTF8String
(
o
);
if
(
!
s
)
goto
bad
;
o
=
s
;
#if PY_MAJOR_VERSION >= 3
}
else
if
(
!
PyBytes_Check
(
o
))
{
#else
}
else
if
(
!
PyString_Check
(
o
))
{
#endif
PyErr_SetString
(
PyExc_TypeError
,
"exec: arg 1 must be string, bytes or code object"
);
goto
bad
;
}
#if PY_MAJOR_VERSION >= 3
code
=
PyBytes_AS_STRING
(
o
);
#else
code
=
PyString_AS_STRING
(
o
);
#endif
if
(
PyEval_MergeCompilerFlags
(
&
cf
))
{
result
=
PyRun_StringFlags
(
code
,
Py_file_input
,
globals
,
locals
,
&
cf
);
}
else
{
result
=
PyRun_String
(
code
,
Py_file_input
,
globals
,
locals
);
}
Py_XDECREF
(
s
);
}
return
result
;
bad:
Py_XDECREF
(
s
);
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment