-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscrape_definition_client.js
55 lines (38 loc) · 1.28 KB
/
scrape_definition_client.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
module.exports = function (){
var events = require('events');
var eventEmitter = new events.EventEmitter();
var my_ws = open_ws_add_listeners(eventEmitter);
return {
rEvent: eventEmitter,
lookup_definition: function(word){
if (client.readyState === client.OPEN) {
console.log('Beautiful Soup: now passing word "' + word + '" to Python via WS');
client.send(word);
}
}
};
}
var W3CWebSocket = require('websocket').w3cwebsocket;
var client = undefined;//reference to the websocket
function open_ws_add_listeners(my_emitter){
client = new W3CWebSocket('ws://127.0.0.1:9000/');
client.onerror = function() {
console.log('Beautiful Soup: Connection Error');
};
client.onopen = function() {
console.log('Beautiful Soup: WebSocket Client Connected');
};
client.onclose = function() {
console.log('Beautiful Soup: Client Closed');
setTimeout(function(){
console.log("5 seconds elapsed since unwanted socket closure - attempting to reopen...");
client = open_ws_add_listeners(my_emitter);
}, 5 * 1000);//attempt to repoen in 5 seconds
};
client.onmessage = function(e) {
if (typeof e.data === 'string') {
my_emitter.emit('searchComplete', e.data);
}
};
return client;
}