0.5.7-a3 • Published 9 years ago

shelloid v0.5.7-a3

Weekly downloads
5
License
LGPL 3.0
Repository
github
Last release
9 years ago

Shelloid

Shelloid is an open source IoT-ready real-time big data web application platform built using Node.js and Clojure that contains integrated stream query capability. Of course, Shelloid has a ton of features (see below) that are useful even if you're not looking to add real-time big data or IoT capabilities to your application at the moment - using Shelloid will enable you to easily add these capabilities to your applications at a later point.

Stream query

Shelloid allows developers to easily integrate events from IoT sources such as the Nest thermostat by annotating functions with simple stream query specifications.

The following code illustrates this point:

/**
@stream.sdl select: ambient_temperature_f, name_long;
			from: nest.thermostat;
			where: ambient_temperature_f >= $threshold
@stream.init highTemperatureInit
@stream.auth highTemperatureAuth
@stream.edgeTriggered
*/
exports.highTemperature = function(data, streamInst, user){
	console.log("highTemperature Data: ", data, " for user id ", user);
}

exports.highTemperatureAuth = function(req, streamInst, user, done){
	done(true);
}

exports.highTemperatureInit = function(streamDef, done){
	var instance = streamDef.newInstance({$threshold:80}, 
	"global");
	done();
}

The doc-style comments can be used to specify annotations in a succinct manner. For those who prefer not to use comments for such a purpose, a direct style is also supported, as follows:

exports.highTemperature = 
{
	annotations:{
		stream: 
		{
			sdl:"select: ambient_temperature_f, name_long;" +
			    "from: nest.thermostat;" +
				"where: ambient_temperature_f >= $threshold",
			init: highTemperatureInit,
			edgeTriggered: true,
			auth: highTemperatureAuth
		}
	},
	fn: highTemperature
}

function highTemperature(data, streamInst, user){
	console.log("highTemperature Data: ", data, " for user id ", user);
}

function highTemperatureInit(streamDef, done){
	var instance = streamDef.newInstance({$threshold:80}, 
	"global");
	done();
}

function highTemperatureAuth(req, streamInst, user, done){
	done(true);
}

In the above code snippet the "highTemperature" function defines a real-time IoT data stream according to its associated stream annotations. The "stream.sdl" (sdl stands for stream definition language) defines the stream characteristics in a syntax remindful of the SQL. The "stream.init" specifies an initialization function, which in this case, creates a global stream instance. Shelloid will process the stream query in the background and will invoke the "highTemperature" function when it receives data from the stream source that satisfy the query condition.

Shelloid supports special edge-triggered stream queries (specified with edgeTriggered annotation). An edge triggered stream handler is invoked if and only if there is a change in the query result from the previous query.

Each stream has an associated URL, similar to the way URLs are associated with controllers. An HTTP request to this URL essentially supplies the caller with the stream query result. The HTTP response to stream URLs contains a 'tag' field which can be provided back as query parameter. Whenever there is change in the query result the tag maintained by the server changes. If tag field is specified then the request will return only if server's tag changes from the specified tag. If provided tag is same as the server's data tag for the stream instance, Shelloid will hold the request (long polling style) until a new stream event fires (support for websocket-based streaming is in progress).

The stream.auth annotation is used for specifying custom authorization function for stream URL requests (note that basic authorization can be achieved using standard authorization modules, e.g., Shelloid has a built-in RBAC module).

Node.js Clojure integration

Shelloid attempts to bring out the best of two cool modern programming platforms: Node.js and Clojure. Node.js is great for web and real-time. Clojure is great for concurrent computations. So, why not let the Node.js handle the web requests and real-time messaging and use Clojure when there is a heavy computation at hand? Shelloid does just that.

Shelloid is essentially a Node.js web application server with integrated Clojure-based compute service which runs as a separate process. Shelloid takes care of all the integration details. While the Clojure compute service is executing a heavy computation, Node.js event loop is freed up to process other requests.

The following code snippet illustrates how the integration works. In the code, we define a compute service named add in Clojure. From Node.js this service is invoked by calling sh.ccs.add function (sh stands for shelloid, ccs for Clojure compute service). This results in parameters being passed to the CCS process and the Clojure add service function being executed. The result of the Clojure function is passed back to Node.js and the callback is invoked with err message if any and the result value. After passing off the computation to the Clojure, Node.js event loop is freed up to execute other requests.

Node.js:

	sh.ccs.add(100, 200, function(err, r){
	console.log("Result: " + r);
	});

Clojure

	(service add [a b]
		(+ a b)
	)

Clojure compute service (CCS) requires Leiningen to be installed somewhere in the system path.

Please Note: We've been busy working on the new stream query feature. We will start working on the documentation shortly. Please bear with us for some more time!

Quick sample (Updated!)

We have developed a quick sample to give you a basic understanding of Shelloid. The demo app uses New York's real time traffic feed to display a page showing the list of real-time "fast streets" (just our terminology) in New York, i.e., streets whose current traffic speed is above the average. The demo also implements "trending streets" stream (i.e., streets with speed differential greater than the mean speed differential) showcasing the let clause and diff.

The sample source is available at: https://github.com/shelloid/nyc-traffic.

Either do git clone or download the project zip file from github. For downloading zip, go the the project URL given above and in the right-hand margin (you may have to scroll down a bit) click on the "Download Zip" button.

Take a look at the project documentation (readme) at: https://github.com/shelloid/nyc-traffic on instructions to run the sample.

Configurable transport

The transport between node.js and clojure and how clojure compute processes are created will be configurable. The default transport is a websocket between node.js and clojure. This is suitable for development and perhaps for simpler applications (so that no additional services need to be installed and configured). Other transports like reliable queues can be configured in production. Also it would be possible to run the clojure process(es) in another machine or a cluster of machines - again the programmer interface will remain same.

Open, extensible architecture

Shelloid has an open, extensible architecture. While open sourcing is great for the users, Shelloid goes beyond merely being open source. Shelloid has a open architecture created from ground up, allowing you to easily write extensions that can modify the behaviour of the engine to suit your needs. Many of Shelloid's built-in features are themselves built as extensions, leading to a relatively small and robust core.

Our vision is to simplify the development of secure and robust web applications and services, improving programmer productivity and enabling quick time-to-market. Shelloid takes care of the infrastructure logic and lets you focus on your business logic, leading to quick time to market for your business-critical applications. Shelloid is open sourced under LGPL license, allowing you to run your commercial closed source applications on the top of it.

Getting started

Install: npm install -g shelloid

Installation requires super user/admin privilege. Use "sudo" in Linux/unix and "Run as administrator" in Windows.

Initialize an app: shelloid test-app init

To run: shelloid test-app

Key features (at the moment):

  • Use of annotations instead of writing code for many useful functions.

  • Configurable automatic restarting of the server in case of changes to the application code or unrecoverable errors.

  • Built in authentication (via passport.js) - requires only a single authentication function to be written.

  • Currently supports local authentication as well as Google, Facebook, Twitter authentications out of the box.

  • Custom authentication, e.g, for API implementations that is attached to routes via annotations.

  • Built-in login session management.

  • Built-in role-based access control with roles attached to controllers via annotations.

  • Supports specification-based verification of API requests/responses. Simple API specification which is automatically checked against requests for enhanced security, robustness. The application code will be cleaner owing to lesser checks required.

  • Built in cluster support by setting a single configuration flag. Builtin logging with cluster support.

  • Simplified DB API with built-in connection pooling and close to synchronous-style programming.

  • Support for declarative SQL query specifications as part of annotations.

  • Built in proper error and exception handling that takes care of sending error responses and freeing DB connections.

  • Built in simple and versatile sequencing API that avoids callback hell and results in readily understandable code.

  • Built-in simulator for controlled functional testing of application/controller logic (work in progress - please see sim/main.js in the shelloid-sample-app). Will support control of the flow of time as well as specification and verification of temporal properties.

  • Simple config specification for allowing cross-origin requests (implementation complying with CORS standard).

  • Auto detection of the current node of execution based on specified node names to IP/hostname mapping - useful for distributed and cloud deployments.

  • Support for easily configurable application UI themes.

  • UI themes can be associated with domains, i.e., depending on the domain by which the site is accessed a separate set of files/views can be served. Note that, at the moment, controllers are shared across domains. This results in a limited support for virtual hosting.

  • Easy websocket support that integrates with the normal HTTP route processing. A websocket route can be defined simply by annotating the controller with @websocket.

Currently the software is in alpha stage with featured being added on a daily (even hourly) basis. First full featured beta release is expected to happen in another week or so. After that we will be putting up more documentation.

The prelaunch web app (including its admin console) for the cloud log management platform for Shelloid (http://shelloid.com) is built using Shelloid.

This app is released in open source so that it can serve as a real-life (used by our live prelaunch site) but simple enough example.

Installation:

npm install -g shelloid

Sample app

git clone https://github.com/shelloid/shelloid-prelaunch-signup

Please note that you will need to get (1) Mailgun API key/secret, (2) Google OAuth2 client key/secret and specify in the configuration file. Also a Mysql database (schema available in src/db) will need to be created for storing signup information.

Copy config.sample.json to config.json and make the necessary modifications.

Run:

shelloid shelloid-prelaunch-signup

This will start up the web application at port 8080. You can take a look at the sample application structure.

shelloid shelloid-prelaunch-signup sim to try out the simulator - this is work in progress

Please visit http://shelloid.org for more information and to register to Shelloid mailing list (low traffic).

0.5.7-a3

9 years ago

0.5.7-a2

9 years ago

0.5.7-a1

9 years ago

0.5.5-a1

9 years ago

0.5.4-a1

9 years ago

0.5.3-a1

9 years ago

0.5.2-a2

9 years ago

0.5.2-a1

9 years ago

0.5.0-a1

9 years ago

0.4.5-a4

9 years ago

0.4.5-a3

9 years ago

0.4.5-a2

9 years ago

0.4.5-a1

9 years ago

0.4.4-a1

9 years ago

0.4.3-a2

9 years ago

0.4.3-a1

9 years ago

0.4.2-a1

9 years ago

0.4.1-a1

9 years ago

0.4.0-a6

9 years ago

0.4.0-a5

9 years ago

0.4.0-a4

9 years ago

0.4.0-a3

9 years ago

0.4.0-a2

9 years ago

0.3.0-a2

9 years ago

0.3.0-a1

9 years ago

0.2.2-a1

9 years ago

0.2.1-a1

9 years ago

0.2.0-a4

9 years ago

0.2.0-a3

9 years ago

0.2.0-a2

9 years ago

0.2.0-a1

9 years ago

0.1.10-a2

9 years ago

0.1.10-a1

9 years ago

0.1.9-a1

9 years ago

0.1.8-a3

9 years ago

0.1.8-a2

9 years ago

0.1.8-a1

9 years ago

0.1.7-a1

9 years ago

0.1.6-a6

9 years ago

0.1.6-a5

9 years ago

0.1.6-a4

9 years ago

0.1.6-a3

9 years ago

0.1.6-a2

9 years ago

0.1.6-a1

9 years ago

0.1.5-a2

9 years ago

0.1.5-a1

9 years ago

0.1.4-a1

9 years ago

0.1.3-a2

9 years ago

0.1.3-a1

9 years ago

0.1.2-a2

9 years ago

0.1.2-a1

9 years ago

0.1.0-a19

9 years ago

0.1.0-a18

9 years ago

0.1.0-a17

9 years ago

0.1.0-a16

9 years ago

0.1.0-a15

9 years ago

0.1.0-a14

9 years ago

0.1.0-a12

9 years ago

0.1.0-a10

9 years ago

0.1.0-a9

9 years ago

0.1.0-a8

9 years ago

0.1.0-a7

9 years ago

0.1.0-a6

9 years ago

0.1.0-a5

9 years ago

0.1.0-a4

9 years ago

0.1.0-a3

9 years ago

0.1.0-a2

9 years ago

0.1.0-a1

9 years ago

0.0.7-alpha

9 years ago

0.0.6-alpha

9 years ago

0.0.5-alpha

9 years ago

0.0.4-alpha

9 years ago

0.0.3-alpha

9 years ago

0.0.2-alpha

9 years ago

0.0.1-alpha

9 years ago