Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Alexandra Rogova
jio
Commits
c656fe29
Commit
c656fe29
authored
Apr 17, 2014
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jIO.util.worker added
parent
6857cecb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
75 additions
and
1 deletion
+75
-1
src/jio/core/util.js
src/jio/core/util.js
+75
-1
No files found.
src/jio/core/util.js
View file @
c656fe29
/*jslint indent: 2, maxlen: 80, nomen: true, sloppy: true */
/*global exports, Blob, FileReader, RSVP, hex_sha256, XMLHttpRequest,
constants */
constants
, URL, Worker
*/
/**
* Do not exports these tools unless they are not writable, not configurable.
...
...
@@ -629,3 +629,77 @@ function range(start, stop, step, callback) {
});
}
exports
.
util
.
range
=
range
;
/**
* worker(script) : task
*
* Produces a function `task` which is able to execute a `script` in a web
* worker. Each time the `task` is launched, a new web worker is created and
* executed.
*
* `task` can take one serializable parameter which will be the `onmessage`
* event data in the web worker.
*
* `script` can be a function or a string. If the script is a string, then it
* should contains an assignement to the global `onmessage` listener.
* Otherwise, the `script` function will be automatically assigned to
* `onmessage`.
*
* var task = worker(function (event) {
* /\*global resolve, reject, notify *\/
* notify(event.data + 1);
* notify(event.data + 2);
* resolve(event.data + 3);
* });
* task(3).then(console.log, console.warn, console.info);
* // (i)> 4
* // (i)> 5
* // > 6
*
* @param {Function|String} script The script to run in the web worker.
* @return {Function} The worker function.
*/
function
worker
(
script
)
{
if
(
typeof
script
===
"
function
"
)
{
script
=
"
onmessage =
"
+
script
.
toString
()
+
"
;
"
;
}
script
=
URL
.
createObjectURL
(
new
Blob
([
'
function resolve(v){postMessage({command:"resolve",value:v});}
'
+
'
function reject(v){postMessage({command:"reject",value:v});}
'
+
'
function notify(v){postMessage({command:"notify",value:v});}
'
+
'
onerror=function(e){reject(e);e.preventDefault();};
'
+
script
],
{
"
type
"
:
"
application/javascript
"
}));
return
function
(
data
)
{
var
w
=
new
Worker
(
script
);
return
new
RSVP
.
Promise
(
function
(
done
,
fail
,
notify
)
{
w
.
onmessage
=
function
(
event
)
{
if
(
typeof
event
.
data
===
"
object
"
&&
event
.
data
!==
null
)
{
switch
(
event
.
data
.
command
)
{
case
"
resolve
"
:
done
(
event
.
data
.
value
);
w
.
terminate
();
return
;
case
"
reject
"
:
fail
(
event
.
data
.
value
);
w
.
terminate
();
return
;
case
"
notify
"
:
if
(
typeof
notify
===
"
function
"
)
{
notify
(
event
.
data
.
value
);
}
return
;
}
}
};
w
.
onerror
=
function
(
event
)
{
fail
(
event
);
w
.
terminate
();
};
w
.
postMessage
(
data
);
},
function
()
{
w
.
terminate
();
});
};
}
exports
.
util
.
worker
=
worker
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment