mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
6ec4b75061
--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
114 lines
3.1 KiB
C++
114 lines
3.1 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/. */
|
|
|
|
#include "File.h"
|
|
|
|
#include "LockedFile.h"
|
|
#include "mozilla/Assertions.h"
|
|
#include "nsDebug.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
using indexedDB::IndexedDatabaseManager;
|
|
|
|
// Create as a file
|
|
File::File(const nsAString& aName, const nsAString& aContentType,
|
|
uint64_t aLength, nsIFile* aFile, LockedFile* aLockedFile)
|
|
: nsDOMFileCC(aName, aContentType, aLength),
|
|
mFile(aFile), mLockedFile(aLockedFile),
|
|
mWholeFile(true), mStoredFile(false)
|
|
{
|
|
MOZ_ASSERT(mFile, "Null file!");
|
|
MOZ_ASSERT(mLockedFile, "Null locked file!");
|
|
}
|
|
|
|
// Create as a stored file
|
|
File::File(const nsAString& aName, const nsAString& aContentType,
|
|
uint64_t aLength, nsIFile* aFile, LockedFile* aLockedFile,
|
|
FileInfo* aFileInfo)
|
|
: nsDOMFileCC(aName, aContentType, aLength),
|
|
mFile(aFile), mLockedFile(aLockedFile),
|
|
mWholeFile(true), mStoredFile(true)
|
|
{
|
|
MOZ_ASSERT(mFile, "Null file!");
|
|
MOZ_ASSERT(mLockedFile, "Null locked file!");
|
|
mFileInfos.AppendElement(aFileInfo);
|
|
}
|
|
|
|
// Create slice
|
|
File::File(const File* aOther, uint64_t aStart, uint64_t aLength,
|
|
const nsAString& aContentType)
|
|
: nsDOMFileCC(aContentType, aOther->mStart + aStart, aLength),
|
|
mFile(aOther->mFile), mLockedFile(aOther->mLockedFile),
|
|
mWholeFile(false), mStoredFile(aOther->mStoredFile)
|
|
{
|
|
NS_ASSERTION(mFile, "Null file!");
|
|
NS_ASSERTION(mLockedFile, "Null locked file!");
|
|
|
|
if (mStoredFile) {
|
|
FileInfo* fileInfo;
|
|
|
|
if (IndexedDatabaseManager::IsClosed()) {
|
|
fileInfo = aOther->GetFileInfo();
|
|
}
|
|
else {
|
|
MutexAutoLock lock(IndexedDatabaseManager::FileMutex());
|
|
fileInfo = aOther->GetFileInfo();
|
|
}
|
|
|
|
mFileInfos.AppendElement(fileInfo);
|
|
}
|
|
}
|
|
|
|
File::~File()
|
|
{
|
|
}
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_INHERITED(File, nsDOMFileCC,
|
|
mLockedFile)
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(File)
|
|
NS_INTERFACE_MAP_END_INHERITING(nsDOMFileCC)
|
|
|
|
NS_IMPL_ADDREF_INHERITED(File, nsDOMFileCC)
|
|
NS_IMPL_RELEASE_INHERITED(File, nsDOMFileCC)
|
|
|
|
NS_IMETHODIMP
|
|
File::GetInternalStream(nsIInputStream **aStream)
|
|
{
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
nsresult rv = mLockedFile->OpenInputStream(mWholeFile, mStart, mLength,
|
|
aStream);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
already_AddRefed<nsIDOMBlob>
|
|
File::CreateSlice(uint64_t aStart, uint64_t aLength,
|
|
const nsAString& aContentType)
|
|
{
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
nsCOMPtr<nsIDOMBlob> t =
|
|
new File(this, aStart, aLength, aContentType);
|
|
return t.forget();
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
File::GetMozFullPathInternal(nsAString &aFilename)
|
|
{
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
NS_ASSERTION(mIsFile, "Should only be called on files");
|
|
|
|
return mFile->GetPath(aFilename);
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|