jsfbp
v3.0.1
Published
FBP implementation written using node-fibers
Downloads
8
Readme
jsfbp
Warning:
"Classical" FBP "green thread" implementation written in JavaScript, using Node-Fibers - https://github.com/laverdet/node-fibers.
JSFBP takes advantage of JavaScript's concept of functions as first-degree objects to allow applications to be built using "green threads". JSFBP makes use of an internal "Future Events Queue" which supports the green threads, and provides quite good performance (see below) - the JavaScript events queue is only used for JavaScript asynchronous functions, as before.
Installing Fibers
As suggested in https://github.com/laverdet/node-fibers/issues/new , make sure your version of nodejs
is an even one.
Go into command mode, and enter npm install fibers
.
If this command has trouble finding Python, install Python 2.7.10, then run npm --add-python-to-path='true' --debug install --global windows-build-tools
. Don't know if this is still necessary!
General
To run test cases, position in your command shell to GitHub/jsfbp
and type in node examples/fbptestxx
, where xx
is the test case number.
Test cases so far:
fbptest01
- 3 processes:gendata
(generates ascending numeric values)copier
(copies)recvr
(displays incoming values to console)
fbptest02
-gendata
replaced withreader
fbptest03
-gendata
andreader
both feeding intocopier.IN
fbptest04
-gendata
feedingrepl
which sends 3 copies of input IP (as specified in network), each copy going to a separate element of array portOUT
; all 3 copies then feeding intorecvr.IN
fbptest05
- Two copies ofreader
running concurrently, one feeds direct torrmerge
("round robin" merge) input port element 0; other one intocopier
and then intorrmerge
input port element 1; fromrrmerge.OUT
torecvr.IN
fbptest06
- The output streams of therepl
(infbptest04
) are fed to the input array port ofrrmerge
, and from itsOUT
torecvr.IN
fbptest07
- Creates a deadlock condition - the status of each Process is displayedfbptest08
- reads text, reverses it twice and outputs itfbptest09
-copier
infbptest01
is replaced with a version ofcopier
which terminates prematurely and closes its input port, bringing the network down (ungracefully!)fbptest10
-copier
infbptest01
is replaced with a non-looping version ofcopier
fbptest11
- Load balancer (lbal
) feeding 3 instances of a random delay component (randdelay
)
fbptest12
-reader OUT -> IN copier OUT -> IN writer
fbptest13
- Simple network to demonstrate functioning of random delay component (randdelay
)fbptest14
- Network demonstrating parallelism using two instances ofreader
and two fixed delay components (delay
)fbptestvl
- Volume test (see below):gendata
->copier
->discard
testsubstreamsensitivesplitting.js
- Test substream-sensitive logic inlbal
, feedingsubstreamsensitivemerge.js
"Update" networks
update
- "Update" run, demonstrating use ofcollate.js
update_c
- Same asupdate.js
but routing output to acompare
process, rather than todisplay
The following diagram shows update
and update_c
in one diagram using the DrawFBP Enclosure function - this is not really a valid DrawFBP diagram, so no port names are shown:
Here is update_c
by itself, with component and port names marked in - it contains all the information needed to generate a running JSFBP network (the file and report icons do not generate any code):
WebSockets
fbptestws
- Schematic web socket server (simple Process shown can be replaced by any structure of Processes, provided interfaces are adhered to)
Some of these have tracing set on, depending on what testing was being done when they were promoted!
These tests (except for fbptestws
) can be run sequentially by running fbptests.bat
.
Components
breader
- reads from a binary file specified by FILE IIP and sends one IP per byte in the file. Starts sending IPs as soon as first byte is read.bwriter
- takes a stream of IPs containing bytes and writes them to a file from its FILE IIP. Starts writing as soon as the first IP comes in.collate
- collates from 1 to any number of sorted input streams, generating merged stream with bracket IPs inserted (sort fields assumed to be contiguous starting at 1st byte; all streams assumed to be sorted on same fields, in ascending sequence)concat
- concatenates all the streams that are sent to its array input port (size determined in network definition)copier
- copies its input stream to its output streamcopier_closing
- forces close of input port after 20 IPscopier_nonlooper
- same ascopier
, except that it is written as a non-looper (it has been modified to call the FBP services from lower in the process's stack)discard
- discard (drop) all incoming IPsdisplay
- display all incoming IPs, including bracket IPsgendata
- sends as many IPs to its output port as are specified by its COUNT IIP (each just contains the current count)lbal
- load balancer - sends output to output port array element with smallest number of IPs in transitranddelay
- sends incoming IPs to output port after random number of millisecs (between 0 and 400)reader
- does an asynchronous read on the file specified by its FILE IIPrecvr
- receives its incoming stream and displays the contents on the consolerepl
- replicates the incoming IPs to the streams specified by an array output port (it does not handle tree structures)reverse
- reverses the string contained in each incoming IPrrmerge
- "round robin" mergesubstreamsensitivemerge.js
- merges multiple input streams, but keeps IPs in correct sequence within each substream, although sequence of substreams is not guaranteedwriter
- does an asynchronous write to the file specified by its FILE IIPwsrecv
- general web socket "receive" component for web socket server - outputs substreamwsresp
- general web socket "respond" component sending data from web socket server to client - takes substream as inputwssimproc
- "simulated" processing for web socket server - actually just outputs 3 names
API
For application developers
Networks can be generated programmatically or by loading in an FBP file.
Programmatically
- Get access to JSFBP:
var fbp = require('fbp')
- Create a new network:
var network = new fbp.Network();
- Define your network:
- Add processes:
network.defProc(...)
Note: when several processes use the same component,defProc
takes the process name as a second argument. - Connect output ports to input ports:
network.connect(...)
- Specify IIPs:
network.initialize(...)
- Create a new runtime:
var fiberRuntime = new fbp.FiberRuntime();
- Run it!
network.run(fiberRuntime, {trace: true/false}, function success() {
console.log("Finished!");
});
Via an FBP file
- Generate an
.fbp
file that complies with the specification under parsefbp. - Get access to JSFBP:
var fbp = require('fbp')
- Load the contents of the
.fbp
file into a String:fs.readFile(__dirname + '/network.fbp' ...);
- Create a new network:
var network = new fbp.Network.createFromGraph(fileContents);
If you're using components that are local to your application, use a second parameter giving the directory that contains your components. - Create a new runtime:
var fiberRuntime = new fbp.FiberRuntime();
- Run it!
network.run(fiberRuntime, {trace: true/false}, function success() {
console.log("Finished!");
});
Activating trace
can be desired in debugging scenarios.
Useful methods
Network#defProc(component[, name])
Creates a process from a component, defined by the first parameter.The first parameter can be a function or a string. When a string is used, the component is loaded according to three possiblities:
- If the component string starts
'./'
then the component is assumed to be one of he JSFBP components and is loaded. For example:'./components/copier.js'
- If the component string starts with
'/'
then the component is assumed to be local to the application. If your network has local components, then the network needs to have been instantiated with a{ componentRoot: 'dir' }
object so that it knows where to find the components. - If the component string contains a
/
, then it assumed to be of the form'package/component'
. Thuspackage
is loaded and thencomponent
is retrieved from it. Ifpackage
is'jsfbp'
, then it is loaded from the JSFBPcomponents
directory. - Otherwise, the string is assumed to be a node module that is an FBP component and it is simply
loaded via
require
.
- If the component string starts
The second parameter is an optional name for the Process. If not provided, it will be inferred from the
component
.
For component developers
Component headers:
'use strict';
In most cases you do not need to require() any JSFBP-related scripts or libraries as a component developer. Everything you need is injected into the component's function as its context this
(the process object) and as a parameter (the runtime object).
Some utility functions are stored in core/utils.js
. Import them if you really need them.
You should generally refrain from accessing runtime-related code (e.g. Fibers) to ensure the greatest compatibility.
Component services
In what follows, the
this
is only valid if the function is called from the component level; if called from a subroutine, pass inthis
as a parameter.var ip = this.createIP(contents);
- create an IP containingcontents
var ip = this.createIPBracket(this.IPTypes.OPEN|this.IPTypes.CLOSE[, contents])
- create an open or close bracket IPBe sure to include IP:
var IP = require('IP')
to gain access to the IP constants.this.dropIP(ip);
- drop IPvar inport = this.openInputPort('IN');
- create InputPort variablevar array = this.openInputPortArray('IN');
- create input array port arrayvar outport = this.openOutputPort('OUT');
- create OutputPort variablevar array = this.openOutputPortArray('OUT');
- create output array port arrayvar ip = inport.receive();
- returns null if end of streamvar ip = array[i].receive();
- receive to element of port arrayoutport.send(ip);
- returns -1 if send unable to deliverarray[i].send(ip);
- send from element of port arrayinport.close();
- close input port (or array port element)runtime.runAsyncCallback()
- used when doing asynchronous I/O in component; when using this function, includeruntime
in component header, e.g.module.exports = function xxx(runtime) { ...
Example:
runtime.runAsyncCallback(function (done) {
// your asynchronous
...
// call done (possibly asynchronously) when you're done!
done();
});
Utils.getElementWithSmallestBacklog(array);
- used bylbal
- not for general useBe sure to include Utils:
var Utils = require('core/utils')
.Utils.findInputPortElementWithData(array);
- used bysubstreamsensitivemerge
- not for general useBe sure to include Utils:
var Utils = require('core/utils')
.
Install & Run
We use node-fibers
which is known to work with Node.js 10.16.0
(as of 25.07.2019).
Install Node.js
Clone or download this project
Execute
npm install
If you get an MSB4019 or similar error messages involving
utf-8-validate
andbufferutil
(some dependencies deep down the dependency tree), you can just ignore them, given the optional nature of these components' compilation.Run
node examples/fbptestxx.js
, wherefbptestxx
is any of the tests listed above. If tracing is desired, change the value of thetrace
variable at the bottom offbptestxx.js
totrue
.All these tests can be run sequentially by running
examples/fbptests.bat
, or by runningexamples/fbptests.sh
underbash
.
Important - BitDefender Antivirus 2016 anti-ransomware feature seems to interfere with git
- we suggest you leave it turned off while working with git
.
Full install
If you wish to eliminate the errors mentioned in point #3 under Install, you will need to install Python 2.x and Visual Studio Express for Desktop 2013. This doesn't seem to guarantee an error-free npm install
, however. Still jsfbp
works fine, even with these errors.
- Install Node.js
- Install Python 2.x
- Install Visual Studio Express for Desktop 2013 (click on http://go.microsoft.com/fwlink/?LinkId=532500&clcid=0x409 )
- Clone or download this project
- Open a new shell (The shell should not have been opened from before the Visual Studio installation because then the PATH and other environment variables are not yet updated.)
- Optionally prepend Python 2.x to your PATH if you haven't already done so
- e.g.
SET PATH=C:\path\to\python2-directory\;%PATH%
- Execute
npm install
- Run
node examples/fbptestxx.js
, wherefbptestxx
is any of the tests listed above. If tracing is desired, change the value of thetrace
variable at the bottom offbptestxx.js
totrue
. - Install requires the following
npm
packages:parsefbp
,fibers
,mocha
,chai
,lodash
andmocha-fibers
- you may have to donpm
installs for some or all of these. - All these tests can be run sequentially by running
examples/fbptests.bat
, or by runningexamples/fbptests.sh
underbash
.
Important - BitDefender Antivirus 2016 anti-ransomware feature seems to interfere with git
- we suggest you leave it turned off while working with git
.
Testing with Mocha
The folder called test
contains a number of Mocha tests.
- Run
npm test
to execute a series of tests (all thefbptestxx.js
tests in sequence). - Alternatively, you can directly execute
node ./node_modules/mocha/bin/mocha --recursive --require test/test_helper.js
in case you need to adjust the path to Node's binary or pass further parameters to Mocha.
Testing Sample HTTP Server
Run node examples/httpserver/fbphttpserver.js
, which is a simple HTTP server which is similar to the one in the sample at: http://blog.modulus.io/build-your-first-http-server-in-nodejs
NOTE: The HTTP server components are currently all custom components, based on the components used in the simple web socket chat server described below.
Testing Simple Web Socket Chat Server
Run node examples/websocketchat/fbptestwschat.js
, which is a simple web socket chat server which responds to any request by broadcasting it to all connected clients. It is similar to the chat sample at: http://socket.io/get-started/chat/ except for serving the client HTML.
examples/websocketchat/index.html
is intended as a simple chat client for testing with fbptestwschat.js
. If Firefox doesn't work for you, Chrome and Safari will work.
Just enter any string into the input field, and click on Send
, and it will broadcast it to all clients that are connected.
Click on the Stop WS
button, and the network will come down.
Tracing
Here is a sample section of the trace output for fbptest08.js
:
recvr recv OK: externally to the processes. These black box processes can be rec
onnected endlessly
data: externally to the processes. These black box processes can be reconnected
endlessly
recvr IP dropped with: externally to the processes. These black box processes ca
n be reconnected endlessly
recvr recv from recvr.IN
Yield/return: state of future events queue:
- reverse2 - status: ACTIVE
---
---
reverse2 send OK
reverse2 IP dropped with: si PBF .yllanretni degnahc eb ot gnivah tuohtiw snoit
acilppa tnereffid mrof ot
reverse2 recv from reverse2.IN
reverse2 recv OK: .detneiro-tnenopmoc yllarutan suht
reverse2 send to reverse2.OUT: thus naturally component-oriented.
Yield/return: state of future events queue:
- recvr - status: ACTIVE
---
---
recvr recv OK: to form different applications without having to be changed inter
nally. FBP is
Performance
The volume test case (fbptestvl
) with 100,000,000 IPs running through three processes took 164 seconds, on my machine
which has 4 AMD Phenom(tm) II X4 925 processors.
Since there are two connections, giving a total of 200,000,000 send/receive pairs, this works out to approx. 0.82 microsecs per send/receive pair. Of course, as it is JavaScript, this test only uses 1 core intensively, although there is some matching activity on the other cores (why...?!)