Stream: git-wasmtime

Topic: wasmtime / PR #4219 Enable passing host functions to comp...


view this post on Zulip Wasmtime GitHub notifications bot (Jun 03 2022 at 21:06):

alexcrichton opened PR #4219 from component-import to main:

This commit implements the ability to pass a host function into a
component. The wasmtime::component::Linker type now has a func_wrap
method allowing it to take a host function which is exposed internally
to the component and available for lowering.

This is currently mostly a "let's get at least the bare minimum working"
implementation. That involves plumbing around lots of various bits of
the canonical ABI and getting all the previous PRs to line up in this
one to get a test where we call a function where the host takes a
string. This PR also additionally starts reading and using the
may_{enter,leave} flags since this is the first time they're actually
relevant.

Overall while this is the bare bones of working this is not a final spot
we should end up at. One of the major downsides is that host functions
are represented as:

F: Fn(StoreContextMut<'_, T>, Arg1, Arg2, ...) -> Result<Return>

while this naively seems reasonable this critically doesn't allow
Return to actually close over any of its arguments. This means that if
you want to return a string to wasm then it has to be String or
Rc<str> or some other owned type. In the case of String this means
that to return a string to wasm you first have to copy it from the host
to a temporary String allocation, then to wasm. This extra copy for
all strings/lists is expected to be prohibitive. Unfortuantely I don't
think Rust is able to solve this, at least on stable, today.

Nevertheless I wanted to at least post this to get some feedback on it
since it's the final step in implementing host imports to see how others
feel about it.

<!--

Please ensure that the following steps are all taken care of before submitting
the PR.

Please ensure all communication adheres to the code of conduct.
-->

view this post on Zulip Wasmtime GitHub notifications bot (Jun 03 2022 at 21:06):

alexcrichton requested fitzgen for a review on PR #4219.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2022 at 17:03):

alexcrichton updated PR #4219 from component-import to main.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2022 at 18:36):

alexcrichton updated PR #4219 from component-import to main.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2022 at 21:28):

fitzgen submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2022 at 21:28):

fitzgen submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2022 at 21:28):

fitzgen created PR review comment:

Are you still planning on splitting ComponentValue into Lift and Lower traits?

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2022 at 21:28):

fitzgen created PR review comment:

    /// returned directly, namely the arguments and return value all start from

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2022 at 21:28):

fitzgen created PR review comment:

The "this" at the start of the second sentence is a bit ambiguous here. Suggest rewording like so:

    // Perform a dynamic check that this instance can indeed be left. Exiting
    // the component is disallowed, for example, when the `realloc` function
    // calls a canonical import.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2022 at 21:28):

fitzgen created PR review comment:

Should this return impl Drop instead of Any?

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2022 at 21:28):

fitzgen created PR review comment:

    /// Representation of arguments to this function when the return value is

view this post on Zulip Wasmtime GitHub notifications bot (Jun 07 2022 at 13:13):

alexcrichton created PR review comment:

Indeed! Just haven't gotten around to it yet.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 07 2022 at 13:13):

alexcrichton submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 07 2022 at 13:15):

alexcrichton updated PR #4219 from component-import to main.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 07 2022 at 14:39):

alexcrichton merged PR #4219.


Last updated: Oct 23 2024 at 20:03 UTC