-
Notifications
You must be signed in to change notification settings - Fork 31
PYON: add plugin support #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| import pluggy | ||
|
|
||
| hookimpl = pluggy.HookimplMarker("sipyco") | ||
| """Marker to be imported and used in plugins (and for own implementations).""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| import typing | ||
|
|
||
| import pluggy | ||
|
|
||
|
|
||
| hookspec = pluggy.HookspecMarker("sipyco") | ||
|
|
||
|
|
||
| @hookspec(firstresult=True) | ||
| def sipyco_pyon_encode(value: typing.Any, pretty: bool, indent_level: int) -> str: | ||
| """Encode a python object to a PYON string.""" | ||
|
|
||
|
|
||
| @hookspec | ||
| def sipyco_pyon_decoders() -> typing.Sequence[typing.Tuple[str, typing.Any]]: | ||
| """Return elements for the decoding dictionary (passed to eval). | ||
|
|
||
| The return value should be a sequence of tuples, to allow one plugin function | ||
| to return multiple types that it can decode. Each tuple is the 'name' of the | ||
| value (in PYON) and the Python value (e.g. ``('pi', np.pi)``). | ||
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| import pluggy | ||
|
|
||
| import sipyco.hookspecs as hookspecs | ||
| import sipyco.pyon as pyon | ||
|
|
||
|
|
||
| def get_plugin_manager() -> pluggy.PluginManager: | ||
| """Get the PluginManager for sipyco plugins. | ||
|
|
||
| You can call the plugin hooks via this manager.""" | ||
| pm = pluggy.PluginManager("sipyco") | ||
| pm.add_hookspecs(hookspecs) | ||
| pm.register(pyon) | ||
| pm.load_setuptools_entrypoints("sipyco") | ||
| return pm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| import dataclasses | ||
|
|
||
| import pluggy | ||
| import pytest | ||
|
|
||
| import sipyco | ||
| import sipyco.hookspecs as hookspecs | ||
| import sipyco.plugins as plugin | ||
| import sipyco.pyon as pyon | ||
|
|
||
|
|
||
| @dataclasses.dataclass | ||
| class Point: | ||
| x: float | ||
| y: float | ||
|
|
||
|
|
||
| class TestPyonPlugin: | ||
| @sipyco.hookimpl | ||
| def sipyco_pyon_encode(value, pretty=False): | ||
| if isinstance(value, Point): | ||
| return repr(value) | ||
|
|
||
| @sipyco.hookimpl | ||
| def sipyco_pyon_decoders(): | ||
| return [("Point", Point)] | ||
|
|
||
|
|
||
| def test_pyon_plugin_fail_without_plugin(): | ||
| with pytest.raises(TypeError): | ||
| pyon.encode(Point(3, 4)) | ||
|
|
||
|
|
||
| def pyon_extra_plugin(): | ||
| pm = pluggy.PluginManager("sipyco") | ||
| pm.add_hookspecs(sipyco.hookspecs) | ||
| pm.register(pyon) | ||
| pm.load_setuptools_entrypoints("sipyco") | ||
| pm.register(TestPyonPlugin) | ||
| return pm | ||
|
|
||
|
|
||
| def test_pyon_plugin_encode(monkeypatch): | ||
| monkeypatch.setattr(plugin, "get_plugin_manager", pyon_extra_plugin) | ||
| assert pyon.encode(Point(2, 3)) == "Point(x=2, y=3)" | ||
|
|
||
|
|
||
| def test_pyon_plugin_encode_decode(monkeypatch): | ||
| monkeypatch.setattr(plugin, "get_plugin_manager", pyon_extra_plugin) | ||
| test_value = Point(2.5, 3.4) | ||
| assert pyon.decode(pyon.encode(test_value)) == test_value | ||
|
|
||
|
|
||
| def test_pyon_nested_encode(monkeypatch): | ||
| """Tests that nested items will be properly encoded.""" | ||
| monkeypatch.setattr(plugin, "get_plugin_manager", pyon_extra_plugin) | ||
| test_value = {"first": Point(2.5, {"nothing": 0})} | ||
| assert pyon.decode(pyon.encode(test_value)) == test_value | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should probably change this to
pm = plugin.get_plugin_manager(), then just add the register() at the end?