Skip to content
This repository has been archived by the owner on Dec 15, 2017. It is now read-only.
/ REstate-Legacy Public archive

An open and extensible HTTP StateMachine-as-a-Service.

Notifications You must be signed in to change notification settings

psibr/REstate-Legacy

Repository files navigation

REstate

StateMachine configured and accessed over HTTP REST API

###What is a state machine??

A State machine, in this specific case a Finite State Machine, is a model of computation that can represent a "machine" and all of its possible states and how each state is to be triggered. Wikipedia article which dives into theory here.

###Build Status Build status

###Getting Started

####Dependencies Make sure you have git CLI tools, MSBuild 14 (or Visual Studio 2015), and LocalDb Sql Server 2014+ installed.

LocalDB 2014 is available for download here. Note that you have to click download and THEN scroll down and choose the LocalDb installer.

####Downloading and running

Clone or Fork and Clone.

Use the dbScript.sql to build the database, replacing the mdf and log file locations in the script!

A sample authentication request is in /AuthenticationRequest.txt. Fiddler can play the request, or you can make it in Postman by hand. Once you have the jwt, copy the CONTENT of the property, with no quotes. You can then auth against REstate by adding a header (replace {jwt with the token you created.}). Authorization: Bearer {jwt}

###What practical use is there?

A common example of a finite state machine is a traffic light. There are rules that dictate when and in what order the light can change colors; this is modeled as a state machine.

Somewhat similarly in application development we often have to track states of processes such as business processes (Orders, Invoices, Leads, Issues, Work Orders, so on...).

###What benefit is there for a web based State Machine

I would be lying if I said I knew all of the possibilities, but there are likely a ton.

There are two particular use cases I am developing for in the initial product.

  1. A platform independent, back-end configureable, and horizontally scalable workflow system. This has several benefits:
  • HTTP REST based means ANY system capable of making HTTP calls can interact with the workflow and leave tracking state to system designed to do so rather than embedding logic that is often poorly maintained and difficult to follow and model. (Think case statements or n-layers of nested ifs)
  • Scaling independently is a breeze.
  • Since state is decoupled from the original usage scenario, outside processes can be allowed to contribute to state changes as Add-In processes without building complex rules to allow this.
  • ANY existing solution can add complex state tracking with minimal code changes.
  1. Web UI state modeling and tracking.
  • UI designers and developers know just how complicated business driven UIs can get with nested and hierchical states. I would venture to say MOST UI bugs are handling properly these state changes back and forth and coding for all of the exceptions. Since REstate is HTTP based, any web client can call out to the system and ask for current state and triggering transitions.

About

An open and extensible HTTP StateMachine-as-a-Service.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages