blob: 9b3f1cd5f281d60500e93dfa1b404b3f0d819cf5 [file] [log] [blame]
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +01001/*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 *
25 */
26
27#include "config.h"
28#include "core/dom/MessagePort.h"
29
Ben Murdoch7757ec22013-07-23 11:17:36 +010030#include "bindings/v8/ExceptionState.h"
Ben Murdochdf957042013-08-06 11:01:27 +010031#include "bindings/v8/ExceptionStatePlaceholder.h"
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010032#include "core/dom/Document.h"
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010033#include "core/dom/EventNames.h"
34#include "core/dom/ExceptionCode.h"
35#include "core/dom/MessageEvent.h"
36#include "core/page/DOMWindow.h"
Ben Murdoch591b9582013-07-10 11:41:44 +010037#include "core/workers/WorkerGlobalScope.h"
38#include "wtf/text/AtomicString.h"
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010039
40namespace WebCore {
41
42MessagePort::MessagePort(ScriptExecutionContext& scriptExecutionContext)
43 : m_started(false)
44 , m_closed(false)
45 , m_scriptExecutionContext(&scriptExecutionContext)
46{
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010047 ScriptWrappable::init(this);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010048 m_scriptExecutionContext->createdMessagePort(this);
49
50 // Don't need to call processMessagePortMessagesSoon() here, because the port will not be opened until start() is invoked.
51}
52
53MessagePort::~MessagePort()
54{
55 close();
56 if (m_scriptExecutionContext)
57 m_scriptExecutionContext->destroyedMessagePort(this);
58}
59
Ben Murdoch7757ec22013-07-23 11:17:36 +010060void MessagePort::postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionState& es)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010061{
62 if (!isEntangled())
63 return;
64 ASSERT(m_scriptExecutionContext);
65
66 OwnPtr<MessagePortChannelArray> channels;
67 // Make sure we aren't connected to any of the passed-in ports.
68 if (ports) {
69 for (unsigned int i = 0; i < ports->size(); ++i) {
70 MessagePort* dataPort = (*ports)[i].get();
71 if (dataPort == this || m_entangledChannel->isConnectedTo(dataPort)) {
Ben Murdoch83750172013-07-24 10:36:59 +010072 es.throwDOMException(DataCloneError);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010073 return;
74 }
75 }
Ben Murdoch7757ec22013-07-23 11:17:36 +010076 channels = MessagePort::disentanglePorts(ports, es);
77 if (es.hadException())
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010078 return;
79 }
80 m_entangledChannel->postMessageToRemote(message, channels.release());
81}
82
83PassOwnPtr<MessagePortChannel> MessagePort::disentangle()
84{
85 ASSERT(m_entangledChannel);
86
87 m_entangledChannel->disentangle();
88
89 // We can't receive any messages or generate any events, so remove ourselves from the list of active ports.
90 ASSERT(m_scriptExecutionContext);
91 m_scriptExecutionContext->destroyedMessagePort(this);
92 m_scriptExecutionContext = 0;
93
94 return m_entangledChannel.release();
95}
96
97// Invoked to notify us that there are messages available for this port.
98// This code may be called from another thread, and so should not call any non-threadsafe APIs (i.e. should not call into the entangled channel or access mutable variables).
99void MessagePort::messageAvailable()
100{
101 ASSERT(m_scriptExecutionContext);
102 m_scriptExecutionContext->processMessagePortMessagesSoon();
103}
104
105void MessagePort::start()
106{
107 // Do nothing if we've been cloned or closed.
108 if (!isEntangled())
109 return;
110
111 ASSERT(m_scriptExecutionContext);
112 if (m_started)
113 return;
114
115 m_started = true;
116 m_scriptExecutionContext->processMessagePortMessagesSoon();
117}
118
119void MessagePort::close()
120{
121 if (isEntangled())
122 m_entangledChannel->close();
123 m_closed = true;
124}
125
126void MessagePort::entangle(PassOwnPtr<MessagePortChannel> remote)
127{
128 // Only invoked to set our initial entanglement.
129 ASSERT(!m_entangledChannel);
130 ASSERT(m_scriptExecutionContext);
131
132 // Don't entangle the ports if the channel is closed.
133 if (remote->entangleIfOpen(this))
134 m_entangledChannel = remote;
135}
136
137void MessagePort::contextDestroyed()
138{
139 ASSERT(m_scriptExecutionContext);
140 // Must be closed before blowing away the cached context, to ensure that we get no more calls to messageAvailable().
141 // ScriptExecutionContext::closeMessagePorts() takes care of that.
142 ASSERT(m_closed);
143 m_scriptExecutionContext = 0;
144}
145
146const AtomicString& MessagePort::interfaceName() const
147{
148 return eventNames().interfaceForMessagePort;
149}
150
151ScriptExecutionContext* MessagePort::scriptExecutionContext() const
152{
153 return m_scriptExecutionContext;
154}
155
156void MessagePort::dispatchMessages()
157{
158 // Messages for contexts that are not fully active get dispatched too, but JSAbstractEventListener::handleEvent() doesn't call handlers for these.
159 // The HTML5 spec specifies that any messages sent to a document that is not fully active should be dropped, so this behavior is OK.
160 ASSERT(started());
161
162 RefPtr<SerializedScriptValue> message;
163 OwnPtr<MessagePortChannelArray> channels;
164 while (m_entangledChannel && m_entangledChannel->tryGetMessageFromRemote(message, channels)) {
165
166 // close() in Worker onmessage handler should prevent next message from dispatching.
Ben Murdoch591b9582013-07-10 11:41:44 +0100167 if (m_scriptExecutionContext->isWorkerGlobalScope() && toWorkerGlobalScope(m_scriptExecutionContext)->isClosing())
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100168 return;
169
170 OwnPtr<MessagePortArray> ports = MessagePort::entanglePorts(*m_scriptExecutionContext, channels.release());
171 RefPtr<Event> evt = MessageEvent::create(ports.release(), message.release());
172
Ben Murdoch1fad5ca2013-08-07 11:05:11 +0100173 dispatchEvent(evt.release(), ASSERT_NO_EXCEPTION);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100174 }
175}
176
177bool MessagePort::hasPendingActivity()
178{
179 // The spec says that entangled message ports should always be treated as if they have a strong reference.
180 // We'll also stipulate that the queue needs to be open (if the app drops its reference to the port before start()-ing it, then it's not really entangled as it's unreachable).
181 if (m_started && m_entangledChannel && m_entangledChannel->hasPendingActivity())
182 return true;
183 if (isEntangled() && !locallyEntangledPort())
184 return true;
185 return false;
186}
187
188MessagePort* MessagePort::locallyEntangledPort()
189{
190 return m_entangledChannel ? m_entangledChannel->locallyEntangledPort(m_scriptExecutionContext) : 0;
191}
192
Ben Murdoch7757ec22013-07-23 11:17:36 +0100193PassOwnPtr<MessagePortChannelArray> MessagePort::disentanglePorts(const MessagePortArray* ports, ExceptionState& es)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100194{
195 if (!ports || !ports->size())
196 return nullptr;
197
198 // HashSet used to efficiently check for duplicates in the passed-in array.
199 HashSet<MessagePort*> portSet;
200
201 // Walk the incoming array - if there are any duplicate ports, or null ports or cloned ports, throw an error (per section 8.3.3 of the HTML5 spec).
202 for (unsigned int i = 0; i < ports->size(); ++i) {
203 MessagePort* port = (*ports)[i].get();
204 if (!port || port->isNeutered() || portSet.contains(port)) {
Ben Murdoch7757ec22013-07-23 11:17:36 +0100205 es.throwDOMException(DataCloneError);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100206 return nullptr;
207 }
208 portSet.add(port);
209 }
210
211 // Passed-in ports passed validity checks, so we can disentangle them.
212 OwnPtr<MessagePortChannelArray> portArray = adoptPtr(new MessagePortChannelArray(ports->size()));
213 for (unsigned int i = 0 ; i < ports->size() ; ++i) {
214 OwnPtr<MessagePortChannel> channel = (*ports)[i]->disentangle();
215 (*portArray)[i] = channel.release();
216 }
217 return portArray.release();
218}
219
220PassOwnPtr<MessagePortArray> MessagePort::entanglePorts(ScriptExecutionContext& context, PassOwnPtr<MessagePortChannelArray> channels)
221{
222 if (!channels || !channels->size())
223 return nullptr;
224
225 OwnPtr<MessagePortArray> portArray = adoptPtr(new MessagePortArray(channels->size()));
226 for (unsigned int i = 0; i < channels->size(); ++i) {
227 RefPtr<MessagePort> port = MessagePort::create(context);
228 port->entangle((*channels)[i].release());
229 (*portArray)[i] = port.release();
230 }
231 return portArray.release();
232}
233
234EventTargetData* MessagePort::eventTargetData()
235{
236 return &m_eventTargetData;
237}
238
239EventTargetData* MessagePort::ensureEventTargetData()
240{
241 return &m_eventTargetData;
242}
243
244} // namespace WebCore