-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb-worker.html
387 lines (369 loc) · 10.6 KB
/
web-worker.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
<link rel="import" href="../polymer/polymer-element.html">
<link rel="import" href="../polymer/lib/utils/flattened-nodes-observer.html">
<dom-module id="web-worker">
<template>
<style>
::slotted(*) {
display: none;
}
</style>
<slot id="slot"></slot>
</template>
<script>
/**
* `web-worker`
* ## Installation
* ```
* bower install --save PolymerVis/web-worker
* ```
*
* ## Documentation and demos
* More examples and documentation can be found at `web-worker` [webcomponents page](https://www.webcomponents.org/element/PolymerVis/web-worker).
*
* ## Disclaimers
* PolymerVis is a personal project and is NOT in any way affliated with Polymer or Google.
*
* # `web-worker`
* `web-worker` is a Polymer 2.0 element to provide an easy way to data-bind with a [web worker](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers)-based task. Compute-intensive tasks are usually done on a web worker to prevent blocking of the UI thread.
*
* ## Quick start
* ### Create a web worker
* Creating a web worker from a URL.
* ```html
* <web-worker url="some_script.js"></web-worker>
* ```
*
* Creating a web worker through `script` attribute.
* ```html
* <web-worker script="postMessage('hello!');"></web-worker>
* ```
*
* Creating a web worker from inline code.
* ```html
* <web-worker>
* <script type="text/js-worker">
* postMessage('hello!');
* <\/script>
* </web-worker>
* ```
*
* ### Message from web worker
* Data-bind to the last message/reply from the worker with the `last-message` attribute.
* ```html
* <web-worker last-message="{{reply}}">
* <script type="text/js-worker">
* postMessage('hello!');
* <\/script>
* </web-worker>
* ```
*
* Or listen to the `message` event.
* ```html
* <web-worker on-message="onReply">
* <script type="text/js-worker">
* postMessage('hello!');
* <\/script>
* </web-worker>
* ```
*
* ### Message to web worker
* You can post a message to the worker with `postMessage` function or through one of the 3 message attributes (`text-to-worker`, `object-to-worker`, or `array-to-worker`).
*
* `postMessage` function
* ```js
* var ele = document.createElement('web-worker'); // create web-worker element
* ele.url = 'some_script.js'; // set url to worker script
* ele.postMessage('hello!') // return a Promise to the next message from worker
* .then(reply => console.log(reply));
* ```
*
* Data-binding to `text-to-worker`, `object-to-worker`, or `array-to-worker`
* ```html
* <web-worker url="some_script.js"
* text-to-worker="hello"
* last-message="{{reply}}"></web-worker>
* ```
*
* ### Running ad-hoc functions
* You can also wrap a function and execute it in a once-off web worker with `executeFnOnce`. This function must be stateless and has no external dependencies, as the function and arguments are serialized and executed in the worker context.
*
* ```js
* document.createElement('web-worker') // create web-worker element
* .executeFnOnce((a, b) => a + b, 1, 2) // serialized function and run in worker
* .then(sum => alert('1 + 2 = ' + sum)); // return a Promise to the output
* ```
*
* ### Running ad-hoc jobs
* You can execute once-off web workers with `executeUrlOnce`.
* ```js
* document.createElement('web-worker')
* .executeUrlOnce('echo.js', 'hello')
* .then(msg => console.log('msg'));
* ```
*
* @customElement
* @polymer
* @demo demo/index.html Basic demo
* @demo demo/data-bind.html Data-binding demo
*/
class WebWorker extends Polymer.Element {
static get is() {
return 'web-worker';
}
static get properties() {
return {
/**
* URL to the web-worker script.
* @type {String}
*/
url: {
type: String,
value: null
},
/**
* Text content of the script for the web-worker. Will be converted to
* `object-url` to create a web worker.
* @type {String}
*/
script: {
type: String,
notify: true,
value: null
},
/**
* Object URL for the web-worker script.
* @type {String}
*/
objectUrl: {
type: String,
notify: true,
value: null
},
/**
* Reference to the web-worker.
* @type {window.Worker}
*/
worker: {
type: Object,
notify: true,
readOnly: true,
computed: '_createWebWorker(url,objectUrl)'
},
/**
* Message to send to the worker. Will trigger `postMessage` function.
* @type {String}
*/
textToWorker: {
type: String
},
/**
* Message to send to the worker. Will trigger `postMessage` function.
* @type {Object}
*/
objectToWorker: {
type: Object
},
/**
* Message to send to the worker. Will trigger `postMessage` function.
* @type {Array}
*/
arrayToWorker: {
type: Array
},
/**
* Last message from the worker.
* @type {{data: Any}}
*/
lastMessage: {
type: Object,
notify: true,
readOnly: true
},
/**
* A promise to the latest postMessage's reply.
* @type {Promise}
*/
replied: {
type: Object,
notify: true,
readOnly: true,
value: null
},
/**
* Most recent error message
* @type {String}
*/
lastError: {
type: String,
notify: true,
readOnly: true,
reflectToAttribute: true
},
/**
* @type {MutationObserver}
*/
_observer: Object
};
}
static get observers() {
return [
'_getObjectUrl(script)',
'postMessage(textToWorker,null,worker)',
'postMessage(objectToWorker,null,worker)',
'postMessage(arrayToWorker,null,worker)'
];
}
ready() {
super.ready();
if (!window.Worker) {
return console.warn('Your browser do not support webworker!');
}
this._getInlineScript();
}
connectedCallback() {
super.connectedCallback();
this._observer = new Polymer.FlattenedNodesObserver(
this.$.slot,
this._getInlineScript.bind(this)
);
}
disconnectedCallback() {
super.disconnectedCallback();
if (this._observer) this._observer.disconnect();
if (this.worker) this.worker.terminate();
}
_getObjectUrl(script) {
this.objectUrl = URL.createObjectURL(
new Blob([script], {type: 'text/javascript'})
);
}
_getInlineScript() {
var nodes = this.shadowRoot
.querySelector('slot')
.assignedNodes({flatten: true});
if (!nodes || nodes.length === 0) return;
var textArray = Array.prototype.map.call(nodes, n => n.textContent);
this.script = textArray.join('\n');
}
_createWebWorker(url, objectUrl) {
if (!window.Worker) {
this._onError('web worker not supported in your browser!');
return;
}
var _url_ = url && url.length > 0 ? url : objectUrl;
if (!_url_) return;
try {
var worker = new Worker(_url_);
} catch (error) {
this._onError(error);
return;
}
var onerror = this._onError.bind(this);
worker.onmessage = this._onMessage.bind(this);
worker.onerror = onerror;
worker.onmessageerror = onerror;
return worker;
}
_onError(e) {
if (!e) return;
this._setLastError(e.toString());
this.dispatchEvent(new CustomEvent('error', {detail: e}));
}
_onMessage(e) {
if (!e) return;
this._setLastMessage(e.data);
this.dispatchEvent(new CustomEvent('message', {detail: e.data}));
if (this._resolve) {
this._resolve(e.data);
this._resolve = null;
}
}
_callFnInWorker(fn, ...args) {
var blob = new Blob(
[
`postMessage((${fn.toString()}).apply(this,${JSON.stringify(
args
)})); close();`
],
{
type: 'application/javascript'
}
);
return URL.createObjectURL(blob);
}
/**
* Create a web-worker using the script provided by the `url`, and post the
* provided `msg` and `transferables` (optional). Expects a reply from the
* worker. Return a `Promise` to the reply from the worker.
* ```js
* document.createElement('web-worker')
* .executeUrlOnce('echo.js', 'hello')
* .then(msg => console.log('msg'));
* ```
* @param {String} url Url to the script to be executed.
* @param {Any} msg Message to the worker.
* @param {Transferables=} transferables Objects to transfer ownership (see Transferables).
* @return {Promise}
*/
executeUrlOnce(url, msg, transferables) {
return new Promise((resolve, reject) => {
let worker = new Worker(url);
worker.onerror = e => reject(e);
worker.onmessage = ({data}) => {
resolve(data);
worker.terminate();
};
worker.postMessage(msg, transferables);
});
}
/**
* Create a web-worker and execute the provided function `fn` with the `args`.
* Both the function and arguments are serialized into ObjectURL to be executed
* in the worker thread.The worker is terminated when the result is send back
* to the main thread.
* ```js
* document.createElement('web-worker')
* .executeFnOnce((a, b) => a + b, a, b)
* .then(sum => alert(`${a} + ${b} = ${sum}`));
* ```
* @param {Function} fn function to be execute in the worker thread.
* @param {Any} args arguments to be provided to the function.
* @return {Promise}
*/
executeFnOnce(fn, ...args) {
return new Promise((resolve, reject) => {
let worker = new Worker(this._callFnInWorker(fn, ...args));
worker.onerror = e => reject(e);
worker.onmessage = ({data}) => {
resolve(data);
worker.terminate();
};
});
}
/**
* Terminate the worker thread. The thread is killed immediately without an
* opportunity to complete its operations or clean up after itself.
* @return {WebWorker}
*/
terminate() {
if (this.worker) this.worker.terminate();
return this;
}
/**
* Post a message to the worker.
* @param {Any} msg Message to send over.
* @param {Array=} transferables See [Transferable-Objects-Lightning-Fast](https://developers.google.com/web/updates/2011/12/Transferable-Objects-Lightning-Fast)
* @return {WebWorker}
*/
postMessage(msg, transferables) {
if (msg && this.worker) this.worker.postMessage(msg, transferables);
var promise = new Promise(resolve => {
this._resolve = resolve;
});
this._setReplied(promise);
return promise;
}
}
window.customElements.define(WebWorker.is, WebWorker);
</script>
</dom-module>