Code Monkey home page Code Monkey logo

easy-swf's Introduction

easy-swf

Greenkeeper badge

Build Status

easy-swf is a module made to make using the AWS Simple Workflow Service a little easier to use.

You need to be familiar with how SWF works. This link is useful for understanding the core concepts.

Installation

$ npm install easy-swf

Getting Started

To manage a SWF Workflow Execution, we require a ActivityHost to handle the activities and a DeciderHost to handle the decisions. An ActivityHost and a DeciderHost do not need to run in the same process.

First, we configure our client:

var easy = require("easy-swf");

var workflow = {
	"domain": "ExampleDomain",
	"taskList": "taskList"
};

var awsConfig = {
	"accessKeyId": "[YourAccessKeyId]",
	"secretAccessKey": "[YourSecretAccessKey]",
	"region": "[YourRegion]"
};

var client = new easy.WorkflowClient(workflow, awsConfig);

The awsConfig parameter is optional. If the argument is not provided it will default to the AWS settings in your environment. Even if you want to have your application pass in some AWS settings (like proxy settings) you can omit the Credentials as long as they are available in your environment.

Handling activities

The ActivityHost, unsurprisingly, handles activities. Tasks scheduled by the Decider will be routed here. The data parameter of the callback will contain whatever value is passed from the decider.

Here's an example:

var acts = client.createActivityHost("taskList");

acts.handleActivity("taskOne", "1", function (data, next) {
  next(null, "one");
});

acts.handleActivity("taskTwo", "1", function (data, next) {
  next(null, data + " two");
});

acts.handleActivity("taskThree", "1", function (data, next) {
  next(null, data + " three");
});

acts.listen(function (err, message) {
  console.log(message);
});

Any errors raised by easy-swf will be return via the listen() callback and you can keep track of what SWF is doing via the message in the callback if you like.

Handling decisions

A DeciderHost is created to handle all decisions. A decision handler is created for each workflow. Any framework errors will returned via the listen() method just like the ActivityHost.

Here is an example decider:

var decider = client.createDeciderHost("taskList");

decider.handleWorkflow("example", "1", function(context) {

  var taskOne = context.getFunction("taskOne", "1");
  var taskTwo = context.getFunction("taskTwo", "1");
  var taskThree = context.getFunction("taskThree", "1");

  taskOne("input", function (feedErr, feedData) {

    if (feedErr != null) { context.failWorkflow(feedErr); return; }

    taskTwo(feedData, function (summaryErr, summaryData) {

      if (summaryErr != null) { context.failWorkflow(summaryErr); return; }

      taskThree(summaryData, function (finalErr, finalData) {
        if (finalErr != null) { context.failWorkflow(finalErr); return; }

        console.log(finalData);
        context.completeWorkflow();
      });
    });
  });
});

decider.listen(function (err, message, context) {

  if (err != null) {
    console.log("[Framework Error]", err);

    if (context != null) {
      context.failWorkflow(err);
      return;
    }
  }

  console.log(message);
});

And here's the equivalent using promises:

var Q = require("q");
var decider = client.createDeciderHost("taskList");

decider.handleWorkflow("example", "1", function(context) {

  var taskOne = context.getPromise("taskOne", "1");
  var taskTwo = context.getPromise("taskTwo", "1");
  var taskThree = context.getPromise("taskThree", "1");

  Q.fcall(taskOne, context.input)
    .then(taskTwo)
    .then(taskThree)
    .then(result => {
	  console.log(result);
	  context.completeWorkflow(result);
    })
    .catch(err => {
      context.failWorkflow(err);
    })
    .done();

});

decider.listen(function (err, message, context) {

	if (err != null) {
		console.log("[Framework Error]", err);

		if (context != null) {
			context.failWorkflow(err);
			return;
		}
	}

	console.log(message);
});

The context object

The context object represents the current state of the WorkflowExecution and is used to interact with SWF. The state of the context object is rebuilt from the WorkflowExecutionHistory on every decision.

The context object has the following methods:

.getFunction(name: string, version: string): Function

This returns different functions based on the current WorkflowExecutionHistory. These functions will schedule tasks, return data from activities, or raise errors depending on what is appropriate given the WorkflowExecutionHistory.

This allows you to write simpler logic in your decider using a traditional callback structure.

.getPromise(name: string, version: string): Promise

This wraps the getFunction method and returns a Promise instead.

.completeWorkflow()

Tells SimpleWorkflow to complete the WorkflowExecution.

.failWorkflow(err: Error)

Tells SimpleWorkflow to fails the WorkflowExecution and stores err.message in the WorkflowExecution.

.doNothing()

You must always return a response to SWF even if you don't want to make any decisions. This method tells SWF that you don't want to make a decision just yet.

This is to support the execution of actvities in parallel.

Finally, start a workflow

client.startWorkflow("example", "1", function (err) {

});

Breaking Changes from 0.6.0

  • The callback for ActivityHost.handleActivity() no longer includes an error. Errors are returned via ActivityHost.listen()
  • The callback for DeciderHost.handleWorkflow() no longer includes an error. Errors are returned via DeciderHost.listen()
  • DeciderContext.getFunction now requires a version parameter. This removed the need for explicit tast configuration.

easy-swf's People

Contributors

midknight41 avatar greenkeeperio-bot avatar poonwu avatar greenkeeper[bot] avatar

Watchers

James Cloos avatar Pat avatar  avatar

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.