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
799bf36b
Commit
799bf36b
authored
Oct 30, 2010
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Basic cython.inline
parent
ff27eac9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
86 additions
and
0 deletions
+86
-0
Cython/Build/Inline.py
Cython/Build/Inline.py
+74
-0
Cython/Build/__init__.py
Cython/Build/__init__.py
+0
-0
Cython/Shadow.py
Cython/Shadow.py
+12
-0
No files found.
Cython/Build/Inline.py
0 → 100644
View file @
799bf36b
import
tempfile
import
sys
,
os
,
re
try
:
import
hashlib
except
ImportError
:
import
md5
as
hashlib
from
distutils.dist
import
Distribution
from
distutils.core
import
Extension
from
Cython.Distutils
import
build_ext
code_cache
=
{}
def
get_type
(
arg
):
py_type
=
type
(
arg
)
# TODO: numpy
# TODO: extension types
if
py_type
in
[
list
,
tuple
,
dict
,
str
]:
return
py_type
.
__name__
elif
py_type
is
float
:
return
'double'
elif
py_type
is
int
:
return
'long'
else
:
return
'object'
# TODO: use locals/globals for unbound variables
def
cython_inline
(
code
,
types
=
'aggressive'
,
lib_dir
=
os
.
path
.
expanduser
(
'~/.cython/inline'
),
**
kwds
):
_
,
pyx_file
=
tempfile
.
mkstemp
(
'.pyx'
)
arg_names
=
kwds
.
keys
()
arg_names
.
sort
()
arg_sigs
=
tuple
((
get_type
(
kwds
[
arg
]),
arg
)
for
arg
in
arg_names
)
key
=
code
,
arg_sigs
module
=
code_cache
.
get
(
key
)
if
not
module
:
module_body
,
extract_func_code
=
extract_bodies
(
code
)
params
=
', '
.
join
(
'%s %s'
%
a
for
a
in
arg_sigs
)
module_code
=
"""
%(module_body)s
def __invoke(%(params)s):
%(func_body)s
"""
%
locals
()
open
(
pyx_file
,
'w'
).
write
(
module_code
)
module
=
"_"
+
hashlib
.
md5
(
code
+
str
(
arg_sigs
)).
hexdigest
()
extension
=
Extension
(
name
=
module
,
sources
=
[
pyx_file
])
build_extension
=
build_ext
(
Distribution
())
build_extension
.
finalize_options
()
build_extension
.
extensions
=
[
extension
]
build_extension
.
build_temp
=
os
.
path
.
dirname
(
pyx_file
)
if
lib_dir
not
in
sys
.
path
:
sys
.
path
.
append
(
lib_dir
)
build_extension
.
build_lib
=
lib_dir
build_extension
.
run
()
code_cache
[
key
]
=
module
arg_list
=
[
kwds
[
arg
]
for
arg
in
arg_names
]
return
__import__
(
module
).
__invoke
(
*
arg_list
)
module_statement
=
re
.
compile
(
r'^((cdef +(extern|class))|cimport|(from .+ cimport)|(from .+ import +[*]))'
)
def
extract_func_code
(
code
):
module
=
[]
function
=
[]
# TODO: string literals, backslash
current
=
function
for
line
in
code
.
split
(
'
\
n
'
):
if
not
line
.
startswith
(
' '
):
if
module_statement
.
match
(
line
):
current
=
module
else
:
current
=
function
current
.
append
(
line
)
return
'
\
n
'
.
join
(
module
),
' '
+
'
\
n
'
.
join
(
function
)
Cython/Build/__init__.py
0 → 100644
View file @
799bf36b
Cython/Shadow.py
View file @
799bf36b
# cython.* namespace for pure mode.
compiled
=
False
compiled
=
False
def
empty_decorator
(
x
):
def
empty_decorator
(
x
):
return
x
return
x
# Function decorators
def
locals
(
**
arg_types
):
def
locals
(
**
arg_types
):
return
empty_decorator
return
empty_decorator
def
inline
(
f
,
*
args
,
**
kwds
):
if
isinstance
(
f
,
basestring
):
from
Cython.Build.Inline
import
cython_inline
return
cython_inline
(
f
,
*
args
,
**
kwds
)
else
:
assert
len
(
args
)
==
len
(
kwds
)
==
0
return
f
# Special functions
# Special functions
def
cdiv
(
a
,
b
):
def
cdiv
(
a
,
b
):
...
...
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