|
@@ -1,221 +0,0 @@
|
1
|
|
-var exec = cordova.require('cordova/exec');
|
2
|
|
-
|
3
|
|
-var MULTICAST_HOST = "224.0.0.236";
|
4
|
|
-var MULTICAST_PORT = 60540;
|
5
|
|
-
|
6
|
|
-module.exports = function(options) {
|
7
|
|
-
|
8
|
|
- var instanceId = guid();
|
9
|
|
-
|
10
|
|
- var exports = {};
|
11
|
|
- var serviceInfos = {};
|
12
|
|
- var events = {};
|
13
|
|
-
|
14
|
|
- var options = options || {};
|
15
|
|
- var host = options.host || MULTICAST_HOST;
|
16
|
|
- var port = options.port || MULTICAST_PORT;
|
17
|
|
-
|
18
|
|
- // Services is a map (service.host+":"+service.port+":"+service.name) => Object serviceInfo
|
19
|
|
- // where serviceInfo is an object like
|
20
|
|
- // { isOurService : Boolean, service: Object }
|
21
|
|
-
|
22
|
|
- // =====
|
23
|
|
- // Set up UDP Multicast connection
|
24
|
|
- // =====
|
25
|
|
-
|
26
|
|
- function initCallbackSuccess() {
|
27
|
|
- queryForServices();
|
28
|
|
- }
|
29
|
|
- function initCallbackFail(err) {
|
30
|
|
- // ...
|
31
|
|
- }
|
32
|
|
- exec(initCallbackSuccess, initCallbackFail, 'Diont', 'init', [ instanceId, host, port ]);
|
33
|
|
-
|
34
|
|
-
|
35
|
|
- function messageCallback(message) {
|
36
|
|
- try {
|
37
|
|
- var messageObject = JSON.parse(message);
|
38
|
|
- var eventType = messageObject.eventType;
|
39
|
|
- var fromDiontId = messageObject.fromDiontInstance;
|
40
|
|
- if (fromDiontId == instanceId) {
|
41
|
|
- return;
|
42
|
|
- }
|
43
|
|
- if (eventType == "query") {
|
44
|
|
- var serviceInfosToAnnounce = [];
|
45
|
|
- for(var index in serviceInfos) {
|
46
|
|
- serviceInfosToAnnounce.push(serviceInfos[index]);
|
47
|
|
- }
|
48
|
|
- sendAnnouncement(serviceInfosToAnnounce);
|
49
|
|
- } else {
|
50
|
|
- var receivedServiceInfos = messageObject.serviceInfos;
|
51
|
|
- for(var serviceInfoIndex in receivedServiceInfos) {
|
52
|
|
- var serviceInfo = receivedServiceInfos[serviceInfoIndex];
|
53
|
|
- if(!serviceInfo.service) {
|
54
|
|
- continue;
|
55
|
|
- }
|
56
|
|
- var service = serviceInfo.service;
|
57
|
|
- if (!service.host || !service.port || !service.name) {
|
58
|
|
- continue;
|
59
|
|
- }
|
60
|
|
- if (eventType == "announce") {
|
61
|
|
- var id = service.host + ":" + service.port + ":" + service.name;
|
62
|
|
- if(!serviceInfos[id]) {
|
63
|
|
- var serviceInfo = serviceInfos[id] = {
|
64
|
|
- isOurService: false,
|
65
|
|
- service: service
|
66
|
|
- }
|
67
|
|
- if (events["serviceAnnounced"]) {
|
68
|
|
- for(var callbackId in events["serviceAnnounced"]) {
|
69
|
|
- var callback = events["serviceAnnounced"][callbackId];
|
70
|
|
- callback(serviceInfo);
|
71
|
|
- }
|
72
|
|
- }
|
73
|
|
- }
|
74
|
|
- } else if (eventType == "renounce") {
|
75
|
|
- var id = service.host + ":" + service.port + ":" + service.name;
|
76
|
|
- if(serviceInfos[id]) {
|
77
|
|
- var serviceInfo = serviceInfos[id];
|
78
|
|
- delete serviceInfos[id];
|
79
|
|
- if (events["serviceRenounced"]) {
|
80
|
|
- for(var callbackId in events["serviceRenounced"]) {
|
81
|
|
- var callback = events["serviceRenounced"][callbackId];
|
82
|
|
- callback(serviceInfo);
|
83
|
|
- }
|
84
|
|
- }
|
85
|
|
- }
|
86
|
|
- }
|
87
|
|
- }
|
88
|
|
- }
|
89
|
|
- } catch(e) {
|
90
|
|
- // ignore...
|
91
|
|
- }
|
92
|
|
- }
|
93
|
|
- exec(messageCallback, null, 'Diont', 'listen', [ instanceId ]);
|
94
|
|
-
|
95
|
|
- // =====
|
96
|
|
- // Exported functions
|
97
|
|
- // =====
|
98
|
|
-
|
99
|
|
- exports.announceService = function(service) {
|
100
|
|
- if (!service.host) {
|
101
|
|
- chrome.system.network.getNetworkInterfaces(function(networkInterfaces) {
|
102
|
|
- var eth1 = networkInterfaces[1],
|
103
|
|
- address = eth1.address;
|
104
|
|
- service.host = address;
|
105
|
|
- });
|
106
|
|
- }
|
107
|
|
- if (!service.host || !service.port || !service.name) {
|
108
|
|
- return false;
|
109
|
|
- }
|
110
|
|
- var id = service.host + ":" + service.port + ":" + service.name;
|
111
|
|
- if(!serviceInfos[id]) {
|
112
|
|
- var serviceInfo = serviceInfos[id] = {
|
113
|
|
- isOurService: true,
|
114
|
|
- service: service
|
115
|
|
- }
|
116
|
|
- sendAnnouncement(serviceInfo);
|
117
|
|
- }
|
118
|
|
- }
|
119
|
|
-
|
120
|
|
- exports.renounceService = function(service) {
|
121
|
|
- if (!service.host || !service.port || !service.name) {
|
122
|
|
- return false;
|
123
|
|
- }
|
124
|
|
- var id = service.host + ":" + service.port + ":" + service.name;
|
125
|
|
- if(serviceInfos[id] && serviceInfos[id].isOurService) {
|
126
|
|
- sendRenouncement(serviceInfos[id]);
|
127
|
|
- delete serviceInfos[id];
|
128
|
|
- }
|
129
|
|
- }
|
130
|
|
-
|
131
|
|
- exports.queryForServices = function() {
|
132
|
|
- queryForServices();
|
133
|
|
- }
|
134
|
|
-
|
135
|
|
- exports.on = function(eventName, callback) {
|
136
|
|
- if(!events[eventName]) {
|
137
|
|
- events[eventName] = {};
|
138
|
|
- }
|
139
|
|
- var callbackId = guid();
|
140
|
|
- events[eventName][callbackId] = callback;
|
141
|
|
- return callbackId;
|
142
|
|
- }
|
143
|
|
-
|
144
|
|
- exports.off = function(eventName, callbackId) {
|
145
|
|
- if(!events[eventName]) {
|
146
|
|
- return false;
|
147
|
|
- }
|
148
|
|
- delete events[eventName][callbackId];
|
149
|
|
- return true;
|
150
|
|
- }
|
151
|
|
-
|
152
|
|
- exports.getServiceInfos = function() {
|
153
|
|
- return JSON.parse(JSON.stringify(serviceInfos));
|
154
|
|
- }
|
155
|
|
-
|
156
|
|
- // =====
|
157
|
|
- // Helper functions
|
158
|
|
- // =====
|
159
|
|
-
|
160
|
|
- function generalSuccessCallback(success) {
|
161
|
|
- // ...
|
162
|
|
- }
|
163
|
|
-
|
164
|
|
- function generalFailCallback(error) {
|
165
|
|
- // ...
|
166
|
|
- }
|
167
|
|
-
|
168
|
|
- function sendAnnouncement(serviceInfo) {
|
169
|
|
- var serviceInfosToAnnounce = [];
|
170
|
|
- if (serviceInfo instanceof Array) {
|
171
|
|
- serviceInfosToAnnounce = serviceInfo;
|
172
|
|
- } else {
|
173
|
|
- serviceInfosToAnnounce = [serviceInfo];
|
174
|
|
- }
|
175
|
|
- var messageObject = {
|
176
|
|
- eventType: "announce",
|
177
|
|
- fromDiontInstance: instanceId,
|
178
|
|
- serviceInfos: serviceInfosToAnnounce
|
179
|
|
- }
|
180
|
|
- var message = JSON.stringify(messageObject);
|
181
|
|
- exec(generalSuccessCallback, generalFailCallback, 'Diont', 'send', [ instanceId, message, host, port ]);
|
182
|
|
- }
|
183
|
|
-
|
184
|
|
- function sendRenouncement(serviceInfo) {
|
185
|
|
- var serviceInfosToRenounce = [];
|
186
|
|
- if (serviceInfo instanceof Array) {
|
187
|
|
- serviceInfosToRenounce = serviceInfo;
|
188
|
|
- } else {
|
189
|
|
- serviceInfosToRenounce = [serviceInfo];
|
190
|
|
- }
|
191
|
|
- var messageObject = {
|
192
|
|
- eventType: "renounce",
|
193
|
|
- fromDiontInstance: instanceId,
|
194
|
|
- serviceInfos: serviceInfosToRenounce
|
195
|
|
- }
|
196
|
|
- var message = JSON.stringify(messageObject);
|
197
|
|
- exec(generalSuccessCallback, generalFailCallback, 'Diont', 'send', [ instanceId, message, host, port ]);
|
198
|
|
- }
|
199
|
|
-
|
200
|
|
- function queryForServices() {
|
201
|
|
- var messageObject = {
|
202
|
|
- eventType: "query",
|
203
|
|
- fromDiontInstance: instanceId
|
204
|
|
- }
|
205
|
|
- var message = JSON.stringify(messageObject);
|
206
|
|
- exec(generalSuccessCallback, generalFailCallback, 'Diont', 'send', [ instanceId, message, host, port ]);
|
207
|
|
- }
|
208
|
|
-
|
209
|
|
- function guid() {
|
210
|
|
- function s4() {
|
211
|
|
- return Math.floor((1 + Math.random()) * 0x10000).toString(16).substring(1);
|
212
|
|
- }
|
213
|
|
- return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + s4() + s4();
|
214
|
|
- }
|
215
|
|
-
|
216
|
|
- // =====
|
217
|
|
- // Export
|
218
|
|
- // =====
|
219
|
|
-
|
220
|
|
- return exports;
|
221
|
|
-}
|