Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to pass an object to a web worker through the postMessage function.
This object is a square that has a couple of functions to draw himself on a canvas and some other things. The web worker mus return an array of this objects.
The problem is that when I call the postMessage function with this object, I get an this error:

Uncaught Error: DATA_CLONE_ERR: DOM Exception 25

I get this both sending the object to the worker and the other way arround.
I think the error is because javascript must serialize the object, but can't do it because the object has functions built-in.

Does anyone ever had a similar problem? Do you know some workarround to this?
Thanks in advance.

share|improve this question
I agree with your assessment: the browser is trying to serialize the data. It looks like you are working with Firefox. Safari is even worse, it will only take strings. – Hemlock Oct 9 '11 at 17:08
No, I'm working with chrome. But I guess all browsers behave somehow similar about this. – dgiulian Oct 10 '11 at 14:10

3 Answers

up vote 13 down vote accepted

You cannot send objects to web workers, only strings. So you should use JSON.parse and JSON.stringify to convert objects to and from strings. Which means that the methods for the objects you send to your web worker will be removed/unavailable, and you will need to provide the necessary methods to the objects on the web worker's side of the environment.

share|improve this answer
I've tryied sending Arrays, and that worked. I'll try to send some objet without the member functions, and see what happens. Thanks a lot for your help. – dgiulian Oct 10 '11 at 14:09
1  
Some (most) browsers automatically JSON.parse/JSON.stringify the objects that you try to pass to/from web workers, but they don't all do that, so you should assume that none of them do that. – erikvold Oct 10 '11 at 23:16

As you suspected objects with functions cannot be posted. The same goes for objects with recursive references, but this has changed in some browsers lately. Instead of risking doing manual and costly redundant serialization for every post you can perform a test at the beginning of your script to determine which functions to use for sending/receiving data.

I've had the same problem and solved it by moving almost all code into the worker and just keeping a renderer (wrapping the 2d context renderer) in the main thread. In the worker I serialize the different draw calls meant for the canvas into just numbers in an (typed) array. This array is then posted to the main thread.

So for instance when I want to draw an image I invoke the drawImage() method on my worker renderer instance in the worker. The call is translated into something like [13,1,50,40] which corresponds to the draw method enum, image unique id and its xy coordinates. Multiple calls are buffered and put in the same array. At the end of the update loop the array is posted to the main thread. The receiving main renderer instance parses the array and perform the appropriate draw calls.

share|improve this answer

The real problem with object and webworkers is with the methods of that objects. A object should not have methods just properties.

Ex:

var myClass = function(){
    this.a = 5;
    this.myMethod = function(){}
}
var notParseableObject = new myClass();


var myClass2 = function(){
    this.a = 5;
}
var parseableObject = new myClass2();

The first wont work (with the mentioned error message) with postMessage and the second will work.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.