-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a service socket to enable out of band access to the process comm…
…andline
- Loading branch information
Showing
5 changed files
with
146 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#!/usr/bin/env node | ||
/* | ||
** CyTube Service Socket Commandline | ||
*/ | ||
|
||
var Config = require("./lib/config"); | ||
Config.load("config.yaml"); | ||
|
||
if(!Config.get("service-socket.enabled")){ | ||
console.error('The Service Socket is not enabled.'); | ||
process.exit(1); | ||
} | ||
|
||
const SOCKETFILE = Config.get("service-socket.socket"); | ||
var net = require('net'); | ||
|
||
var client = net.createConnection(SOCKETFILE) | ||
.on('connect', () => { | ||
console.log("Connected."); | ||
}) | ||
.on('data', (msg) => { | ||
msg = msg.toString(); | ||
|
||
if(msg === '__disconnect'){ | ||
console.log('Server shutting down. Terminating.') | ||
return cleanup(); | ||
} | ||
|
||
// Generic message handler | ||
console.info('Server:', data) | ||
}) | ||
.on('error', (data) => { | ||
console.error('Unable to connect to Service Socket.'); | ||
process.exit(1); | ||
}) | ||
; | ||
|
||
var inputbuffer = ""; | ||
process.stdin.on("data", (data) => { | ||
inputbuffer += data; | ||
if (inputbuffer.indexOf("\n") !== -1) { | ||
var line = inputbuffer.substring(0, inputbuffer.indexOf("\n")); | ||
inputbuffer = inputbuffer.substring(inputbuffer.indexOf("\n") + 1); | ||
// Let the client escape | ||
if(line === 'exit'){ return cleanup(); } | ||
if(line === 'quit'){ return cleanup(); } | ||
client.write(line); | ||
} | ||
}); | ||
|
||
function cleanup(){ | ||
console.log('\n',"Terminating.",'\n'); | ||
client.end(); | ||
process.exit(0); | ||
} | ||
process.on('SIGINT', cleanup); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
var fs = require('fs'); | ||
var net = require('net'); | ||
|
||
export default class ServiceSocket { | ||
|
||
constructor() { | ||
this.connections = {}; | ||
} | ||
|
||
init(handler, socket){ | ||
this.handler = handler; | ||
this.socket = socket; | ||
|
||
fs.stat(this.socket, (err, stats) => { | ||
if (err) { | ||
return this.openServiceSocket(); | ||
} | ||
fs.unlink(this.socket, (err) => { | ||
if(err){ | ||
console.error(err); process.exit(0); | ||
} | ||
return this.openServiceSocket(); | ||
}); | ||
}); | ||
} | ||
|
||
openServiceSocket(){ | ||
this.server = net.createServer((stream) => { | ||
let id = Date.now(); | ||
this.connections[id] = stream; | ||
stream.on('end', () => { | ||
delete this.connections[id]; | ||
}); | ||
stream.on('data', (msg) => { | ||
this.handler(msg.toString()); | ||
}); | ||
}).listen(this.socket); | ||
process.on('exit', this.closeServiceSocket); | ||
} | ||
|
||
closeServiceSocket() { | ||
if(Object.keys(this.connections).length){ | ||
let clients = Object.keys(this.connections); | ||
while(clients.length){ | ||
let client = clients.pop(); | ||
this.connections[client].write('__disconnect'); | ||
this.connections[client].end(); | ||
} | ||
} | ||
this.server.close(); | ||
} | ||
|
||
} |