2 * Copyright (C) 2009 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #include "WorkerThreadableLoader.h"
37 #include "GenericWorkerTask.h"
38 #include "ResourceError.h"
39 #include "ResourceRequest.h"
40 #include "ResourceResponse.h"
41 #include "ThreadableLoader.h"
42 #include "WorkerContext.h"
43 #include "WorkerLoaderProxy.h"
44 #include "WorkerThread.h"
46 #include <wtf/OwnPtr.h>
47 #include <wtf/Threading.h>
48 #include <wtf/Vector.h>
54 static const char loadResourceSynchronouslyMode[] = "loadResourceSynchronouslyMode";
56 WorkerThreadableLoader::WorkerThreadableLoader(WorkerContext* workerContext, ThreadableLoaderClient* client, const String& taskMode, const ResourceRequest& request, LoadCallbacks callbacksSetting,
57 ContentSniff contentSniff, StoredCredentials storedCredentials, RedirectOriginCheck redirectOriginCheck)
58 : m_workerContext(workerContext)
59 , m_workerClientWrapper(ThreadableLoaderClientWrapper::create(client))
60 , m_bridge(*(new MainThreadBridge(m_workerClientWrapper, m_workerContext->thread()->workerLoaderProxy(), taskMode, request, callbacksSetting, contentSniff, storedCredentials, redirectOriginCheck)))
64 WorkerThreadableLoader::~WorkerThreadableLoader()
69 void WorkerThreadableLoader::loadResourceSynchronously(WorkerContext* workerContext, const ResourceRequest& request, ThreadableLoaderClient& client, StoredCredentials storedCredentials, RedirectOriginCheck redirectOriginCheck)
71 WorkerRunLoop& runLoop = workerContext->thread()->runLoop();
73 // Create a unique mode just for this synchronous resource load.
74 String mode = loadResourceSynchronouslyMode;
75 mode.append(String::number(runLoop.createUniqueId()));
77 ContentSniff contentSniff = request.url().isLocalFile() ? SniffContent : DoNotSniffContent;
78 RefPtr<WorkerThreadableLoader> loader = WorkerThreadableLoader::create(workerContext, &client, mode, request, DoNotSendLoadCallbacks, contentSniff, storedCredentials, redirectOriginCheck);
80 MessageQueueWaitResult result = MessageQueueMessageReceived;
81 while (!loader->done() && result != MessageQueueTerminated)
82 result = runLoop.runInMode(workerContext, mode);
84 if (!loader->done() && result == MessageQueueTerminated)
88 void WorkerThreadableLoader::cancel()
93 WorkerThreadableLoader::MainThreadBridge::MainThreadBridge(PassRefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, WorkerLoaderProxy& loaderProxy, const String& taskMode,
94 const ResourceRequest& request, LoadCallbacks callbacksSetting, ContentSniff contentSniff, StoredCredentials storedCredentials,
95 RedirectOriginCheck redirectOriginCheck)
96 : m_workerClientWrapper(workerClientWrapper)
97 , m_loaderProxy(loaderProxy)
98 , m_taskMode(taskMode.copy())
100 ASSERT(m_workerClientWrapper.get());
101 m_loaderProxy.postTaskToLoader(createCallbackTask(&MainThreadBridge::mainThreadCreateLoader, this, request, callbacksSetting, contentSniff, storedCredentials, redirectOriginCheck));
104 WorkerThreadableLoader::MainThreadBridge::~MainThreadBridge()
108 void WorkerThreadableLoader::MainThreadBridge::mainThreadCreateLoader(ScriptExecutionContext* context, MainThreadBridge* thisPtr, auto_ptr<CrossThreadResourceRequestData> requestData, LoadCallbacks callbacksSetting, ContentSniff contentSniff, StoredCredentials storedCredentials, RedirectOriginCheck redirectOriginCheck)
110 ASSERT(isMainThread());
111 ASSERT(context->isDocument());
113 // FIXME: the created loader has no knowledge of the origin of the worker doing the load request.
114 // Basically every setting done in SubresourceLoader::create (including the contents of addExtraFieldsToRequest)
115 // needs to be examined for how it should take into account a different originator.
116 OwnPtr<ResourceRequest> request(ResourceRequest::adopt(requestData));
117 // FIXME: If the a site requests a local resource, then this will return a non-zero value but the sync path
118 // will return a 0 value. Either this should return 0 or the other code path should do a callback with
120 thisPtr->m_mainThreadLoader = ThreadableLoader::create(context, thisPtr, *request, callbacksSetting, contentSniff, storedCredentials, redirectOriginCheck);
121 ASSERT(thisPtr->m_mainThreadLoader);
124 void WorkerThreadableLoader::MainThreadBridge::mainThreadDestroy(ScriptExecutionContext* context, MainThreadBridge* thisPtr)
126 ASSERT(isMainThread());
127 ASSERT_UNUSED(context, context->isDocument());
131 void WorkerThreadableLoader::MainThreadBridge::destroy()
133 // Ensure that no more client callbacks are done in the worker context's thread.
134 clearClientWrapper();
136 // "delete this" and m_mainThreadLoader::deref() on the worker object's thread.
137 m_loaderProxy.postTaskToLoader(createCallbackTask(&MainThreadBridge::mainThreadDestroy, this));
140 void WorkerThreadableLoader::MainThreadBridge::mainThreadCancel(ScriptExecutionContext* context, MainThreadBridge* thisPtr)
142 ASSERT(isMainThread());
143 ASSERT_UNUSED(context, context->isDocument());
145 if (!thisPtr->m_mainThreadLoader)
147 thisPtr->m_mainThreadLoader->cancel();
148 thisPtr->m_mainThreadLoader = 0;
151 void WorkerThreadableLoader::MainThreadBridge::cancel()
153 m_loaderProxy.postTaskToLoader(createCallbackTask(&MainThreadBridge::mainThreadCancel, this));
154 ThreadableLoaderClientWrapper* clientWrapper = static_cast<ThreadableLoaderClientWrapper*>(m_workerClientWrapper.get());
155 if (!clientWrapper->done()) {
156 // If the client hasn't reached a termination state, then transition it by sending a cancellation error.
157 // Note: no more client callbacks will be done after this method -- the clearClientWrapper() call ensures that.
158 ResourceError error(String(), 0, String(), String());
159 error.setIsCancellation(true);
160 clientWrapper->didFail(error);
162 clearClientWrapper();
165 void WorkerThreadableLoader::MainThreadBridge::clearClientWrapper()
167 static_cast<ThreadableLoaderClientWrapper*>(m_workerClientWrapper.get())->clearClient();
170 static void workerContextDidSendData(ScriptExecutionContext* context, RefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
172 ASSERT_UNUSED(context, context->isWorkerContext());
173 workerClientWrapper->didSendData(bytesSent, totalBytesToBeSent);
176 void WorkerThreadableLoader::MainThreadBridge::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
178 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidSendData, m_workerClientWrapper, bytesSent, totalBytesToBeSent), m_taskMode);
181 static void workerContextDidReceiveResponse(ScriptExecutionContext* context, RefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, auto_ptr<CrossThreadResourceResponseData> responseData)
183 ASSERT_UNUSED(context, context->isWorkerContext());
184 OwnPtr<ResourceResponse> response(ResourceResponse::adopt(responseData));
185 workerClientWrapper->didReceiveResponse(*response);
188 void WorkerThreadableLoader::MainThreadBridge::didReceiveResponse(const ResourceResponse& response)
190 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidReceiveResponse, m_workerClientWrapper, response), m_taskMode);
193 static void workerContextDidReceiveData(ScriptExecutionContext* context, RefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, auto_ptr<Vector<char> > vectorData)
195 ASSERT_UNUSED(context, context->isWorkerContext());
196 workerClientWrapper->didReceiveData(vectorData->data(), vectorData->size());
199 void WorkerThreadableLoader::MainThreadBridge::didReceiveData(const char* data, int lengthReceived)
201 auto_ptr<Vector<char> > vector(new Vector<char>(lengthReceived)); // needs to be an auto_ptr for usage with createCallbackTask.
202 memcpy(vector->data(), data, lengthReceived);
203 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidReceiveData, m_workerClientWrapper, vector), m_taskMode);
206 static void workerContextDidFinishLoading(ScriptExecutionContext* context, RefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, unsigned long identifier)
208 ASSERT_UNUSED(context, context->isWorkerContext());
209 workerClientWrapper->didFinishLoading(identifier);
212 void WorkerThreadableLoader::MainThreadBridge::didFinishLoading(unsigned long identifier)
214 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidFinishLoading, m_workerClientWrapper, identifier), m_taskMode);
217 static void workerContextDidFail(ScriptExecutionContext* context, RefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, const ResourceError& error)
219 ASSERT_UNUSED(context, context->isWorkerContext());
220 workerClientWrapper->didFail(error);
223 void WorkerThreadableLoader::MainThreadBridge::didFail(const ResourceError& error)
225 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidFail, m_workerClientWrapper, error), m_taskMode);
228 static void workerContextDidFailRedirectCheck(ScriptExecutionContext* context, RefPtr<ThreadableLoaderClientWrapper> workerClientWrapper)
230 ASSERT_UNUSED(context, context->isWorkerContext());
231 workerClientWrapper->didFailRedirectCheck();
234 void WorkerThreadableLoader::MainThreadBridge::didFailRedirectCheck()
236 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidFailRedirectCheck, m_workerClientWrapper), m_taskMode);
239 static void workerContextDidReceiveAuthenticationCancellation(ScriptExecutionContext* context, RefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, auto_ptr<CrossThreadResourceResponseData> responseData)
241 ASSERT_UNUSED(context, context->isWorkerContext());
242 OwnPtr<ResourceResponse> response(ResourceResponse::adopt(responseData));
243 workerClientWrapper->didReceiveAuthenticationCancellation(*response);
246 void WorkerThreadableLoader::MainThreadBridge::didReceiveAuthenticationCancellation(const ResourceResponse& response)
248 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidReceiveAuthenticationCancellation, m_workerClientWrapper, response), m_taskMode);
251 } // namespace WebCore
253 #endif // ENABLE(WORKERS)