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
Kirill Smelkov
cython
Commits
82f49e1e
Commit
82f49e1e
authored
Oct 06, 2008
by
Dag Sverre Seljebotn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Buffers: Non-nested struct dtype validation support
parent
1e7ba6aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
73 additions
and
25 deletions
+73
-25
Cython/Compiler/Buffer.py
Cython/Compiler/Buffer.py
+53
-22
tests/run/bufaccess.pyx
tests/run/bufaccess.pyx
+20
-3
No files found.
Cython/Compiler/Buffer.py
View file @
82f49e1e
...
@@ -570,9 +570,21 @@ def create_typestringchecker(protocode, defcode, name, dtype):
...
@@ -570,9 +570,21 @@ def create_typestringchecker(protocode, defcode, name, dtype):
if
simple
:
if
simple
:
itemchecker
=
get_ts_check_item
(
dtype
,
protocode
)
itemchecker
=
get_ts_check_item
(
dtype
,
protocode
)
else
:
else
:
dtype_t
=
dtype
.
declaration_code
(
""
)
protocode
.
globalstate
.
use_utility_code
(
parse_typestring_repeat_code
)
protocode
.
globalstate
.
use_utility_code
(
parse_typestring_repeat_code
)
fields
=
dtype
.
scope
.
var_entries
fields
=
dtype
.
scope
.
var_entries
field_checkers
=
[
get_ts_check_item
(
x
.
type
,
protocode
)
for
x
in
fields
]
# divide fields into blocks of equal type (for repeat count)
field_blocks
=
[]
# of (n, type, checkerfunc)
n
=
0
prevtype
=
None
for
f
in
fields
:
if
n
and
f
.
type
!=
prevtype
:
field_blocks
.
append
((
n
,
prevtype
,
get_ts_check_item
(
prevtype
,
protocode
)))
n
=
0
prevtype
=
f
.
type
n
+=
1
field_blocks
.
append
((
n
,
f
.
type
,
get_ts_check_item
(
f
.
type
,
protocode
)))
protocode
.
putln
(
"static const char* %s(const char* ts); /*proto*/"
%
name
)
protocode
.
putln
(
"static const char* %s(const char* ts); /*proto*/"
%
name
)
defcode
.
putln
(
"static const char* %s(const char* ts) {"
%
name
)
defcode
.
putln
(
"static const char* %s(const char* ts) {"
%
name
)
...
@@ -580,29 +592,48 @@ def create_typestringchecker(protocode, defcode, name, dtype):
...
@@ -580,29 +592,48 @@ def create_typestringchecker(protocode, defcode, name, dtype):
defcode
.
putln
(
"ts = __Pyx_ConsumeWhitespace(ts); if (!ts) return NULL;"
)
defcode
.
putln
(
"ts = __Pyx_ConsumeWhitespace(ts); if (!ts) return NULL;"
)
defcode
.
putln
(
"if (*ts == '1') ++ts;"
)
defcode
.
putln
(
"if (*ts == '1') ++ts;"
)
defcode
.
putln
(
"ts = %s(ts); if (!ts) return NULL;"
%
itemchecker
)
defcode
.
putln
(
"ts = %s(ts); if (!ts) return NULL;"
%
itemchecker
)
else
:
elif
complex_possible
:
defcode
.
putln
(
"int repeat; char type;"
)
# Could be a struct representing a complex number, so allow
# for parsing a "Zf" spec.
real_t
,
imag_t
=
[
x
.
type
for
x
in
fields
]
defcode
.
putln
(
"ts = __Pyx_ConsumeWhitespace(ts); if (!ts) return NULL;"
)
defcode
.
putln
(
"ts = __Pyx_ConsumeWhitespace(ts); if (!ts) return NULL;"
)
if
complex_possible
:
defcode
.
putln
(
"if (*ts == '1') ++ts;"
)
# Could be a struct representing a complex number, so allow
defcode
.
putln
(
"if (*ts == 'Z') {"
)
# for parsing a "Zf" spec.
if
len
(
field_blocks
)
==
2
:
real_t
,
imag_t
=
[
x
.
type
.
declaration_code
(
""
)
for
x
in
fields
]
# Different float type, sizeof check needed
defcode
.
putln
(
"if (*ts == 'Z' && sizeof(%s) == sizeof(%s)) {"
%
(
real_t
,
imag_t
))
defcode
.
putln
(
"if (sizeof(%s) != sizeof(%s)) {"
%
(
defcode
.
putln
(
"ts = %s(ts + 1); if (!ts) return NULL;"
%
field_checkers
[
0
])
real_t
.
declaration_code
(
""
),
defcode
.
putln
(
"} else {"
)
imag_t
.
declaration_code
(
""
)))
defcode
.
putln
(
'PyErr_SetString(PyExc_ValueError, "Struct buffer dtypes not implemented yet!");'
)
defcode
.
putln
(
'PyErr_SetString(PyExc_ValueError, "Cannot store complex number in
\
'
%s
\
'
as
\
'
%s
\
'
differs from
\
'
%s
\
'
in size.");'
%
(
defcode
.
putln
(
'return NULL;'
)
dtype
.
declaration_code
(
""
,
for_display
=
True
),
# Code for parsing as a struct.
real_t
.
declaration_code
(
""
,
for_display
=
True
),
# for field, checker in zip(fields, field_checkers):
imag_t
.
declaration_code
(
""
,
for_display
=
True
)))
# defcode.put(dedent("""\
defcode
.
putln
(
"return NULL;"
)
# if (repeat == 0) {
# ts = __Pyx_ParseTypestringRepeat(ts, &repeat); if (!ts) return NULL;
# ts = %s(ts); if (!ts) return NULL;
# }
# """) % checker)
if
complex_possible
:
defcode
.
putln
(
"}"
)
defcode
.
putln
(
"}"
)
check_real
,
check_imag
=
[
x
[
2
]
for
x
in
field_blocks
]
else
:
assert
len
(
field_blocks
)
==
1
check_real
=
check_imag
=
field_blocks
[
0
][
2
]
defcode
.
putln
(
"ts = %s(ts + 1); if (!ts) return NULL;"
%
check_real
)
defcode
.
putln
(
"} else {"
)
defcode
.
putln
(
"ts = %s(ts); if (!ts) return NULL;"
%
check_real
)
defcode
.
putln
(
"ts = __Pyx_ConsumeWhitespace(ts); if (!ts) return NULL;"
)
defcode
.
putln
(
"ts = %s(ts); if (!ts) return NULL;"
%
check_imag
)
defcode
.
putln
(
"}"
)
else
:
defcode
.
putln
(
"int n, count;"
)
defcode
.
putln
(
"ts = __Pyx_ConsumeWhitespace(ts); if (!ts) return NULL;"
)
for
n
,
type
,
checker
in
field_blocks
:
if
n
==
1
:
defcode
.
putln
(
"if (*ts == '1') ++ts;"
)
defcode
.
putln
(
"ts = %s(ts); if (!ts) return NULL;"
%
checker
)
else
:
defcode
.
putln
(
"n = %d;"
%
n
);
defcode
.
putln
(
"do {"
)
defcode
.
putln
(
"ts = __Pyx_ParseTypestringRepeat(ts, &count); n -= count;"
)
defcode
.
putln
(
"ts = %s(ts); if (!ts) return NULL;"
%
checker
)
defcode
.
putln
(
"} while (n > 0);"
);
defcode
.
putln
(
"ts = __Pyx_ConsumeWhitespace(ts); if (!ts) return NULL;"
)
defcode
.
putln
(
"return ts;"
)
defcode
.
putln
(
"return ts;"
)
defcode
.
putln
(
"}"
)
defcode
.
putln
(
"}"
)
...
...
tests/run/bufaccess.pyx
View file @
82f49e1e
...
@@ -1306,11 +1306,13 @@ cdef class MyStructMockBuffer(MockBuffer):
...
@@ -1306,11 +1306,13 @@ cdef class MyStructMockBuffer(MockBuffer):
def
basic_struct
(
object
[
MyStruct
]
buf
):
def
basic_struct
(
object
[
MyStruct
]
buf
):
"""
"""
>>> basic_struct(MyStructMockBuffer(None, [(1, 2, 3, 4, 5)]))
>>> basic_struct(MyStructMockBuffer(None, [(1, 2, 3, 4, 5)]))
1 2 3 4 5
>>> basic_struct(MyStructMockBuffer(None, [(1, 2, 3, 4, 5)], format="bbqii"))
1 2 3 4 5
>>> basic_struct(MyStructMockBuffer(None, [(1, 2, 3, 4, 5)], format="i"))
Traceback (most recent call last):
Traceback (most recent call last):
...
...
ValueError: Struct buffer dtypes not implemented yet!
ValueError: Buffer datatype mismatch (expected 'b', got 'i')
# 1 2 3 4 5
"""
"""
print
buf
[
0
].
a
,
buf
[
0
].
b
,
buf
[
0
].
c
,
buf
[
0
].
d
,
buf
[
0
].
e
print
buf
[
0
].
a
,
buf
[
0
].
b
,
buf
[
0
].
c
,
buf
[
0
].
d
,
buf
[
0
].
e
...
@@ -1318,6 +1320,10 @@ cdef struct LongComplex:
...
@@ -1318,6 +1320,10 @@ cdef struct LongComplex:
long
double
real
long
double
real
long
double
imag
long
double
imag
cdef
struct
MixedComplex
:
long
double
real
float
imag
cdef
class
LongComplexMockBuffer
(
MockBuffer
):
cdef
class
LongComplexMockBuffer
(
MockBuffer
):
cdef
int
write
(
self
,
char
*
buf
,
object
value
)
except
-
1
:
cdef
int
write
(
self
,
char
*
buf
,
object
value
)
except
-
1
:
cdef
LongComplex
*
s
cdef
LongComplex
*
s
...
@@ -1337,6 +1343,17 @@ def complex_struct_dtype(object[LongComplex] buf):
...
@@ -1337,6 +1343,17 @@ def complex_struct_dtype(object[LongComplex] buf):
"""
"""
print
buf
[
0
].
real
,
buf
[
0
].
imag
print
buf
[
0
].
real
,
buf
[
0
].
imag
@
testcase
def
mixed_complex_struct_dtype
(
object
[
MixedComplex
]
buf
):
"""
Triggering a specific execution path for this case.
>>> mixed_complex_struct_dtype(LongComplexMockBuffer(None, [(0, -1)]))
Traceback (most recent call last):
...
ValueError: Cannot store complex number in 'MixedComplex' as 'long double' differs from 'float' in size.
"""
print
buf
[
0
].
real
,
buf
[
0
].
imag
@
testcase
@
testcase
def
complex_struct_inplace
(
object
[
LongComplex
]
buf
):
def
complex_struct_inplace
(
object
[
LongComplex
]
buf
):
...
...
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