Skip to content
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

add draft of wasi:[email protected] #106

Merged
merged 2 commits into from
Mar 8, 2024

Conversation

dicej
Copy link
Collaborator

@dicej dicej commented Mar 7, 2024

This adds a wit-0.3.0-draft directory so we can iterate on the 0.3.0 design in parallel with the 0.2.x work. It's currently an exact copy of the wit directory except for the handler.wit, proxy.wit, and types.wit files, which have been updated to assume Component Model async, streams, and futures are available.

High level description:

  • The incoming-handler and outgoing-handler interfaces have been combined into a single handler interface.
  • The incoming- and outgoing- variations of request, response, and body have been combined.
  • I've added a option field to request since it would be awkward to leave it as a parameter of handler.handle (e.g. what would it mean to receive such a parameter for an incoming request or for a request passed from one component to the other without any use of the network?).
  • I've added a request-options-error (analogous to header-error) to distinguish between unsupported fields and immutable handles.
  • We use stream<u8> and future<trailers> where appropriate.

You can find a working implementation of this API, plus several examples, in the isyswasfa repository.

This PR supersedes #101.

This adds a `wit-0.3.0-draft` directory so we can iterate on the 0.3.0 design in
parallel with the 0.2.x work.  It's currently an exact copy of the `wit`
directory except for the `handler.wit`, `proxy.wit`, and `types.wit` files,
which have been updated to assume Component Model async, `stream`s, and
`future`s are available.

High level description:

- The incoming-handler and outgoing-handler interfaces have been combined into a single handler interface.
- The incoming- and outgoing- variations of request, response, and body have been combined.
- I've added a option<request-options> field to request since it would be awkward to leave it as a parameter of handler.handle (e.g. what would it mean to receive such a parameter for an incoming request or for a request passed from one component to the other without any use of the network?).
- I've added a request-options-error (analogous to header-error) to distinguish between unsupported fields and immutable handles.
- We use `stream<u8>` and `future<trailers>` where appropriate.

You can find a working implementation of this API, plus several examples, in the
[isyswasfa](https://github.com/dicej/isyswasfa) repository.

Signed-off-by: Joel Dice <[email protected]>
Copy link
Member

@lukewagner lukewagner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, nice work on all this! I think anyone who wants to comment on the draft has had plenty of chance in #101, so I'll just wait a day before merging, in case anyone has any basic directory-layout or procedural comments.

Signed-off-by: Joel Dice <[email protected]>
@lukewagner lukewagner merged commit 7f065d1 into WebAssembly:main Mar 8, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants