#data #dynamic #plugin #data-points #multicasting

bin+lib datadot

A Data Dot is a micro executable that acts on its specified data point that is defined at start up, join a cluster, and interact with the colony

1 unstable release

Uses old Rust 2015

0.0.1 Feb 10, 2019

#33 in #data-points

Apache-2.0

27KB
570 lines

DataDot

License Coverage Status Docs.rs

Linux: Build Status Windows: Build status


__Looking for a cluster of syncronized bot to do your work? Just spin up a colony of DataDots.__

A Data Dot is a micro executable that acts on its specified data point that is defined at start up. Once started, a DataDot ...

  • Interacts with the user on the command line
  • Collaboratively works together with other DataDots by speaking and listening
  • Learns about its own datapoint by continuously discovering and analyzing the DataDots in its colony

Reference Material RUNNING

testing

[machine-name sadp]$ cargo test -- --nocapture

usage

[machine-name datadot]$ ./datadot --help
DataDot

USAGE:
    datadot [OPTIONS] --bind <bind> --data <data>

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
    -b, --bind <bind>             The multicast address to bind to (e.g.: 224.0.1.255
    -d, --data <data>             The data that the dot represents
    -x, --plg_dir <plugin_dir>    [Optional] The path to the directory where the plugins are located.
    -p, --port <port>             [Optional] The port number to use for multicasting, (default 7645).

starting datadot

[machine-name datadot]$ ./datadot -d "Hello" -b 224.0.0.1 -x "./plugins"
dot:listener: joined: 224.0.0.1:7645
dot:listener: is ready

braodcast a message

get::hi
dot:listener: received request: hi from: 10.172.12.144:54260

calling a plugin function (e.g.: plugin uses core::)

core::datapoint
datapoint is Hello
"processed..."
core::mask
"processed..."
core::datapoint
datapoint is secret
"processed..."

stopping datadot

stop
dot:listener: received request: stop from: 10.172.12.144:35821
dot:listener: stopped!
dropping plugins...
Bye!
NOTE

Dependencies

~4.5–6.5MB
~111K SLoC