Coder Social home page Coder Social logo

meerkat's Introduction

Meerkat

A minimalistic FSM library written with scala in mind.

Example

Here is your typical traffic lights fsm:

import meerkat._

object TrafficLight {
  case class Light private(name:String)
  object Light {
    val red = new Light("red")
    val yellow = new Light("yellow")
    val green = new Light("green")
  }

  case class Command private(name:String)
  object Command {
    val stop = new Command("stop")
    val ready = new Command("ready")
    val go = new Command("go")
  }


  val fsm = new FSM[Light, Command](Light.red) {
    override def handleEvent = {
      case Light.yellow -> Command.stop  => Light.red
      case _            -> Command.ready => Light.yellow
      case Light.yellow -> Command.go    => Light.green
    }

    override def onTransition = {
      case (from -> to) -> cmd => println(s"${from.name} --(${cmd.name})--> ${to.name}")
    }

    override def onRejectedEvent(state:State, event:Event):Any = println(s"${state.name} --(${event.name})--x")
  }
}

/*use-case example:*/
import TrafficLight._

fsm ! Command.ready ! Command.go /*those will not change state: */ ! Command.stop ! Command.go

/**
 * this should yield in console:
 *    red --(ready)--> yellow
 *    yellow --(go)--> green
 *    green --(stop)--x
 *    green --(go)--x
 */

meerkat's People

Contributors

dant3 avatar

Stargazers

Alexander Druzhilov avatar Anton Vine avatar Roman Skvirsky avatar

Watchers

James Cloos avatar

Forkers

romansk

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.