mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 22:28:59 +02:00
--HG-- rename : dom/base/BlobSet.cpp => dom/file/BlobSet.cpp rename : dom/base/BlobSet.h => dom/file/BlobSet.h rename : dom/base/File.cpp => dom/file/File.cpp rename : dom/base/File.h => dom/file/File.h rename : dom/base/FileList.cpp => dom/file/FileList.cpp rename : dom/base/FileList.h => dom/file/FileList.h rename : dom/base/FileReader.cpp => dom/file/FileReader.cpp rename : dom/base/FileReader.h => dom/file/FileReader.h rename : dom/base/MultipartBlobImpl.cpp => dom/file/MultipartBlobImpl.cpp rename : dom/base/MultipartBlobImpl.h => dom/file/MultipartBlobImpl.h rename : dom/base/MutableBlobStorage.cpp => dom/file/MutableBlobStorage.cpp rename : dom/base/MutableBlobStorage.h => dom/file/MutableBlobStorage.h rename : dom/base/MutableBlobStreamListener.cpp => dom/file/MutableBlobStreamListener.cpp rename : dom/base/MutableBlobStreamListener.h => dom/file/MutableBlobStreamListener.h rename : dom/ipc/Blob.cpp => dom/file/ipc/Blob.cpp rename : dom/ipc/BlobChild.h => dom/file/ipc/BlobChild.h rename : dom/ipc/BlobParent.h => dom/file/ipc/BlobParent.h rename : dom/ipc/BlobTypes.ipdlh => dom/file/ipc/BlobTypes.ipdlh rename : dom/ipc/PBlob.ipdl => dom/file/ipc/PBlob.ipdl rename : dom/ipc/PBlobStream.ipdl => dom/file/ipc/PBlobStream.ipdl rename : dom/ipc/nsIRemoteBlob.h => dom/file/ipc/nsIRemoteBlob.h rename : dom/base/nsHostObjectProtocolHandler.cpp => dom/file/nsHostObjectProtocolHandler.cpp rename : dom/base/nsHostObjectProtocolHandler.h => dom/file/nsHostObjectProtocolHandler.h rename : dom/base/nsHostObjectURI.cpp => dom/file/nsHostObjectURI.cpp rename : dom/base/nsHostObjectURI.h => dom/file/nsHostObjectURI.h rename : dom/base/nsIDOMBlob.idl => dom/file/nsIDOMBlob.idl rename : dom/base/nsIDOMFileList.idl => dom/file/nsIDOMFileList.idl rename : dom/base/test/create_file_objects.js => dom/file/tests/create_file_objects.js rename : dom/base/test/file_blobURL_expiring.html => dom/file/tests/file_blobURL_expiring.html rename : dom/base/test/file_mozfiledataurl_audio.ogg => dom/file/tests/file_mozfiledataurl_audio.ogg rename : dom/base/test/file_mozfiledataurl_doc.html => dom/file/tests/file_mozfiledataurl_doc.html rename : dom/base/test/file_mozfiledataurl_img.jpg => dom/file/tests/file_mozfiledataurl_img.jpg rename : dom/base/test/file_mozfiledataurl_inner.html => dom/file/tests/file_mozfiledataurl_inner.html rename : dom/base/test/file_mozfiledataurl_text.txt => dom/file/tests/file_mozfiledataurl_text.txt rename : dom/base/test/file_nonascii_blob_url.html => dom/file/tests/file_nonascii_blob_url.html rename : dom/base/test/fileapi_chromeScript.js => dom/file/tests/fileapi_chromeScript.js rename : dom/base/test/fileutils.js => dom/file/tests/fileutils.js rename : dom/base/test/test_blobURL_expiring.html => dom/file/tests/test_blobURL_expiring.html rename : dom/base/test/test_blob_fragment_and_query.html => dom/file/tests/test_blob_fragment_and_query.html rename : dom/base/test/test_blobconstructor.html => dom/file/tests/test_blobconstructor.html rename : dom/base/test/test_file_from_blob.html => dom/file/tests/test_file_from_blob.html rename : dom/base/test/test_file_negative_date.html => dom/file/tests/test_file_negative_date.html rename : dom/base/test/test_fileapi.html => dom/file/tests/test_fileapi.html rename : dom/base/test/test_fileapi_slice.html => dom/file/tests/test_fileapi_slice.html rename : dom/base/test/test_ipc_messagemanager_blob.html => dom/file/tests/test_ipc_messagemanager_blob.html rename : dom/base/test/test_mozfiledataurl.html => dom/file/tests/test_mozfiledataurl.html rename : dom/base/test/test_nonascii_blob_url.html => dom/file/tests/test_nonascii_blob_url.html
260 lines
6.6 KiB
C++
260 lines
6.6 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=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_ipc_BlobParent_h
|
|
#define mozilla_dom_ipc_BlobParent_h
|
|
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/StaticPtr.h"
|
|
#include "mozilla/dom/PBlobParent.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsTArray.h"
|
|
|
|
template <class, class> class nsDataHashtable;
|
|
class nsIDHashKey;
|
|
class nsIEventTarget;
|
|
class nsIRemoteBlob;
|
|
template <class> class nsRevocableEventPtr;
|
|
class nsString;
|
|
|
|
namespace mozilla {
|
|
|
|
class Mutex;
|
|
|
|
namespace ipc {
|
|
|
|
class PBackgroundParent;
|
|
|
|
} // namespace ipc
|
|
|
|
namespace dom {
|
|
|
|
class ContentParent;
|
|
class BlobImpl;
|
|
class nsIContentParent;
|
|
class PBlobStreamParent;
|
|
|
|
class BlobParent final
|
|
: public PBlobParent
|
|
{
|
|
typedef mozilla::ipc::PBackgroundParent PBackgroundParent;
|
|
|
|
class IDTableEntry;
|
|
typedef nsDataHashtable<nsIDHashKey, IDTableEntry*> IDTable;
|
|
|
|
class OpenStreamRunnable;
|
|
friend class OpenStreamRunnable;
|
|
|
|
class RemoteBlobImpl;
|
|
|
|
struct CreateBlobImplMetadata;
|
|
|
|
static StaticAutoPtr<IDTable> sIDTable;
|
|
static StaticAutoPtr<Mutex> sIDTableMutex;
|
|
|
|
BlobImpl* mBlobImpl;
|
|
RemoteBlobImpl* mRemoteBlobImpl;
|
|
|
|
// One of these will be null and the other non-null.
|
|
PBackgroundParent* mBackgroundManager;
|
|
nsCOMPtr<nsIContentParent> mContentManager;
|
|
|
|
nsCOMPtr<nsIEventTarget> mEventTarget;
|
|
|
|
// nsIInputStreams backed by files must ensure that the files are actually
|
|
// opened and closed on a background thread before we can send their file
|
|
// handles across to the child. The child process could crash during this
|
|
// process so we need to make sure we cancel the intended response in such a
|
|
// case. We do that by holding an array of nsRevocableEventPtr. If the child
|
|
// crashes then this actor will be destroyed and the nsRevocableEventPtr
|
|
// destructor will cancel any stream events that are currently in flight.
|
|
nsTArray<nsRevocableEventPtr<OpenStreamRunnable>> mOpenStreamRunnables;
|
|
|
|
RefPtr<IDTableEntry> mIDTableEntry;
|
|
|
|
bool mOwnsBlobImpl;
|
|
|
|
public:
|
|
class FriendKey;
|
|
|
|
static void
|
|
Startup(const FriendKey& aKey);
|
|
|
|
// These create functions are called on the sending side.
|
|
static BlobParent*
|
|
GetOrCreate(nsIContentParent* aManager, BlobImpl* aBlobImpl);
|
|
|
|
static BlobParent*
|
|
GetOrCreate(PBackgroundParent* aManager, BlobImpl* aBlobImpl);
|
|
|
|
// These create functions are called on the receiving side.
|
|
static BlobParent*
|
|
Create(nsIContentParent* aManager,
|
|
const ParentBlobConstructorParams& aParams);
|
|
|
|
static BlobParent*
|
|
Create(PBackgroundParent* aManager,
|
|
const ParentBlobConstructorParams& aParams);
|
|
|
|
static void
|
|
Destroy(PBlobParent* aActor)
|
|
{
|
|
delete static_cast<BlobParent*>(aActor);
|
|
}
|
|
|
|
static already_AddRefed<BlobImpl>
|
|
GetBlobImplForID(const nsID& aID);
|
|
|
|
bool
|
|
HasManager() const
|
|
{
|
|
return mBackgroundManager || mContentManager;
|
|
}
|
|
|
|
PBackgroundParent*
|
|
GetBackgroundManager() const
|
|
{
|
|
return mBackgroundManager;
|
|
}
|
|
|
|
nsIContentParent*
|
|
GetContentManager() const
|
|
{
|
|
return mContentManager;
|
|
}
|
|
|
|
// Get the BlobImpl associated with this actor.
|
|
already_AddRefed<BlobImpl>
|
|
GetBlobImpl();
|
|
|
|
void
|
|
AssertIsOnOwningThread() const
|
|
#ifdef DEBUG
|
|
;
|
|
#else
|
|
{ }
|
|
#endif
|
|
|
|
private:
|
|
// These constructors are called on the sending side.
|
|
BlobParent(nsIContentParent* aManager, IDTableEntry* aIDTableEntry);
|
|
|
|
BlobParent(PBackgroundParent* aManager, IDTableEntry* aIDTableEntry);
|
|
|
|
// These constructors are called on the receiving side.
|
|
BlobParent(nsIContentParent* aManager,
|
|
BlobImpl* aBlobImpl,
|
|
IDTableEntry* aIDTableEntry);
|
|
|
|
BlobParent(PBackgroundParent* aManager,
|
|
BlobImpl* aBlobImpl,
|
|
IDTableEntry* aIDTableEntry);
|
|
|
|
// Only destroyed by BackgroundParentImpl and ContentParent.
|
|
~BlobParent();
|
|
|
|
void
|
|
CommonInit(IDTableEntry* aIDTableEntry);
|
|
|
|
void
|
|
CommonInit(BlobImpl* aBlobImpl, IDTableEntry* aIDTableEntry);
|
|
|
|
template <class ParentManagerType>
|
|
static BlobParent*
|
|
GetOrCreateFromImpl(ParentManagerType* aManager,
|
|
BlobImpl* aBlobImpl);
|
|
|
|
template <class ParentManagerType>
|
|
static BlobParent*
|
|
CreateFromParams(ParentManagerType* aManager,
|
|
const ParentBlobConstructorParams& aParams);
|
|
|
|
template <class ParentManagerType>
|
|
static BlobParent*
|
|
SendSliceConstructor(ParentManagerType* aManager,
|
|
const ParentBlobConstructorParams& aParams,
|
|
const ChildBlobConstructorParams& aOtherSideParams);
|
|
|
|
static BlobParent*
|
|
MaybeGetActorFromRemoteBlob(nsIRemoteBlob* aRemoteBlob,
|
|
nsIContentParent* aManager);
|
|
|
|
static BlobParent*
|
|
MaybeGetActorFromRemoteBlob(nsIRemoteBlob* aRemoteBlob,
|
|
PBackgroundParent* aManager);
|
|
|
|
void
|
|
NoteDyingRemoteBlobImpl();
|
|
|
|
void
|
|
NoteRunnableCompleted(OpenStreamRunnable* aRunnable);
|
|
|
|
nsIEventTarget*
|
|
EventTarget() const
|
|
{
|
|
return mEventTarget;
|
|
}
|
|
|
|
bool
|
|
IsOnOwningThread() const;
|
|
|
|
// These methods are only called by the IPDL message machinery.
|
|
virtual void
|
|
ActorDestroy(ActorDestroyReason aWhy) override;
|
|
|
|
virtual PBlobStreamParent*
|
|
AllocPBlobStreamParent(const uint64_t& aStart,
|
|
const uint64_t& aLength) override;
|
|
|
|
virtual mozilla::ipc::IPCResult
|
|
RecvPBlobStreamConstructor(PBlobStreamParent* aActor,
|
|
const uint64_t& aStart,
|
|
const uint64_t& aLength) override;
|
|
|
|
virtual bool
|
|
DeallocPBlobStreamParent(PBlobStreamParent* aActor) override;
|
|
|
|
virtual mozilla::ipc::IPCResult
|
|
RecvResolveMystery(const ResolveMysteryParams& aParams) override;
|
|
|
|
virtual mozilla::ipc::IPCResult
|
|
RecvBlobStreamSync(const uint64_t& aStart,
|
|
const uint64_t& aLength,
|
|
InputStreamParams* aParams,
|
|
OptionalFileDescriptorSet* aFDs) override;
|
|
|
|
virtual mozilla::ipc::IPCResult
|
|
RecvWaitForSliceCreation() override;
|
|
|
|
virtual mozilla::ipc::IPCResult
|
|
RecvGetFileId(int64_t* aFileId) override;
|
|
|
|
virtual mozilla::ipc::IPCResult
|
|
RecvGetFilePath(nsString* aFilePath) override;
|
|
};
|
|
|
|
// Only let ContentParent call BlobParent::Startup() and ensure that
|
|
// ContentParent can't access any other BlobParent internals.
|
|
class BlobParent::FriendKey final
|
|
{
|
|
friend class ContentParent;
|
|
|
|
private:
|
|
FriendKey()
|
|
{ }
|
|
|
|
FriendKey(const FriendKey& /* aOther */)
|
|
{ }
|
|
|
|
public:
|
|
~FriendKey()
|
|
{ }
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_ipc_BlobParent_h
|