-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathpyiterator.jl
160 lines (138 loc) · 4.88 KB
/
pyiterator.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# Support Python iterators in Julia and vice versa
#########################################################################
# Iterating over Python objects in Julia
Base.IteratorSize(::Type{PyObject}) = Base.SizeUnknown()
function _start(po::PyObject)
disable_sigint() do
o = PyObject(@pycheckn ccall((@pysym :PyObject_GetIter), PyPtr, (PyPtr,), po))
nxt = PyObject(@pycheck ccall((@pysym :PyIter_Next), PyPtr, (PyPtr,), o))
return (nxt,o)
end
end
"""
PyIterator{T}(pyobject)
Wrap `pyobject::PyObject` into an iterator, that produces items of type `T`. To be more precise `convert(T, item)` is applied in each iteration. This can be useful to avoid automatic conversion of items into corresponding julia types.
```jldoctest
julia> using PyCall
julia> l = PyObject([PyObject(1), PyObject(2)])
PyObject [1, 2]
julia> piter = PyCall.PyIterator{PyAny}(l)
PyCall.PyIterator{PyAny,Base.HasLength()}(PyObject [1, 2])
julia> collect(piter)
2-element Array{Any,1}:
1
2
julia> piter = PyCall.PyIterator(l)
PyCall.PyIterator{PyObject,Base.HasLength()}(PyObject [1, 2])
julia> collect(piter)
2-element Array{PyObject,1}:
PyObject 1
PyObject 2
```
"""
struct PyIterator{T,S}
o::PyObject
end
function _compute_IteratorSize(o::PyObject)
S = try
length(o)
Base.HasLength
catch err
if !(err isa PyError && pyisinstance(err.val, @pyglobalobjptr :PyExc_TypeError))
rethrow()
end
Base.SizeUnknown
end
end
function PyIterator(o::PyObject)
PyIterator{PyObject}(o)
end
function (::Type{PyIterator{T}})(o::PyObject) where {T}
S = _compute_IteratorSize(o)
PyIterator{T,S}(o)
end
Base.eltype(::Type{<:PyIterator{T}}) where T = T
Base.eltype(::Type{<:PyIterator{PyAny}}) = Any
Base.length(piter::PyIterator) = length(piter.o)
Base.IteratorSize(::Type{<: PyIterator{T,S}}) where {T,S} = S()
_start(piter::PyIterator) = _start(piter.o)
function Base.iterate(piter::PyIterator{T}, s=_start(piter)) where {T}
ispynull(s[1]) && return nothing
disable_sigint() do
nxt = PyObject(@pycheck ccall((@pysym :PyIter_Next), PyPtr, (PyPtr,), s[2]))
return (convert(T,s[1]), (nxt, s[2]))
end
end
function Base.iterate(po::PyObject, s=_start(po))
# avoid the constructor that calls length
# since that might be an expensive operation
# even if length is cheap, this adds 10% performance
piter = PyIterator{PyAny, Base.SizeUnknown}(po)
iterate(piter, s)
end
# issue #216
function Base.collect(::Type{T}, o::PyObject) where T
a = T[]
for x in o
push!(a, x)
end
return a
end
Base.collect(o::PyObject) = collect(Any, o)
#########################################################################
# Iterating over Julia objects in Python
const jlWrapIteratorType = PyTypeObject()
# tp_iternext object of a jlwrap_iterator object, similar to PyIter_Next
function pyjlwrap_iternext(self_::PyPtr)
try
iter, iter_result_ref = unsafe_pyjlwrap_to_objref(self_)
iter_result = iter_result_ref[]
if iter_result !== nothing
item, state = iter_result
iter_result_ref[] = iterate(iter, state)
return pyreturn(item)
end
catch e
@pyraise e
end
return PyPtr_NULL
end
# the tp_iter slot of jlwrap object: like PyObject_GetIter, it
# returns a reference to a new jlwrap_iterator object
function pyjlwrap_getiter(self_::PyPtr)
try
self = unsafe_pyjlwrap_to_objref(self_)
return pystealref!(jlwrap_iterator(self))
catch e
@pyraise e
end
return PyPtr_NULL
end
# Given a Julia object o, return a jlwrap_iterator Python iterator object
# that wraps the Julia iteration protocol with the Python iteration protocol.
# Internally, the jlwrap_iterator object stores the tuple (o, Ref(iterate(o))),
# where the Ref is used to store the (element, state)-iterator result tuple
# (which updates during iteration) and also the nothing termination indicator.
function jlwrap_iterator(o::Any)
if jlWrapIteratorType.tp_name == C_NULL # lazily initialize
pyjlwrap_type!(jlWrapIteratorType, "PyCall.jlwrap_iterator") do t
t.tp_iter = @cfunction(pyincref_, PyPtr, (PyPtr,)) # new reference to same object
t.tp_iternext = @cfunction(pyjlwrap_iternext, PyPtr, (PyPtr,))
end
end
iter_result = iterate(o)
return pyjlwrap_new(jlWrapIteratorType, (o, Ref{Union{Nothing,typeof(iter_result)}}(iterate(o))))
end
#########################################################################
# Broadcasting: if the object is iterable, return collect(o), and otherwise
# return o.
function Base.Broadcast.broadcastable(o::PyObject)
iter = ccall((@pysym :PyObject_GetIter), PyPtr, (PyPtr,), o)
if iter == C_NULL
pyerr_clear()
return Ref(o)
else
ccall(@pysym(:Py_DecRef), Cvoid, (PyPtr,), iter)
return collect(o)
end
end