Liking cljdoc? Tell your friends :D

com.fulcrologic.statecharts.protocols

Protocols for the various pluggable bits of this library:

Processor - A state machine processing algorithm. See com.fuclrologic.statecharts.algorithms. EventQueue - An external event queue for cross (and loopback) communication of machines and external services. DataModel - A model for saving/fetching data that can be directly manipulated by a state machine. ExecutionModel - A component that implements the interpretation of runnable code in the machine.

Many methods in the namespace take an env. This map will contain at least:

  • ::sc/vwmem A volatile (e.g. vswap!) holding working memory. The data model MAY place its data in this map under namespaced keys, but it should not modify any of the preexisting things in working memory. ** The working memory will contain ::sc/session-id
  • ::sc/context-element-id will be the ID of the state (or :ROOT) if the method is called by the Processor while working on behalf of a state.

::sc/machine - The machine definition ::sc/data-model - The current implementation of the DataModel ::sc/event-queue - The current implementation of the external EventQueue ::sc/execution-model - The current implementation of the ExecutionModel

Implementations of a Processor MAY place (or allow you to place) other namespaced keys in env as well.

Protocols for the various pluggable bits of this library:

 Processor - A state machine processing algorithm. See com.fuclrologic.statecharts.algorithms.
 EventQueue - An external event queue for cross (and loopback) communication of machines and external services.
 DataModel - A model for saving/fetching data that can be directly manipulated by a state machine.
 ExecutionModel - A component that implements the interpretation of runnable code in the machine.

 Many methods in the namespace take an `env`. This map will contain at least:

 * `::sc/vwmem` A volatile (e.g. vswap!) holding working memory. The data model MAY place its data
    in this map under namespaced keys, but it should not modify any of the preexisting things in working
    memory.
 ** The working memory will contain `::sc/session-id`
 * `::sc/context-element-id` will be the ID of the state (or :ROOT) if the method is called by the Processor while
   working on behalf of a state.

::sc/machine  - The machine definition
::sc/data-model - The current implementation of the DataModel
::sc/event-queue - The current implementation of the external EventQueue
::sc/execution-model - The current implementation of the ExecutionModel

Implementations of a Processor MAY place (or allow you to place) other namespaced keys in `env` as well.
raw docstring

DataModelclj/s≠protocol

current-dataclj/s

(current-data provider env)

Returns the current data (must be map-like) for the context in the given env.

Returns the current data (must be map-like) for the context in the given env.

get-atclj/s

(get-at provider env path)

Pull a data value from the model at a given path (a vector of keywords) (in the context of env). The data model can define what this path means, as well as the context.

See ns docstring for description of env.

Returns the value or nil.

Pull a data value from the model
at a given `path` (a vector of keywords) (in the context of `env`).
The data model can define what this path means, as well as the context.

See ns docstring for description of `env`.

Returns the value or nil.

load-dataclj/s

(load-data provider env src)

OPTIONAL. Attempt to load data from the given src (as declared on a datamodel element in the machine.) into the data model.

See ns docstring for description of env.

Returns nothing.

OPTIONAL. Attempt to load data from the given `src` (as declared on a datamodel element in the machine.) into
the data model.

See ns docstring for description of `env`.

Returns nothing.

transact!clj/s≠

clj
(transact! provider env {:keys [txn]})
cljs
(transact! provider env G__22792)

Run a transaction that updates/removes data from the data model in the context of env. The DataModel MAY implement this with some level of ACID guarantees (e.g. if the data model is backed by durable storage).

txn is a vector of data model changes.

A DataModel implementation MUST support at least the following operations (where path can be a keyword or a vector of keywords, and value is any safely-serializable value):

[{:op :assign :data {path1 value1 path2 value2}} ; overwrite (merge) the given path(s) with values
 {:op :delete :paths [path ...]}]                ; Remove the given items by key-path.

See data-model.operations for helper functions/wrappers.

Paths have a DataModel-specific interpretation.

NOTE: ExecutionModel is used in contexts where the data model may need to be updated. In those contexts one may call the methods on the data model directly, or the execution model may allow a return value of the expression to act as the data model change.

See ns docstring for description of env.

Run a transaction that updates/removes data from the data model in the context of `env`.  The DataModel
MAY implement this with some level of ACID guarantees (e.g. if the data model is backed by durable storage).

`txn` is a vector of data model changes.

A DataModel implementation MUST support at least the following operations (where `path` can be a keyword or
a vector of keywords, and value is any safely-serializable value):

```
[{:op :assign :data {path1 value1 path2 value2}} ; overwrite (merge) the given path(s) with values
 {:op :delete :paths [path ...]}]                ; Remove the given items by key-path.
```

See `data-model.operations` for helper functions/wrappers.

Paths have a DataModel-specific interpretation.

NOTE: ExecutionModel is used in contexts where the data model may need to be updated. In those contexts
one may call the methods on the data model directly, or the execution model may allow a return value of the
expression to act as the data model change.

See ns docstring for description of `env`.
source

EventQueueclj/s≠protocol

cancel!clj/s

(cancel! event-queue session-id send-id)

Cancel the send(s) with the given id that were sent! by session-id. This is only possible for events that have a delay and have not yet been delivered.

Cancel the send(s) with the given `id` that were `sent!` by `session-id`.
This is only possible for events that have a delay and have not yet been delivered.

receive-events!clj/s≠

clj
(receive-events! event-queue {:keys [session-id] :as options} handler)
cljs
(receive-events! event-queue options handler)

Pull the next event(s) from the queue for session-id (in env) and process with handler, a (fn [event]) that MUST process the event in a way that ensures the event is delivered, processed, and safe to remove from the event queue.

process-next-event! function MAY block waiting for the next event, and the options map MAY allow you to pass additional parameters to affect this behavior. Your selected event queue implementation's documentation should be consulted for the correct way to run your event loop.

If handler throws (or never returns, for example due to a server reboot) then the implementation SHOULD redeliver the event at a later time. This allows for things like system interruptions that cause unexpected exceptions that should be retried in the future.

A proper implementation of an event queue should have IN ORDER and EXACTLY ONCE semantics for event delivery. In order to facilitate this your handler function SHOULD finish as quickly as possible (milliseconds) but MUST NOT exceed 5 seconds of run time. If this time limit is exceeded then an implementation MAY revert to AT LEAST ONCE delivery guarantees, though it MUST preserve event order.

As such, statechart machines that use a durable event queue should be defensively written to safely tolerate AT LEAST ONCE message delivery. For example, instead of using a toggle event to switch between two states give each a unique name (like turn-on and turn-off).

Pull the next event(s) from the queue for `session-id` (in env) and process with `handler`, a
`(fn [event])` that MUST process the event in a way that ensures the event is
delivered, processed, and safe to remove from the event queue.

`process-next-event!` function MAY block waiting for the next event, and the `options` map MAY allow you to
pass additional parameters to affect this behavior. Your selected event queue implementation's
documentation should be consulted for the correct way to run your event loop.

If `handler` throws (or never returns, for example due to a server reboot) then the
implementation SHOULD redeliver the event at a later time. This allows for things like system interruptions that
cause unexpected exceptions that should be retried in the future.

A proper implementation of an event queue should have IN ORDER and EXACTLY ONCE semantics for event delivery.
In order to facilitate this your `handler` function SHOULD finish as quickly as possible (milliseconds) but MUST NOT
exceed 5 seconds of run time. If this time limit is exceeded then an implementation MAY revert to
AT LEAST ONCE delivery guarantees, though it MUST preserve event order.

As such, statechart machines that use a durable event queue should be defensively written to safely
tolerate AT LEAST ONCE message delivery. For example, instead of using a `toggle` event to switch
between two states give each a unique name (like `turn-on` and `turn-off`).

send!clj/s≠

clj
(send! event-queue
       {:keys [event send-id source-session-id target type delay]
        :as send-request})
cljs
(send! event-queue send-request)

Put a send-request on the queue.

The send request has:

  • :event - (REQUIRED) A map in the standard event format. This SHOULD be serializable, though an implementation may describe the supported data types an event may contain.
  • :send-id - (REQUIRED) The id of the send. Need not be unique. Cancelling via a send-id cancels all undelivered events with that send-if.
  • :source-session-id - (REQUIRED) The globally unique session ID.
  • :target - The target for the event. If not supplied, then the target is the source-session-id machine.
  • :type - The type of the event. Used to select the mechanism for delivery.
  • :delay - The number of ms to wait before delivering the event.
Put a send-request on the queue.

The send request has:

* :event - (REQUIRED) A map in the standard event format. This SHOULD be serializable, though an implementation
  may describe the supported data types an event may contain.
* :send-id - (REQUIRED) The id of the send. Need not be unique. Cancelling via a send-id cancels all undelivered
  events with that send-if.
* :source-session-id - (REQUIRED) The globally unique session ID.
* :target - The target for the event. If not supplied, then the target is the `source-session-id` machine.
* :type - The type of the event. Used to select the mechanism for delivery.
* :delay - The number of ms to wait before delivering the event.
source

ExecutionModelclj/sprotocol

run-expression!clj/s

(run-expression! model env expr)

Run an expression. env will include the data-model. expr is defined by the execution model selected. For example, it could be a fn?, an EQL transaction specification, etc.

This method MUST return the value of the expression, and it MUST also support expressions that need to update the data model. If the execution model is imperative, this can be support for imperative statements. If the expression model is functional, then typically the return value of the expression can be used.

See ns docstring for description of env.

Run an expression. `env` will include the `data-model`.
`expr` is defined by the execution model selected. For example, it could be
a `fn?`, an EQL transaction specification, etc.

This method MUST return the value of the expression, and it MUST also support expressions that need to update
the data model. If the execution model is imperative, this can be support for imperative statements. If the
expression model is functional, then typically the return value of the expression can be used.

See ns docstring for description of `env`.
source

Processorclj/sprotocol

get-base-envclj/s

(get-base-env this)

Returns the base env that the processor is using. Will include the data-model, execution-model, event-queue, and processor itself.

Returns the base env that the processor is using. Will include the data-model,
execution-model, event-queue, and `processor` itself.

process-event!clj/s

(process-event! this working-memory external-event)

Process an event. working-memory should be the value last returned from this function (or start!).

Returns the next value of working memory.

Process an event. `working-memory` should be the value last returned from this function (or start!).

Returns the next value of working memory.

start!clj/s

(start! this session-id)

Initialize the state machine processor for a new session. session-id should be a globally unique identifier for this particular instance of the machine.

Transitions to the initial state. If you have the return value of this function or of process-event!, then you can resume the session simply by calling process-event! with that value. This function will always start a NEW machine.

Returns the resulting working memory (current state) of the machine.

Initialize the state machine processor for a new session. `session-id` should be a globally unique identifier
for this particular instance of the machine.

Transitions to the initial state.  If you have the return value of this function or of `process-event!`, then
you can resume the session simply by calling `process-event!` with that value. This function will always
start a NEW machine.

Returns the resulting working memory (current state) of the machine.
source

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close