2016-07-27 20:44:29 +03:00
|
|
|
/* -*- 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_mscom_ProxyStream_h
|
|
|
|
#define mozilla_mscom_ProxyStream_h
|
|
|
|
|
|
|
|
#include "ipc/IPCMessageUtils.h"
|
|
|
|
|
|
|
|
#include "mozilla/mscom/Ptr.h"
|
|
|
|
#include "mozilla/RefPtr.h"
|
2017-08-17 01:31:07 +03:00
|
|
|
#include "mozilla/TypedEnumBits.h"
|
2016-07-27 20:44:29 +03:00
|
|
|
#include "mozilla/UniquePtr.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace mscom {
|
|
|
|
|
2017-08-17 01:31:07 +03:00
|
|
|
enum class ProxyStreamFlags : uint32_t
|
|
|
|
{
|
|
|
|
eDefault = 0,
|
|
|
|
// When ePreservable is set on a ProxyStream, its caller *must* call
|
|
|
|
// GetPreservableStream() before the ProxyStream is destroyed.
|
|
|
|
ePreservable = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
MOZ_MAKE_ENUM_CLASS_BITWISE_OPERATORS(ProxyStreamFlags);
|
|
|
|
|
2017-03-15 03:42:24 +03:00
|
|
|
class ProxyStream final
|
2016-07-27 20:44:29 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProxyStream();
|
2017-08-17 01:31:07 +03:00
|
|
|
ProxyStream(REFIID aIID, IUnknown* aObject,
|
|
|
|
ProxyStreamFlags aFlags = ProxyStreamFlags::eDefault);
|
2017-05-19 22:59:49 +03:00
|
|
|
ProxyStream(REFIID aIID, const BYTE* aInitBuf, const int aInitBufSize);
|
2016-07-27 20:44:29 +03:00
|
|
|
|
|
|
|
~ProxyStream();
|
|
|
|
|
|
|
|
// Not copyable because this would mess up the COM marshaling.
|
|
|
|
ProxyStream(const ProxyStream& aOther) = delete;
|
|
|
|
ProxyStream& operator=(const ProxyStream& aOther) = delete;
|
|
|
|
|
|
|
|
ProxyStream(ProxyStream&& aOther);
|
|
|
|
ProxyStream& operator=(ProxyStream&& aOther);
|
|
|
|
|
|
|
|
inline bool IsValid() const
|
|
|
|
{
|
2017-08-10 00:07:11 +03:00
|
|
|
return !(mUnmarshaledProxy && mStream);
|
2016-07-27 20:44:29 +03:00
|
|
|
}
|
|
|
|
|
2017-07-13 00:00:27 +03:00
|
|
|
bool GetInterface(void** aOutInterface);
|
2016-07-27 20:44:29 +03:00
|
|
|
const BYTE* GetBuffer(int& aReturnedBufSize) const;
|
2017-08-17 01:31:07 +03:00
|
|
|
|
|
|
|
PreservedStreamPtr GetPreservedStream();
|
2016-07-27 20:44:29 +03:00
|
|
|
|
|
|
|
bool operator==(const ProxyStream& aOther) const
|
|
|
|
{
|
|
|
|
return this == &aOther;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
RefPtr<IStream> mStream;
|
|
|
|
BYTE* mGlobalLockedBuf;
|
|
|
|
HGLOBAL mHGlobal;
|
|
|
|
int mBufSize;
|
|
|
|
ProxyUniquePtr<IUnknown> mUnmarshaledProxy;
|
2017-08-17 01:31:07 +03:00
|
|
|
bool mPreserveStream;
|
2016-07-27 20:44:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mscom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_mscom_ProxyStream_h
|