Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What can I use with Web Workers?

I have a few questions about web workers

  • Does the worker have access to storage? E.g. indexedDB/webSQL and local storage of the file the worker was initiated from?

  • How can i include a file in a worker? I have a functions.js which has alot of quick app related functions and it really wont make sense to copy paste the file's contents in a worker only to have two different places up update my functions.

  • Can I have a DOM inside a worker? like load an audio file in a temp audio tag to read its duration and if it is playable or not. Not access dom of parent page, but have a DOM in the worker itself.

  • If the answers to any of the question is negative then how can/should it be done manually?

This is for a chrome app so I have access to the latest Chrome APIs and I don't need to care about backward compatibility.

like image 571
Achshar Avatar asked Sep 21 '11 06:09

Achshar


1 Answers

There is no DOM access of any kind from a web worker - period. ALL DOM manipulation must be done from the main JS thread. Web Workers can only communicate with the main thread via messaging.

This previous SO question tells you that web workers cannot access local storage, something that was easily found with a Google search.

That same thread has a list of what web workers can access.

It is unclear what you mean by "include a file in a worker". You can import scripts. I don't know what else you're asking about. You can use an ajax call to fetch data if that will help you with your audio file.

This sounds to me like you need to do some basic research about what you can and can't do with web workers (as there is a TON written about it on the web) and then come back with a lot more specific questions that incorporate that knowledge.

There are no hacks for web workers that let you do more than you are supposed to be able to do.

You can do work in the main JS thread and do it in little chunks with setTimeout if you have a lot of work to do and want to keep the main UI as responsive as possible. This is a very old design pattern that goes back to the days before threading was available or easy to use. It involves designing your work such that it can be done in little pieces with state stored in some persistent object and then you can repeatedly do small amounts of work and then return back, only to pick up the next piece of work on the next timer tick.

like image 182
jfriend00 Avatar answered Oct 12 '22 15:10

jfriend00