mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
180 lines
4.2 KiB
C++
180 lines
4.2 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/. */
|
|
|
|
#include "SourceBufferResource.h"
|
|
|
|
#include <string.h>
|
|
#include <algorithm>
|
|
|
|
#include "nsISeekableStream.h"
|
|
#include "nsISupportsImpl.h"
|
|
#include "prenv.h"
|
|
#include "prlog.h"
|
|
|
|
#ifdef PR_LOGGING
|
|
extern PRLogModuleInfo* gMediaSourceLog;
|
|
#define MSE_DEBUG(...) PR_LOG(gMediaSourceLog, PR_LOG_DEBUG, (__VA_ARGS__))
|
|
#else
|
|
#define MSE_DEBUG(...)
|
|
#endif
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class SourceBuffer;
|
|
|
|
} // namespace dom
|
|
|
|
nsresult
|
|
SourceBufferResource::Close()
|
|
{
|
|
ReentrantMonitorAutoEnter mon(mMonitor);
|
|
MSE_DEBUG("%p SBR::Close", this);
|
|
//MOZ_ASSERT(!mClosed);
|
|
mClosed = true;
|
|
mon.NotifyAll();
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
SourceBufferResource::Read(char* aBuffer, uint32_t aCount, uint32_t* aBytes)
|
|
{
|
|
ReentrantMonitorAutoEnter mon(mMonitor);
|
|
bool blockingRead = !!aBytes;
|
|
|
|
while (blockingRead &&
|
|
!mEnded &&
|
|
mOffset + aCount > static_cast<uint64_t>(GetLength())) {
|
|
MSE_DEBUG("%p SBR::Read waiting for data", this);
|
|
mon.Wait();
|
|
}
|
|
|
|
uint32_t available = GetLength() - mOffset;
|
|
uint32_t count = std::min(aCount, available);
|
|
if (!PR_GetEnv("MOZ_QUIET")) {
|
|
MSE_DEBUG("%p SBR::Read aCount=%u length=%u offset=%u "
|
|
"available=%u count=%u, blocking=%d bufComplete=%d",
|
|
this, aCount, GetLength(), mOffset, available, count,
|
|
blockingRead, mEnded);
|
|
}
|
|
if (available == 0) {
|
|
MSE_DEBUG("%p SBR::Read EOF", this);
|
|
*aBytes = 0;
|
|
return NS_OK;
|
|
}
|
|
|
|
mInputBuffer.CopyData(mOffset, count, aBuffer);
|
|
*aBytes = count;
|
|
mOffset += count;
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
SourceBufferResource::ReadAt(int64_t aOffset, char* aBuffer, uint32_t aCount, uint32_t* aBytes)
|
|
{
|
|
ReentrantMonitorAutoEnter mon(mMonitor);
|
|
nsresult rv = Seek(nsISeekableStream::NS_SEEK_SET, aOffset);
|
|
if (NS_FAILED(rv)) {
|
|
return rv;
|
|
}
|
|
return Read(aBuffer, aCount, aBytes);
|
|
}
|
|
|
|
nsresult
|
|
SourceBufferResource::Seek(int32_t aWhence, int64_t aOffset)
|
|
{
|
|
ReentrantMonitorAutoEnter mon(mMonitor);
|
|
if (mClosed) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
int64_t newOffset = mOffset;
|
|
switch (aWhence) {
|
|
case nsISeekableStream::NS_SEEK_END:
|
|
newOffset = GetLength() - aOffset;
|
|
break;
|
|
case nsISeekableStream::NS_SEEK_CUR:
|
|
newOffset += aOffset;
|
|
break;
|
|
case nsISeekableStream::NS_SEEK_SET:
|
|
newOffset = aOffset;
|
|
break;
|
|
}
|
|
|
|
if (newOffset < 0 || uint64_t(newOffset) < mInputBuffer.GetOffset() || newOffset > GetLength()) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
mOffset = newOffset;
|
|
mon.NotifyAll();
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
SourceBufferResource::ReadFromCache(char* aBuffer, int64_t aOffset, uint32_t aCount)
|
|
{
|
|
ReentrantMonitorAutoEnter mon(mMonitor);
|
|
nsresult rv = Seek(nsISeekableStream::NS_SEEK_SET, aOffset);
|
|
if (NS_FAILED(rv)) {
|
|
return rv;
|
|
}
|
|
return Read(aBuffer, aCount, nullptr);
|
|
}
|
|
|
|
bool
|
|
SourceBufferResource::EvictData(uint32_t aThreshold)
|
|
{
|
|
return mInputBuffer.Evict(mOffset, aThreshold);
|
|
}
|
|
|
|
void
|
|
SourceBufferResource::EvictBefore(uint64_t aOffset)
|
|
{
|
|
// If aOffset is past the current playback offset we don't evict.
|
|
if (aOffset < mOffset) {
|
|
mInputBuffer.Evict(aOffset, 0);
|
|
}
|
|
}
|
|
|
|
void
|
|
SourceBufferResource::AppendData(const uint8_t* aData, uint32_t aLength)
|
|
{
|
|
ReentrantMonitorAutoEnter mon(mMonitor);
|
|
mInputBuffer.PushBack(new ResourceItem(aData, aLength));
|
|
mon.NotifyAll();
|
|
}
|
|
|
|
void
|
|
SourceBufferResource::Ended()
|
|
{
|
|
ReentrantMonitorAutoEnter mon(mMonitor);
|
|
mEnded = true;
|
|
mon.NotifyAll();
|
|
}
|
|
|
|
SourceBufferResource::~SourceBufferResource()
|
|
{
|
|
MOZ_COUNT_DTOR(SourceBufferResource);
|
|
MSE_DEBUG("%p SBR::~SBR", this);
|
|
}
|
|
|
|
SourceBufferResource::SourceBufferResource(nsIPrincipal* aPrincipal,
|
|
const nsACString& aType)
|
|
: mPrincipal(aPrincipal)
|
|
, mType(aType)
|
|
, mMonitor("mozilla::SourceBufferResource::mMonitor")
|
|
, mOffset(0)
|
|
, mClosed(false)
|
|
, mEnded(false)
|
|
{
|
|
MOZ_COUNT_CTOR(SourceBufferResource);
|
|
MSE_DEBUG("%p SBR::SBR()", this);
|
|
}
|
|
|
|
} // namespace mozilla
|