casper-node-macros

The casper-node-macros crate offers an easy-to-use macro to create reactor implementations for the component system. It enforces a set of convention and allows generating a large amount of otherwise boilerplate heavy setup code comfortably.

The macro is invoked by calling the cosy_macro::reactor macro as follows:

```rust reactor!(NameOfReactor { type Config = ConfigurationType;

components: {
    component_a = CompA<TypeArg>(constructor_arg_1, constructor_arg_2, ...);
    component_b = @CompB(constructor_arg1, ..);
    // ...
}

events: {
    component_a = Event<TypeArg>;
}

requests: {
    StorageRequest -> component_a;
    NetworkRequest -> component_b;
    ThirdRequest -> component_a;
    AnotherRequest -> !;
}

announcements: {
    NetworkAnnouncement -> [component_a, component_b];
    StorageAnnouncement -> [];
}

}); ```

The sections in detail:

Outer definition

The definition of

rust reactor!(NameOfReactor { type Config = ConfigurationType; // ... });

indicates that

The types NameOfReactorEvent and NameOfReactorError will be automatically generated as well.

Component definition

Components are defined in the first section:

rust components: { component_a = CompA<TypeArg>(constructor_arg_1, constructor_arg_2, ...); component_b = @CompB(constructor_arg1, ..); // ... }

Here

Note that during construction, the parameters cfg, registry, event_queue and rng are available, as well as the local variable effect_builder.

Event overrides

Ideally all NameOfReactorEvent newtype variants would be written as NameOfReactorEvent::SomeComponent(<crate::components::some_component::SomeComponent as Component<Self>::Event> in the generated code, which unfortunately is not possible due to a current shortcoming in the Rust trait system that will likely only be fixed with chalk.

As a workaround, NameOfReactorEvent::SomeComponent(crate::components::some_component::Event will be used instead. This solution only works for event types that do not have their own type parameters. If they have, the Event portion can be replaced using the event override section of the macro invocation:

rust events: { component_a = Event<TypeArg>; }

This will result in crate::components::comp_a::Event<TypeArg> to be used to set the newtypes inner value instead.

Request routing

The third section defines how requests are routed:

rust requests: { StorageRequest -> component_a; NetworkRequest -> component_b; ThirdRequest -> component_a; AnotherRequest -> !; }

In the example,

Routing a request ExampleRequest to an example_target means that

Not routing a request means that the reactor does not support components that require it.

Announcement routing

Announcements are routed almost exactly like requests

rust announcements: { NetworkAnnouncement -> [component_a, component_b]; StorageAnnouncement -> []; }

with the key difference being that instead of a single target, an announcement is routed to zero or more instead.