0.1.0 • Published 11 years ago

ruze v0.1.0

Weekly downloads
11
License
-
Repository
github
Last release
11 years ago

ruze

EIP with remoting for javascript

##Getting Started. Add ruze to your package.json, npm install or include contents of lib in html script with requirejs (see example in /public)

npm install ruze

OR copy files to your /public directory in /lib and /public:

requirejs.config({
	baseUrl:'/js',
	paths:{
    	ruze:'ruze',
    	cutils:'ruze/cutils',
        path:'ruze/path',
	    conf:'../conf'

} })

requirejs(['ruze/ruze','jquery','text!conf/		ruze.json'], function(Ruze,$,json) {

    var ruze = new Ruze();

    ruze.configure(json);

    ruze.start()
}

##Configuration

Ruze uses requirejs on both client and server. It is configured with routes that you define in either Javascript or JSON:

ruze.configure(function(from){
      from('dom:h1.project?on=click')
          .expr('in.header.timeStamp=in.body.timeStamp')
          .to('direct:a');

      from('direct:a')
          .to('console:out')

 });
 

OR

{
    "plugins":{
	    "direct":{
    	    "debug":true

} }, "routes":[ { "name":"catch dom event and send", "route": {"from":"dom:h1.project?on=click"}, {"expr":"in.header.timeStamp=in.body.timeStamp"}, {"when":"in.body.timeStamp==2"}, {"to":"direct:a"}, {"otherwise":""}, {"to":"direct:b"} }, { "name":"send to console", "route": {"from":"direct:a"}, {"to":"console:out"} }, { "name":"replace and send to console", "route": {"from":"direct:b"}, {"expr":"in.body='blah'"}, {"to":"console:out"} } ] }

##Definitions & DSL

In Ruze you define routes similar to other EIP architectures. The DSL is both built-in but extensible:

from()  //starts a route, takes an endpoint defn
to() //continues the route with an endpoint defn
endpoint() // defines a single endpoint
expr() // takes a javascript expression
when(),  // control structure, js expression 
otherwise() // control structure, js expression
process()  // takes a function for inline defn

Endpoints, used in from(), to(), and endpoint() define instances of plugins as defined in the /plugin directory. You can create, configure and add your own. They are defined in a quasi URI format:

[<container>:]? <plugin> : <object/id> ? arg1=1,arg2=2

Example:

"direct:out"
"file:/somedirectory?debug=true"
"myserver:file:/somedirectory"

The container is optional. When not specified it will try to find the plugin in the local environment, or "local", otherwise it can search for it on remote instances. You can also specify "local" to force it to run locally or specify a remote identifier (more on that in config for remoteloader).

##Concepts & Exchanges

During route execution, the first endpoint, defined in from(), will kick off processing with its consume() method, if it has one. Thereafter, endpoints process their task in produce(). This is an event-oriented architecture that passes an object called exchange between each processing stage. This is important to understand so that you can maniputate your data using your own endpoints/plugins, the inline process(), or the expression language. An exchange is defined as follows:

{
	in:{ 
		header:{},
		body:null
	}, 
	out:{
		header:{},
		recipientList:null
	}, 
	properties:{}, 
	id:null, 
	error:null, 
	fromEndpoint:null
}

in - the input to this processing stage
in.header - contains any headers you want
in.body - input data you are manipulating

out - the output from this processing stage
out.header - any headers to pass forward
out.body - output from your processing
out.recipientList - optional, route to an endpoint

properties - additional props 
id - a uuid generated by ruze for tracking
error - any errors to carry forward
fromEndpoint - endpoint that executed just before you

Note that at each stage, the out object becomes the in object (it is copied and emptied).

##Process

ruze.from('direct:a')
    .process(function(exchange,next){
      console.log('shoes ',exchange.in.header.shoes);
      
      exchange.out.body = 
       '{\"statement\":\"'+exchange.in.body+'\"}';
      
      next();
    })

Process defines an unnamed component inline. You manipulate the exchange in the function you provide. Remmber to call next(). next(err) passes on errors. Note that exchange.out.body is set in this stage. If you proceed without setting the output body, nothing will be passed forward. Process declarations must execute in the local environment (you cannot pass in mobile code to a server/remote instance).

##Expression Language ruze.from('direct:a') .expr('in.body= (in.header.a) ? in.header.a + " " + in.body : in.body' ) .to('console:out');

Expressions, based on exprjs, allow fairly powerful inline scripting that avoids the perils of eval(). Define single-line or comma-separated expressions using javascript. These are portable across containers. In the expression language you have access to the current exchange, instantiated plugin components, and extra utility functions for transforms:

.expr('1==1') // a conditional, returns true
.expr('out.body = in.body') // assignment
.expr('bodyAs("json")') transforms body to json
.expr('ref("mycomp:a").doSomething(in.body)')

bodyAs() takes 'json' or 'string' right now. Will work on xml and other formats. ref() pulls in an instantiated plugin allowing you to execute functions on it directly.

##Recipients When you define a route in Ruze that flow represents the default recipient chain for the exchange as processing occurs. This can be altered inline using expressions:

.expr('out.recipientList=["direct:a","direct:b"]') 
.expr('out.recipientList=in.header.myrecipients') 

This allows you to do dynamic routing at any point you choose. The Exchange is broadcast to those endpoints.

##Plugins

Base-level plugins live in the /plugin directory or one you specify with your extensions. Once you define a plugin, if appropriate, it can run either on the server (nodejs) in within the browser. Plugins have a lifecycle where they are configured, overall using a config() call (class-level), they can have a initialize() per instance, and may define a consume() and produce() action. In addition, they can modify Ruze DSL through the mixin() call during config(). See /plugin/process/process.js for an example of how this works.

The basic set of plugins are:

console
direct
expr
mock
process
when

We will expand this library over time in the /extras directory for you to pick from, for example

/extras/server/file
/extras/client/dom

These will be organized by plugins that work only on the server, only on the client, or both. You can add new directories to scan for plugins like so

ruze.loaders.local.addPath('extras')

This could be a directory of your own plugin components. This works in both the nodejs and server environment.

##Testing

ruze.configure(function()        	
	ruze.from('direct:in').to('mock:out');
});
ruze.start(function(){

...

ruze.endpoint('mock:out', function(mockEnd){
    mockEnd.expectedMessageCount(1);
    ruze.send('direct:in', 'helloworld');
    mockEnd.assert();
    mockEnd.maxWait(2000);
}).then(function(){
    done.done()
}).done();

Ruze supports a testing structure using an endpoint called mock.

##Remoting One ultimate goal of this project is to allow you to define routes across a distributed architecture of ruze nodes. This is a work in progress so this section is about what to expect shortly.

We are adding a socket.io backplane across instances so that you can define the following:

ruze.configure(function (from) {
    from('dom:h1.project?on=click')
        .expr('in.body={timestamp:in.body.timeStamp, text:in.body.currentTarget.outerText, type:in.body.type}')
        .to('myserver:direct:a')
        .expr('in.body="event is " + in.body.type + ""')
        .to('local:console:out')
        .to('myserver:console:out')
        .to('server2:direct:e');
});
	

Where your browser environment, 'myserver', and 'server2' run ruze with different roles, loaded plugins, etc. There is an example of this now in the root directory. To try it out follow these steps:

// 1.  start myserver
node server.js

// 2.  start server2
node server2.js

// 3.  in a browser go to http://localhost:4000
//      when the environment has loaded, you will see the diagnostics appear on the page

// 4.  click on the sample text on the page, inspect the browser console and the two other
//      server windows, you should see event routing as described in the route.

We are currently working on next steps for this, foremost on deconstructing routes when clients disconnect from the environment.