/* -*- 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_SOURCEBUFFERRESOURCE_H_ #define MOZILLA_SOURCEBUFFERRESOURCE_H_ #include "MediaCache.h" #include "MediaResource.h" #include "ResourceQueue.h" #include "mozilla/Attributes.h" #include "mozilla/ReentrantMonitor.h" #include "nsCOMPtr.h" #include "nsError.h" #include "nsIPrincipal.h" #include "nsString.h" #include "nsTArray.h" #include "nscore.h" #include "prlog.h" #ifdef PR_LOGGING extern PRLogModuleInfo* GetMediaSourceLog(); extern PRLogModuleInfo* GetMediaSourceAPILog(); #define MSE_DEBUG(...) PR_LOG(GetMediaSourceLog(), PR_LOG_DEBUG, (__VA_ARGS__)) #else #define MSE_DEBUG(...) #endif #define UNIMPLEMENTED() MSE_DEBUG("SourceBufferResource(%p): UNIMPLEMENTED FUNCTION at %s:%d", this, __FILE__, __LINE__) class nsIStreamListener; namespace mozilla { class MediaDecoder; namespace dom { class SourceBuffer; } // namespace dom class SourceBufferResource MOZ_FINAL : public MediaResource { public: explicit SourceBufferResource(const nsACString& aType); virtual nsresult Close() MOZ_OVERRIDE; virtual void Suspend(bool aCloseImmediately) MOZ_OVERRIDE { UNIMPLEMENTED(); } virtual void Resume() MOZ_OVERRIDE { UNIMPLEMENTED(); } virtual already_AddRefed GetCurrentPrincipal() MOZ_OVERRIDE { UNIMPLEMENTED(); return nullptr; } virtual already_AddRefed CloneData(MediaDecoder* aDecoder) MOZ_OVERRIDE { UNIMPLEMENTED(); return nullptr; } virtual void SetReadMode(MediaCacheStream::ReadMode aMode) MOZ_OVERRIDE { UNIMPLEMENTED(); } virtual void SetPlaybackRate(uint32_t aBytesPerSecond) MOZ_OVERRIDE { UNIMPLEMENTED(); } virtual nsresult Read(char* aBuffer, uint32_t aCount, uint32_t* aBytes) MOZ_OVERRIDE; virtual nsresult ReadAt(int64_t aOffset, char* aBuffer, uint32_t aCount, uint32_t* aBytes) MOZ_OVERRIDE; virtual nsresult Seek(int32_t aWhence, int64_t aOffset) MOZ_OVERRIDE; virtual int64_t Tell() MOZ_OVERRIDE { return mOffset; } virtual void Pin() MOZ_OVERRIDE { UNIMPLEMENTED(); } virtual void Unpin() MOZ_OVERRIDE { UNIMPLEMENTED(); } virtual double GetDownloadRate(bool* aIsReliable) MOZ_OVERRIDE { UNIMPLEMENTED(); *aIsReliable = false; return 0; } virtual int64_t GetLength() MOZ_OVERRIDE { return mInputBuffer.GetLength(); } virtual int64_t GetNextCachedData(int64_t aOffset) MOZ_OVERRIDE { ReentrantMonitorAutoEnter mon(mMonitor); MOZ_ASSERT(aOffset >= 0); if (uint64_t(aOffset) < mInputBuffer.GetOffset()) { return mInputBuffer.GetOffset(); } else if (aOffset == GetLength()) { return -1; } return aOffset; } virtual int64_t GetCachedDataEnd(int64_t aOffset) MOZ_OVERRIDE { UNIMPLEMENTED(); return -1; } virtual bool IsDataCachedToEndOfResource(int64_t aOffset) MOZ_OVERRIDE { return false; } virtual bool IsSuspendedByCache() MOZ_OVERRIDE { UNIMPLEMENTED(); return false; } virtual bool IsSuspended() MOZ_OVERRIDE { UNIMPLEMENTED(); return false; } virtual nsresult ReadFromCache(char* aBuffer, int64_t aOffset, uint32_t aCount) MOZ_OVERRIDE; virtual bool IsTransportSeekable() MOZ_OVERRIDE { UNIMPLEMENTED(); return true; } virtual nsresult Open(nsIStreamListener** aStreamListener) MOZ_OVERRIDE { UNIMPLEMENTED(); return NS_ERROR_FAILURE; } virtual nsresult GetCachedRanges(nsTArray& aRanges) MOZ_OVERRIDE { ReentrantMonitorAutoEnter mon(mMonitor); if (mInputBuffer.GetLength()) { aRanges.AppendElement(MediaByteRange(mInputBuffer.GetOffset(), mInputBuffer.GetLength())); } return NS_OK; } virtual const nsCString& GetContentType() const MOZ_OVERRIDE { return mType; } virtual size_t SizeOfExcludingThis( MallocSizeOf aMallocSizeOf) const MOZ_OVERRIDE { ReentrantMonitorAutoEnter mon(mMonitor); size_t size = MediaResource::SizeOfExcludingThis(aMallocSizeOf); size += mType.SizeOfExcludingThisIfUnshared(aMallocSizeOf); size += mInputBuffer.SizeOfExcludingThis(aMallocSizeOf); return size; } virtual size_t SizeOfIncludingThis( MallocSizeOf aMallocSizeOf) const MOZ_OVERRIDE { return aMallocSizeOf(this) + SizeOfExcludingThis(aMallocSizeOf); } // Used by SourceBuffer. void AppendData(const uint8_t* aData, uint32_t aLength); void Ended(); // Remove data from resource if it holds more than the threshold // number of bytes. Returns amount evicted. uint32_t EvictData(uint32_t aThreshold); // Remove data from resource before the given offset. void EvictBefore(uint64_t aOffset); // Returns the amount of data currently retained by this resource. int64_t GetSize() { ReentrantMonitorAutoEnter mon(mMonitor); return mInputBuffer.GetLength() - mInputBuffer.GetOffset(); } #if defined(DEBUG) void Dump(const char* aPath) { mInputBuffer.Dump(aPath); } #endif private: ~SourceBufferResource(); nsresult SeekInternal(int64_t aOffset); const nsCString mType; // Provides synchronization between SourceBuffers and InputAdapters. // Protects all of the member variables below. Read() will await a // Notify() (from Seek, AppendData, Ended, or Close) when insufficient // data is available in mData. mutable ReentrantMonitor mMonitor; // The buffer holding resource data. ResourceQueue mInputBuffer; uint64_t mOffset; bool mClosed; bool mEnded; }; } // namespace mozilla #undef UNIMPLEMENTED #endif /* MOZILLA_SOURCEBUFFERRESOURCE_H_ */