mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
fd2cf49aa1
--HG-- rename : ipc/glue/RPCChannel.cpp => ipc/glue/MessageChannel.cpp rename : ipc/glue/RPCChannel.h => ipc/glue/MessageChannel.h
248 lines
7.0 KiB
C++
248 lines
7.0 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* vim: set sw=4 ts=8 et 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_Blob_h
|
|
#define mozilla_dom_ipc_Blob_h
|
|
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/dom/PBlobChild.h"
|
|
#include "mozilla/dom/PBlobParent.h"
|
|
#include "mozilla/dom/PBlobStreamChild.h"
|
|
#include "mozilla/dom/PBlobStreamParent.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsTArray.h"
|
|
|
|
class nsIDOMBlob;
|
|
template<class T> class nsRevocableEventPtr;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class ContentParent;
|
|
class ContentChild;
|
|
|
|
namespace ipc {
|
|
|
|
enum ActorFlavorEnum
|
|
{
|
|
Parent = 0,
|
|
Child
|
|
};
|
|
|
|
template <ActorFlavorEnum>
|
|
struct BlobTraits;
|
|
|
|
template <>
|
|
struct BlobTraits<Parent>
|
|
{
|
|
typedef mozilla::dom::PBlobParent ProtocolType;
|
|
typedef mozilla::dom::PBlobStreamParent StreamType;
|
|
typedef mozilla::dom::ParentBlobConstructorParams ConstructorParamsType;
|
|
typedef mozilla::dom::ChildBlobConstructorParams
|
|
OtherSideConstructorParamsType;
|
|
typedef mozilla::dom::ContentParent ConcreteContentManagerType;
|
|
|
|
// BaseType on the parent side is a bit more complicated than for the child
|
|
// side. In the case of nsIInputStreams backed by files we need to 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.
|
|
class BaseType : public ProtocolType
|
|
{
|
|
public:
|
|
static const ChildBlobConstructorParams&
|
|
GetBlobConstructorParams(const ConstructorParamsType& aParams)
|
|
{
|
|
return aParams.blobParams();
|
|
}
|
|
|
|
static void
|
|
SetBlobConstructorParams(ConstructorParamsType& aParams,
|
|
const ChildBlobConstructorParams& aBlobParams)
|
|
{
|
|
aParams.blobParams() = aBlobParams;
|
|
aParams.optionalInputStreamParams() = mozilla::void_t();
|
|
}
|
|
|
|
static void
|
|
SetBlobConstructorParams(OtherSideConstructorParamsType& aParams,
|
|
const ChildBlobConstructorParams& aBlobParams)
|
|
{
|
|
aParams = aBlobParams;
|
|
}
|
|
|
|
protected:
|
|
virtual StreamType*
|
|
AllocPBlobStreamParent() MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
DeallocPBlobStreamParent(StreamType* aActor) MOZ_OVERRIDE;
|
|
|
|
BaseType();
|
|
virtual ~BaseType();
|
|
|
|
class OpenStreamRunnable;
|
|
friend class OpenStreamRunnable;
|
|
|
|
void
|
|
NoteRunnableCompleted(OpenStreamRunnable* aRunnable);
|
|
|
|
nsTArray<nsRevocableEventPtr<OpenStreamRunnable> > mOpenStreamRunnables;
|
|
};
|
|
};
|
|
|
|
template <>
|
|
struct BlobTraits<Child>
|
|
{
|
|
typedef mozilla::dom::PBlobChild ProtocolType;
|
|
typedef mozilla::dom::PBlobStreamChild StreamType;
|
|
typedef mozilla::dom::ChildBlobConstructorParams ConstructorParamsType;
|
|
typedef mozilla::dom::ParentBlobConstructorParams
|
|
OtherSideConstructorParamsType;
|
|
typedef mozilla::dom::ContentChild ConcreteContentManagerType;
|
|
|
|
|
|
class BaseType : public ProtocolType
|
|
{
|
|
public:
|
|
static const ChildBlobConstructorParams&
|
|
GetBlobConstructorParams(const ConstructorParamsType& aParams)
|
|
{
|
|
return aParams;
|
|
}
|
|
|
|
static void
|
|
SetBlobConstructorParams(ConstructorParamsType& aParams,
|
|
const ChildBlobConstructorParams& aBlobParams)
|
|
{
|
|
aParams = aBlobParams;
|
|
}
|
|
|
|
static void
|
|
SetBlobConstructorParams(OtherSideConstructorParamsType& aParams,
|
|
const ChildBlobConstructorParams& aBlobParams)
|
|
{
|
|
aParams.blobParams() = aBlobParams;
|
|
aParams.optionalInputStreamParams() = mozilla::void_t();
|
|
}
|
|
|
|
protected:
|
|
virtual StreamType*
|
|
AllocPBlobStreamChild() MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
DeallocPBlobStreamChild(StreamType* aActor) MOZ_OVERRIDE;
|
|
|
|
BaseType()
|
|
{ }
|
|
|
|
virtual ~BaseType()
|
|
{ }
|
|
};
|
|
};
|
|
|
|
template <ActorFlavorEnum>
|
|
class RemoteBlob;
|
|
|
|
template <ActorFlavorEnum ActorFlavor>
|
|
class Blob : public BlobTraits<ActorFlavor>::BaseType
|
|
{
|
|
friend class RemoteBlob<ActorFlavor>;
|
|
|
|
public:
|
|
typedef typename BlobTraits<ActorFlavor>::ConcreteContentManagerType ContentManager;
|
|
typedef typename BlobTraits<ActorFlavor>::ProtocolType ProtocolType;
|
|
typedef typename BlobTraits<ActorFlavor>::StreamType StreamType;
|
|
typedef typename BlobTraits<ActorFlavor>::ConstructorParamsType
|
|
ConstructorParamsType;
|
|
typedef typename BlobTraits<ActorFlavor>::OtherSideConstructorParamsType
|
|
OtherSideConstructorParamsType;
|
|
typedef typename BlobTraits<ActorFlavor>::BaseType BaseType;
|
|
typedef RemoteBlob<ActorFlavor> RemoteBlobType;
|
|
typedef mozilla::ipc::IProtocolManager<
|
|
mozilla::ipc::IProtocol>::ActorDestroyReason
|
|
ActorDestroyReason;
|
|
|
|
protected:
|
|
nsIDOMBlob* mBlob;
|
|
RemoteBlobType* mRemoteBlob;
|
|
bool mOwnsBlob;
|
|
bool mBlobIsFile;
|
|
|
|
public:
|
|
// This create function is called on the sending side.
|
|
static Blob*
|
|
Create(ContentManager* aManager, nsIDOMBlob* aBlob)
|
|
{
|
|
return new Blob(aManager, aBlob);
|
|
}
|
|
|
|
// This create function is called on the receiving side.
|
|
static Blob*
|
|
Create(ContentManager* aManager, const ConstructorParamsType& aParams);
|
|
|
|
// Get the blob associated with this actor. This may always be called on the
|
|
// sending side. It may also be called on the receiving side unless this is a
|
|
// "mystery" blob that has not yet received a SetMysteryBlobInfo() call.
|
|
already_AddRefed<nsIDOMBlob>
|
|
GetBlob();
|
|
|
|
// Use this for files.
|
|
bool
|
|
SetMysteryBlobInfo(const nsString& aName, const nsString& aContentType,
|
|
uint64_t aLength, uint64_t aLastModifiedDate);
|
|
|
|
// Use this for non-file blobs.
|
|
bool
|
|
SetMysteryBlobInfo(const nsString& aContentType, uint64_t aLength);
|
|
|
|
ContentManager* Manager()
|
|
{
|
|
return mManager;
|
|
}
|
|
|
|
private:
|
|
// This constructor is called on the sending side.
|
|
Blob(ContentManager* aManager, nsIDOMBlob* aBlob);
|
|
|
|
// This constructor is called on the receiving side.
|
|
Blob(ContentManager* aManager, const ConstructorParamsType& aParams);
|
|
|
|
static already_AddRefed<RemoteBlobType>
|
|
CreateRemoteBlob(const ConstructorParamsType& aParams);
|
|
|
|
void
|
|
NoteDyingRemoteBlob();
|
|
|
|
// These methods are only called by the IPDL message machinery.
|
|
virtual void
|
|
ActorDestroy(ActorDestroyReason aWhy) MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
RecvResolveMystery(const ResolveMysteryParams& aParams) MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
RecvPBlobStreamConstructor(StreamType* aActor) MOZ_OVERRIDE;
|
|
|
|
nsRefPtr<ContentManager> mManager;
|
|
};
|
|
|
|
} // namespace ipc
|
|
|
|
typedef mozilla::dom::ipc::Blob<mozilla::dom::ipc::Child> BlobChild;
|
|
typedef mozilla::dom::ipc::Blob<mozilla::dom::ipc::Parent> BlobParent;
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_ipc_Blob_h
|