Socket server for ActiveStack
npm install activestack-gatewayActiveStack Gateway
===================

Introduction
------------
The ActiveStack Gateway is a Node server that sets up a real-time socket server for clients wanting to
connect to the ActiveStack backend.
Installation
------------
* Node = 0.10.x
* Redis
* RabbitMQ
The AS Gateway provides two usage methods:
* Install globally with NPM: npm install -g activestack-gateway. This method will make the activestack-gateway executable
available on your path for starting from the command line.
* Install in your own node project with npm install activestack-gateway. This method will make the gateway available
to your project at runtime so you can control the gateway from your application.
Usage
-------
If you installed the gateway with the global option then you'll have a new executable on your path: activestack-gateway.
To start the gateway server with default options run:
``bash`
> activestack-gateway server|s
To start the gateway console to control an already running server run:
`bash`
> activestack-gateway console|c
Once you've started the active stack control console you can issue these commands to control the server:
* quit - to quit the consolerestart
* - to restart the servershutdown
* - to shut the server downloglevel
* - set the log level # Not currently implementedclientmessageresendinterval
* - print the client message resend interval configurationclientcount
* - print the number of clients connected to the server
Configuration
-------------
The AS Gateway allows several different configuration options. These can be specified using a customer configuration file.
`How often should server process send heartbeats to workers
cluster.heartbeatInterval=1000How long before a worker times out and is restarted
cluster.workerTimeout=5000DON'T KNOW
cluster.watchdogInterval=1000Get warned when memory reaches this level
cluster.memoryWarning.rss=1024Get warned when memory reaches this level
cluster.memoryWarning.heapTotal=60Hard memory limit
cluster.memoryLimit.rss=2048Hard memory limit
cluster.memoryLimit.heapUsed=100How long to wait before worker is restarted
cluster.workerRestartDelay=50Worker backoff
cluster.maxRestartBackoff=10The number of workers to spawn. If not specified will use (numCPUs/2)+1
cluster.workerCount=2
Running Tests
-------------
`npm test`API Documentation
-----------------
ActiveStack Services
- gateway.js - Passed in the Express HTTP Server instance to listen for connect requests on.
1. Sets up a redis listener for the SocketIO library to use. This is meant to allow each instance of a SocketIO listener to be stateless.
2. Starts up a SocketIO listener, attaching itself to the ExpressJS HTTP Server instance passed in from server.js.
3. As part of the SocketIO listener, a Flash Policy "Server" is also started for Flash based socket clients.
4. Creates and starts a new RabbitMQ listener.
5. Once the RabbitMQ listener is established (i.e. has emitted its ready event) the SocketIO has its connection listener setup.
6. SocketIO connection listener handles a new client connect request by:
1. Storing a reference to the socket by its socket.id.
2. Adds listeners to the new socket for disconnect and logout.
3. Creates a new Client, passing in the new socket, RabbitMQ instance, and RabbitMQ exchange.
4. Once the new Client is established it is meant to handle all communication with the client except in the case of a socket disconnect/logout.ActiveStack Client
- Client
1. Creates a new Session for the Client. A Session represents the state of the
Client. In order to be stateless, the Session data is encrypted and sent to the client. The encrypted session data is considered to be the reconnect "key" for any client reconnect attempts. Whenever the Session data changes, the reconnect "key" is re-packaged and re-sent to the client.
2. Sets up listeners for:
1. message - Routes the message to all the clients registered agents
2. logout - Routes the logout message to all the clients registered agents
3. disconnect - Routes the disconnect message to all the clients registered agents
4. error` - Handles the error accordingly, which potentially means invalidating and disposing of the Client.