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

docs: Clarify setup for "Rust Components" tutorial #218

Open
wants to merge 9 commits into
base: main
Choose a base branch
from

Conversation

mkatychev
Copy link

This PR aims to make explicit some assumptions made in the Rust Components tutorial.

Changes made to component-model/src/language-support/rust.md:

  • Added Prerequisites section
  • Added link to WIT package naming and used explicit package/interface/world names such as example:component/example to help disambiguate between similar sounding names such as add and adder
  • Certain code is now inlined for consistency:
    ```wit
    {{#include ../../examples/example-host/add.wit}}
    ```
  • Fixed incorrect filepath in Referencing the package to import section
  • Removed some leading $ from shell commands to make them easier to copy

a + b
}
}
{{#include ../../examples/tutorial/adder/src/lib.rs}}
Copy link
Author

@mkatychev mkatychev Mar 19, 2025

Choose a reason for hiding this comment

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

Not against reverting the #includes, the tradeoff here is that the raw markdown is less readable but this will likely result in less code drift overall.

Copy link
Contributor

Choose a reason for hiding this comment

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

I like the includes -- certainly saves us time 👍

@vados-cosmonic
Copy link
Contributor

Hey @mkatychev would you mind taking another look at this? One of the thing we've wanted to do for a bit was refactor to use the same WIT files everywhere, and we finally have that in now for all the guides -- I think the changes here are in conflict with that, but it should simplify your diff as well.


## 5. Implement the generated `Guest` trait
## Implementing the `Guest` trait
Copy link
Author

Choose a reason for hiding this comment

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

@vados-cosmonic I've removed the numbering for the headers to simplify anchor link generation, happy to add them back in.

Copy link
Contributor

Choose a reason for hiding this comment

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

I'd love feedback from @kate-goldenring here -- I think it's mostly a style thing. I think numbers help people refer to steps (ex. "please see step 3") but I could definitely go the other way.

That said, if we want to remove the numbers here, we should remove them everywhere (which isn't a hard change either, happy to help here or in a follow up if you'd rather not do it).

Thanks for working on this! 🙇

Copy link
Author

@mkatychev mkatychev Mar 25, 2025

Choose a reason for hiding this comment

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

Sounds good, I was mostly following style patterns off of the rust book, including using present continuous tense for titles, ex: including v.s. include.

Copy link
Contributor

Choose a reason for hiding this comment

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

Yeah this makes sense... Maybe what we want is actually demarcation at a higher level (ex. in the Rust book the sections are clearly demarcated in the ToC on the left), then we can go with continuous tense and still be able to refer to things?

Happy either way here, I think the Rust book is an excellent example to follow so maybe we should change to look more like them, even if I'm partial to "steps".

Copy link
Author

Choose a reason for hiding this comment

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

Would you mind elaborating in your 'including demarcation' comment?

Copy link
Contributor

@vados-cosmonic vados-cosmonic Mar 25, 2025

Choose a reason for hiding this comment

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

Ah I was referring to this style of numbering in the Rust book:

image

So when someone wants to mention a specific section they can refer "Section 3.3"

Copy link
Author

@mkatychev mkatychev Mar 25, 2025

Choose a reason for hiding this comment

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

I looked into this a bit and it looks like adding subchapters based on anchor links is still an open issue:
rust-lang/mdBook#167

the component docs currently use numbered subchapters, however they're currently broken up by language:
Screenshot 2025-03-25 at 12 19 50

We could break up the subchapters into their own markdown page so for example src/language-support/rust-scaffolding-component.md would become:

8.6.1 Scaffolding a Component

Copy link
Author

Choose a reason for hiding this comment

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

Another problem with having numbered headers is that any external references to the section (such as https://component-model.bytecodealliance.org/language-support/rust.html#6-build-the-component) will become broken if the section gets reordered. I wonder if there's a cleaner way of doing header numbering in the same way as numbered lists where the numbering gets automatically reordered:

1. installing
1. scaffolding
1. building
1. running

Codeblock above produces this:

  1. installing
  2. scaffolding
  3. building
  4. running

Copy link
Contributor

Choose a reason for hiding this comment

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

Hmnnn OK, rather than make any large changes in this PR, let's maintain consistency at least then discuss it -- It looks like there are a bunch of options here, and we're probably not the only two people who want to chat it out!


```console
Copy link
Author

Choose a reason for hiding this comment

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

console langtype seems to produce less syntax highlighting than sh.

Copy link
Contributor

Choose a reason for hiding this comment

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

yeah so my stance on that is that writing into a console is not normally syntax highlighted either, so it matches.

If we have a shell script, or a bash script, then it makes sense to use those, but my stance here is that if it's a console command you're supposed to enter there are other ways to make it more readable:

something \
    --like this \
    --rather-than console

and if it's code, then it should be highlighted.

Copy link
Author

Choose a reason for hiding this comment

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

I've done it in this PR: #232

@mkatychev mkatychev changed the title Clarify setup for "Rust Components" tutorial docs: Clarify setup for "Rust Components" tutorial Mar 25, 2025
@@ -1,13 +1,14 @@
#[allow(warnings)]
mod bindings;

// Separating out the interface puts it in a sub-module
Copy link
Contributor

Choose a reason for hiding this comment

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

I'm not sure this comment makes sense, because someone coming to this would probably think "as opposed to what?" and we don't have an example of exporting the function directly anymore.

Maybe this comment could be expanded to a more general statement about bindings pathing (explaining the module hierarchy a little bit -- exports because it's an export, docs being the namepace, adder being the package, etc)


## 5. Implement the generated `Guest` trait
## Implementing the `Guest` trait
Copy link
Contributor

Choose a reason for hiding this comment

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

Hmnnn OK, rather than make any large changes in this PR, let's maintain consistency at least then discuss it -- It looks like there are a bunch of options here, and we're probably not the only two people who want to chat it out!


```console
```sh
Copy link
Contributor

Choose a reason for hiding this comment

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

console here -- I believe this was the change you made in the other PR as well

}
We now need to change our generated `wit/world.wit` to match `docs:adder`:
```wit
{{#include ../../examples/tutorial/wit/adder/world.wit}}
Copy link
Contributor

Choose a reason for hiding this comment

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

Fantastic, this will save a ton of work!

cargo component build --release
```

You can use `wasm-tools component wit` to output the WIT package of the component:
You can use `wasm-tools` to inspect the WIT package generated by `cargo-component`:
Copy link
Contributor

Choose a reason for hiding this comment

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

This isn't quite right -- we're actually inspecting the built component itself, which happens to contain the WIT that was used to create it. I think the old wording was right here.


To verify that our component works, lets run it from a Rust application that knows how to run a
component targeting the [`adder` world][adder-wit].
component targeting the [`docs:adder/adder`](#adding-the-wit-world) world.
Copy link
Contributor

Choose a reason for hiding this comment

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

I'm not sure being explicit about the namespace and package herehelps -- not everyone knows the more qualified naming schemes for WIT interfaces. Someone might think "what is the docs:adder/adder world?", and in the linked section we refer to it just as docs:adder (no mention of the world).

I think we want people to think in terms of worlds, which import/export interfaces -- the namespace and package are much less important IMO.

a + b
}
}
{{#include ../../examples/tutorial/adder/src/lib.rs}}
Copy link
Contributor

Choose a reason for hiding this comment

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

I like the includes -- certainly saves us time 👍

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