Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pyodide
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
pyodide
Commits
01256b58
Commit
01256b58
authored
Oct 08, 2018
by
Michael Droettboom
Committed by
GitHub
Oct 08, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #215 from mdboom/fix-hiwire-iterator
Fix iterators passed from Javascript to Python
parents
6d76f25b
911fe832
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
6 deletions
+46
-6
src/hiwire.c
src/hiwire.c
+19
-3
src/hiwire.h
src/hiwire.h
+6
-0
src/jsproxy.c
src/jsproxy.c
+14
-2
test/test_python.py
test/test_python.py
+7
-1
No files found.
src/hiwire.c
View file @
01256b58
...
...
@@ -249,16 +249,32 @@ MAKE_OPERATOR(greater_than, >);
MAKE_OPERATOR
(
greater_than_equal
,
>=
);
EM_JS
(
int
,
hiwire_next
,
(
int
idobj
),
{
var
jsobj
=
Module
.
hiwire_get_value
(
idobj
);
// clang-format off
if
(
jsobj
.
next
===
undefined
)
{
if
(
idobj
===
-
2
)
{
// clang-format on
return
HW_ERROR
;
return
-
1
;
}
var
jsobj
=
Module
.
hiwire_get_value
(
idobj
);
return
Module
.
hiwire_new_value
(
jsobj
.
next
());
});
EM_JS
(
int
,
hiwire_get_iterator
,
(
int
idobj
),
{
// clang-format off
if
(
idobj
===
-
2
)
{
return
-
1
;
}
var
jsobj
=
Module
.
hiwire_get_value
(
idobj
);
if
(
typeof
jsobj
.
next
===
'
function
'
)
{
return
Module
.
hiwire_new_value
(
jsobj
);
}
else
if
(
typeof
jsobj
[
Symbol
.
iterator
]
===
'
function
'
)
{
return
Module
.
hiwire_new_value
(
jsobj
[
Symbol
.
iterator
]())
}
return
-
1
;
// clang-format on
})
EM_JS
(
int
,
hiwire_nonzero
,
(
int
idobj
),
{
var
jsobj
=
Module
.
hiwire_get_value
(
idobj
);
return
(
jsobj
!=
0
)
?
1
:
0
;
...
...
src/hiwire.h
View file @
01256b58
...
...
@@ -366,6 +366,12 @@ hiwire_greater_than_equal(int ida, int idb);
int
hiwire_next
(
int
idobj
);
/**
* Returns the iterator associated with the given object, if any.
*/
int
hiwire_get_iterator
(
int
idobj
);
/**
* Returns 1 if the value is non-zero.
*
...
...
src/jsproxy.c
View file @
01256b58
...
...
@@ -169,8 +169,16 @@ JsProxy_RichCompare(PyObject* a, PyObject* b, int op)
static
PyObject
*
JsProxy_GetIter
(
PyObject
*
o
)
{
Py_INCREF
(
o
);
return
o
;
JsProxy
*
self
=
(
JsProxy
*
)
o
;
int
iditer
=
hiwire_get_iterator
(
self
->
js
);
if
(
iditer
==
HW_ERROR
)
{
PyErr_SetString
(
PyExc_TypeError
,
"Object is not iterable"
);
return
NULL
;
}
return
js2python
(
iditer
);
}
static
PyObject
*
...
...
@@ -375,6 +383,10 @@ static PyMethodDef JsProxy_Methods[] = {
(
PyCFunction
)
JsProxy_New
,
METH_VARARGS
|
METH_KEYWORDS
,
"Construct a new instance"
},
{
"__iter__"
,
(
PyCFunction
)
JsProxy_GetIter
,
METH_NOARGS
,
"Get an iterator over the object"
},
{
"_has_bytes"
,
(
PyCFunction
)
JsProxy_HasBytes
,
METH_NOARGS
,
...
...
test/test_python.py
View file @
01256b58
...
...
@@ -325,8 +325,14 @@ def test_jsproxy_implicit_iter(selenium):
"""
window.ITER = [1, 2, 3];"""
)
assert
selenium
.
run
(
"from js import ITER
\
n
"
"from js import ITER, Object
\
n
"
"list(ITER)"
)
==
[
1
,
2
,
3
]
assert
selenium
.
run
(
"from js import ITER, Object
\
n
"
"list(ITER.values())"
)
==
[
1
,
2
,
3
]
assert
selenium
.
run
(
"from js import ITER, Object
\
n
"
"list(Object.values(ITER))"
)
==
[
1
,
2
,
3
]
def
test_open_url
(
selenium
):
...
...
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