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
e7336e2f
Commit
e7336e2f
authored
Feb 05, 2011
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
support 'Py_UCS4 in unicode_string' also in 16 Unicode builds
parent
85d716c5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
67 additions
and
5 deletions
+67
-5
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+45
-5
tests/run/py_ucs4_type.pyx
tests/run/py_ucs4_type.pyx
+22
-0
No files found.
Cython/Compiler/ExprNodes.py
View file @
e7336e2f
...
...
@@ -6662,11 +6662,43 @@ static CYTHON_INLINE int __Pyx_UnicodeContains(PyObject* unicode, Py_UNICODE cha
"""
,
impl
=
"""
static CYTHON_INLINE int __Pyx_UnicodeContains(PyObject* unicode, Py_UNICODE character) {
Py_UNICODE* pos;
const Py_ssize_t length = PyUnicode_GET_SIZE(unicode);
Py_UNICODE* char_start = PyUnicode_AS_UNICODE(unicode);
for (pos=char_start; pos < char_start+length; pos++) {
if (unlikely(character == pos[0])) return 1;
}
return 0;
}
"""
)
py_ucs4_in_unicode_utility_code
=
UtilityCode
(
proto
=
"""
static CYTHON_INLINE int __Pyx_UnicodeContainsUCS4(PyObject* unicode, Py_UCS4 character); /*proto*/
"""
,
# additionally handles surrogate pairs in 16bit Unicode builds
impl
=
"""
static CYTHON_INLINE int __Pyx_UnicodeContainsUCS4(PyObject* unicode, Py_UCS4 character) {
Py_UNICODE* pos;
Py_UNICODE uchar;
const Py_ssize_t length = PyUnicode_GET_SIZE(unicode);
Py_UNICODE* char_start = PyUnicode_AS_UNICODE(unicode);
#if Py_UNICODE_SIZE == 2
if (unlikely(character > 65535)) {
Py_UNICODE high_val, low_val;
high_val = (Py_UNICODE) (0xD800 | (((character - 0x10000) >> 10) & ((1<<10)-1)));
low_val = (Py_UNICODE) (0xDC00 | ( (character - 0x10000) & ((1<<10)-1)));
for (pos=char_start; pos < char_start+length-1; pos++) {
if (unlikely(high_val == pos[0]) & unlikely(low_val == pos[1])) return 1;
}
return 0;
}
#endif
uchar = (Py_UNICODE) character;
for (pos=char_start; pos < char_start+length; pos++) {
if (
character == pos[0]
) return 1;
if (
unlikely(uchar == pos[0])
) return 1;
}
return 0;
}
...
...
@@ -6764,7 +6796,12 @@ class PrimaryCmpNode(ExprNode, CmpNode):
error
(
self
.
pos
,
"Cascading comparison not yet supported for 'int_val in string'."
)
return
if
self
.
operand2
.
type
is
unicode_type
:
self
.
uchar_test_type
=
PyrexTypes
.
widest_numeric_type
(
self
.
operand1
.
type
,
PyrexTypes
.
c_py_unicode_type
)
if
self
.
uchar_test_type
is
PyrexTypes
.
c_py_unicode_type
:
env
.
use_utility_code
(
pyunicode_in_unicode_utility_code
)
else
:
env
.
use_utility_code
(
py_ucs4_in_unicode_utility_code
)
else
:
if
self
.
operand1
.
type
is
PyrexTypes
.
c_uchar_type
:
self
.
operand1
=
self
.
operand1
.
coerce_to
(
PyrexTypes
.
c_char_type
,
env
)
...
...
@@ -6854,10 +6891,13 @@ class PrimaryCmpNode(ExprNode, CmpNode):
self
.
operand1
.
result
(),
self
.
operand2
.
result
())
elif
self
.
is_c_string_contains
():
if
self
.
operand2
.
type
is
bytes_type
:
method
=
"__Pyx_BytesContains"
else
:
if
self
.
operand2
.
type
is
unicode_type
:
if
self
.
uchar_test_type
is
PyrexTypes
.
c_py_unicode_type
:
method
=
"__Pyx_UnicodeContains"
else
:
method
=
"__Pyx_UnicodeContainsUCS4"
else
:
method
=
"__Pyx_BytesContains"
if
self
.
operator
==
"not_in"
:
negation
=
"!"
else
:
...
...
tests/run/py_ucs4_type.pyx
View file @
e7336e2f
...
...
@@ -195,3 +195,25 @@ def index_and_in():
for
i
in
range
(
1
,
9
):
if
u'abcdefgh'
[
-
i
]
in
u'abCDefGh'
:
print
i
# special test for narrow builds
high_uchar
=
u'
\
U00012345
'
high_ustring0
=
u'
\
U00012345
\
U00012346
abc'
high_ustring1
=
u'
\
U00012346
\
U00012345
abc'
high_ustring_end
=
u'
\
U00012346
abc
\
U00012344
\
U00012345
'
high_ustring_no
=
u'
\
U00012346
\
U00012346
abc'
def
uchar_in
(
Py_UCS4
uchar
,
unicode
ustring
):
"""
>>> uchar_in(high_uchar, high_ustring0)
True
>>> uchar_in(high_uchar, high_ustring1)
True
>>> uchar_in(high_uchar, high_ustring_end)
True
>>> uchar_in(high_uchar, high_ustring_no)
False
"""
assert
uchar
==
0x12345
,
(
'%X'
%
uchar
)
return
uchar
in
ustring
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