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
Gwenaël Samain
cython
Commits
9875327a
Commit
9875327a
authored
May 21, 2009
by
Dag Sverre Seljebotn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move UtilityCode to Code.py
parent
128c5563
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
74 additions
and
66 deletions
+74
-66
Cython/Compiler/Buffer.py
Cython/Compiler/Buffer.py
+7
-7
Cython/Compiler/Builtin.py
Cython/Compiler/Builtin.py
+1
-1
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+57
-3
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+1
-1
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+2
-1
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+2
-1
Cython/Compiler/Optimize.py
Cython/Compiler/Optimize.py
+1
-1
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+1
-1
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+2
-1
Cython/Utils.py
Cython/Utils.py
+0
-49
No files found.
Cython/Compiler/Buffer.py
View file @
9875327a
from
Cython.Compiler.
Visitor
import
VisitorTransform
,
CythonTransform
from
Cython.Compiler.
ModuleNode
import
ModuleNode
from
Cython.Compiler.
Nodes
import
*
from
Cython.Compiler.
ExprNodes
import
*
from
Cython.Compiler.
StringEncoding
import
EncodedString
from
Cython.Compiler.
Errors
import
CompileError
from
C
ython.Utils
import
UtilityCode
from
Visitor
import
VisitorTransform
,
CythonTransform
from
ModuleNode
import
ModuleNode
from
Nodes
import
*
from
ExprNodes
import
*
from
StringEncoding
import
EncodedString
from
Errors
import
CompileError
from
C
ode
import
UtilityCode
import
Interpreter
import
PyrexTypes
...
...
Cython/Compiler/Builtin.py
View file @
9875327a
...
...
@@ -3,7 +3,7 @@
#
from
Symtab
import
BuiltinScope
,
StructOrUnionScope
from
C
ython.Utils
import
UtilityCode
from
C
ode
import
UtilityCode
from
TypeSlots
import
Signature
import
PyrexTypes
import
Naming
...
...
Cython/Compiler/Code.py
View file @
9875327a
...
...
@@ -8,9 +8,6 @@ import Naming
import
Options
import
StringEncoding
from
Cython
import
Utils
from
PyrexTypes
import
py_object_type
,
typecast
import
PyrexTypes
from
TypeSlots
import
method_coexist
from
Scanning
import
SourceDescriptor
from
Cython.StringIOTree
import
StringIOTree
try
:
...
...
@@ -19,6 +16,58 @@ except NameError:
from
sets
import
Set
as
set
import
DebugFlags
from
Cython.Utils
import
none_or_sub
# a simple class that simplifies the usage of utility code
class
UtilityCode
(
object
):
def
__init__
(
self
,
proto
=
None
,
impl
=
None
,
init
=
None
,
cleanup
=
None
,
requires
=
None
):
self
.
proto
=
proto
self
.
impl
=
impl
self
.
init
=
init
self
.
cleanup
=
cleanup
self
.
requires
=
requires
self
.
_cache
=
{}
self
.
specialize_list
=
[]
def
write_init_code
(
self
,
writer
,
pos
):
if
not
self
.
init
:
return
if
isinstance
(
self
.
init
,
basestring
):
writer
.
put
(
self
.
init
)
else
:
self
.
init
(
writer
,
pos
)
def
write_cleanup_code
(
self
,
writer
,
pos
):
if
not
self
.
cleanup
:
return
if
isinstance
(
self
.
cleanup
,
basestring
):
writer
.
put
(
self
.
cleanup
)
else
:
self
.
cleanup
(
writer
,
pos
)
def
specialize
(
self
,
pyrex_type
=
None
,
**
data
):
# Dicts aren't hashable...
if
pyrex_type
is
not
None
:
data
[
'type'
]
=
pyrex_type
.
declaration_code
(
''
)
data
[
'type_name'
]
=
pyrex_type
.
specalization_name
()
key
=
data
.
items
();
key
.
sort
();
key
=
tuple
(
key
)
try
:
return
self
.
_cache
[
key
]
except
KeyError
:
if
self
.
requires
is
None
:
requires
=
None
else
:
requires
=
[
r
.
specialize
(
data
)
for
r
in
self
.
requires
]
s
=
self
.
_cache
[
key
]
=
UtilityCode
(
none_or_sub
(
self
.
proto
,
data
),
none_or_sub
(
self
.
impl
,
data
),
none_or_sub
(
self
.
init
,
data
),
none_or_sub
(
self
.
cleanup
,
data
),
requires
)
self
.
specialize_list
.
append
(
s
)
return
s
class
FunctionState
(
object
):
# return_label string function return point label
# error_label string error catch point label
...
...
@@ -397,6 +446,7 @@ class GlobalState(object):
# utility_code_def
#
code = self.parts['utility_code_def']
import PyrexTypes
code.put(PyrexTypes.type_conversion_functions)
code.putln("")
...
...
@@ -979,6 +1029,7 @@ class CCodeWriter(object):
return
entry
.
cname
def
as_pyobject
(
self
,
cname
,
type
):
from
PyrexTypes
import
py_object_type
,
typecast
return
typecast
(
py_object_type
,
type
,
cname
)
def
put_gotref
(
self
,
cname
):
...
...
@@ -1026,6 +1077,7 @@ class CCodeWriter(object):
self
.
putln
(
"__Pyx_INCREF(%s);"
%
self
.
entry_as_pyobject
(
entry
))
def
put_decref_clear
(
self
,
cname
,
type
,
nanny
=
True
):
from
PyrexTypes
import
py_object_type
,
typecast
if
nanny
:
self
.
putln
(
"__Pyx_DECREF(%s); %s = 0;"
%
(
typecast
(
py_object_type
,
type
,
cname
),
cname
))
...
...
@@ -1085,6 +1137,7 @@ class CCodeWriter(object):
self
.
put_var_xdecref_clear
(
entry
)
def
put_init_to_py_none
(
self
,
cname
,
type
,
nanny
=
True
):
from
PyrexTypes
import
py_object_type
,
typecast
py_none
=
typecast
(
type
,
py_object_type
,
"Py_None"
)
if
nanny
:
self
.
putln
(
"%s = %s; __Pyx_INCREF(Py_None);"
%
(
cname
,
py_none
))
...
...
@@ -1098,6 +1151,7 @@ class CCodeWriter(object):
self
.
put_init_to_py_none
(
code
,
entry
.
type
,
nanny
)
def
put_pymethoddef
(
self
,
entry
,
term
):
from
TypeSlots
import
method_coexist
if
entry
.
doc
:
doc_code
=
entry
.
doc_cname
else
:
...
...
Cython/Compiler/ExprNodes.py
View file @
9875327a
...
...
@@ -6,7 +6,7 @@ import operator
from
Errors
import
error
,
warning
,
InternalError
from
Errors
import
hold_errors
,
release_errors
,
held_errors
,
report_error
from
C
ython.Utils
import
UtilityCode
from
C
ode
import
UtilityCode
import
StringEncoding
import
Naming
import
Nodes
...
...
Cython/Compiler/ModuleNode.py
View file @
9875327a
...
...
@@ -23,7 +23,8 @@ import DebugFlags
from
Errors
import
error
,
warning
from
PyrexTypes
import
py_object_type
from
Cython.Utils
import
open_new_file
,
replace_suffix
,
UtilityCode
from
Cython.Utils
import
open_new_file
,
replace_suffix
from
Code
import
UtilityCode
from
StringEncoding
import
escape_byte_string
,
EncodedString
...
...
Cython/Compiler/Nodes.py
View file @
9875327a
...
...
@@ -13,7 +13,8 @@ import TypeSlots
from
PyrexTypes
import
py_object_type
,
error_type
,
CTypedefType
,
CFuncType
from
Symtab
import
ModuleScope
,
LocalScope
,
GeneratorLocalScope
,
\
StructOrUnionScope
,
PyClassScope
,
CClassScope
from
Cython.Utils
import
open_new_file
,
replace_suffix
,
UtilityCode
from
Cython.Utils
import
open_new_file
,
replace_suffix
from
Code
import
UtilityCode
from
StringEncoding
import
EncodedString
,
escape_byte_string
,
split_docstring
import
Options
import
ControlFlow
...
...
Cython/Compiler/Optimize.py
View file @
9875327a
...
...
@@ -8,7 +8,7 @@ import TypeSlots
import
Symtab
import
Options
from
C
ython.Utils
import
UtilityCode
from
C
ode
import
UtilityCode
from
StringEncoding
import
EncodedString
from
Errors
import
error
from
ParseTreeTransforms
import
SkipDeclarations
...
...
Cython/Compiler/PyrexTypes.py
View file @
9875327a
...
...
@@ -2,7 +2,7 @@
# Pyrex - Types
#
from
C
ython.Utils
import
UtilityCode
from
C
ode
import
UtilityCode
import
StringEncoding
import
Naming
import
copy
...
...
Cython/Compiler/Symtab.py
View file @
9875327a
...
...
@@ -14,6 +14,7 @@ from TypeSlots import \
pyfunction_signature
,
pymethod_signature
,
\
get_special_method_signature
,
get_property_accessor_signature
import
ControlFlow
import
Code
import
__builtin__
try
:
set
...
...
@@ -1382,7 +1383,7 @@ class PropertyScope(Scope):
# Should this go elsewhere (and then get imported)?
#------------------------------------------------------------------------------------
classmethod_utility_code
=
Utils
.
UtilityCode
(
classmethod_utility_code
=
Code
.
UtilityCode
(
proto
=
"""
#include "descrobject.h"
static PyObject* __Pyx_Method_ClassMethod(PyObject *method); /*proto*/
...
...
Cython/Utils.py
View file @
9875327a
...
...
@@ -95,52 +95,3 @@ def none_or_sub(s, data):
else
:
return
s
%
data
# a simple class that simplifies the usage of utility code
class
UtilityCode
(
object
):
def
__init__
(
self
,
proto
=
None
,
impl
=
None
,
init
=
None
,
cleanup
=
None
,
requires
=
None
):
self
.
proto
=
proto
self
.
impl
=
impl
self
.
init
=
init
self
.
cleanup
=
cleanup
self
.
requires
=
requires
self
.
_cache
=
{}
self
.
specialize_list
=
[]
def
write_init_code
(
self
,
writer
,
pos
):
if
not
self
.
init
:
return
if
isinstance
(
self
.
init
,
basestring
):
writer
.
put
(
self
.
init
)
else
:
self
.
init
(
writer
,
pos
)
def
write_cleanup_code
(
self
,
writer
,
pos
):
if
not
self
.
cleanup
:
return
if
isinstance
(
self
.
cleanup
,
basestring
):
writer
.
put
(
self
.
cleanup
)
else
:
self
.
cleanup
(
writer
,
pos
)
def
specialize
(
self
,
pyrex_type
=
None
,
**
data
):
# Dicts aren't hashable...
if
pyrex_type
is
not
None
:
data
[
'type'
]
=
pyrex_type
.
declaration_code
(
''
)
data
[
'type_name'
]
=
pyrex_type
.
specalization_name
()
key
=
data
.
items
();
key
.
sort
();
key
=
tuple
(
key
)
try
:
return
self
.
_cache
[
key
]
except
KeyError
:
if
self
.
requires
is
None
:
requires
=
None
else
:
requires
=
[
r
.
specialize
(
data
)
for
r
in
self
.
requires
]
s
=
self
.
_cache
[
key
]
=
UtilityCode
(
none_or_sub
(
self
.
proto
,
data
),
none_or_sub
(
self
.
impl
,
data
),
none_or_sub
(
self
.
init
,
data
),
none_or_sub
(
self
.
cleanup
,
data
),
requires
)
self
.
specialize_list
.
append
(
s
)
return
s
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