2012-12-18 08:49:58 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
|
|
|
/* 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 "WMF.h"
|
|
|
|
|
2012-12-27 14:02:37 +00:00
|
|
|
#include <unknwn.h>
|
2012-12-18 08:49:58 +00:00
|
|
|
#include <ole2.h>
|
|
|
|
|
|
|
|
#include "WMFByteStream.h"
|
2013-02-15 08:35:48 +00:00
|
|
|
#include "WMFSourceReaderCallback.h"
|
2012-12-18 08:49:58 +00:00
|
|
|
#include "WMFUtils.h"
|
|
|
|
#include "MediaResource.h"
|
|
|
|
#include "nsISeekableStream.h"
|
2012-12-27 14:02:37 +00:00
|
|
|
#include "mozilla/RefPtr.h"
|
2013-02-04 21:33:52 +00:00
|
|
|
#include "nsIThreadPool.h"
|
|
|
|
#include "nsXPCOMCIDInternal.h"
|
2013-02-06 12:59:12 +00:00
|
|
|
#include <algorithm>
|
2012-12-18 08:49:58 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
#ifdef PR_LOGGING
|
|
|
|
PRLogModuleInfo* gWMFByteStreamLog = nullptr;
|
|
|
|
#define LOG(...) PR_LOG(gWMFByteStreamLog, PR_LOG_DEBUG, (__VA_ARGS__))
|
|
|
|
#else
|
|
|
|
#define LOG(...)
|
|
|
|
#endif
|
|
|
|
|
2013-02-04 21:33:52 +00:00
|
|
|
// Thread pool listener which ensures that MSCOM is initialized and
|
|
|
|
// deinitialized on the thread pool thread. We can call back into WMF
|
|
|
|
// on this thread, so we need MSCOM working.
|
|
|
|
class ThreadPoolListener MOZ_FINAL : public nsIThreadPoolListener {
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSITHREADPOOLLISTENER
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS1(ThreadPoolListener, nsIThreadPoolListener)
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
ThreadPoolListener::OnThreadCreated()
|
|
|
|
{
|
|
|
|
HRESULT hr = CoInitializeEx(0, COINIT_MULTITHREADED);
|
|
|
|
if (FAILED(hr)) {
|
|
|
|
NS_WARNING("Failed to initialize MSCOM on WMFByteStream thread.");
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
ThreadPoolListener::OnThreadShuttingDown()
|
|
|
|
{
|
|
|
|
CoUninitialize();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Thread pool on which read requests are processed.
|
|
|
|
// This is created and destroyed on the main thread only.
|
|
|
|
static nsIThreadPool* sThreadPool = nullptr;
|
|
|
|
|
|
|
|
// Counter of the number of WMFByteStreams that are instantiated and that need
|
|
|
|
// the thread pool. This is read/write on the main thread only.
|
|
|
|
static int32_t sThreadPoolRefCnt = 0;
|
|
|
|
|
2013-02-04 21:34:23 +00:00
|
|
|
class ReleaseWMFByteStreamResourcesEvent MOZ_FINAL : public nsRunnable {
|
2013-02-04 21:33:52 +00:00
|
|
|
public:
|
2013-02-04 21:34:23 +00:00
|
|
|
ReleaseWMFByteStreamResourcesEvent(already_AddRefed<MediaResource> aResource)
|
|
|
|
: mResource(aResource) {}
|
|
|
|
virtual ~ReleaseWMFByteStreamResourcesEvent() {}
|
2013-02-04 21:33:52 +00:00
|
|
|
NS_IMETHOD Run() {
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Must be on main thread.");
|
2013-02-04 21:34:23 +00:00
|
|
|
// Explicitly release the MediaResource reference. We *must* do this on
|
|
|
|
// the main thread, so we must explicitly release it here, we can't rely
|
|
|
|
// on the destructor to release it, since if this event runs before its
|
|
|
|
// dispatch call returns the destructor may run on the non-main thread.
|
|
|
|
mResource = nullptr;
|
2013-02-04 21:33:52 +00:00
|
|
|
NS_ASSERTION(sThreadPoolRefCnt > 0, "sThreadPoolRefCnt Should be non-negative");
|
|
|
|
sThreadPoolRefCnt--;
|
|
|
|
if (sThreadPoolRefCnt == 0) {
|
|
|
|
NS_ASSERTION(sThreadPool != nullptr, "Should have thread pool ref if sThreadPoolRefCnt==0.");
|
|
|
|
// Note: store ref to thread pool, then clear global ref, then
|
|
|
|
// Shutdown() using the stored ref. Events can run during the Shutdown()
|
|
|
|
// call, so if we release after calling Shutdown(), another event may
|
|
|
|
// have incremented the refcnt in the meantime, and have a dangling
|
|
|
|
// pointer to the now destroyed threadpool!
|
|
|
|
nsCOMPtr<nsIThreadPool> pool = sThreadPool;
|
|
|
|
NS_IF_RELEASE(sThreadPool);
|
|
|
|
pool->Shutdown();
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2013-02-04 21:34:23 +00:00
|
|
|
nsRefPtr<MediaResource> mResource;
|
2013-02-04 21:33:52 +00:00
|
|
|
};
|
|
|
|
|
2013-02-15 08:35:48 +00:00
|
|
|
WMFByteStream::WMFByteStream(MediaResource* aResource,
|
|
|
|
WMFSourceReaderCallback* aSourceReaderCallback)
|
|
|
|
: mSourceReaderCallback(aSourceReaderCallback),
|
|
|
|
mResourceMonitor("WMFByteStream.MediaResource"),
|
2013-02-04 21:34:23 +00:00
|
|
|
mResource(aResource),
|
|
|
|
mReentrantMonitor("WMFByteStream.Data"),
|
2013-02-04 21:33:52 +00:00
|
|
|
mOffset(0),
|
|
|
|
mIsShutdown(false)
|
2012-12-18 08:49:58 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Must be on main thread.");
|
|
|
|
NS_ASSERTION(mResource, "Must have a valid media resource");
|
2013-02-15 08:35:48 +00:00
|
|
|
NS_ASSERTION(mSourceReaderCallback, "Must have a source reader callback.");
|
2012-12-18 08:49:58 +00:00
|
|
|
|
|
|
|
#ifdef PR_LOGGING
|
|
|
|
if (!gWMFByteStreamLog) {
|
|
|
|
gWMFByteStreamLog = PR_NewLogModule("WMFByteStream");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
MOZ_COUNT_CTOR(WMFByteStream);
|
|
|
|
}
|
|
|
|
|
|
|
|
WMFByteStream::~WMFByteStream()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(WMFByteStream);
|
2013-02-04 21:34:23 +00:00
|
|
|
// The WMFByteStream can be deleted from a thread pool thread, so we
|
|
|
|
// dispatch an event to the main thread to deref the thread pool and
|
|
|
|
// deref the MediaResource.
|
|
|
|
nsCOMPtr<nsIRunnable> event =
|
|
|
|
new ReleaseWMFByteStreamResourcesEvent(mResource.forget());
|
2013-02-04 21:33:52 +00:00
|
|
|
NS_DispatchToMainThread(event, NS_DISPATCH_NORMAL);
|
2012-12-18 08:49:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
WMFByteStream::Init()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Must be on main thread.");
|
2013-02-04 21:33:52 +00:00
|
|
|
|
|
|
|
if (!sThreadPool) {
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIThreadPool> pool = do_CreateInstance(NS_THREADPOOL_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
sThreadPool = pool;
|
|
|
|
NS_ADDREF(sThreadPool);
|
|
|
|
|
|
|
|
rv = sThreadPool->SetName(NS_LITERAL_CSTRING("WMFByteStream Async Read Pool"));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIThreadPoolListener> listener = new ThreadPoolListener();
|
|
|
|
rv = sThreadPool->SetListener(listener);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2012-12-18 08:49:58 +00:00
|
|
|
}
|
2013-02-04 21:33:52 +00:00
|
|
|
sThreadPoolRefCnt++;
|
|
|
|
|
|
|
|
// Store a ref to the thread pool, so that we keep the pool alive as long as
|
|
|
|
// we're alive.
|
|
|
|
mThreadPool = sThreadPool;
|
|
|
|
|
2013-02-15 01:11:05 +00:00
|
|
|
NS_ConvertUTF8toUTF16 contentTypeUTF16(mResource->GetContentType());
|
|
|
|
if (!contentTypeUTF16.IsEmpty()) {
|
|
|
|
HRESULT hr = wmf::MFCreateAttributes(byRef(mAttributes), 1);
|
|
|
|
NS_ENSURE_TRUE(SUCCEEDED(hr), NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
hr = mAttributes->SetString(MF_BYTESTREAM_CONTENT_TYPE,
|
|
|
|
contentTypeUTF16.get());
|
|
|
|
NS_ENSURE_TRUE(SUCCEEDED(hr), NS_ERROR_FAILURE);
|
|
|
|
|
2013-02-26 11:02:20 +00:00
|
|
|
LOG("WMFByteStream has Content-Type=%s", mResource->GetContentType().get());
|
2013-02-15 01:11:05 +00:00
|
|
|
}
|
2012-12-18 08:49:58 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
WMFByteStream::Shutdown()
|
|
|
|
{
|
2013-02-15 08:35:48 +00:00
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
mIsShutdown = true;
|
|
|
|
}
|
|
|
|
mSourceReaderCallback->Cancel();
|
2012-12-18 08:49:58 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// IUnknown Methods
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::QueryInterface(REFIID aIId, void **aInterface)
|
|
|
|
{
|
|
|
|
LOG("WMFByteStream::QueryInterface %s", GetGUIDName(aIId).get());
|
|
|
|
|
|
|
|
if (aIId == IID_IMFByteStream) {
|
|
|
|
return DoGetInterface(static_cast<IMFByteStream*>(this), aInterface);
|
|
|
|
}
|
|
|
|
if (aIId == IID_IUnknown) {
|
|
|
|
return DoGetInterface(static_cast<IMFByteStream*>(this), aInterface);
|
|
|
|
}
|
2013-02-15 01:11:05 +00:00
|
|
|
if (aIId == IID_IMFAttributes) {
|
|
|
|
return DoGetInterface(static_cast<IMFAttributes*>(this), aInterface);
|
|
|
|
}
|
2012-12-18 08:49:58 +00:00
|
|
|
|
|
|
|
*aInterface = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2012-12-26 10:27:28 +00:00
|
|
|
NS_IMPL_THREADSAFE_ADDREF(WMFByteStream)
|
|
|
|
NS_IMPL_THREADSAFE_RELEASE(WMFByteStream)
|
2012-12-18 08:49:58 +00:00
|
|
|
|
2013-02-04 21:33:52 +00:00
|
|
|
|
|
|
|
// Stores data regarding an async read opreation.
|
2013-02-15 01:10:21 +00:00
|
|
|
class ReadRequest MOZ_FINAL : public IUnknown {
|
2013-02-04 21:33:52 +00:00
|
|
|
public:
|
2013-02-15 01:10:21 +00:00
|
|
|
ReadRequest(int64_t aOffset, BYTE* aBuffer, ULONG aLength)
|
2013-02-04 21:33:52 +00:00
|
|
|
: mOffset(aOffset),
|
|
|
|
mBuffer(aBuffer),
|
|
|
|
mBufferLength(aLength),
|
|
|
|
mBytesRead(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
// IUnknown Methods
|
|
|
|
STDMETHODIMP QueryInterface(REFIID aRIID, LPVOID *aOutObject);
|
|
|
|
STDMETHODIMP_(ULONG) AddRef();
|
|
|
|
STDMETHODIMP_(ULONG) Release();
|
|
|
|
|
|
|
|
int64_t mOffset;
|
|
|
|
BYTE* mBuffer;
|
|
|
|
ULONG mBufferLength;
|
|
|
|
ULONG mBytesRead;
|
|
|
|
|
|
|
|
// IUnknown ref counting.
|
|
|
|
nsAutoRefCnt mRefCnt;
|
|
|
|
NS_DECL_OWNINGTHREAD
|
|
|
|
};
|
|
|
|
|
2013-02-15 01:10:21 +00:00
|
|
|
NS_IMPL_THREADSAFE_ADDREF(ReadRequest)
|
|
|
|
NS_IMPL_THREADSAFE_RELEASE(ReadRequest)
|
2012-12-18 08:49:58 +00:00
|
|
|
|
|
|
|
// IUnknown Methods
|
|
|
|
STDMETHODIMP
|
2013-02-15 01:10:21 +00:00
|
|
|
ReadRequest::QueryInterface(REFIID aIId, void **aInterface)
|
2012-12-18 08:49:58 +00:00
|
|
|
{
|
2013-02-15 01:10:21 +00:00
|
|
|
LOG("ReadRequest::QueryInterface %s", GetGUIDName(aIId).get());
|
2012-12-18 08:49:58 +00:00
|
|
|
|
|
|
|
if (aIId == IID_IUnknown) {
|
|
|
|
return DoGetInterface(static_cast<IUnknown*>(this), aInterface);
|
|
|
|
}
|
|
|
|
|
|
|
|
*aInterface = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2013-02-04 21:34:23 +00:00
|
|
|
class ProcessReadRequestEvent MOZ_FINAL : public nsRunnable {
|
2013-02-04 21:33:52 +00:00
|
|
|
public:
|
2013-02-04 21:34:23 +00:00
|
|
|
ProcessReadRequestEvent(WMFByteStream* aStream,
|
|
|
|
IMFAsyncResult* aResult,
|
2013-02-15 01:10:21 +00:00
|
|
|
ReadRequest* aRequestState)
|
2013-02-04 21:33:52 +00:00
|
|
|
: mStream(aStream),
|
|
|
|
mResult(aResult),
|
|
|
|
mRequestState(aRequestState) {}
|
|
|
|
|
|
|
|
NS_IMETHOD Run() {
|
2013-02-04 21:34:23 +00:00
|
|
|
mStream->ProcessReadRequest(mResult, mRequestState);
|
2013-02-04 21:33:52 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
RefPtr<WMFByteStream> mStream;
|
|
|
|
RefPtr<IMFAsyncResult> mResult;
|
2013-02-15 01:10:21 +00:00
|
|
|
RefPtr<ReadRequest> mRequestState;
|
2013-02-04 21:33:52 +00:00
|
|
|
};
|
|
|
|
|
2012-12-18 08:49:58 +00:00
|
|
|
// IMFByteStream Methods
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::BeginRead(BYTE *aBuffer,
|
|
|
|
ULONG aLength,
|
|
|
|
IMFAsyncCallback *aCallback,
|
|
|
|
IUnknown *aCallerState)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(aBuffer, E_POINTER);
|
|
|
|
NS_ENSURE_TRUE(aCallback, E_POINTER);
|
|
|
|
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
2013-02-04 21:33:52 +00:00
|
|
|
LOG("WMFByteStream::BeginRead() mOffset=%lld tell=%lld length=%lu mIsShutdown=%d",
|
|
|
|
mOffset, mResource->Tell(), aLength, mIsShutdown);
|
|
|
|
|
2013-02-04 21:34:23 +00:00
|
|
|
if (mIsShutdown || mOffset < 0) {
|
|
|
|
return E_INVALIDARG;
|
2013-02-04 21:33:52 +00:00
|
|
|
}
|
2012-12-18 08:49:58 +00:00
|
|
|
|
|
|
|
// Create an object to store our state.
|
2013-02-15 01:10:21 +00:00
|
|
|
RefPtr<ReadRequest> requestState = new ReadRequest(mOffset, aBuffer, aLength);
|
2012-12-18 08:49:58 +00:00
|
|
|
|
|
|
|
// Create an IMFAsyncResult, this is passed back to the caller as a token to
|
|
|
|
// retrieve the number of bytes read.
|
2012-12-27 14:02:37 +00:00
|
|
|
RefPtr<IMFAsyncResult> callersResult;
|
2012-12-18 08:49:58 +00:00
|
|
|
HRESULT hr = wmf::MFCreateAsyncResult(requestState,
|
|
|
|
aCallback,
|
|
|
|
aCallerState,
|
2012-12-27 14:02:37 +00:00
|
|
|
byRef(callersResult));
|
2012-12-18 08:49:58 +00:00
|
|
|
NS_ENSURE_TRUE(SUCCEEDED(hr), hr);
|
|
|
|
|
2013-02-04 21:33:52 +00:00
|
|
|
// Dispatch an event to perform the read in the thread pool.
|
2013-02-04 21:34:23 +00:00
|
|
|
nsCOMPtr<nsIRunnable> r = new ProcessReadRequestEvent(this,
|
|
|
|
callersResult,
|
|
|
|
requestState);
|
2013-02-04 21:33:52 +00:00
|
|
|
nsresult rv = mThreadPool->Dispatch(r, NS_DISPATCH_NORMAL);
|
2012-12-18 08:49:58 +00:00
|
|
|
|
2013-02-04 21:34:23 +00:00
|
|
|
if (mResource->GetLength() > -1) {
|
|
|
|
mOffset = std::min<int64_t>(mOffset + aLength, mResource->GetLength());
|
|
|
|
} else {
|
|
|
|
mOffset += aLength;
|
|
|
|
}
|
|
|
|
|
2013-02-04 21:33:52 +00:00
|
|
|
return NS_SUCCEEDED(rv) ? S_OK : E_FAIL;
|
2012-12-18 08:49:58 +00:00
|
|
|
}
|
|
|
|
|
2013-02-04 21:34:23 +00:00
|
|
|
nsresult
|
2013-02-15 01:10:21 +00:00
|
|
|
WMFByteStream::Read(ReadRequest* aRequestState)
|
2012-12-18 08:49:58 +00:00
|
|
|
{
|
2013-02-04 21:34:23 +00:00
|
|
|
ReentrantMonitorAutoEnter mon(mResourceMonitor);
|
|
|
|
|
2012-12-18 08:49:58 +00:00
|
|
|
// Ensure the read head is at the correct offset in the resource. It may not
|
|
|
|
// be if the SourceReader seeked.
|
2013-02-04 21:33:52 +00:00
|
|
|
if (mResource->Tell() != aRequestState->mOffset) {
|
2012-12-18 08:49:58 +00:00
|
|
|
nsresult rv = mResource->Seek(nsISeekableStream::NS_SEEK_SET,
|
2013-02-04 21:33:52 +00:00
|
|
|
aRequestState->mOffset);
|
2013-02-04 21:34:23 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2012-12-18 08:49:58 +00:00
|
|
|
}
|
2013-02-04 21:33:52 +00:00
|
|
|
NS_ASSERTION(mResource->Tell() == aRequestState->mOffset, "State mismatch!");
|
2012-12-18 08:49:58 +00:00
|
|
|
|
|
|
|
// Read in a loop to ensure we fill the buffer, when possible.
|
|
|
|
ULONG totalBytesRead = 0;
|
|
|
|
nsresult rv = NS_OK;
|
2013-02-04 21:33:52 +00:00
|
|
|
while (totalBytesRead < aRequestState->mBufferLength) {
|
|
|
|
BYTE* buffer = aRequestState->mBuffer + totalBytesRead;
|
2012-12-18 08:49:58 +00:00
|
|
|
ULONG bytesRead = 0;
|
2013-02-04 21:33:52 +00:00
|
|
|
ULONG length = aRequestState->mBufferLength - totalBytesRead;
|
2012-12-18 08:49:58 +00:00
|
|
|
rv = mResource->Read(reinterpret_cast<char*>(buffer),
|
|
|
|
length,
|
|
|
|
reinterpret_cast<uint32_t*>(&bytesRead));
|
2013-02-04 21:34:23 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2012-12-18 08:49:58 +00:00
|
|
|
totalBytesRead += bytesRead;
|
2013-02-04 21:34:23 +00:00
|
|
|
if (bytesRead == 0) {
|
2012-12-18 08:49:58 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-02-04 21:34:23 +00:00
|
|
|
aRequestState->mBytesRead = totalBytesRead;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-12-18 08:49:58 +00:00
|
|
|
|
2013-02-04 21:34:23 +00:00
|
|
|
// Note: This is called on one of the thread pool's threads.
|
|
|
|
void
|
|
|
|
WMFByteStream::ProcessReadRequest(IMFAsyncResult* aResult,
|
2013-02-15 01:10:21 +00:00
|
|
|
ReadRequest* aRequestState)
|
2013-02-04 21:34:23 +00:00
|
|
|
{
|
|
|
|
if (mResource->GetLength() > -1 &&
|
|
|
|
aRequestState->mOffset > mResource->GetLength()) {
|
|
|
|
aResult->SetStatus(S_OK);
|
|
|
|
wmf::MFInvokeCallback(aResult);
|
|
|
|
LOG("WMFByteStream::Invoke() read offset greater than length, soft-failing read");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult rv = Read(aRequestState);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
Shutdown();
|
|
|
|
aResult->SetStatus(E_ABORT);
|
|
|
|
} else {
|
|
|
|
aResult->SetStatus(S_OK);
|
|
|
|
}
|
2012-12-18 08:49:58 +00:00
|
|
|
|
|
|
|
LOG("WMFByteStream::Invoke() read %d at %lld finished rv=%x",
|
2013-02-04 21:33:52 +00:00
|
|
|
aRequestState->mBytesRead, aRequestState->mOffset, rv);
|
2012-12-18 08:49:58 +00:00
|
|
|
|
|
|
|
// Let caller know read is complete.
|
2013-02-04 21:33:52 +00:00
|
|
|
DebugOnly<HRESULT> hr = wmf::MFInvokeCallback(aResult);
|
|
|
|
NS_ASSERTION(SUCCEEDED(hr), "Failed to invoke callback!");
|
2012-12-18 08:49:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::BeginWrite(const BYTE *, ULONG ,
|
|
|
|
IMFAsyncCallback *,
|
|
|
|
IUnknown *)
|
|
|
|
{
|
|
|
|
LOG("WMFByteStream::BeginWrite()");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::Close()
|
|
|
|
{
|
|
|
|
LOG("WMFByteStream::Close()");
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::EndRead(IMFAsyncResult* aResult, ULONG *aBytesRead)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(aResult, E_POINTER);
|
|
|
|
NS_ENSURE_TRUE(aBytesRead, E_POINTER);
|
|
|
|
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
|
|
|
|
// Extract our state object.
|
2012-12-27 14:02:37 +00:00
|
|
|
RefPtr<IUnknown> unknown;
|
|
|
|
HRESULT hr = aResult->GetObject(byRef(unknown));
|
2012-12-18 08:49:58 +00:00
|
|
|
if (FAILED(hr) || !unknown) {
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
2013-02-15 01:10:21 +00:00
|
|
|
ReadRequest* requestState =
|
|
|
|
static_cast<ReadRequest*>(unknown.get());
|
2012-12-18 08:49:58 +00:00
|
|
|
|
|
|
|
// Report result.
|
|
|
|
*aBytesRead = requestState->mBytesRead;
|
|
|
|
|
2013-02-04 21:34:23 +00:00
|
|
|
LOG("WMFByteStream::EndRead() offset=%lld *aBytesRead=%u mOffset=%lld status=0x%x hr=0x%x eof=%d",
|
|
|
|
requestState->mOffset, *aBytesRead, mOffset, aResult->GetStatus(), hr, IsEOS());
|
2012-12-18 08:49:58 +00:00
|
|
|
|
2013-02-04 21:34:23 +00:00
|
|
|
return aResult->GetStatus();
|
2012-12-18 08:49:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::EndWrite(IMFAsyncResult *, ULONG *)
|
|
|
|
{
|
|
|
|
LOG("WMFByteStream::EndWrite()");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::Flush()
|
|
|
|
{
|
|
|
|
LOG("WMFByteStream::Flush()");
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetCapabilities(DWORD *aCapabilities)
|
|
|
|
{
|
|
|
|
LOG("WMFByteStream::GetCapabilities()");
|
|
|
|
NS_ENSURE_TRUE(aCapabilities, E_POINTER);
|
2013-02-04 21:34:23 +00:00
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
bool seekable = mResource->IsTransportSeekable();
|
2013-02-10 22:31:43 +00:00
|
|
|
bool cached = mResource->IsDataCachedToEndOfResource(0);
|
2012-12-18 08:49:58 +00:00
|
|
|
*aCapabilities = MFBYTESTREAM_IS_READABLE |
|
2013-02-04 21:34:23 +00:00
|
|
|
MFBYTESTREAM_IS_SEEKABLE |
|
2013-02-10 22:31:43 +00:00
|
|
|
(!cached ? MFBYTESTREAM_IS_PARTIALLY_DOWNLOADED : 0) |
|
2013-02-04 21:34:23 +00:00
|
|
|
(!seekable ? MFBYTESTREAM_HAS_SLOW_SEEK : 0);
|
2012-12-18 08:49:58 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetCurrentPosition(QWORD *aPosition)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(aPosition, E_POINTER);
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
2013-02-04 21:34:23 +00:00
|
|
|
// Note: Returning the length of stream as position when read
|
|
|
|
// cursor is < 0 seems to be the behaviour expected by WMF, but
|
|
|
|
// also note it doesn't seem to expect that the position is an
|
|
|
|
// unsigned value since if you seek to > length and read WMF
|
|
|
|
// expects the read to succeed after reading 0 bytes, but if you
|
|
|
|
// seek to < 0 and read, the read is expected to fails... So
|
|
|
|
// go figure...
|
|
|
|
*aPosition = mOffset < 0 ? mResource->GetLength() : mOffset;
|
2012-12-18 08:49:58 +00:00
|
|
|
LOG("WMFByteStream::GetCurrentPosition() %lld", mOffset);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetLength(QWORD *aLength)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(aLength, E_POINTER);
|
2013-02-04 21:34:23 +00:00
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
*aLength = mResource->GetLength();
|
|
|
|
LOG("WMFByteStream::GetLength() %lld", *aLength);
|
2012-12-18 08:49:58 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2013-02-04 21:34:23 +00:00
|
|
|
bool
|
|
|
|
WMFByteStream::IsEOS()
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
return mResource->GetLength() > -1 &&
|
|
|
|
(mOffset < 0 ||
|
|
|
|
mOffset >= mResource->GetLength());
|
|
|
|
}
|
|
|
|
|
2012-12-18 08:49:58 +00:00
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::IsEndOfStream(BOOL *aEndOfStream)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(aEndOfStream, E_POINTER);
|
2013-02-04 21:34:23 +00:00
|
|
|
*aEndOfStream = IsEOS();
|
2012-12-18 08:49:58 +00:00
|
|
|
LOG("WMFByteStream::IsEndOfStream() %d", *aEndOfStream);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
2013-02-15 01:10:21 +00:00
|
|
|
WMFByteStream::Read(BYTE* aBuffer, ULONG aBufferLength, ULONG* aOutBytesRead)
|
2012-12-18 08:49:58 +00:00
|
|
|
{
|
2013-02-15 01:10:21 +00:00
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
ReadRequest request(mOffset, aBuffer, aBufferLength);
|
|
|
|
if (NS_FAILED(Read(&request))) {
|
|
|
|
LOG("WMFByteStream::Read() offset=%lld failed!", mOffset);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
if (aOutBytesRead) {
|
|
|
|
*aOutBytesRead = request.mBytesRead;
|
|
|
|
}
|
|
|
|
LOG("WMFByteStream::Read() offset=%lld length=%u bytesRead=%u",
|
|
|
|
mOffset, aBufferLength, request.mBytesRead);
|
|
|
|
mOffset += request.mBytesRead;
|
|
|
|
return S_OK;
|
2012-12-18 08:49:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::Seek(MFBYTESTREAM_SEEK_ORIGIN aSeekOrigin,
|
|
|
|
LONGLONG aSeekOffset,
|
|
|
|
DWORD aSeekFlags,
|
|
|
|
QWORD *aCurrentPosition)
|
|
|
|
{
|
|
|
|
LOG("WMFByteStream::Seek(%d, %lld)", aSeekOrigin, aSeekOffset);
|
|
|
|
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
|
2013-02-04 21:34:23 +00:00
|
|
|
int64_t offset = mOffset;
|
2012-12-18 08:49:58 +00:00
|
|
|
if (aSeekOrigin == msoBegin) {
|
2013-02-04 21:34:23 +00:00
|
|
|
offset = aSeekOffset;
|
2012-12-18 08:49:58 +00:00
|
|
|
} else {
|
2013-02-04 21:34:23 +00:00
|
|
|
offset += aSeekOffset;
|
|
|
|
}
|
|
|
|
int64_t length = mResource->GetLength();
|
|
|
|
if (length > -1) {
|
|
|
|
mOffset = std::min<int64_t>(offset, length);
|
|
|
|
} else {
|
|
|
|
mOffset = offset;
|
2012-12-18 08:49:58 +00:00
|
|
|
}
|
|
|
|
if (aCurrentPosition) {
|
|
|
|
*aCurrentPosition = mOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::SetCurrentPosition(QWORD aPosition)
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
LOG("WMFByteStream::SetCurrentPosition(%lld)",
|
|
|
|
aPosition);
|
|
|
|
|
|
|
|
int64_t length = mResource->GetLength();
|
2013-02-04 21:34:23 +00:00
|
|
|
if (length > -1) {
|
|
|
|
mOffset = std::min<int64_t>(aPosition, length);
|
|
|
|
} else {
|
|
|
|
mOffset = aPosition;
|
2012-12-18 08:49:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::SetLength(QWORD)
|
|
|
|
{
|
|
|
|
LOG("WMFByteStream::SetLength()");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::Write(const BYTE *, ULONG, ULONG *)
|
|
|
|
{
|
|
|
|
LOG("WMFByteStream::Write()");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2013-02-15 01:11:05 +00:00
|
|
|
// IMFAttributes methods
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetItem(REFGUID guidKey, PROPVARIANT* pValue)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mAttributes);
|
|
|
|
return mAttributes->GetItem(guidKey, pValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetItemType(REFGUID guidKey, MF_ATTRIBUTE_TYPE* pType)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetItemType(guidKey, pType);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::CompareItem(REFGUID guidKey, REFPROPVARIANT Value, BOOL* pbResult)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->CompareItem(guidKey, Value, pbResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::Compare(IMFAttributes* pTheirs,
|
|
|
|
MF_ATTRIBUTES_MATCH_TYPE MatchType,
|
|
|
|
BOOL* pbResult)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->Compare(pTheirs, MatchType, pbResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetUINT32(REFGUID guidKey, UINT32* punValue)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetUINT32(guidKey, punValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetUINT64(REFGUID guidKey, UINT64* punValue)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetUINT64(guidKey, punValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetDouble(REFGUID guidKey, double* pfValue)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetDouble(guidKey, pfValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetGUID(REFGUID guidKey, GUID* pguidValue)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetGUID(guidKey, pguidValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetStringLength(REFGUID guidKey, UINT32* pcchLength)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetStringLength(guidKey, pcchLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetString(REFGUID guidKey, LPWSTR pwszValue, UINT32 cchBufSize, UINT32* pcchLength)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetString(guidKey, pwszValue, cchBufSize, pcchLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetAllocatedString(REFGUID guidKey, LPWSTR* ppwszValue, UINT32* pcchLength)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetAllocatedString(guidKey, ppwszValue, pcchLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetBlobSize(REFGUID guidKey, UINT32* pcbBlobSize)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetBlobSize(guidKey, pcbBlobSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetBlob(REFGUID guidKey, UINT8* pBuf, UINT32 cbBufSize, UINT32* pcbBlobSize)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetBlob(guidKey, pBuf, cbBufSize, pcbBlobSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetAllocatedBlob(REFGUID guidKey, UINT8** ppBuf, UINT32* pcbSize)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetAllocatedBlob(guidKey, ppBuf, pcbSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetUnknown(REFGUID guidKey, REFIID riid, LPVOID* ppv)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetUnknown(guidKey, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::SetItem(REFGUID guidKey, REFPROPVARIANT Value)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->SetItem(guidKey, Value);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::DeleteItem(REFGUID guidKey)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->DeleteItem(guidKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::DeleteAllItems()
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->DeleteAllItems();
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::SetUINT32(REFGUID guidKey, UINT32 unValue)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->SetUINT32(guidKey, unValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::SetUINT64(REFGUID guidKey,UINT64 unValue)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->SetUINT64(guidKey, unValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::SetDouble(REFGUID guidKey, double fValue)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->SetDouble(guidKey, fValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::SetGUID(REFGUID guidKey, REFGUID guidValue)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->SetGUID(guidKey, guidValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::SetString(REFGUID guidKey, LPCWSTR wszValue)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->SetString(guidKey, wszValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::SetBlob(REFGUID guidKey, const UINT8* pBuf, UINT32 cbBufSize)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->SetBlob(guidKey, pBuf, cbBufSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::SetUnknown(REFGUID guidKey, IUnknown* pUnknown)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->SetUnknown(guidKey, pUnknown);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::LockStore()
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->LockStore();
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::UnlockStore()
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->UnlockStore();
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetCount(UINT32* pcItems)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetCount(pcItems);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::GetItemByIndex(UINT32 unIndex, GUID* pguidKey, PROPVARIANT* pValue)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->GetItemByIndex(unIndex, pguidKey, pValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
WMFByteStream::CopyAllItems(IMFAttributes* pDest)
|
|
|
|
{
|
|
|
|
assert(mAttributes);
|
|
|
|
return mAttributes->CopyAllItems(pDest);
|
|
|
|
}
|
|
|
|
|
2012-12-18 08:49:58 +00:00
|
|
|
} // namespace mozilla
|