将功能发布到webworker

时间:2017-02-17 11:47:54

标签: javascript web-worker

如何从我的主线程向我的工作人员发送(副本)功能?

每当我尝试:worker.postMessage({data, func: (data) => data)时,firefox都会给我一条错误消息: DataCloneError:无法克隆该对象。

对于Chrome,消息有所不同,但错误仍然存​​在:未捕获的DOMException:无法执行' postMessage' on' Worker&#39 ;:无法克隆对象。

2 个答案:

答案 0 :(得分:1)

是的,有可能,我做到了,并且我可以创建没有js文件的网络工作者,只使用使用javascript代码生成的Blob文件。



setInterval(()=>{console.log("non bloked " + Math.random())}, 900)

console.log("starting blocking code in Worker")
console.time("blocked")

genericWorker(window, ["blockCpu", function (block){    
    block(10000) //This blockCpu function is defined below
    return `\n\nbla ${123123*2312} bla \n` //This is catched in the resolved promise

}]).then(function (result){
    console.timeEnd("blocked")
    console.log("End of blocking code", result)
})
.catch(function(error) { console.log(error) })


/*  A Web Worker that does not use a File, it create that from a Blob
    @cb_context, The context where the callback functions arguments are, ex: window
    @cb, ["fn_name1", "fn_name2", function (fn1, fn2) {}]
        The callback will be executed, and you can pass other functions to that cb
*/
function genericWorker(cb_context, cb) {
    return new Promise(function (resolve, reject) {

        if (!cb || !Array.isArray(cb))
            return reject("Invalid data")

        var callback = cb.pop()
        var functions = cb

        if (typeof callback != "function" || functions.some((fn)=>{return typeof cb_context[fn] != "function"}))
            return reject(`The callback or some of the parameters: (${functions.toString()}) are not functions`)

        if (functions.length>0 && !cb_context)
            return reject("context is undefined")

        callback = fn_string(callback) //Callback to be executed
        functions = functions.map((fn_name)=> { return fn_string( cb_context[fn_name] ) })

        var worker_file = window.URL.createObjectURL( new Blob(["self.addEventListener('message', function(e) { var bb = {}; var args = []; for (fn of e.data.functions) { bb[fn.name] = new Function(fn.args, fn.body); args.push(fn.name)}; var callback = new Function( e.data.callback.args, e.data.callback.body); args = args.map(function(fn_name) { return bb[fn_name] });  var result = callback.apply(null, args) ;self.postMessage( result );}, false)"]) )
        var worker = new Worker(worker_file)

        worker.postMessage({ callback: callback, functions: functions })

        worker.addEventListener('error', function(error){ return reject(error.message) })

        worker.addEventListener('message', function(e) {
            resolve(e.data), worker.terminate()
        }, false)

        //From function to string, with its name, arguments and its body
        function fn_string (fn) {
            var name = fn.name, fn = fn.toString()

            return { name: name, 
                args: fn.substring(fn.indexOf("(") + 1, fn.indexOf(")")),
                body: fn.substring(fn.indexOf("{") + 1, fn.lastIndexOf("}"))
            }
        }
    })
}

//random blocking function
function blockCpu(ms) {
    var now = new Date().getTime();
    var result = 0
    while(true) {
        result += Math.random() * Math.random();
        if (new Date().getTime() > now +ms)
            return;
    }   
}




答案 1 :(得分:0)

尚未对此进行测试,但似乎从规范中,只有可以发送给Worker的对象才是“Transferable”对象: https://developer.mozilla.org/en-US/docs/Web/API/Transferable

我找到了一些例子,在第一个例子中没有详细说明这个过程,但我猜他使用了一种类型或URL编码,对于一个对象,它可以像第二个例子一样转换为JSON。

How to pass functions to JavaScript Web Worker

Passing objects to a web worker

我必须在几天内完成这项工作,我可以随时了解我将要测试的内容。