mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
6adeb3c23f
--HG-- rename : dom/file/ArchiveEvent.cpp => dom/archivereader/ArchiveEvent.cpp rename : dom/file/ArchiveEvent.h => dom/archivereader/ArchiveEvent.h rename : dom/file/ArchiveReader.cpp => dom/archivereader/ArchiveReader.cpp rename : dom/file/ArchiveReader.h => dom/archivereader/ArchiveReader.h rename : dom/file/ArchiveRequest.cpp => dom/archivereader/ArchiveRequest.cpp rename : dom/file/ArchiveRequest.h => dom/archivereader/ArchiveRequest.h rename : dom/file/ArchiveZipEvent.cpp => dom/archivereader/ArchiveZipEvent.cpp rename : dom/file/ArchiveZipEvent.h => dom/archivereader/ArchiveZipEvent.h rename : dom/file/ArchiveZipFile.cpp => dom/archivereader/ArchiveZipFile.cpp rename : dom/file/ArchiveZipFile.h => dom/archivereader/ArchiveZipFile.h rename : dom/file/test/test_archivereader.html => dom/archivereader/test/test_basic.html rename : dom/file/test/test_archivereader_nonUnicode.html => dom/archivereader/test/test_nonUnicode.html rename : dom/file/test/test_archivereader_zip_in_zip.html => dom/archivereader/test/test_zip_in_zip.html rename : dom/file/test/test_bug_793311.html => dom/base/test/test_bug793311.html rename : dom/file/AsyncHelper.cpp => dom/filehandle/AsyncHelper.cpp rename : dom/file/AsyncHelper.h => dom/filehandle/AsyncHelper.h rename : dom/file/File.cpp => dom/filehandle/File.cpp rename : dom/file/File.h => dom/filehandle/File.h rename : dom/file/FileHandle.cpp => dom/filehandle/FileHandle.cpp rename : dom/file/FileHandle.h => dom/filehandle/FileHandle.h rename : dom/file/FileHelper.cpp => dom/filehandle/FileHelper.cpp rename : dom/file/FileHelper.h => dom/filehandle/FileHelper.h rename : dom/file/FileRequest.cpp => dom/filehandle/FileRequest.cpp rename : dom/file/FileRequest.h => dom/filehandle/FileRequest.h rename : dom/file/FileService.cpp => dom/filehandle/FileService.cpp rename : dom/file/FileService.h => dom/filehandle/FileService.h rename : dom/file/FileStreamWrappers.cpp => dom/filehandle/FileStreamWrappers.cpp rename : dom/file/FileStreamWrappers.h => dom/filehandle/FileStreamWrappers.h rename : dom/file/LockedFile.cpp => dom/filehandle/LockedFile.cpp rename : dom/file/LockedFile.h => dom/filehandle/LockedFile.h rename : dom/file/MemoryStreams.cpp => dom/filehandle/MemoryStreams.cpp rename : dom/file/MemoryStreams.h => dom/filehandle/MemoryStreams.h rename : dom/file/MetadataHelper.cpp => dom/filehandle/MetadataHelper.cpp rename : dom/file/MetadataHelper.h => dom/filehandle/MetadataHelper.h rename : dom/file/moz.build => dom/filehandle/moz.build rename : dom/file/nsIFileStorage.h => dom/filehandle/nsIFileStorage.h rename : dom/file/test/dummy_worker.js => dom/filehandle/test/dummy_worker.js rename : dom/file/test/helpers.js => dom/filehandle/test/helpers.js rename : dom/file/test/mochitest.ini => dom/filehandle/test/mochitest.ini rename : dom/file/test/moz.build => dom/filehandle/test/moz.build rename : dom/file/test/test_append_read_data.html => dom/filehandle/test/test_append_read_data.html rename : dom/file/test/test_getFile.html => dom/filehandle/test/test_getFile.html rename : dom/file/test/test_getFileId.html => dom/filehandle/test/test_getFileId.html rename : dom/file/test/test_location.html => dom/filehandle/test/test_location.html rename : dom/file/test/test_lockedfile_lifetimes.html => dom/filehandle/test/test_lockedfile_lifetimes.html rename : dom/file/test/test_lockedfile_lifetimes_nested.html => dom/filehandle/test/test_lockedfile_lifetimes_nested.html rename : dom/file/test/test_lockedfile_ordering.html => dom/filehandle/test/test_lockedfile_ordering.html rename : dom/file/test/test_overlapping_lockedfiles.html => dom/filehandle/test/test_overlapping_lockedfiles.html rename : dom/file/test/test_progress_events.html => dom/filehandle/test/test_progress_events.html rename : dom/file/test/test_readonly_lockedfiles.html => dom/filehandle/test/test_readonly_lockedfiles.html rename : dom/file/test/test_request_readyState.html => dom/filehandle/test/test_request_readyState.html rename : dom/file/test/test_stream_tracking.html => dom/filehandle/test/test_stream_tracking.html rename : dom/file/test/test_success_events_after_abort.html => dom/filehandle/test/test_success_events_after_abort.html rename : dom/file/test/test_truncate.html => dom/filehandle/test/test_truncate.html rename : dom/file/test/test_workers.html => dom/filehandle/test/test_workers.html rename : dom/file/test/test_write_read_data.html => dom/filehandle/test/test_write_read_data.html
320 lines
6.6 KiB
C++
320 lines
6.6 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef mozilla_dom_LockedFile_h
|
|
#define mozilla_dom_LockedFile_h
|
|
|
|
#include "js/TypeDecls.h"
|
|
#include "MainThreadUtils.h"
|
|
#include "mozilla/Assertions.h"
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/dom/BindingDeclarations.h"
|
|
#include "mozilla/dom/FileModeBinding.h"
|
|
#include "mozilla/dom/Nullable.h"
|
|
#include "mozilla/dom/TypedArray.h"
|
|
#include "mozilla/DOMEventTargetHelper.h"
|
|
#include "mozilla/ErrorResult.h"
|
|
#include "nsAutoPtr.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsCycleCollectionParticipant.h"
|
|
#include "nsIInputStream.h"
|
|
#include "nsIRunnable.h"
|
|
#include "nsTArray.h"
|
|
|
|
class nsAString;
|
|
class nsIDOMBlob;
|
|
class nsPIDOMWindow;
|
|
|
|
namespace mozilla {
|
|
|
|
class EventChainPreVisitor;
|
|
|
|
namespace dom {
|
|
|
|
class DOMFileMetadataParameters;
|
|
class FileHandle;
|
|
class FileHelper;
|
|
class FileRequest;
|
|
class FileService;
|
|
class FinishHelper;
|
|
class MetadataHelper;
|
|
|
|
class LockedFile : public DOMEventTargetHelper,
|
|
public nsIRunnable
|
|
{
|
|
friend class FileHelper;
|
|
friend class FileService;
|
|
friend class FinishHelper;
|
|
friend class MetadataHelper;
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(LockedFile, DOMEventTargetHelper)
|
|
|
|
enum RequestMode
|
|
{
|
|
NORMAL = 0, // Sequential
|
|
PARALLEL
|
|
};
|
|
|
|
enum ReadyState
|
|
{
|
|
INITIAL = 0,
|
|
LOADING,
|
|
FINISHING,
|
|
DONE
|
|
};
|
|
|
|
static already_AddRefed<LockedFile>
|
|
Create(FileHandle* aFileHandle,
|
|
FileMode aMode,
|
|
RequestMode aRequestMode = NORMAL);
|
|
|
|
// nsIDOMEventTarget
|
|
virtual nsresult
|
|
PreHandleEvent(EventChainPreVisitor& aVisitor) MOZ_OVERRIDE;
|
|
|
|
nsresult
|
|
CreateParallelStream(nsISupports** aStream);
|
|
|
|
nsresult
|
|
GetOrCreateStream(nsISupports** aStream);
|
|
|
|
bool
|
|
IsOpen() const;
|
|
|
|
bool
|
|
IsAborted() const
|
|
{
|
|
return mAborted;
|
|
}
|
|
|
|
FileHandle*
|
|
Handle() const
|
|
{
|
|
return mFileHandle;
|
|
}
|
|
|
|
nsresult
|
|
OpenInputStream(bool aWholeFile, uint64_t aStart, uint64_t aLength,
|
|
nsIInputStream** aResult);
|
|
|
|
// WrapperCache
|
|
virtual JSObject*
|
|
WrapObject(JSContext* aCx) MOZ_OVERRIDE;
|
|
|
|
// WebIDL
|
|
nsPIDOMWindow*
|
|
GetParentObject() const
|
|
{
|
|
return GetOwner();
|
|
}
|
|
|
|
FileHandle*
|
|
GetFileHandle() const
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
return Handle();
|
|
}
|
|
|
|
FileMode
|
|
Mode() const
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
return mMode;
|
|
}
|
|
|
|
bool
|
|
Active() const
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
return IsOpen();
|
|
}
|
|
|
|
Nullable<uint64_t>
|
|
GetLocation() const
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
if (mLocation == UINT64_MAX) {
|
|
return Nullable<uint64_t>();
|
|
}
|
|
|
|
return Nullable<uint64_t>(mLocation);
|
|
}
|
|
|
|
void
|
|
SetLocation(const Nullable<uint64_t>& aLocation)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
// Null means the end-of-file.
|
|
if (aLocation.IsNull()) {
|
|
mLocation = UINT64_MAX;
|
|
} else {
|
|
mLocation = aLocation.Value();
|
|
}
|
|
}
|
|
|
|
already_AddRefed<FileRequest>
|
|
GetMetadata(const DOMFileMetadataParameters& aParameters, ErrorResult& aRv);
|
|
|
|
already_AddRefed<FileRequest>
|
|
ReadAsArrayBuffer(uint64_t aSize, ErrorResult& aRv);
|
|
|
|
already_AddRefed<FileRequest>
|
|
ReadAsText(uint64_t aSize, const nsAString& aEncoding, ErrorResult& aRv);
|
|
|
|
template<class T>
|
|
already_AddRefed<FileRequest>
|
|
Write(const T& aValue, ErrorResult& aRv)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
return WriteOrAppend(aValue, false, aRv);
|
|
}
|
|
|
|
template<class T>
|
|
already_AddRefed<FileRequest>
|
|
Append(const T& aValue, ErrorResult& aRv)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
return WriteOrAppend(aValue, true, aRv);
|
|
}
|
|
|
|
already_AddRefed<FileRequest>
|
|
Truncate(const Optional<uint64_t>& aSize, ErrorResult& aRv);
|
|
|
|
already_AddRefed<FileRequest>
|
|
Flush(ErrorResult& aRv);
|
|
|
|
void
|
|
Abort(ErrorResult& aRv);
|
|
|
|
IMPL_EVENT_HANDLER(complete)
|
|
IMPL_EVENT_HANDLER(abort)
|
|
IMPL_EVENT_HANDLER(error)
|
|
|
|
private:
|
|
LockedFile();
|
|
~LockedFile();
|
|
|
|
void
|
|
OnNewRequest();
|
|
|
|
void
|
|
OnRequestFinished();
|
|
|
|
bool
|
|
CheckState(ErrorResult& aRv);
|
|
|
|
bool
|
|
CheckStateAndArgumentsForRead(uint64_t aSize, ErrorResult& aRv);
|
|
|
|
bool
|
|
CheckStateForWrite(ErrorResult& aRv);
|
|
|
|
already_AddRefed<FileRequest>
|
|
GenerateFileRequest();
|
|
|
|
template<class T>
|
|
already_AddRefed<FileRequest>
|
|
WriteOrAppend(const T& aValue, bool aAppend, ErrorResult& aRv)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
// State checking for write
|
|
if (!CheckStateForWrite(aRv)) {
|
|
return nullptr;
|
|
}
|
|
|
|
// Additional state checking for write
|
|
if (!aAppend && mLocation == UINT64_MAX) {
|
|
aRv.Throw(NS_ERROR_DOM_FILEHANDLE_NOT_ALLOWED_ERR);
|
|
return nullptr;
|
|
}
|
|
|
|
uint64_t length;
|
|
nsCOMPtr<nsIInputStream> stream = GetInputStream(aValue, &length, aRv);
|
|
if (aRv.Failed()) {
|
|
return nullptr;
|
|
}
|
|
|
|
if (!length) {
|
|
return nullptr;
|
|
}
|
|
|
|
// Do nothing if the window is closed
|
|
if (!GetOwner()) {
|
|
return nullptr;
|
|
}
|
|
|
|
return WriteInternal(stream, length, aAppend, aRv);
|
|
}
|
|
|
|
already_AddRefed<FileRequest>
|
|
WriteInternal(nsIInputStream* aInputStream, uint64_t aInputLength,
|
|
bool aAppend, ErrorResult& aRv);
|
|
|
|
nsresult
|
|
Finish();
|
|
|
|
static already_AddRefed<nsIInputStream>
|
|
GetInputStream(const ArrayBuffer& aValue, uint64_t* aInputLength,
|
|
ErrorResult& aRv);
|
|
|
|
static already_AddRefed<nsIInputStream>
|
|
GetInputStream(nsIDOMBlob* aValue, uint64_t* aInputLength, ErrorResult& aRv);
|
|
|
|
static already_AddRefed<nsIInputStream>
|
|
GetInputStream(const nsAString& aValue, uint64_t* aInputLength,
|
|
ErrorResult& aRv);
|
|
|
|
nsRefPtr<FileHandle> mFileHandle;
|
|
ReadyState mReadyState;
|
|
FileMode mMode;
|
|
RequestMode mRequestMode;
|
|
uint64_t mLocation;
|
|
uint32_t mPendingRequests;
|
|
|
|
nsTArray<nsCOMPtr<nsISupports> > mParallelStreams;
|
|
nsCOMPtr<nsISupports> mStream;
|
|
|
|
bool mAborted;
|
|
bool mCreating;
|
|
};
|
|
|
|
class FinishHelper MOZ_FINAL : public nsIRunnable
|
|
{
|
|
friend class LockedFile;
|
|
|
|
public:
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
private:
|
|
FinishHelper(LockedFile* aLockedFile);
|
|
~FinishHelper()
|
|
{ }
|
|
|
|
nsRefPtr<LockedFile> mLockedFile;
|
|
nsTArray<nsCOMPtr<nsISupports> > mParallelStreams;
|
|
nsCOMPtr<nsISupports> mStream;
|
|
|
|
bool mAborted;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_LockedFile_h
|