A Platform-Less, Runtime-Less Actor Computing Model
[](https://docs.rs/crossbus) [](https://crates.io/crates/crossbus)
CrossBus is implementation of Actor Computing Model, with the concept that
Runtime-less
crossbus neither provide runtime for app execution nor access the system interface abstraction.
runtime-located features like concurrency
or I/O
are up to implementor.
Bare-Metal Compatible
no system libraries, no libc, and just a few upstream libraries enbale you run rust code on bare metal.
the examples folder contains some demos to use crossbus.
Platform-less by Runtime-less
take the advantage of runtime-less, crossbus is able to bypass annoyed the limitation of runtime implementor and system interface abstraction and go right straight way to manipulate task directly. Only a simple and dummy future executor(look at the no-std example) is sufficed to run crossbus. This is the basic concept for crossbus to run across many platforms even without platforms.
Future-oriented Routine and Events
the futures way to execute task is retained even without runtime with rust. crossbus define a set of types and traits that follow style during execution.
Real-time Execution Control
crossbus provides a handle with which more routines and events can be fulfilled for each spawned future.
Currently crossbus is in its alpha version, all APIs and archtecture is not stable yet.
To reduce code redundancy and speed up compilation, crossbus use feature flag to mark the necessary modules/functions, Currently here are some supported Features:
core
/no-std
: the default feature, bare-metal compatible std
: rust std library dependentderive
: enable #[derive(Message)]
and #[crossbus::main(...)]
log
: enable logging out states and infos during runtimetime
: enable Actor to known time when blocking/delaying some durationrt
: enable use some common convenient runtime tokio
: convenience to use bare tokio-based runtime async-std
: convenience to use async-std-based runtime wasm32
: convenience to use wasm-bindgen-futures-based runtime unstable
: marker for unstable featureforce-poll
: it is unstable
, std
/time
-dependent to periodically wakeup future pollingFirst of all, add crossbus
to Cargo.toml
of project
toml
[dependencies]
crossbus = "0.0.1-a"
define Some types and methods according to your business logic.
let's say a summer to add some number up, Okay, then the message should be numbers the summer should know the result after adding. ```rust use crossbus::prelude::*;
struct Num(uisze); impl Message for Num {}
struct CrossBus { sum: isize } ```
the actor should be created before using it
we tell crossbus how to create it
```rust impl Actor for CrossBus { type Message = Num; ...
fn create(ctx: &mut Context<Self>) -> Self {
Self { sum: 0, }
}
...
}
```
Okay, How the Summer respond when the message comes? we should tell crossbus.
```rust ... impl Actor for CrossBus { type Message = Num; ...
fn action(&mut self, msg: Self::Message, ctx: &mut Context<Self>) {
self.sum += msg.0;
}
...
}
``` So far so good, but how to obtain the final result
it can be available when the actor process all messages and stopped, right?
```rust ... impl Actor for CrossBus { type Message = Num; ...
fn stopped(&mut self, _: &mut Context<Self>) {
println!("final sum: {}", self.sum);
}
...
}
```
Done. Congratulation! You just knew the basic routine to use crossbus. the Full code see below.
Here presents a simple demo to sum numbers.
For more examples, you can go to the examples folder and clone the repo and run them locally.
```rust use crossbus::prelude::*;
struct Num(uisze); impl Message for Num {}
struct CrossBus { sum: isize } impl Actor for CrossBus { type Message = Num;
fn create(ctx: &mut Context<Self>) -> Self {
Self { sum: 0, }
}
fn action(&mut self, msg: Self::Message, ctx: &mut Context<Self>) {
self.sum += msg.0;
}
fn stopped(&mut self, _: &mut Context<Self>) {
assert_eq!(self.sum, 7);
println!("final sum: {}", self.sum);
}
}
async fn main() { let (addr, _) = CrossBus::start(); let sender = addr.sender(); sender.send(Num(1)).unwrap(); sender.send(Num(2)).unwrap(); sender.send(Num(4)).unwrap(); } ```
Feel Free to Contribute! All issues / bugs-report / feature-request / etc are welcome!