blob: ed36fe5a192c4643e2aa2a3d17629b321b5d887b [file] [log] [blame]
/*
* Copyright (C) 2010 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 "core/fileapi/FileReader.h"
#include "bindings/v8/ExceptionState.h"
#include "core/dom/CrossThreadTask.h"
#include "core/dom/ExceptionCode.h"
#include "core/dom/ExecutionContext.h"
#include "core/events/ProgressEvent.h"
#include "core/fileapi/File.h"
#include "platform/Logging.h"
#include "wtf/ArrayBuffer.h"
#include "wtf/CurrentTime.h"
#include "wtf/Deque.h"
#include "wtf/HashSet.h"
#include "wtf/ThreadSpecific.h"
#include "wtf/Threading.h"
#include "wtf/text/CString.h"
namespace WebCore {
namespace {
#if !LOG_DISABLED
const CString utf8BlobUUID(Blob* blob)
{
return blob->uuid().utf8();
}
const CString utf8FilePath(Blob* blob)
{
return blob->hasBackingFile() ? toFile(blob)->path().utf8() : "";
}
#endif
} // namespace
// Embedders like chromium limit the number of simultaneous requests to avoid
// excessive IPC congestion. We limit this to 100 per thread to throttle the
// requests (the value is arbitrarily chosen).
static const size_t kMaxOutstandingRequestsPerThread = 100;
static const double progressNotificationIntervalMS = 50;
class FileReader::ThrottlingController {
public:
ThrottlingController() : m_maxRunningReaders(kMaxOutstandingRequestsPerThread) { }
~ThrottlingController() { }
void pushReader(FileReader* reader)
{
reader->setPendingActivity(reader);
if (m_pendingReaders.isEmpty()
&& m_runningReaders.size() < m_maxRunningReaders) {
reader->executePendingRead();
m_runningReaders.add(reader);
return;
}
m_pendingReaders.append(reader);
executeReaders();
}
void removeReader(FileReader* reader)
{
HashSet<FileReader*>::const_iterator hashIter = m_runningReaders.find(reader);
if (hashIter != m_runningReaders.end()) {
m_runningReaders.remove(hashIter);
reader->unsetPendingActivity(reader);
executeReaders();
return;
}
Deque<FileReader*>::const_iterator dequeEnd = m_pendingReaders.end();
for (Deque<FileReader*>::const_iterator it = m_pendingReaders.begin(); it != dequeEnd; ++it) {
if (*it == reader) {
m_pendingReaders.remove(it);
reader->unsetPendingActivity(reader);
return;
}
}
}
private:
void executeReaders()
{
while (m_runningReaders.size() < m_maxRunningReaders) {
if (m_pendingReaders.isEmpty())
return;
FileReader* reader = m_pendingReaders.takeFirst();
reader->executePendingRead();
m_runningReaders.add(reader);
}
}
const size_t m_maxRunningReaders;
Deque<FileReader*> m_pendingReaders;
HashSet<FileReader*> m_runningReaders;
};
PassRefPtr<FileReader> FileReader::create(ExecutionContext* context)
{
RefPtr<FileReader> fileReader(adoptRef(new FileReader(context)));
fileReader->suspendIfNeeded();
return fileReader.release();
}
FileReader::FileReader(ExecutionContext* context)
: ActiveDOMObject(context)
, m_state(EMPTY)
, m_loadingState(LoadingStateNone)
, m_readType(FileReaderLoader::ReadAsBinaryString)
, m_lastProgressNotificationTimeMS(0)
{
ScriptWrappable::init(this);
}
FileReader::~FileReader()
{
terminate();
}
const AtomicString& FileReader::interfaceName() const
{
return EventTargetNames::FileReader;
}
void FileReader::stop()
{
if (m_loadingState == LoadingStateLoading || m_loadingState == LoadingStatePending)
throttlingController()->removeReader(this);
terminate();
}
void FileReader::readAsArrayBuffer(Blob* blob, ExceptionState& exceptionState)
{
if (!blob)
return;
WTF_LOG(FileAPI, "FileReader: reading as array buffer: %s %s\n", utf8BlobUUID(blob).data(), utf8FilePath(blob).data());
readInternal(blob, FileReaderLoader::ReadAsArrayBuffer, exceptionState);
}
void FileReader::readAsBinaryString(Blob* blob, ExceptionState& exceptionState)
{
if (!blob)
return;
WTF_LOG(FileAPI, "FileReader: reading as binary: %s %s\n", utf8BlobUUID(blob).data(), utf8FilePath(blob).data());
readInternal(blob, FileReaderLoader::ReadAsBinaryString, exceptionState);
}
void FileReader::readAsText(Blob* blob, const String& encoding, ExceptionState& exceptionState)
{
if (!blob)
return;
WTF_LOG(FileAPI, "FileReader: reading as text: %s %s\n", utf8BlobUUID(blob).data(), utf8FilePath(blob).data());
m_encoding = encoding;
readInternal(blob, FileReaderLoader::ReadAsText, exceptionState);
}
void FileReader::readAsText(Blob* blob, ExceptionState& exceptionState)
{
readAsText(blob, String(), exceptionState);
}
void FileReader::readAsDataURL(Blob* blob, ExceptionState& exceptionState)
{
if (!blob)
return;
WTF_LOG(FileAPI, "FileReader: reading as data URL: %s %s\n", utf8BlobUUID(blob).data(), utf8FilePath(blob).data());
readInternal(blob, FileReaderLoader::ReadAsDataURL, exceptionState);
}
void FileReader::readInternal(Blob* blob, FileReaderLoader::ReadType type, ExceptionState& exceptionState)
{
// If multiple concurrent read methods are called on the same FileReader, InvalidStateError should be thrown when the state is LOADING.
if (m_state == LOADING) {
exceptionState.throwUninformativeAndGenericDOMException(InvalidStateError);
return;
}
m_blob = blob;
m_readType = type;
m_state = LOADING;
m_loadingState = LoadingStatePending;
m_error = 0;
throttlingController()->pushReader(this);
}
void FileReader::executePendingRead()
{
ASSERT(m_loadingState == LoadingStatePending);
m_loadingState = LoadingStateLoading;
m_loader = adoptPtr(new FileReaderLoader(m_readType, this));
m_loader->setEncoding(m_encoding);
m_loader->setDataType(m_blob->type());
m_loader->start(executionContext(), m_blob->blobDataHandle());
}
static void delayedAbort(ExecutionContext*, FileReader* reader)
{
reader->doAbort();
}
void FileReader::abort()
{
WTF_LOG(FileAPI, "FileReader: aborting\n");
if (m_loadingState != LoadingStateLoading
&& m_loadingState != LoadingStatePending) {
return;
}
m_loadingState = LoadingStateAborted;
// Schedule to have the abort done later since abort() might be called from the event handler and we do not want the resource loading code to be in the stack.
executionContext()->postTask(
createCallbackTask(&delayedAbort, AllowAccessLater(this)));
}
void FileReader::doAbort()
{
ASSERT(m_state != DONE);
terminate();
m_error = FileError::create(FileError::ABORT_ERR);
fireEvent(EventTypeNames::error);
fireEvent(EventTypeNames::abort);
fireEvent(EventTypeNames::loadend);
// All possible events have fired and we're done, no more pending activity.
throttlingController()->removeReader(this);
}
void FileReader::terminate()
{
if (m_loader) {
m_loader->cancel();
m_loader = nullptr;
}
m_state = DONE;
m_loadingState = LoadingStateNone;
}
void FileReader::didStartLoading()
{
fireEvent(EventTypeNames::loadstart);
}
void FileReader::didReceiveData()
{
// Fire the progress event at least every 50ms.
double now = currentTimeMS();
if (!m_lastProgressNotificationTimeMS)
m_lastProgressNotificationTimeMS = now;
else if (now - m_lastProgressNotificationTimeMS > progressNotificationIntervalMS) {
fireEvent(EventTypeNames::progress);
m_lastProgressNotificationTimeMS = now;
}
}
void FileReader::didFinishLoading()
{
if (m_loadingState == LoadingStateAborted)
return;
ASSERT(m_loadingState == LoadingStateLoading);
// It's important that we change m_loadingState before firing any events
// since any of the events could call abort(), which internally checks
// if we're still loading (therefore we need abort process) or not.
m_loadingState = LoadingStateNone;
fireEvent(EventTypeNames::progress);
ASSERT(m_state != DONE);
m_state = DONE;
fireEvent(EventTypeNames::load);
fireEvent(EventTypeNames::loadend);
// All possible events have fired and we're done, no more pending activity.
throttlingController()->removeReader(this);
}
void FileReader::didFail(FileError::ErrorCode errorCode)
{
if (m_loadingState == LoadingStateAborted)
return;
ASSERT(m_loadingState == LoadingStateLoading);
m_loadingState = LoadingStateNone;
ASSERT(m_state != DONE);
m_state = DONE;
m_error = FileError::create(static_cast<FileError::ErrorCode>(errorCode));
fireEvent(EventTypeNames::error);
fireEvent(EventTypeNames::loadend);
// All possible events have fired and we're done, no more pending activity.
throttlingController()->removeReader(this);
}
void FileReader::fireEvent(const AtomicString& type)
{
if (!m_loader) {
dispatchEvent(ProgressEvent::create(type, false, 0, 0));
return;
}
if (m_loader->totalBytes() >= 0)
dispatchEvent(ProgressEvent::create(type, true, m_loader->bytesLoaded(), m_loader->totalBytes()));
else
dispatchEvent(ProgressEvent::create(type, false, m_loader->bytesLoaded(), 0));
}
ThreadSpecific<FileReader::ThrottlingController>& FileReader::throttlingController()
{
AtomicallyInitializedStatic(ThreadSpecific<FileReader::ThrottlingController>*, controller = new ThreadSpecific<FileReader::ThrottlingController>);
return *controller;
}
PassRefPtr<ArrayBuffer> FileReader::arrayBufferResult() const
{
if (!m_loader || m_error)
return 0;
return m_loader->arrayBufferResult();
}
String FileReader::stringResult()
{
if (!m_loader || m_error)
return String();
return m_loader->stringResult();
}
} // namespace WebCore