mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
01583602a9
The bulk of this commit was generated with a script, executed at the top level of a typical source code checkout. The only non-machine-generated part was modifying MFBT's moz.build to reflect the new naming. CLOSED TREE makes big refactorings like this a piece of cake. # The main substitution. find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \ xargs perl -p -i -e ' s/nsRefPtr\.h/RefPtr\.h/g; # handle includes s/nsRefPtr ?</RefPtr</g; # handle declarations and variables ' # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h. perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h # Handle nsRefPtr.h itself, a couple places that define constructors # from nsRefPtr, and code generators specially. We do this here, rather # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename # things like nsRefPtrHashtable. perl -p -i -e 's/nsRefPtr/RefPtr/g' \ mfbt/nsRefPtr.h \ xpcom/glue/nsCOMPtr.h \ xpcom/base/OwningNonNull.h \ ipc/ipdl/ipdl/lower.py \ ipc/ipdl/ipdl/builtin.py \ dom/bindings/Codegen.py \ python/lldbutils/lldbutils/utils.py # In our indiscriminate substitution above, we renamed # nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up. find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \ xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g' if [ -d .git ]; then git mv mfbt/nsRefPtr.h mfbt/RefPtr.h else hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h fi --HG-- rename : mfbt/nsRefPtr.h => mfbt/RefPtr.h
156 lines
4.6 KiB
C++
156 lines
4.6 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/. */
|
|
|
|
#ifndef mozilla_dom_MediaSource_h_
|
|
#define mozilla_dom_MediaSource_h_
|
|
|
|
#include "MediaSourceDecoder.h"
|
|
#include "js/RootingAPI.h"
|
|
#include "mozilla/Assertions.h"
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/DOMEventTargetHelper.h"
|
|
#include "mozilla/dom/MediaSourceBinding.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsCycleCollectionNoteChild.h"
|
|
#include "nsCycleCollectionParticipant.h"
|
|
#include "nsID.h"
|
|
#include "nsISupports.h"
|
|
#include "nscore.h"
|
|
|
|
struct JSContext;
|
|
class JSObject;
|
|
class nsPIDOMWindow;
|
|
|
|
namespace mozilla {
|
|
|
|
class ErrorResult;
|
|
template <typename T> class AsyncEventRunner;
|
|
|
|
enum MSRangeRemovalAction: uint8_t {
|
|
RUN = 0,
|
|
SKIP = 1
|
|
};
|
|
|
|
namespace dom {
|
|
|
|
class GlobalObject;
|
|
class SourceBuffer;
|
|
class SourceBufferList;
|
|
template <typename T> class Optional;
|
|
|
|
#define MOZILLA_DOM_MEDIASOURCE_IMPLEMENTATION_IID \
|
|
{ 0x3839d699, 0x22c5, 0x439f, \
|
|
{ 0x94, 0xca, 0x0e, 0x0b, 0x26, 0xf9, 0xca, 0xbf } }
|
|
|
|
class MediaSource final : public DOMEventTargetHelper
|
|
{
|
|
public:
|
|
/** WebIDL Methods. */
|
|
static already_AddRefed<MediaSource>
|
|
Constructor(const GlobalObject& aGlobal,
|
|
ErrorResult& aRv);
|
|
|
|
SourceBufferList* SourceBuffers();
|
|
SourceBufferList* ActiveSourceBuffers();
|
|
MediaSourceReadyState ReadyState();
|
|
|
|
double Duration();
|
|
void SetDuration(double aDuration, ErrorResult& aRv);
|
|
|
|
already_AddRefed<SourceBuffer> AddSourceBuffer(const nsAString& aType, ErrorResult& aRv);
|
|
void RemoveSourceBuffer(SourceBuffer& aSourceBuffer, ErrorResult& aRv);
|
|
|
|
void EndOfStream(const Optional<MediaSourceEndOfStreamError>& aError, ErrorResult& aRv);
|
|
static bool IsTypeSupported(const GlobalObject&, const nsAString& aType);
|
|
|
|
static bool Enabled(JSContext* cx, JSObject* aGlobal);
|
|
/** End WebIDL Methods. */
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(MediaSource, DOMEventTargetHelper)
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(MOZILLA_DOM_MEDIASOURCE_IMPLEMENTATION_IID)
|
|
|
|
nsPIDOMWindow* GetParentObject() const;
|
|
|
|
JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
// Attach this MediaSource to Decoder aDecoder. Returns false if already attached.
|
|
bool Attach(MediaSourceDecoder* aDecoder);
|
|
void Detach();
|
|
|
|
// Set mReadyState to aState and fire the required events at the MediaSource.
|
|
void SetReadyState(MediaSourceReadyState aState);
|
|
|
|
// Used by SourceBuffer to call CreateSubDecoder.
|
|
MediaSourceDecoder* GetDecoder()
|
|
{
|
|
return mDecoder;
|
|
}
|
|
|
|
nsIPrincipal* GetPrincipal()
|
|
{
|
|
return mPrincipal;
|
|
}
|
|
|
|
// Called by SourceBuffers to notify this MediaSource that data has
|
|
// been evicted from the buffered data. The start and end times
|
|
// that were evicted are provided.
|
|
void NotifyEvicted(double aStart, double aEnd);
|
|
|
|
#if defined(DEBUG)
|
|
// Dump the contents of each SourceBuffer to a series of files under aPath.
|
|
// aPath must exist. Debug only, invoke from your favourite debugger.
|
|
void Dump(const char* aPath);
|
|
#endif
|
|
|
|
// Returns a string describing the state of the MediaSource internal
|
|
// buffered data. Used for debugging purposes.
|
|
void GetMozDebugReaderData(nsAString& aString);
|
|
|
|
private:
|
|
// MediaSourceDecoder uses DurationChange to set the duration
|
|
// without hitting the checks in SetDuration.
|
|
friend class mozilla::MediaSourceDecoder;
|
|
// SourceBuffer uses SetDuration and SourceBufferIsActive
|
|
friend class mozilla::dom::SourceBuffer;
|
|
|
|
~MediaSource();
|
|
|
|
explicit MediaSource(nsPIDOMWindow* aWindow);
|
|
|
|
friend class AsyncEventRunner<MediaSource>;
|
|
void DispatchSimpleEvent(const char* aName);
|
|
void QueueAsyncSimpleEvent(const char* aName);
|
|
|
|
void DurationChange(double aOldDuration, double aNewDuration);
|
|
|
|
// SetDuration with no checks.
|
|
void SetDuration(double aDuration, MSRangeRemovalAction aAction);
|
|
|
|
// Mark SourceBuffer as active and rebuild ActiveSourceBuffers.
|
|
void SourceBufferIsActive(SourceBuffer* aSourceBuffer);
|
|
|
|
RefPtr<SourceBufferList> mSourceBuffers;
|
|
RefPtr<SourceBufferList> mActiveSourceBuffers;
|
|
|
|
RefPtr<MediaSourceDecoder> mDecoder;
|
|
// Ensures the media element remains alive to dispatch progress and
|
|
// durationchanged events.
|
|
RefPtr<HTMLMediaElement> mMediaElement;
|
|
|
|
RefPtr<nsIPrincipal> mPrincipal;
|
|
|
|
MediaSourceReadyState mReadyState;
|
|
};
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(MediaSource, MOZILLA_DOM_MEDIASOURCE_IMPLEMENTATION_IID)
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif /* mozilla_dom_MediaSource_h_ */
|