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
51a47ebe
Commit
51a47ebe
authored
Sep 01, 2014
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow custom std::string alternatives.
parent
b517d0c1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
62 additions
and
9 deletions
+62
-9
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+15
-7
Cython/Utility/CppConvert.pyx
Cython/Utility/CppConvert.pyx
+2
-2
tests/run/cpp_custom_string.srctree
tests/run/cpp_custom_string.srctree
+45
-0
No files found.
Cython/Compiler/PyrexTypes.py
View file @
51a47ebe
...
...
@@ -2966,9 +2966,9 @@ class CStructOrUnionType(CType):
return
expr_code
return
super
(
CStructOrUnionType
,
self
).
cast_code
(
expr_code
)
cpp_string_conversions
=
(
"std::string"
,)
builtin_cpp_conversions
=
(
"std::string"
,
"std::pair"
,
builtin_cpp_conversions
=
(
"std::pair"
,
"std::vector"
,
"std::list"
,
"std::set"
,
"std::unordered_set"
,
"std::map"
,
"std::unordered_map"
)
...
...
@@ -3000,7 +3000,7 @@ class CppClassType(CType):
self
.
templates
=
templates
self
.
template_type
=
template_type
self
.
specializations
=
{}
self
.
is_cpp_string
=
cname
==
'std::string'
self
.
is_cpp_string
=
cname
in
cpp_string_conversions
def
use_conversion_utility
(
self
,
from_or_to
):
pass
...
...
@@ -3014,7 +3014,7 @@ class CppClassType(CType):
def
create_from_py_utility_code
(
self
,
env
):
if
self
.
from_py_function
is
not
None
:
return
True
if
self
.
cname
in
builtin_cpp_conversions
:
if
self
.
cname
in
builtin_cpp_conversions
or
self
.
cname
in
cpp_string_conversions
:
X
=
"XYZABC"
tags
=
[]
declarations
=
[
"cdef extern from *:"
]
...
...
@@ -3055,12 +3055,16 @@ class CppClassType(CType):
declarations
.
append
(
" cdef %s %s_from_py '%s' (object) except %s"
%
(
X
[
ix
],
X
[
ix
],
T
.
from_py_function
,
except_clause
))
cls
=
self
.
cname
[
5
:]
if
self
.
cname
in
cpp_string_conversions
:
cls
=
'string'
else
:
cls
=
self
.
cname
[
5
:]
cname
=
'__pyx_convert_%s_from_py_%s'
%
(
cls
,
'____'
.
join
(
tags
))
context
=
{
'template_type_declarations'
:
'
\
n
'
.
join
(
declarations
),
'cname'
:
cname
,
'maybe_unordered'
:
self
.
maybe_unordered
(),
'type'
:
self
.
cname
,
}
from
.UtilityCode
import
CythonUtilityCode
env
.
use_utility_code
(
CythonUtilityCode
.
load
(
cls
.
replace
(
'unordered_'
,
''
)
+
".from_py"
,
"CppConvert.pyx"
,
context
=
context
))
...
...
@@ -3070,7 +3074,7 @@ class CppClassType(CType):
def
create_to_py_utility_code
(
self
,
env
):
if
self
.
to_py_function
is
not
None
:
return
True
if
self
.
cname
in
builtin_cpp_conversions
:
if
self
.
cname
in
builtin_cpp_conversions
or
self
.
cname
in
cpp_string_conversions
:
X
=
"XYZABC"
tags
=
[]
declarations
=
[
"cdef extern from *:"
]
...
...
@@ -3084,12 +3088,16 @@ class CppClassType(CType):
declarations
.
append
(
" cdef object %s_to_py '%s' (%s)"
%
(
X
[
ix
],
T
.
to_py_function
,
X
[
ix
]))
cls
=
self
.
cname
[
5
:]
if
self
.
cname
in
cpp_string_conversions
:
cls
=
'string'
else
:
cls
=
self
.
cname
[
5
:]
cname
=
"__pyx_convert_%s_to_py_%s"
%
(
cls
,
"____"
.
join
(
tags
))
context
=
{
'template_type_declarations'
:
'
\
n
'
.
join
(
declarations
),
'cname'
:
cname
,
'maybe_unordered'
:
self
.
maybe_unordered
(),
'type'
:
self
.
cname
,
}
from
.UtilityCode
import
CythonUtilityCode
env
.
use_utility_code
(
CythonUtilityCode
.
load
(
cls
.
replace
(
'unordered_'
,
''
)
+
".to_py"
,
"CppConvert.pyx"
,
context
=
context
))
...
...
Cython/Utility/CppConvert.pyx
View file @
51a47ebe
...
...
@@ -4,7 +4,7 @@
#################### string.from_py ####################
cdef
extern
from
*
:
cdef
cppclass
string
"
std::string
"
:
cdef
cppclass
string
"
{{type}}
"
:
string
()
string
(
char
*
c_str
,
size_t
size
)
cdef
char
*
__Pyx_PyObject_AsStringAndSize
(
object
,
Py_ssize_t
*
)
except
NULL
...
...
@@ -21,7 +21,7 @@ cdef string {{cname}}(object o) except *:
#cimport cython
#from libcpp.string cimport string
cdef
extern
from
*
:
cdef
cppclass
string
"
std::string
"
:
cdef
cppclass
string
"
{{type}}
"
:
char
*
data
()
size_t
size
()
cdef
object
__Pyx_PyObject_FromStringAndSize
(
char
*
,
size_t
)
...
...
tests/run/cpp_custom_string.srctree
0 → 100644
View file @
51a47ebe
# tag: cpp
PYTHON setup.py build_ext --inplace
PYTHON -c "import a; a.test_convert()"
######## setup.py ########
from Cython.Build.Dependencies import cythonize
from Cython.Compiler import PyrexTypes
PyrexTypes.cpp_string_conversions += ("MyString",)
from distutils.core import setup
setup(
ext_modules = cythonize("*.pyx"),
)
######## my_string.cpp ########
#include <string>
class MyString {
public:
MyString() { }
MyString(const char* data, size_t size) : value_(data, size) { }
const char* data() const { return value_.data(); }
const size_t size() const { return value_.size(); }
private:
std::string value_;
};
######## a.pyx ########
# distutils: language = c++
cdef extern from "my_string.cpp":
cdef cppclass MyString:
pass
def do_convert(MyString value):
return value
def test_convert():
assert do_convert("abc") == "abc"
assert do_convert("ab\0c") == "ab\0c"
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