blob: 155c723bdc9c9bd2360ba16232b2c34af593e985 [file] [log] [blame]
/*
* Copyright (C) 2011 Google Inc. All rights reserved.
* Copyright (C) 2011, 2015 Ericsson AB. All rights reserved.
* Copyright (C) 2013-2019 Apple Inc. All rights reserved.
* Copyright (C) 2013 Nokia Corporation and/or its subsidiary(-ies).
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#if ENABLE(MEDIA_STREAM)
#include "ActiveDOMObject.h"
#include "DoubleRange.h"
#include "EventTarget.h"
#include "GenericTaskQueue.h"
#include "JSDOMPromiseDeferred.h"
#include "LongRange.h"
#include "MediaProducer.h"
#include "MediaStreamTrackPrivate.h"
#include "MediaTrackConstraints.h"
#include <wtf/LoggerHelper.h>
namespace WebCore {
class AudioSourceProvider;
class Document;
struct MediaTrackConstraints;
class MediaStreamTrack
: public RefCounted<MediaStreamTrack>
, public ActiveDOMObject
, public EventTargetWithInlineData
, public MediaProducer
, private MediaStreamTrackPrivate::Observer
#if !RELEASE_LOG_DISABLED
, private LoggerHelper
#endif
{
WTF_MAKE_ISO_ALLOCATED(MediaStreamTrack);
public:
class Observer {
public:
virtual ~Observer() = default;
virtual void trackDidEnd() = 0;
};
static Ref<MediaStreamTrack> create(ScriptExecutionContext&, Ref<MediaStreamTrackPrivate>&&);
virtual ~MediaStreamTrack();
virtual bool isCanvas() const { return false; }
const AtomicString& kind() const;
WEBCORE_EXPORT const String& id() const;
const String& label() const;
const AtomicString& contentHint() const;
void setContentHint(const String&);
bool enabled() const;
void setEnabled(bool);
bool muted() const;
void setMuted(MediaProducer::MutedStateFlags);
enum class State { Live, Ended };
State readyState() const;
bool ended() const;
virtual RefPtr<MediaStreamTrack> clone();
enum class StopMode { Silently, PostEvent };
void stopTrack(StopMode = StopMode::Silently);
bool isCaptureTrack() const { return m_isCaptureTrack; }
struct TrackSettings {
Optional<int> width;
Optional<int> height;
Optional<double> aspectRatio;
Optional<double> frameRate;
String facingMode;
Optional<double> volume;
Optional<int> sampleRate;
Optional<int> sampleSize;
Optional<bool> echoCancellation;
Optional<bool> displaySurface;
String logicalSurface;
String deviceId;
String groupId;
};
TrackSettings getSettings() const;
struct TrackCapabilities {
Optional<LongRange> width;
Optional<LongRange> height;
Optional<DoubleRange> aspectRatio;
Optional<DoubleRange> frameRate;
Optional<Vector<String>> facingMode;
Optional<DoubleRange> volume;
Optional<LongRange> sampleRate;
Optional<LongRange> sampleSize;
Optional<Vector<bool>> echoCancellation;
String deviceId;
String groupId;
};
TrackCapabilities getCapabilities() const;
const MediaTrackConstraints& getConstraints() const { return m_constraints; }
void applyConstraints(const Optional<MediaTrackConstraints>&, DOMPromiseDeferred<void>&&);
RealtimeMediaSource& source() const { return m_private->source(); }
MediaStreamTrackPrivate& privateTrack() { return m_private.get(); }
AudioSourceProvider* audioSourceProvider();
// MediaProducer
void pageMutedStateDidChange() final;
MediaProducer::MediaStateFlags mediaState() const final;
void addObserver(Observer&);
void removeObserver(Observer&);
using RefCounted::ref;
using RefCounted::deref;
// ActiveDOMObject API.
bool hasPendingActivity() const final;
void setIdForTesting(String&& id) { m_private->setIdForTesting(WTFMove(id)); }
#if !RELEASE_LOG_DISABLED
const Logger& logger() const final { return m_logger.get(); }
const void* logIdentifier() const final { return m_logIdentifier; }
#endif
protected:
MediaStreamTrack(ScriptExecutionContext&, Ref<MediaStreamTrackPrivate>&&);
ScriptExecutionContext* scriptExecutionContext() const final { return ActiveDOMObject::scriptExecutionContext(); }
Ref<MediaStreamTrackPrivate> m_private;
private:
explicit MediaStreamTrack(MediaStreamTrack&);
void configureTrackRendering();
Document* document() const;
// ActiveDOMObject API.
void stop() final;
const char* activeDOMObjectName() const final;
bool canSuspendForDocumentSuspension() const final;
// EventTarget
void refEventTarget() final { ref(); }
void derefEventTarget() final { deref(); }
EventTargetInterface eventTargetInterface() const final { return MediaStreamTrackEventTargetInterfaceType; }
// MediaStreamTrackPrivate::Observer
void trackStarted(MediaStreamTrackPrivate&) final;
void trackEnded(MediaStreamTrackPrivate&) final;
void trackMutedChanged(MediaStreamTrackPrivate&) final;
void trackSettingsChanged(MediaStreamTrackPrivate&) final;
void trackEnabledChanged(MediaStreamTrackPrivate&) final;
#if !RELEASE_LOG_DISABLED
const char* logClassName() const final { return "MediaStreamTrack"; }
WTFLogChannel& logChannel() const final;
Ref<const Logger> m_logger;
const void* m_logIdentifier;
#endif
Vector<Observer*> m_observers;
MediaTrackConstraints m_constraints;
Optional<DOMPromiseDeferred<void>> m_promise;
GenericTaskQueue<ScriptExecutionContext> m_taskQueue;
GenericTaskQueue<Timer> m_eventTaskQueue;
bool m_ended { false };
bool m_isCaptureTrack { false };
};
typedef Vector<RefPtr<MediaStreamTrack>> MediaStreamTrackVector;
} // namespace WebCore
#endif // ENABLE(MEDIA_STREAM)