Skip to content
This repository was archived by the owner on May 1, 2021. It is now read-only.

Problem: usage of intertrait crate #10

Merged
merged 1 commit into from
Jan 26, 2021
Merged

Problem: usage of intertrait crate #10

merged 1 commit into from
Jan 26, 2021

Conversation

yrashk
Copy link
Owner

@yrashk yrashk commented Jan 26, 2021

We're currently using intertrait, which depends on linkme. While it works on Linux, macOS and Windows, it might not work elsewhere as it's platform-dependent.

In fact, there's no support for WebAssembly: dtolnay/linkme#6 and that's one of the goals for BPXE.

Solution: roll our own Cast trait

It's a bit crude and is certainly less ergonomic (compared to intertrait) but it seems to work.

The idea is to make DocumentElement trait implement Cast<T> where T is all Type and TypeMut traits and then auto-generate implementations of this Cast<T> trait for every struct and enum.

One downside of this approach is that autogenerated.rs is much bigger now (approaching 7Mb). That being said, it might eventually be generated during build-time and we won't have to distribute it as is. I suppose the amount of actual code generated by trait casting crates is effectively of a similar size.

Closes #8

We're currently using [intertrait](https://crates.io/crates/intertrait),
which depends on [linkme](https://crates.io/crates/linkme). While it
works on Linux, macOS and Windows, it might not work elsewhere as it's
platform-dependent.

In fact, there's no support for WebAssembly:
dtolnay/linkme#6 and that's one of the goals
for BPXE.

Solution: roll our own `Cast` trait

It's a bit crude and is certainly less ergonomic (compared to
`intertrait`) but it seems to work.

The idea is to make `DocumentElement` trait implement `Cast<T>` where
`T` is all `Type` and `TypeMut` traits and then auto-generate
implementations of this `Cast<T>` trait for every struct and enum.

One downside of this approach is that `autogenerated.rs` is much bigger
now (approaching 7Mb). That being said, it might eventually be generated
during build-time and we won't have to distribute it as is. I suppose
the amount of actual code generated by trait casting crates is
effectively of a similar size.

Closes #8
@yrashk yrashk merged commit 7115528 into yrashk:master Jan 26, 2021
yrashk added a commit that referenced this pull request Jan 26, 2021
As of #10, it *should* be able to compile, but we don't know that for a fact.

Solution: instrument Cargo.tomls to be able to build for WebAssembly

Firstly, had to reduce the scope of features for Tokio (that's a good thing to
do, anyway) to make it able to compile for WebAssembly (networking and other
I/O is a no-go).

Secondly, had to add `cdylib` crate type.

At this point, I was not yet able to run tests, but at the very least we can
check that it *builds* and I've added a "wasm" job to GitHub Actions workflows
to check for that as well.
yrashk added a commit that referenced this pull request Jan 26, 2021
As of #10, it *should* be able to compile, but we don't know that for a fact.

Solution: instrument Cargo.tomls to be able to build for WebAssembly

Firstly, had to reduce the scope of features for Tokio (that's a good thing to
do, anyway) to make it able to compile for WebAssembly (networking and other
I/O is a no-go).

Secondly, had to add `cdylib` crate type.

At this point, I was not yet able to run tests, but at the very least we can
check that it *builds* and I've added a "wasm" job to GitHub Actions workflows
to check for that as well.
yrashk added a commit that referenced this pull request Jan 26, 2021
As of #10, it *should* be able to compile, but we don't know that for a fact.

Solution: instrument Cargo.tomls to be able to build for WebAssembly

Firstly, had to reduce the scope of features for Tokio (that's a good thing to
do, anyway) to make it able to compile for WebAssembly (networking and other
I/O is a no-go).

Secondly, had to add `cdylib` crate type.

At this point, I was not yet able to run tests, but at the very least we can
check that it *builds* and I've added a "wasm" job to GitHub Actions workflows
to check for that as well.
yrashk added a commit that referenced this pull request Jan 26, 2021
As of #10, it *should* be able to compile, but we don't know that for a fact.

Solution: instrument Cargo.tomls to be able to build for WebAssembly

Firstly, had to reduce the scope of features for Tokio (that's a good thing to
do, anyway) to make it able to compile for WebAssembly (networking and other
I/O is a no-go).

Secondly, had to add `cdylib` crate type.

At this point, I was not yet able to run tests, but at the very least we can
check that it *builds* and I've added a "wasm" job to GitHub Actions workflows
to check for that as well.
yrashk added a commit that referenced this pull request Jan 26, 2021
As of #10, it *should* be able to compile, but we don't know that for a fact.

Solution: instrument Cargo.tomls to be able to build for WebAssembly

Firstly, had to reduce the scope of features for Tokio (that's a good thing to
do, anyway) to make it able to compile for WebAssembly (networking and other
I/O is a no-go).

Secondly, had to add `cdylib` crate type.

At this point, I was not yet able to run tests, but at the very least we can
check that it *builds* and I've added a "wasm" job to GitHub Actions workflows
to check for that as well.
yrashk added a commit that referenced this pull request Jan 26, 2021
As of #10, it *should* be able to compile, but we don't know that for a fact.

Solution: instrument Cargo.tomls to be able to build for WebAssembly

Firstly, had to reduce the scope of features for Tokio (that's a good thing to
do, anyway) to make it able to compile for WebAssembly (networking and other
I/O is a no-go).

Secondly, had to add `cdylib` crate type.

At this point, I was not yet able to run tests, but at the very least we can
check that it *builds* and I've added a "wasm" job to GitHub Actions workflows
to check for that as well.
yrashk added a commit that referenced this pull request Jan 26, 2021
As of #10, it *should* be able to compile, but we don't know that for a fact.

Solution: instrument Cargo.tomls to be able to build for WebAssembly

Firstly, had to reduce the scope of features for Tokio (that's a good thing to
do, anyway) to make it able to compile for WebAssembly (networking and other
I/O is a no-go).

Secondly, had to add `cdylib` crate type.

At this point, I was not yet able to run tests, but at the very least we can
check that it *builds* and I've added a "wasm" job to GitHub Actions workflows
to check for that as well.
yrashk added a commit that referenced this pull request Jan 26, 2021
As of #10, it *should* be able to compile, but we don't know that for a fact.

Solution: instrument Cargo.tomls to be able to build for WebAssembly

Firstly, had to reduce the scope of features for Tokio (that's a good thing to
do, anyway) to make it able to compile for WebAssembly (networking and other
I/O is a no-go).

Secondly, had to add `cdylib` crate type.

At this point, I was not yet able to run tests, but at the very least we can
check that it *builds* and I've added a "wasm" job to GitHub Actions workflows
to check for that as well.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Problem: usage of intertrait crate
1 participant