rain_core 0.4.0

Distributed computational framework for large-scale task-based pipelines. Common core library.
Documentation
@0xd7b1fdae7f8daa87;

# Both task and data object id share the same numbering space and must use distinct ids.
# Session id is assigned by the server. Objects from different sessions may not interact.
# Session id <0 has a special meaning.
# Task id and data object id are the same struct but are distinct types for type checking.

using SessionId = Int32;

const allTasksId :Int32 = -2;
const allDataObjectsId :Int32 = -2;

struct TaskId {
    id @0 :Int32;
    sessionId @1 :SessionId;

    const none :TaskId = ( sessionId = -1, id = 0 );
}

struct DataObjectId {
    id @0 :Int32;
    sessionId @1 :SessionId;

    const none :DataObjectId = ( sessionId = -1, id = 0 );
}

struct SocketAddress {
    # IPv4/6 address of a socket.
    port @0 :UInt16;
    address :union {
        ipv4 @1: Data; # Network-endian address (4 bytes)
        ipv6 @2: Data; # Network-endian address (16 bytes)
    }
}

using GovernorId = SocketAddress;
# Governor id is the address of the RPC listening port.

enum TaskState {
        notAssigned @0;
        ready @1;
        assigned @2;
        running @3;
        finished @4;
        failed @5;
}

enum DataObjectState {
    unfinished @0;
    finished @1;
    removed @2;
}

enum DataType {
    blob @0;
    directory @1;
}

struct Resources {
    nCpus @0 :UInt32;
}

struct Error {
    message @0 :Text;
    debug @1: Text;
    task @2: TaskId;
}

struct UnitResult {
        union {
            ok @0 :Void;
            error @1 :Error;
        }
}

struct Event {
    timestamp @0 :Timestamp;
    event @1: Text;
}

struct Timestamp {
    seconds @0 :UInt64;
    subsecNanos @1 :UInt32;
}


struct FetchResult {

    status :union {
        ok @0 :Void;
        # Valid data is returned

        redirect @1 :GovernorId;
        # The data are available at the given governor.
        # Only sent by server to a governor. That governor may answer notHere with certain
        # timing.

        notHere @2 :Void;
        # From governor to governor only. The sender should ask the server for the new
        # location. Server will reply with a redirect or the data itself.

        removed @3 :Void;
        # The DataObject data was removed and will not be available (under normal
        # operation). Server may send this to governor (and then it is usually a bug) or
        # server may send it to client (and then client has likely asked for non-kept
        # object)

        error @4 :Error;
        # Only as response for client

        ignored @5 :Void;
        # Only from server to governor. It is returned when "id" is ignored on server.
        # This can happend when server closes a session, but the governor have not yer received
        # the message about it. The best response of the governor is just the ignore
        # the response and wait for messages that brings deletion of dataobject
    }

    data @6 :Data;

    # DataObject info
    info @7: Text;

    transportSize @8: UInt64;
}