Agreed that removing this requirement:<br>

  <blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;" class="gmail_quote"><p>User agents must act as if <code><a href="http://www.w3.org/TR/html5/comms.html#messageport">MessagePort</a></code> objects have
  a strong reference to their entangled <code><a href="http://www.w3.org/TR/html5/comms.html#messageport">MessagePort</a></code>
  object.</p></blockquote>would make MessagePort implementation much easier, as it would remove the need to track reachability across multiple threads. This requirement can get tricky especially as both sides can be cloned, in-flight to a new owner, etc.<br>
<br>My only concern is that removing this requirement introduces non-deterministic behavior - if I have an entangled MessagePort and I register an onmessage() handler with it, then drop my reference to it, after which someone calls postMessage() on the entangled port, there's no way to tell if my onmessage() handler will be invoked ; it entirely depends on whether a GC happens first or not. That seems bad.<br>
<br>-atw<br><br><div class="gmail_quote">On Thu, May 7, 2009 at 3:28 PM, Maciej Stachowiak <span dir="ltr"><<a href="mailto:mjs@apple.com">mjs@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div style="word-wrap: break-word;"><div><br></div><div>I agree with Drew's assessment that MessagePorts in combination with Workers are extremely complicated to implement correctly, as currently specified. In fact, the design seems to push towards having lockable shared state, even though one potential advantage of the message passing design is to avoid locking and shared state.</div>
<div><br></div><div>Besides removing MessagePorts as a way to communicate with workers, another possibility is simplifying the life cycle requirements. For example, getting rid of the keepalive rule, whereby both MessagePorts remain live so long as either is otherwise live, would remove the majority of the complexity. I don't think the slight convenience of that rule is worth the extra implementation cost.</div>
<div><div></div><div class="h5"><br><div><div>On May 7, 2009, at 1:39 PM, Drew Wilson wrote:</div><br><blockquote type="cite">Hi all,<br><br>I've been hashing through a bunch of the design issues around using MessagePorts within Workers with IanH and the Chrome/WebKit teams and I wanted to follow up with the list with my progress.<br>
<br>The problems we've encountered are all solveable, but I've been surprised at the amount of work involved in implementing worker MessagePorts (and the resulting implications that MessagePorts have on worker lifecycles/reachability). My concern is that the amount of work to implement MessagePorts within Worker context may be so high that it will prevent vendors from implementing the SharedWorker API. Have other implementers started working on this part of the spec yet?<br>
 <br>Let me quickly run down some of the implementation issues I've run into - some of these may be WebKit/Chrome specific, but other browsers may run into some of them as well:<br><br>1) MessagePort reachability is challenging in the context of separate Worker heaps<br>
 <br>In WebKit, each worker has its own heap (in Chrome, they will have their own process as well). The spec reads:<br><blockquote><p>User agents must act as if <code><a href="http://www.w3.org/TR/html5/comms.html#messageport" target="_blank">MessagePort</a></code> objects have  a strong reference to their entangled <code><a href="http://www.w3.org/TR/html5/comms.html#messageport" target="_blank">MessagePort</a></code>  object.</p>
<div><p>Thus, a message port can be received, given an event listener,   and then forgotten, and so long as that event listener could   receive a message, the channel will be maintained.</p><p>Of course, if this was to occur on both sides of the channel,   then both ports would be garbage collected, since they would not be   reachable from live code, despite having a strong reference to each   other.</p>
   </div><p>Furthermore, a <code><a href="http://www.w3.org/TR/html5/comms.html#messageport" target="_blank">MessagePort</a></code> object must not be  garbage collected while there exists a message in a <a href="http://www.w3.org/TR/html5/browsers.html#task-queue" target="_blank">task  queue</a> that is to be dispatched on that  <code><a href="http://www.w3.org/TR/html5/comms.html#messageport" target="_blank">MessagePort</a></code> object, or while the  <code><a href="http://www.w3.org/TR/html5/comms.html#messageport" target="_blank">MessagePort</a></code> object's <a href="http://www.w3.org/TR/html5/comms.html#port-message-queue" target="_blank">port message queue</a> is  open and there exists a <code title="event-message"><a href="http://www.w3.org/TR/html5/comms.html#event-message" target="_blank">message</a></code>  event in that queue.</p>
</blockquote><p>The end result of this is the need to track some common state across an entangled MessagePort pair such as: number of outstanding messages, open state of each end, and number of active references to each port (zero or non-zero). Turns out this last bit will require adding new hooks to the JavaScriptCore garbage collector to detect transitioning between 1 and 0 references without actually freeing the object - not that difficult, but possibly something that other implementers should keep in mind.<br>
 </p><p>2) MessagePorts dramatically change the worker lifecycle</p><p>Having MessagePorts in worker context means that Workers can outlive their parent window(s) - I can create a worker, pass off an entangled MessagePort to another window (say, to a different domain), then close the original window, and the worker should stay alive. In the case of WebKit, this causes some problems for things like worker-initiated network requests - if workers can continue to run even though there are no open windows for that origin, then it becomes problematic to perform network requests (part of this is due to the architecture of WebKit which requires proxying network requests to window context, but part of this is just a general problem of "how do you handle things like HTTP Auth when there are no open windows for that origin?")</p>
<p>Finally, the spec defines a fairly broad definition of what makes a worker reachable - here's an excerpt from my WebKit Shared Worker design doc, where I summarize the spec (possibly incorrectly - feel free to correct any misconceptions):</p>
 <blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;" class="gmail_quote"><h5>Permissible</h5><div>The spec specifies that a worker is <i>permissible</i> based on whether it has a reachable MessagePort that has been entangled <i>at some point in the past</i> with an active window (or with a worker who is itself permissible). Basically, if a worker has <b>ever</b> been entangled with an active window, or if it's ever been entangled with a worker who is itself permissible (i.e. it's associated with an active window via a chain of workers that have been entangled at some point in the past) then it's permissible. </div>
<div><br></div><div>The reason why the "at some point in the past" language is present is to allow a page to create a fire-and-forget worker (for example, a worker that does a set of long network operations) without having to keep a reference to that worker around. </div>
<div><br></div><div>Once the referent windows close, the worker should also close, as being permissible is a necessary (but not sufficient) criteria for being runnable. </div><h5>Active needed</h5><div>A permissible worker is <i>active needed</i> if:</div>
<div><ol><li>it has pending timers/network requests/DB activity, or</li><li>it is currently entangled with an active window, or another active needed worker. </li> </ol><br>The intent behind #1 is to enable fire-and-forget workers that don't exit until they are idle. The intent behind #2 is that an idle worker shouldn't exit as long as it's reachable by an active window (possibly chained through other workers).</div>
<span style="background-color: rgb(255, 229, 153);"></span></blockquote><p>The end result is that for each worker we need to keep track of a big list of every window it's ever been entangled with. As workers become entangled with other workers, they each inherit the list of entangled windows from the other worker. As windows become inactive, we then walk the lists of every worker to remove references to the window and properly shutdown the worker as appropriate. All of this with the appropriate cross-thread synchronization, of course :)<br>
 </p><p>Likewise, determining when a worker is active needed requires tracking a graph of entangled message ports, and walking that graph to determine whether a given worker is reachable by any active window. Typically this is only needed when either a window closes, or when a worker goes idle.</p>
<p>Again, none of these issues individually are insurmountable, but in total they add up to a significant amount of work for what should be a fairly incremental improvement (going from dedicated workers to shared workers). Have other vendors started investigating what it takes to implement SharedWorkers (and therefore MessagePorts in workers)?</p>
<p>Another approach for SharedWorkers would be to give them an implicit MessagePort-esque API like dedicated Workers and not allow passing in MessagePorts to postMessage(). This would mean that references to workers can't really be passed around to other windows/workers, but rather are kept per-origin. Dedicated workers could work as they do now in Firefox/WebKit (with no MessagePorts). The SharedWorker lifecycle could be significantly simplified such that a SharedWorker is permissible as long as there's an active window under the same origin (no more walking some distributed cross-thread dependency graph).<br>
 </p><p>The thing we'd give up is the capabilities-based API that MessagePorts provide, but I'd argue that the workaround is simple: the creating window can just act as a proxy for the worker. IMO, the implementation burden far outstrips the benefit of allowing direct foreign access to workers. Literally 90% of the work on my plate for SharedWorkers seems to derive from MessagePorts in one form or another, which seems completely wrong.<br>
 </p><p>I'd like to hear your thoughts on this - are people open to removing MessagePort support from Workers?<br></p><p>-atw<br></p><p><br></p><p><br></p><p><br></p><br></blockquote></div><br></div></div></div></blockquote>
</div><br>