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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
cython
Commits
31609acb
Commit
31609acb
authored
Jun 27, 2009
by
Dag Sverre Seljebotn
Committed by
Mark Florisson
Jul 19, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make it possible to construct sub-magic-modules of cython
parent
4e19bc79
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
113 additions
and
27 deletions
+113
-27
Cython/Compiler/CythonScope.py
Cython/Compiler/CythonScope.py
+57
-9
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+2
-0
Cython/Compiler/ParseTreeTransforms.py
Cython/Compiler/ParseTreeTransforms.py
+5
-7
Cython/Compiler/Pipeline.py
Cython/Compiler/Pipeline.py
+28
-11
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+2
-0
tests/run/cythonscope.pyx
tests/run/cythonscope.pyx
+19
-0
No files found.
Cython/Compiler/CythonScope.py
View file @
31609acb
from
Symtab
import
ModuleScope
from
PyrexTypes
import
*
from
UtilityCode
import
CythonUtilityCode
from
Errors
import
error
from
Scanning
import
StringSourceDescriptor
class
CythonScope
(
ModuleScope
):
is_cython_builtin
=
1
def
__init__
(
self
):
ModuleScope
.
__init__
(
self
,
u'cython'
,
None
,
None
)
self
.
pxd_file_loaded
=
True
...
...
@@ -15,7 +19,31 @@ class CythonScope(ModuleScope):
return
type
def
find_module
(
self
,
module_name
,
pos
):
error
(
"cython.%s is not available"
%
module_name
)
error
(
"cython.%s is not available"
%
module_name
,
pos
)
def
find_submodule
(
self
,
module_name
):
entry
=
self
.
entries
.
get
(
module_name
,
None
)
if
entry
and
entry
.
as_module
:
return
entry
.
as_module
else
:
# TODO: fix find_submodule control flow so that we're not
# expected to create a submodule here (to protect CythonScope's
# possible immutability). Hack ourselves out of the situation
# for now.
raise
error
((
StringSourceDescriptor
(
u"cython"
,
u""
),
0
,
0
),
"cython.%s is not available"
%
module_name
)
def
lookup_qualified_name
(
self
,
qname
):
# ExprNode.as_cython_attribute generates qnames and we untangle it here...
name_path
=
qname
.
split
(
u'.'
)
scope
=
self
while
len
(
name_path
)
>
1
:
scope
=
scope
.
lookup_here
(
name_path
[
0
]).
as_module
del
name_path
[
0
]
if
scope
is
None
:
return
None
else
:
return
scope
.
lookup_here
(
name_path
[
0
])
def
populate_cython_scope
(
self
):
# These are used to optimize isinstance in FinalOptimizePhase
...
...
@@ -25,28 +53,43 @@ class CythonScope(ModuleScope):
pos
=
None
,
cname
=
'PyTypeObject'
)
type_object
.
is_void
=
True
type_object_type
=
type_object
.
type
self
.
declare_cfunction
(
'PyObject_TypeCheck'
,
CFuncType
(
c_bint_type
,
[
CFuncTypeArg
(
"o"
,
py_object_type
,
None
),
CFuncTypeArg
(
"t"
,
c_ptr_type
(
type_object
),
None
)]),
CFuncTypeArg
(
"t"
,
c_ptr_type
(
type_object
_type
),
None
)]),
pos
=
None
,
defining
=
1
,
cname
=
'PyObject_TypeCheck'
)
#
# A special function just to make it easy to test the scope and
# utility code functionality in isolation. It is available to
# "end-users" but nobody will know it is there anyway...
entry
=
self
.
declare_cfunction
(
'_testscope'
,
CFuncType
(
py_object_type
,
[
CFuncTypeArg
(
"value"
,
c_int_type
,
None
)]),
pos
=
None
,
defining
=
1
,
cname
=
'__pyx_cython__testscope'
)
entry
.
utility_code_definition
=
cython_testscope_utility_code
#
testcythonscope
=
self
.
declare_cfunction
(
'_testcythonscope'
,
# The view sub-scope
#
self
.
viewscope
=
viewscope
=
ModuleScope
(
u'cython.view'
,
self
,
None
)
self
.
declare_module
(
'view'
,
viewscope
,
None
)
viewscope
.
is_cython_builtin
=
True
viewscope
.
pxd_file_loaded
=
True
entry
=
viewscope
.
declare_cfunction
(
'_testscope'
,
CFuncType
(
py_object_type
,
[
CFuncTypeArg
(
"value"
,
c_int_type
,
None
)]),
pos
=
None
,
defining
=
1
,
cname
=
'__pyx_cython_
_testcython
scope'
cname
=
'__pyx_cython_
view__test
scope'
)
testcythonscope
.
utility_code_definition
=
cython
_testscope_utility_code
entry
.
utility_code_definition
=
cythonview
_testscope_utility_code
def
create_cython_scope
(
context
):
# One could in fact probably make it a singleton,
...
...
@@ -55,6 +98,11 @@ def create_cython_scope(context):
return
CythonScope
()
cython_testscope_utility_code
=
CythonUtilityCode
(
u"""
cdef object _test
cython
scope(int value):
return "hello value=%d" % value
cdef object _testscope(int value):
return "hello
from cython scope,
value=%d" % value
"""
,
name
=
"cython utility code"
,
prefix
=
"__pyx_cython_"
)
cythonview_testscope_utility_code
=
CythonUtilityCode
(
u"""
cdef object _testscope(int value):
return "hello from cython.view scope, value=%d" % value
"""
,
name
=
"cython utility code"
,
prefix
=
"__pyx_cython_view_"
)
Cython/Compiler/ModuleNode.py
View file @
31609acb
...
...
@@ -1029,6 +1029,8 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
entry
.
type
.
typeptr_cname
)
def
generate_cvariable_declarations
(
self
,
env
,
code
,
definition
):
if
env
.
is_cython_builtin
:
return
for
entry
in
env
.
var_entries
:
if
(
entry
.
in_cinclude
or
entry
.
in_closure
or
(
entry
.
visibility
==
'private'
and
...
...
Cython/Compiler/ParseTreeTransforms.py
View file @
31609acb
...
...
@@ -2193,7 +2193,7 @@ class TransformBuiltinMethods(EnvTransform):
entry
=
self
.
current_env
().
builtin_scope
().
lookup_here
(
attribute
))
elif
PyrexTypes
.
parse_basic_type
(
attribute
):
pass
elif
self
.
context
.
cython_scope
.
lookup
(
attribute
):
elif
self
.
context
.
cython_scope
.
lookup
_qualified_name
(
attribute
):
pass
else
:
error
(
node
.
pos
,
u"'%s' not a valid cython attribute or is being used incorrectly"
%
attribute
)
...
...
@@ -2284,13 +2284,11 @@ class TransformBuiltinMethods(EnvTransform):
node
.
cdivision
=
True
elif
function
==
u'set'
:
node
.
function
=
ExprNodes
.
NameNode
(
node
.
pos
,
name
=
EncodedString
(
'set'
))
elif
self
.
context
.
cython_scope
.
lookup_qualified_name
(
function
):
pass
else
:
entry
=
self
.
context
.
cython_scope
.
lookup
(
function
)
if
entry
and
entry
.
utility_code_definition
:
self
.
env_stack
[
0
].
use_utility_code
(
entry
.
utility_code_definition
)
if
not
entry
:
error
(
node
.
function
.
pos
,
u"'%s' not a valid cython language construct"
%
function
)
error
(
node
.
function
.
pos
,
u"'%s' not a valid cython language construct"
%
function
)
self
.
visitchildren
(
node
)
return
node
...
...
Cython/Compiler/Pipeline.py
View file @
31609acb
...
...
@@ -60,16 +60,30 @@ def inject_pxd_code_stage_factory(context):
return
module_node
return
inject_pxd_code_stage
def
inject_utility_code_stage
(
module_node
):
added
=
[]
# need to copy list as the list will be altered!
for
utilcode
in
module_node
.
scope
.
utility_code_list
[:]:
if
utilcode
in
added
:
continue
added
.
append
(
utilcode
)
tree
=
utilcode
.
get_tree
()
if
tree
:
module_node
.
merge_in
(
tree
.
body
,
tree
.
scope
,
merge_scope
=
True
)
return
module_node
def
use_utility_code_definitions
(
scope
,
target
):
for
entry
in
scope
.
entries
.
itervalues
():
if
entry
.
used
and
entry
.
utility_code_definition
:
target
.
use_utility_code
(
entry
.
utility_code_definition
)
elif
entry
.
as_module
:
use_utility_code_definitions
(
entry
.
as_module
,
target
)
def
inject_utility_code_stage_factory
(
context
):
def
inject_utility_code_stage
(
module_node
):
# First, make sure any utility code pulled in by using symbols in the cython
# scope is included
use_utility_code_definitions
(
context
.
cython_scope
,
module_node
.
scope
)
added
=
[]
# Note: the list might be extended inside the loop (if some utility code
# pulls in other utility code)
for
utilcode
in
module_node
.
scope
.
utility_code_list
:
if
utilcode
in
added
:
continue
added
.
append
(
utilcode
)
tree
=
utilcode
.
get_tree
()
if
tree
:
module_node
.
merge_in
(
tree
.
body
,
tree
.
scope
,
merge_scope
=
True
)
return
module_node
return
inject_utility_code_stage
#
# Pipeline factories
...
...
@@ -109,6 +123,9 @@ def create_pipeline(context, mode, exclude_classes=()):
else
:
_align_function_definitions
=
None
# NOTE: This is the "common" parts of the pipeline, which is also
# code in pxd files. So it will be run multiple times in a
# compilation stage.
stages
=
[
NormalizeTree
(
context
),
PostParse
(
context
),
...
...
@@ -175,7 +192,7 @@ def create_pyx_pipeline(context, options, result, py=False, exclude_classes=()):
create_pipeline
(
context
,
mode
,
exclude_classes
=
exclude_classes
),
test_support
,
[
inject_pxd_code_stage_factory
(
context
),
inject_utility_code_stage
,
inject_utility_code_stage
_factory
(
context
)
,
abort_on_errors
],
debug_transform
,
[
generate_pyx_code_stage_factory
(
options
,
result
)]))
...
...
Cython/Compiler/Symtab.py
View file @
31609acb
...
...
@@ -892,9 +892,11 @@ class ModuleScope(Scope):
# types_imported {PyrexType : 1} Set of types for which import code generated
# has_import_star boolean Module contains import *
# cpp boolean Compiling a C++ file
# is_cython_builtin boolean Is this the Cython builtin scope (or a child scope)
is_module_scope = 1
has_import_star = 0
is_cython_builtin = 0
def __init__(self, name, parent_module, context):
import Builtin
...
...
tests/run/cythonscope.pyx
0 → 100644
View file @
31609acb
"""
>>> f()
hello from cython scope, value=4
hello from cython.view scope, value=4
hello from cython scope, value=3
hello from cython.view scope, value=3
"""
cimport
cython
from
cython
cimport
_testscope
as
tester
from
cython.view
cimport
_testscope
as
viewtester
def
f
():
print
cython
.
_testscope
(
4
)
print
cython
.
view
.
_testscope
(
4
)
print
tester
(
3
)
print
viewtester
(
3
)
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