13 releases

0.2.1 Jun 6, 2024
0.2.0 May 29, 2024
0.1.1 May 1, 2024
0.1.0 Apr 25, 2024
0.0.0 Sep 19, 2023

#15 in Robotics

Download history 59/week @ 2024-03-29 12/week @ 2024-04-05 67/week @ 2024-04-19 163/week @ 2024-04-26 21/week @ 2024-05-03 102/week @ 2024-05-24 119/week @ 2024-05-31 56/week @ 2024-06-07 5/week @ 2024-06-14 7/week @ 2024-06-28 65/week @ 2024-07-05

72 downloads per month

Custom license

155KB
4K SLoC

dimas

DiMAS - A framework for building Distributed Multi Agent Systems

⚠️ WARNING ⚠️ : DiMAS is under active development, so expect gaps between implementation and documentation.

A distributed multi agent system is a set of independant agents that are widely distributed but somehow connected. They are designed in a way that they can solve complex tasks by working together.

The system is characterised by

  • a somewhat large and complex environment
  • containing a set of (non agent) objects that can be perceived, created, moved, modified or destroyed by the agents
  • that changes over time due to external rules

with multiple agents operating in that environment which

  • can perceive the environment to a limited extent
  • have the possibility to communicate with some or all of the other agents
  • have certain capabilities to influence the environment

This crate is available on crates.io.

DiMAS follows the semantic versioning principle with the enhancement, that until version 1.0.0 each new minor version has breaking changes, while patches are non breaking changes but may include enhancements.

Usage

DiMAS needs an async runtime. You have to define your main function as an async function.

So include dimas together with an async runtime in the dependencies section of your Cargo.toml. As DiMAS uses tokio as async runtime, so preferably use tokio for your application. Ensure that you use a multi-threaded runtime, otherwise dimas will panic.

Your Cargo.toml should include:

[dependencies]
dimas = "0.2"
tokio = { version = "1", features = ["macros"] }

It also makes sense to return a Result, as some functions may return one. DiMAS errors are always of type Box<dyn std::error::Error> and should be thread safe. DiMAS provides a type definition Result<T> to make life easier

A suitable main program skeleton may look like:

use dimas::prelude::*;

#[tokio::main]
async fn main() -> Result<()> {

	// your code
	// ...

	Ok(())
}

Example

A very simple example consist at least of two agents, a publisher publishing messages and a subscriber that is listening to those messages.

The Cargo.toml for this publisher/subscriber example should include

[dependencies]
dimas = version = "0.2"
tokio = { version = "1",features = ["macros"] }

Publisher

The publisher.rs should look like this:

use dimas::prelude::*;
use std::time::Duration;

/// The Agent's properties
#[derive(Debug)]
struct AgentProps {
	counter: u128,
}

#[tokio::main]
async fn main() -> Result<()> {
	// create & initialize agents properties
	let properties = AgentProps { counter: 0 };

	// create an agent with the properties and default configuration
	let mut agent = Agent::new(properties)
		.config(&Config::default())?;

	// create publisher for topic "hello"
	agent
		.publisher()
		.topic("hello")
		.add()?;

	// use a timer for regular publishing of "hello" topic
	agent
		// get the TimerBuilder from the agent
		.timer()
		// set a name for the timer
		.name("timer")
		// every second
		.interval(Duration::from_secs(1))
		// the timers callback function as a closure
		.callback(
			|ctx| -> Result<()> {
				let counter = ctx
					.read()?
					.counter;
				// the message to send
				let text = format!("Hello World! [{counter}]");
				// just to see what will be sent
				println!("Sending '{}'", &text);
				// publishing with stored publisher for topic "hello"
				let message = Message::encode(&text);
				ctx.put("hello", message)?;
				// modify counter in properties
				ctx
					.write()?
					.counter += 1;
				Ok(())
			}
		)
		// finally add the timer to the agent
		// errors will be propagated to main
		.add()?;

	// start the agent
	agent.start().await?;
	Ok(())
}

Subscriber

The subscriber.rs should look like this:

use dimas::prelude::*;

/// The Agent's properties
#[derive(Debug)]
pub struct AgentProps {}

fn callback(_ctx: &Context<AgentProps>, message: Message) -> Result<()> {
	let message: String =	message.decode()?;
	println!("Received '{message}'");
	Ok(())
}

#[tokio::main]
async fn main() -> Result<()> {
	// create & initialize agents properties
	let properties = AgentProps {};

	// create an agent with the properties and default configuration
	let agent = Agent::new(properties)
		.config(&Config::default())?;

	// subscribe to "hello" messages
	agent
		// get the SubscriberBuilder from the agent
		.subscriber()
    	//set wanted message topic (corresponding to publishers topic!)
		.topic("hello")
    	// set the callback function for put messages
		.put_callback(callback)
    	// finally add the subscriber to the agent
    	// errors will be propagated to main
		.add()?;

	// start the agent
	agent.start().await?;
	Ok(())
}

More examples

You can find some simple examples in dimas-fw/dimas/examples and more complex examples in dimas-fw/examples

Dependencies

~34–48MB
~864K SLoC