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

[Merged by Bors] - expose stages and system containers #1647

Closed

Conversation

jakobhellermann
Copy link
Contributor

This allows third-party plugins to analyze the schedule, e.g. bevy_mod_picking can display a schedule graph:

schedule graph

@alice-i-cecile alice-i-cecile added A-ECS Entities, components, systems, and events S-Ready-For-Final-Review This PR has been approved by the community. It's ready for a maintainer to consider merging it labels Mar 13, 2021
Copy link
Contributor

@Ratysz Ratysz left a comment

Choose a reason for hiding this comment

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

I might be going crazy, but I'm fairly sure "ran" is correct here.

@@ -9,7 +9,7 @@ use crate::{
};
use std::{borrow::Cow, ptr::NonNull};

pub(super) trait SystemContainer {
pub trait SystemContainer {
Copy link
Contributor

Choose a reason for hiding this comment

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

This wasn't intended to be exposed, but I suppose it won't be a problem, as long as there's no mutable access. Ideally, it should be documented as well.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

The only thing that's mutable is set_dependencies, but the dependencies are only used for ambiguity checking so exposing that at least isn't unsound.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

We could add #[doc(hidden)] to some methods as well if we don't want to expose them.

Copy link
Contributor

Choose a reason for hiding this comment

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

.dependencies() is used for ordering, too. It would indeed be best annotate it and .set_dependencies() with #[doc(hidden)]: it's an implementation detail that just doesn't make sense to external users.

jakobhellermann and others added 3 commits March 14, 2021 12:38
Co-authored-by: Alexander Sepity <ratysz@gmail.com>
This reverts commit a1a4d8d.
@Ratysz
Copy link
Contributor

Ratysz commented Mar 14, 2021

Another nit: the new .parallel_systems() etc methods won't output fully-formed data until the stage has been ran at least once. There's no good and easy way to fix that right now, other than documentation.

@jakobhellermann
Copy link
Contributor Author

What does "not fully-formed" mean in this context?

@Ratysz
Copy link
Contributor

Ratysz commented Mar 14, 2021

Systems are not initialized or sorted until the first run. There will most likely be more things in the future, like resolving and validating various labels (e.g. run criteria labels I'm working on).

@@ -167,6 +167,26 @@ impl SystemStage {
self.add_system_to_set(system, 0)
}

/// Topologically sorted parallel systems.
///
/// Note that this method won't output fully-formed data until the stage has been ran at least once.
Copy link
Contributor

Choose a reason for hiding this comment

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

This applies to all systems.

@@ -167,6 +167,32 @@ impl SystemStage {
self.add_system_to_set(system, 0)
}

/// Topologically sorted parallel systems.
///
/// Note that systems won't be fully-formed until the stage has been ran at least once.
Copy link
Member

Choose a reason for hiding this comment

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

Nit: "run" is an "irregular verb" that behaves weirdly in cases like "has been". Every case of "ran" in these docs should be replaced with "run". English is a bad language :)

Copy link
Member

Choose a reason for hiding this comment

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

I'm a native speaker and I still had to look this up to be sure my intuition wasn't wrong.

Copy link
Member

Choose a reason for hiding this comment

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

Hmm looks like @Ratysz and I have differing opinions here (just saw the older threads here). Heres a source: https://ell.stackexchange.com/questions/133221/when-to-use-run-vs-when-to-use-ran

Copy link
Member

Choose a reason for hiding this comment

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

Ah wait @Ratysz's comments are for a different case: "that want to be ran". I don't know how to handle that one. My head hurts :)

Copy link
Member

Choose a reason for hiding this comment

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

Copy link
Member

Choose a reason for hiding this comment

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

I think all cases should be "run" here.

Copy link
Contributor

Choose a reason for hiding this comment

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

... wow. Clearly, we have to rewrite English in Rust. Apologies for adding to the confusion, @jakobhellermann!

I don't have links, I'm just going with my bilingual intuition - and it's throwing up its hands into the air right now.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.

@cart
Copy link
Member

cart commented Mar 14, 2021

bors r+

bors bot pushed a commit that referenced this pull request Mar 14, 2021
@bors bors bot changed the title expose stages and system containers [Merged by Bors] - expose stages and system containers Mar 14, 2021
@bors bors bot closed this Mar 14, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-ECS Entities, components, systems, and events S-Ready-For-Final-Review This PR has been approved by the community. It's ready for a maintainer to consider merging it
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants