Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1438)

Unified Diff: Source/web/WorkerStorageQuotaCallbacksBridge.cpp

Issue 20262003: Use Platform::queryUsageAndQuota and deprecate WebFrameClient::queryUsageAndQuota (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/WorkerStorageQuotaCallbacksBridge.h ('k') | Source/web/web.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WorkerStorageQuotaCallbacksBridge.cpp
diff --git a/Source/web/WorkerStorageQuotaCallbacksBridge.cpp b/Source/web/WorkerStorageQuotaCallbacksBridge.cpp
deleted file mode 100644
index 038d8d1820f3190f39045274290b9cce1ea4d881..0000000000000000000000000000000000000000
--- a/Source/web/WorkerStorageQuotaCallbacksBridge.cpp
+++ /dev/null
@@ -1,230 +0,0 @@
-/*
- * Copyright (C) 2013 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"
-#include "WorkerStorageQuotaCallbacksBridge.h"
-
-#include "WebCommonWorkerClient.h"
-#include "WebStorageQuotaCallbacks.h"
-#include "WebStorageQuotaCallbacksImpl.h"
-#include "WebWorkerBase.h"
-#include "core/dom/CrossThreadTask.h"
-#include "core/workers/WorkerGlobalScope.h"
-#include "core/workers/WorkerLoaderProxy.h"
-#include "wtf/MainThread.h"
-
-using namespace WebCore;
-
-namespace WebKit {
-
-// FIXME: Replace WebFrame parameter in queryStorageUsageAndQuota() with WebString and move the method to Platform so that we can remove all these complexity for Worker.
-class MainThreadStorageQuotaCallbacks : public WebStorageQuotaCallbacks {
-public:
- // Callbacks are self-destructed and we always return leaked pointer here.
- static MainThreadStorageQuotaCallbacks* createLeakedPtr(PassRefPtr<WorkerStorageQuotaCallbacksBridge> bridge, const String& mode)
- {
- OwnPtr<MainThreadStorageQuotaCallbacks> callbacks = adoptPtr(new MainThreadStorageQuotaCallbacks(bridge, mode));
- return callbacks.leakPtr();
- }
-
- virtual ~MainThreadStorageQuotaCallbacks()
- {
- }
-
- virtual void didQueryStorageUsageAndQuota(unsigned long long usageInBytes, unsigned long long quotaInBytes)
- {
- m_bridge->didQueryStorageUsageAndQuotaOnMainThread(usageInBytes, quotaInBytes, m_mode);
- delete this;
- }
-
- virtual void didFail(WebStorageQuotaError error)
- {
- m_bridge->didFailOnMainThread(error, m_mode);
- delete this;
- }
-
- virtual void didGrantStorageQuota(unsigned long long grantedQuotaInBytes)
- {
- ASSERT_NOT_REACHED();
- }
-
-private:
- MainThreadStorageQuotaCallbacks(PassRefPtr<WorkerStorageQuotaCallbacksBridge> bridge, const String& mode)
- : m_bridge(bridge)
- , m_mode(mode)
- {
- ASSERT(m_bridge);
- }
-
- RefPtr<WorkerStorageQuotaCallbacksBridge> m_bridge;
- const String m_mode;
-};
-
-// FIXME: Replace WebFrame parameter in queryStorageUsageAndQuota() with WebString and move the method to Platform so that we can remove all these complexity for Worker."
-// Observes the worker context. By keeping this separate, it is easier to verify
-// that it only gets deleted on the worker context thread which is verified by ~Observer.
-class WorkerStorageQuotaContextObserver : public WebCore::WorkerGlobalScope::Observer {
-public:
- static PassOwnPtr<WorkerStorageQuotaContextObserver> create(WorkerGlobalScope* context, PassRefPtr<WorkerStorageQuotaCallbacksBridge> bridge)
- {
- return adoptPtr(new WorkerStorageQuotaContextObserver(context, bridge));
- }
-
- // WorkerGlobalScope::Observer method.
- virtual void notifyStop()
- {
- m_bridge->stop();
- }
-
-private:
- WorkerStorageQuotaContextObserver(WorkerGlobalScope* context, PassRefPtr<WorkerStorageQuotaCallbacksBridge> bridge)
- : WebCore::WorkerGlobalScope::Observer(context)
- , m_bridge(bridge)
- {
- }
-
- RefPtr<WorkerStorageQuotaCallbacksBridge> m_bridge;
-};
-
-void WorkerStorageQuotaCallbacksBridge::stop()
-{
- ASSERT(m_workerGlobalScope->isContextThread());
- {
- MutexLocker locker(m_loaderProxyMutex);
- m_workerLoaderProxy = 0;
- }
-
- if (m_callbacksOnWorkerThread)
- m_callbacksOnWorkerThread->didFail(WebStorageQuotaErrorAbort);
-
- cleanUpAfterCallback();
-}
-
-void WorkerStorageQuotaCallbacksBridge::cleanUpAfterCallback()
-{
- ASSERT(m_workerGlobalScope->isContextThread());
-
- m_callbacksOnWorkerThread = 0;
- if (m_workerGlobalScopeObserver) {
- WorkerStorageQuotaContextObserver* observer = m_workerGlobalScopeObserver;
- m_workerGlobalScopeObserver = 0;
- // The next line may delete this.
- delete observer;
- }
-}
-
-WorkerStorageQuotaCallbacksBridge::WorkerStorageQuotaCallbacksBridge(WebCore::WorkerLoaderProxy* workerLoaderProxy, WebCore::ScriptExecutionContext* workerGlobalScope, WebStorageQuotaCallbacksImpl* callbacks)
- : m_workerLoaderProxy(workerLoaderProxy)
- , m_workerGlobalScope(workerGlobalScope)
- , m_workerGlobalScopeObserver(WorkerStorageQuotaContextObserver::create(toWorkerGlobalScope(m_workerGlobalScope), this).leakPtr())
- , m_callbacksOnWorkerThread(callbacks)
-{
- ASSERT(m_workerGlobalScope->isContextThread());
-}
-
-WorkerStorageQuotaCallbacksBridge::~WorkerStorageQuotaCallbacksBridge()
-{
- // One way or another, the bridge should be stopped before it is destroyed.
- ASSERT(!m_callbacksOnWorkerThread);
-}
-
-void WorkerStorageQuotaCallbacksBridge::postQueryUsageAndQuotaToMainThread(WebCommonWorkerClient* commonClient, WebStorageQuotaType storageType, const String& mode)
-{
- dispatchTaskToMainThread(createCallbackTask(&queryUsageAndQuotaOnMainThread, AllowCrossThreadAccess(commonClient), storageType, this, mode));
-}
-
-void WorkerStorageQuotaCallbacksBridge::queryUsageAndQuotaOnMainThread(ScriptExecutionContext*, WebCommonWorkerClient* commonClient, WebStorageQuotaType storageType, PassRefPtr<WorkerStorageQuotaCallbacksBridge> bridge, const String& mode)
-{
- if (!commonClient)
- bridge->didFailOnMainThread(WebStorageQuotaErrorAbort, mode);
- else
- commonClient->queryUsageAndQuota(storageType, MainThreadStorageQuotaCallbacks::createLeakedPtr(bridge, mode));
-}
-
-void WorkerStorageQuotaCallbacksBridge::didFailOnMainThread(WebStorageQuotaError error, const String& mode)
-{
- mayPostTaskToWorker(createCallbackTask(&didFailOnWorkerThread, this, error), mode);
-}
-
-void WorkerStorageQuotaCallbacksBridge::didQueryStorageUsageAndQuotaOnMainThread(unsigned long long usageInBytes, unsigned long long quotaInBytes, const String& mode)
-{
- mayPostTaskToWorker(createCallbackTask(&didQueryStorageUsageAndQuotaOnWorkerThread, this, usageInBytes, quotaInBytes), mode);
-}
-
-void WorkerStorageQuotaCallbacksBridge::didFailOnWorkerThread(WebCore::ScriptExecutionContext*, PassRefPtr<WorkerStorageQuotaCallbacksBridge> bridge, WebStorageQuotaError error)
-{
- bridge->m_callbacksOnWorkerThread->didFail(error);
-}
-
-void WorkerStorageQuotaCallbacksBridge::didQueryStorageUsageAndQuotaOnWorkerThread(WebCore::ScriptExecutionContext*, PassRefPtr<WorkerStorageQuotaCallbacksBridge> bridge, unsigned long long usageInBytes, unsigned long long quotaInBytes)
-{
- bridge->m_callbacksOnWorkerThread->didQueryStorageUsageAndQuota(usageInBytes, quotaInBytes);
-}
-
-void WorkerStorageQuotaCallbacksBridge::runTaskOnMainThread(WebCore::ScriptExecutionContext* scriptExecutionContext, PassRefPtr<WorkerStorageQuotaCallbacksBridge> bridge, PassOwnPtr<WebCore::ScriptExecutionContext::Task> taskToRun)
-{
- ASSERT(isMainThread());
- taskToRun->performTask(scriptExecutionContext);
-}
-
-void WorkerStorageQuotaCallbacksBridge::runTaskOnWorkerThread(WebCore::ScriptExecutionContext* scriptExecutionContext, PassRefPtr<WorkerStorageQuotaCallbacksBridge> bridge, PassOwnPtr<WebCore::ScriptExecutionContext::Task> taskToRun)
-{
- ASSERT(bridge);
- if (!bridge->m_callbacksOnWorkerThread)
- return;
- ASSERT(bridge->m_workerGlobalScope);
- ASSERT(bridge->m_workerGlobalScope->isContextThread());
- ASSERT(taskToRun);
- taskToRun->performTask(scriptExecutionContext);
-
- // taskToRun does the callback.
- bridge->cleanUpAfterCallback();
-
- // WorkerStorageQuotaCallbacksBridge may be deleted here when bridge goes out of scope.
-}
-
-void WorkerStorageQuotaCallbacksBridge::dispatchTaskToMainThread(PassOwnPtr<WebCore::ScriptExecutionContext::Task> task)
-{
- ASSERT(m_workerLoaderProxy);
- ASSERT(m_workerGlobalScope->isContextThread());
- WebWorkerBase::dispatchTaskToMainThread(createCallbackTask(&runTaskOnMainThread, RefPtr<WorkerStorageQuotaCallbacksBridge>(this).release(), task));
-}
-
-void WorkerStorageQuotaCallbacksBridge::mayPostTaskToWorker(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode)
-{
- // Relies on its caller (MainThreadStorageQuotaCallbacks:did*) to keep WorkerStorageQuotaCallbacksBridge alive.
- ASSERT(isMainThread());
-
- MutexLocker locker(m_loaderProxyMutex);
- if (m_workerLoaderProxy)
- m_workerLoaderProxy->postTaskForModeToWorkerGlobalScope(createCallbackTask(&runTaskOnWorkerThread, this, task), mode);
-}
-
-} // namespace WebCore
« no previous file with comments | « Source/web/WorkerStorageQuotaCallbacksBridge.h ('k') | Source/web/web.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698