mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
51792b2d7b
--HG-- extra : transplant_source : %90%87%047%07BA%97%E0%F1n%1DY%08D%7C%E39%20%0F
142 lines
3.7 KiB
C++
142 lines
3.7 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 "mozilla/dom/PContentChild.h"
|
|
#include "mozilla/dom/PContentParent.h"
|
|
#include "nsAutoPtr.h"
|
|
#include "nsCOMPtr.h"
|
|
|
|
class nsIDOMBlob;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace ipc {
|
|
|
|
enum ActorFlavorEnum
|
|
{
|
|
Parent = 0,
|
|
Child
|
|
};
|
|
|
|
template <ActorFlavorEnum>
|
|
struct BlobTraits
|
|
{ };
|
|
|
|
template <>
|
|
struct BlobTraits<Parent>
|
|
{
|
|
typedef mozilla::dom::PBlobParent BaseType;
|
|
typedef mozilla::dom::PBlobStreamParent StreamType;
|
|
typedef mozilla::dom::PContentParent ManagerType;
|
|
};
|
|
|
|
template <>
|
|
struct BlobTraits<Child>
|
|
{
|
|
typedef mozilla::dom::PBlobChild BaseType;
|
|
typedef mozilla::dom::PBlobStreamChild StreamType;
|
|
typedef mozilla::dom::PContentChild ManagerType;
|
|
};
|
|
|
|
template <ActorFlavorEnum>
|
|
class RemoteBlob;
|
|
|
|
template <ActorFlavorEnum ActorFlavor>
|
|
class Blob : public BlobTraits<ActorFlavor>::BaseType
|
|
{
|
|
friend class RemoteBlob<ActorFlavor>;
|
|
|
|
public:
|
|
typedef typename BlobTraits<ActorFlavor>::BaseType BaseType;
|
|
typedef typename BlobTraits<ActorFlavor>::StreamType StreamType;
|
|
typedef typename BlobTraits<ActorFlavor>::ManagerType ManagerType;
|
|
typedef RemoteBlob<ActorFlavor> RemoteBlobType;
|
|
typedef mozilla::ipc::IProtocolManager<
|
|
mozilla::ipc::RPCChannel::RPCListener>::ActorDestroyReason
|
|
ActorDestroyReason;
|
|
typedef mozilla::dom::BlobConstructorParams BlobConstructorParams;
|
|
|
|
protected:
|
|
nsIDOMBlob* mBlob;
|
|
RemoteBlobType* mRemoteBlob;
|
|
bool mOwnsBlob;
|
|
bool mBlobIsFile;
|
|
|
|
public:
|
|
// This create function is called on the sending side.
|
|
static Blob*
|
|
Create(nsIDOMBlob* aBlob)
|
|
{
|
|
return new Blob(aBlob);
|
|
}
|
|
|
|
// This create function is called on the receiving side.
|
|
static Blob*
|
|
Create(const BlobConstructorParams& 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,
|
|
PRUint64 aLength);
|
|
|
|
// Use this for non-file blobs.
|
|
bool
|
|
SetMysteryBlobInfo(const nsString& aContentType, PRUint64 aLength);
|
|
|
|
private:
|
|
// This constructor is called on the sending side.
|
|
Blob(nsIDOMBlob* aBlob);
|
|
|
|
// This constructor is called on the receiving side.
|
|
Blob(const BlobConstructorParams& aParams);
|
|
|
|
void
|
|
SetRemoteBlob(nsRefPtr<RemoteBlobType>& aRemoteBlob);
|
|
|
|
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;
|
|
|
|
virtual StreamType*
|
|
AllocPBlobStream() MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
DeallocPBlobStream(StreamType* aActor) MOZ_OVERRIDE;
|
|
};
|
|
|
|
} // 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
|