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

Remove all Uses* #2438

Closed
wants to merge 50 commits into from
Closed

Remove all Uses* #2438

wants to merge 50 commits into from

Conversation

addisoncrump
Copy link
Collaborator

Uses* constrains type definitions to a single type. This either (a) forces us to use PhantomData where we probably shouldn't, or (b) overconstrains us to the same type when it isn't necessary.

This initial PR removes all Uses*-like traits in favour of a more considered approach to type consistency.

@domenukk
Copy link
Member

FWIW this is undoing #767 pretty much exactly

@addisoncrump
Copy link
Collaborator Author

FWIW this is undoing #767 pretty much exactly

Yup -- realised some time ago that it wasn't doing what we wanted.

@domenukk
Copy link
Member

@addisoncrump if you haven't already, feel free to ignore #2442

@domenukk domenukk mentioned this pull request Jul 29, 2024
@domenukk
Copy link
Member

Low-key very excited for this #roadto1.0

@addisoncrump
Copy link
Collaborator Author

Note to self: HasSolutions should not require HasCorpus because a) the inputs might differ (unlikely) or b) the state may not have a corpus (for generative fuzzers).

@addisoncrump
Copy link
Collaborator Author

default features now build! (but with lots of things commented out)

@addisoncrump addisoncrump force-pushed the no-uses branch 2 times, most recently from 42670b2 to 308a2c1 Compare August 5, 2024 14:09
* aaa

* calibrate

* wip

* add all

* last bit

* a

* aa

* some changes

* aaa

* mutator DONE

* aa

* fix

* rename

* aa

* aa

* aa

* add

* fix
pub trait ProgressReporter: EventFirer
/// Default implementation of [`ProgressReporter::maybe_report_progress`] for implementors with the
/// given constraints
pub fn default_maybe_report_progress<PR, S>(
Copy link
Member

Choose a reason for hiding this comment

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

std instead of default? That's our naming scheme in the repo so far (because Default is heavily abused in Rust already)

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

👍 Makes sense

/// [`CustomBufHandlerTuple`] in the associated `handlers` parameter for your event manager. You may
/// then use [`SupportsDynamicHandlers::add_custom_buf_handler`].
#[deprecated(
note = "Using function pointers may limit your ability to use some stages due to type conflicts regarding the state"
Copy link
Member

Choose a reason for hiding this comment

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

Why deprecate?

Copy link
Member

Choose a reason for hiding this comment

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

We should only deprecate stuff we want to drop, do we want to drop this? What's an example for such a type conflict?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Because it is both potentially restrictive and bad practice. Deprecation is the only means by which we can communicate that to both new and old codebases at compile time.

Copy link
Member

@domenukk domenukk Aug 6, 2024

Choose a reason for hiding this comment

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

Why is it bad? If ppl want to use it and we support it we should not deprecate

Copy link
Member

Choose a reason for hiding this comment

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

Or we don't support it anymore, then we should put a version into the deprecation note and remove it later

Copy link
Member

Choose a reason for hiding this comment

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

i really want to delete this custom buf, it just offers the similar functionality as event hooks. so no reason to keep it

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

i really want to delete this custom buf, it just offers the similar functionality as event hooks. so no reason to keep it

If there is truly no functionality you cannot accomplish with event hooks instead, then I agree that all custom buf handlers should be removed. @domenukk for reference, you are the person who has the most use of this functionality iirc

Copy link
Member

@tokatoka tokatoka Aug 7, 2024

Choose a reason for hiding this comment

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

one thing is that is possible to custombuf only is that eventhook is static. so you can not add anything at runtime.
but do you really want to add something to change the behavior of the event manager? at runtime?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I would say "no", but historically @domenukk has disagreed. Apparently some people do some strange dynamic behaviour.

Copy link
Member

Choose a reason for hiding this comment

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

Apart from being able to add and remove hooks on the fly, another benefit is that that dynamic buffers can be closures, static event hooks can not(I think?)
Capturing values takes away some headaches.
But yeah if you all want it gone we can remove it and worst case bring it back in the future...

@@ -522,27 +466,25 @@ impl CommandExecutorBuilder {
command.stderr(Stdio::piped());
}

let configurator = StdCommandConfigurator {
let configurer = StdCommandConfigurator {
Copy link
Member

Choose a reason for hiding this comment

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

typo (or we need to change the type name too)

OTA: ObserversTuple<<Self as UsesState>::State>,
OTB: ObserversTuple<<Self as UsesState>::State>,
DOT: DifferentialObserversTuple<OTA, OTB, <Self as UsesState>::State>,
{
Copy link
Member

Choose a reason for hiding this comment

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

Not really related, but can we add a // Safetly comment below on why the unsafe in fn observers is safe?

E::State: HasExecutions + HasSolutions + HasCorpus,
Z: HasObjective<Objective = OF, State = E::State>,
{
pub fn new<EM, I, S, Z>(exec_tmout: Duration) -> Result<Self, Error> {
Copy link
Member

Choose a reason for hiding this comment

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

beautiful

* add

* 60% done?

* push

* new trait

* add canserializeobserver

* push
* add

* more constraints
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.

3 participants