123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- /*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- * * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include "config.h"
- #if ENABLE(WORKERS) && ENABLE(INSPECTOR)
- #include "InspectorWorkerAgent.h"
- #include "InspectorFrontend.h"
- #include "InspectorFrontendChannel.h"
- #include "InspectorState.h"
- #include "InspectorValues.h"
- #include "InstrumentingAgents.h"
- #include "KURL.h"
- #include "WorkerContextProxy.h"
- #include <wtf/PassOwnPtr.h>
- #include <wtf/RefPtr.h>
- namespace WebCore {
- namespace WorkerAgentState {
- static const char workerInspectionEnabled[] = "workerInspectionEnabled";
- static const char autoconnectToWorkers[] = "autoconnectToWorkers";
- };
- class InspectorWorkerAgent::WorkerFrontendChannel : public WorkerContextProxy::PageInspector {
- WTF_MAKE_FAST_ALLOCATED;
- public:
- explicit WorkerFrontendChannel(InspectorFrontend* frontend, WorkerContextProxy* proxy)
- : m_frontend(frontend)
- , m_proxy(proxy)
- , m_id(s_nextId++)
- , m_connected(false)
- {
- }
- virtual ~WorkerFrontendChannel()
- {
- disconnectFromWorkerContext();
- }
- int id() const { return m_id; }
- WorkerContextProxy* proxy() const { return m_proxy; }
- void connectToWorkerContext()
- {
- if (m_connected)
- return;
- m_connected = true;
- m_proxy->connectToInspector(this);
- }
- void disconnectFromWorkerContext()
- {
- if (!m_connected)
- return;
- m_connected = false;
- m_proxy->disconnectFromInspector();
- }
- private:
- // WorkerContextProxy::PageInspector implementation
- virtual void dispatchMessageFromWorker(const String& message)
- {
- RefPtr<InspectorValue> value = InspectorValue::parseJSON(message);
- if (!value)
- return;
- RefPtr<InspectorObject> messageObject = value->asObject();
- if (!messageObject)
- return;
- m_frontend->worker()->dispatchMessageFromWorker(m_id, messageObject);
- }
- InspectorFrontend* m_frontend;
- WorkerContextProxy* m_proxy;
- int m_id;
- bool m_connected;
- static int s_nextId;
- };
- int InspectorWorkerAgent::WorkerFrontendChannel::s_nextId = 1;
- PassOwnPtr<InspectorWorkerAgent> InspectorWorkerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState)
- {
- return adoptPtr(new InspectorWorkerAgent(instrumentingAgents, inspectorState));
- }
- InspectorWorkerAgent::InspectorWorkerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState)
- : InspectorBaseAgent<InspectorWorkerAgent>("Worker", instrumentingAgents, inspectorState)
- , m_inspectorFrontend(0)
- {
- m_instrumentingAgents->setInspectorWorkerAgent(this);
- }
- InspectorWorkerAgent::~InspectorWorkerAgent()
- {
- m_instrumentingAgents->setInspectorWorkerAgent(0);
- }
- void InspectorWorkerAgent::setFrontend(InspectorFrontend* frontend)
- {
- m_inspectorFrontend = frontend;
- }
- void InspectorWorkerAgent::restore()
- {
- if (m_state->getBoolean(WorkerAgentState::workerInspectionEnabled))
- createWorkerFrontendChannelsForExistingWorkers();
- }
- void InspectorWorkerAgent::clearFrontend()
- {
- m_state->setBoolean(WorkerAgentState::autoconnectToWorkers, false);
- disable(0);
- m_inspectorFrontend = 0;
- }
- void InspectorWorkerAgent::enable(ErrorString*)
- {
- m_state->setBoolean(WorkerAgentState::workerInspectionEnabled, true);
- if (!m_inspectorFrontend)
- return;
- createWorkerFrontendChannelsForExistingWorkers();
- }
- void InspectorWorkerAgent::disable(ErrorString*)
- {
- m_state->setBoolean(WorkerAgentState::workerInspectionEnabled, false);
- if (!m_inspectorFrontend)
- return;
- destroyWorkerFrontendChannels();
- }
- void InspectorWorkerAgent::canInspectWorkers(ErrorString*, bool* result)
- {
- #if ENABLE(WORKERS)
- *result = true;
- #else
- *result = false;
- #endif
- }
- void InspectorWorkerAgent::connectToWorker(ErrorString* error, int workerId)
- {
- WorkerFrontendChannel* channel = m_idToChannel.get(workerId);
- if (channel)
- channel->connectToWorkerContext();
- else
- *error = "Worker is gone";
- }
- void InspectorWorkerAgent::disconnectFromWorker(ErrorString* error, int workerId)
- {
- WorkerFrontendChannel* channel = m_idToChannel.get(workerId);
- if (channel)
- channel->disconnectFromWorkerContext();
- else
- *error = "Worker is gone";
- }
- void InspectorWorkerAgent::sendMessageToWorker(ErrorString* error, int workerId, const RefPtr<InspectorObject>& message)
- {
- WorkerFrontendChannel* channel = m_idToChannel.get(workerId);
- if (channel)
- channel->proxy()->sendMessageToInspector(message->toJSONString());
- else
- *error = "Worker is gone";
- }
- void InspectorWorkerAgent::setAutoconnectToWorkers(ErrorString*, bool value)
- {
- m_state->setBoolean(WorkerAgentState::autoconnectToWorkers, value);
- }
- bool InspectorWorkerAgent::shouldPauseDedicatedWorkerOnStart()
- {
- return m_state->getBoolean(WorkerAgentState::autoconnectToWorkers);
- }
- void InspectorWorkerAgent::didStartWorkerContext(WorkerContextProxy* workerContextProxy, const KURL& url)
- {
- m_dedicatedWorkers.set(workerContextProxy, url.string());
- if (m_inspectorFrontend && m_state->getBoolean(WorkerAgentState::workerInspectionEnabled))
- createWorkerFrontendChannel(workerContextProxy, url.string());
- }
- void InspectorWorkerAgent::workerContextTerminated(WorkerContextProxy* proxy)
- {
- m_dedicatedWorkers.remove(proxy);
- for (WorkerChannels::iterator it = m_idToChannel.begin(); it != m_idToChannel.end(); ++it) {
- if (proxy == it->value->proxy()) {
- m_inspectorFrontend->worker()->workerTerminated(it->key);
- delete it->value;
- m_idToChannel.remove(it);
- return;
- }
- }
- }
- void InspectorWorkerAgent::createWorkerFrontendChannelsForExistingWorkers()
- {
- for (DedicatedWorkers::iterator it = m_dedicatedWorkers.begin(); it != m_dedicatedWorkers.end(); ++it)
- createWorkerFrontendChannel(it->key, it->value);
- }
- void InspectorWorkerAgent::destroyWorkerFrontendChannels()
- {
- for (WorkerChannels::iterator it = m_idToChannel.begin(); it != m_idToChannel.end(); ++it) {
- it->value->disconnectFromWorkerContext();
- delete it->value;
- }
- m_idToChannel.clear();
- }
- void InspectorWorkerAgent::createWorkerFrontendChannel(WorkerContextProxy* workerContextProxy, const String& url)
- {
- WorkerFrontendChannel* channel = new WorkerFrontendChannel(m_inspectorFrontend, workerContextProxy);
- m_idToChannel.set(channel->id(), channel);
- ASSERT(m_inspectorFrontend);
- bool autoconnectToWorkers = m_state->getBoolean(WorkerAgentState::autoconnectToWorkers);
- if (autoconnectToWorkers)
- channel->connectToWorkerContext();
- m_inspectorFrontend->worker()->workerCreated(channel->id(), url, autoconnectToWorkers);
- }
- } // namespace WebCore
- #endif // ENABLE(WORKERS) && ENABLE(INSPECTOR)
|