node-ipc/lib/client.js

159 lines
4.6 KiB
JavaScript
Raw Normal View History

2014-02-22 20:13:31 +11:00
var net = require('net'),
eventParser = require('../lib/eventParser.js'),
pubsub = require('event-pubsub');
function init(config,log){
var client={
config : config,
socket : false,
connect : connect,
emit : emit,
log : log,
retriesRemaining:config.maxRetries||0
2014-02-22 20:13:31 +11:00
}
new pubsub(client);
return client;
}
function emit(type,data){
this.log('dispatching event to '.debug, this.id.variable, this.path.variable,' : ', type.data,',', data);
if(!data)
data=false;
this.socket.write(
eventParser.format(
{
type:type,
data:data
}
)
);
};
function connect(){
//init client object for scope persistance especially inside of socket events.
var client=this;
client.log('requested connection to '.debug, client.id.variable, client.path.variable);
if(!this.path){
client.log('\n\n######\nerror: '.error, client.id .info,' client has not specified socket path it wishes to connect to.'.error);
return;
}
2014-02-26 12:15:43 +11:00
if(!client.port){
client.log('Connecting client on Unix Socket :'.debug, client.path.variable);
2014-02-26 12:15:43 +11:00
client.socket = net.connect(
{
path:client.path
}
);
}else{
client.log('Connecting client via TCP to'.debug, client.path.variable ,client.port);
2014-02-26 12:15:43 +11:00
client.socket = net.connect(
{
port:client.port,
host:client.path
}
);
}
2014-02-22 20:13:31 +11:00
client.socket.setEncoding(this.config.encoding);
client.socket.on(
'error',
function(err){
client.log('\n\n######\nerror: '.error, err);
}
);
client.socket.on(
'connect',
function(){
client.trigger('connect');
client.retriesRemaining=client.config.maxRetries||0;
client.log('retrying reset')
2014-02-22 20:13:31 +11:00
}
);
client.socket.on(
'close',
function(){
client.log('connection closed'.notice ,client.id.variable , client.path.variable, client.retriesRemaining+' of '+client.config.maxRetries);
if(
client.config.maxRetries!==false && (
client.config.stopRetrying || client.retriesRemaining<1
)
){
client.log(
client.config.id.variable,
'exceeded connection rety amount of'.warn,
" or stopRetrying flag set."
);
client.socket.destroy();
client=undefined;
return;
}
client.isRetrying=true;
2014-02-22 20:13:31 +11:00
setTimeout(
(
function(client){
return function(){
client.retriesRemaining--;
client.isRetrying=false;
2014-02-22 20:13:31 +11:00
client.connect();
setTimeout(
function(){
if(!client.isRetrying)
2014-09-01 03:50:34 +10:00
client.retriesRemaining=client.config.maxRetries;
},
100
)
2014-02-22 20:13:31 +11:00
}
}
)(client),
client.config.retry
);
client.trigger('disconnect');
}
);
client.socket.on(
'data',
function(data) {
client.log('## recieved events ##'.rainbow);
2014-03-04 07:02:56 +11:00
if(!this.ipcBuffer)
this.ipcBuffer='';
data=(this.ipcBuffer+=data);
if(data.slice(-1)!=eventParser.delimiter || data.indexOf(eventParser.delimiter) == -1){
2014-09-24 20:26:05 +10:00
client.log('Implementing larger buffer for this socket message. You may want to consider smaller messages'.notice);
2014-03-04 07:02:56 +11:00
return;
}
this.ipcBuffer='';
2014-02-22 20:13:31 +11:00
var events = eventParser.parse(data);
var eCount = events.length;
for(var i=0; i<eCount; i++){
var e=JSON.parse(
events[i]
);
client.log('detected event of type '.debug, e.type.data, e.data);
client.trigger(
e.type,
e.data
);
}
}
);
}
module.exports=init;