1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
|
/*
* Copyright (C) 2014-2021 Apple Inc. All rights reserved.
*
* 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
#include "MediaSessionGroupIdentifier.h"
#include "MediaSessionIdentifier.h"
#include "Timer.h"
#include <wtf/Logger.h>
#include <wtf/LoggerHelper.h>
#include <wtf/Noncopyable.h>
#include <wtf/WeakPtr.h>
#include <wtf/text/WTFString.h>
#if ENABLE(WIRELESS_PLAYBACK_TARGET)
#include "MediaPlaybackTargetClient.h"
#endif
namespace WebCore {
class Document;
class MediaPlaybackTarget;
class PlatformMediaSessionClient;
class PlatformMediaSessionManager;
enum class DelayCallingUpdateNowPlaying : bool { No, Yes };
struct NowPlayingInfo;
class PlatformMediaSession
: public CanMakeWeakPtr<PlatformMediaSession>
#if ENABLE(WIRELESS_PLAYBACK_TARGET)
, public MediaPlaybackTargetClient
#endif
#if !RELEASE_LOG_DISABLED
, private LoggerHelper
#endif
{
WTF_MAKE_FAST_ALLOCATED;
public:
static std::unique_ptr<PlatformMediaSession> create(PlatformMediaSessionManager&, PlatformMediaSessionClient&);
virtual ~PlatformMediaSession();
void setActive(bool);
enum class MediaType : uint8_t {
None = 0,
Video,
VideoAudio,
Audio,
WebAudio,
};
MediaType mediaType() const;
MediaType presentationType() const;
enum State : uint8_t {
Idle,
Autoplaying,
Playing,
Paused,
Interrupted,
};
State state() const { return m_state; }
void setState(State);
enum InterruptionType : uint8_t {
NoInterruption,
SystemSleep,
EnteringBackground,
SystemInterruption,
SuspendedUnderLock,
InvisibleAutoplay,
ProcessInactive,
PlaybackSuspended,
PageNotVisible,
};
InterruptionType interruptionType() const { return m_interruptionType; }
enum EndInterruptionFlags : uint8_t {
NoFlags = 0,
MayResumePlaying = 1 << 0,
};
virtual void clientCharacteristicsChanged(bool);
void beginInterruption(InterruptionType);
void endInterruption(EndInterruptionFlags);
virtual void clientWillBeginAutoplaying();
virtual bool clientWillBeginPlayback();
virtual bool clientWillPausePlayback();
void clientWillBeDOMSuspended();
void pauseSession();
void stopSession();
virtual void suspendBuffering() { }
virtual void resumeBuffering() { }
struct RemoteCommandArgument {
std::optional<double> time;
std::optional<bool> fastSeek;
template<class Encoder> void encode(Encoder&) const;
template<class Decoder> static std::optional<RemoteCommandArgument> decode(Decoder&);
};
enum RemoteControlCommandType : uint8_t {
NoCommand,
PlayCommand,
PauseCommand,
StopCommand,
TogglePlayPauseCommand,
BeginSeekingBackwardCommand,
EndSeekingBackwardCommand,
BeginSeekingForwardCommand,
EndSeekingForwardCommand,
SeekToPlaybackPositionCommand,
SkipForwardCommand,
SkipBackwardCommand,
NextTrackCommand,
PreviousTrackCommand,
BeginScrubbingCommand,
EndScrubbingCommand,
};
bool canReceiveRemoteControlCommands() const;
virtual void didReceiveRemoteControlCommand(RemoteControlCommandType, const RemoteCommandArgument&);
bool supportsSeeking() const;
enum DisplayType : uint8_t {
Normal,
Fullscreen,
Optimized,
};
DisplayType displayType() const;
bool isHidden() const;
bool isSuspended() const;
bool isPlaying() const;
bool isAudible() const;
bool shouldOverrideBackgroundLoadingRestriction() const;
virtual bool isPlayingToWirelessPlaybackTarget() const { return m_isPlayingToWirelessPlaybackTarget; }
void isPlayingToWirelessPlaybackTargetChanged(bool);
#if ENABLE(WIRELESS_PLAYBACK_TARGET)
// MediaPlaybackTargetClient
void setPlaybackTarget(Ref<MediaPlaybackTarget>&&) override { }
void externalOutputDeviceAvailableDidChange(bool) override { }
void setShouldPlayToPlaybackTarget(bool) override { }
void playbackTargetPickerWasDismissed() override { }
#endif
#if PLATFORM(IOS_FAMILY)
virtual bool requiresPlaybackTargetRouteMonitoring() const { return false; }
#endif
bool activeAudioSessionRequired() const;
bool canProduceAudio() const;
bool hasMediaStreamSource() const;
void canProduceAudioChanged();
virtual void resetPlaybackSessionState() { }
String sourceApplicationIdentifier() const;
bool hasPlayedAudiblySinceLastInterruption() const { return m_hasPlayedAudiblySinceLastInterruption; }
void clearHasPlayedAudiblySinceLastInterruption() { m_hasPlayedAudiblySinceLastInterruption = false; }
bool preparingToPlay() const { return m_preparingToPlay; }
#if !RELEASE_LOG_DISABLED
const Logger& logger() const final { return m_logger.get(); }
const void* logIdentifier() const override { return m_logIdentifier; }
const char* logClassName() const override { return "PlatformMediaSession"; }
WTFLogChannel& logChannel() const final;
#endif
bool canPlayConcurrently(const PlatformMediaSession&) const;
bool shouldOverridePauseDuringRouteChange() const;
class AudioCaptureSource : public CanMakeWeakPtr<AudioCaptureSource> {
public:
virtual ~AudioCaptureSource() = default;
virtual bool isCapturingAudio() const = 0;
};
virtual std::optional<NowPlayingInfo> nowPlayingInfo() const;
virtual void updateMediaUsageIfChanged() { }
MediaSessionIdentifier mediaSessionIdentifier() const { return m_mediaSessionIdentifier; }
protected:
PlatformMediaSession(PlatformMediaSessionManager&, PlatformMediaSessionClient&);
PlatformMediaSessionClient& client() const { return m_client; }
private:
bool processClientWillPausePlayback(DelayCallingUpdateNowPlaying);
PlatformMediaSessionClient& m_client;
MediaSessionIdentifier m_mediaSessionIdentifier;
State m_state { Idle };
State m_stateToRestore { Idle };
InterruptionType m_interruptionType { NoInterruption };
int m_interruptionCount { 0 };
bool m_active { false };
bool m_notifyingClient { false };
bool m_isPlayingToWirelessPlaybackTarget { false };
bool m_hasPlayedAudiblySinceLastInterruption { false };
bool m_preparingToPlay { false };
#if !RELEASE_LOG_DISABLED
Ref<const Logger> m_logger;
const void* m_logIdentifier;
#endif
friend class PlatformMediaSessionManager;
};
class PlatformMediaSessionClient {
WTF_MAKE_NONCOPYABLE(PlatformMediaSessionClient);
public:
PlatformMediaSessionClient() = default;
virtual PlatformMediaSession::MediaType mediaType() const = 0;
virtual PlatformMediaSession::MediaType presentationType() const = 0;
virtual PlatformMediaSession::DisplayType displayType() const { return PlatformMediaSession::Normal; }
virtual void resumeAutoplaying() { }
virtual void mayResumePlayback(bool shouldResume) = 0;
virtual void suspendPlayback() = 0;
virtual bool canReceiveRemoteControlCommands() const = 0;
virtual void didReceiveRemoteControlCommand(PlatformMediaSession::RemoteControlCommandType, const PlatformMediaSession::RemoteCommandArgument&) = 0;
virtual bool supportsSeeking() const = 0;
virtual bool canProduceAudio() const { return false; }
virtual bool isSuspended() const { return false; };
virtual bool isPlaying() const { return false; };
virtual bool isAudible() const { return false; };
virtual bool shouldOverrideBackgroundPlaybackRestriction(PlatformMediaSession::InterruptionType) const = 0;
virtual bool shouldOverrideBackgroundLoadingRestriction() const { return false; }
virtual void wirelessRoutesAvailableDidChange() { }
virtual void setWirelessPlaybackTarget(Ref<MediaPlaybackTarget>&&) { }
virtual bool isPlayingToWirelessPlaybackTarget() const { return false; }
virtual void setShouldPlayToPlaybackTarget(bool) { }
virtual void playbackTargetPickerWasDismissed() { }
virtual bool isPlayingOnSecondScreen() const { return false; }
virtual MediaSessionGroupIdentifier mediaSessionGroupIdentifier() const = 0;
virtual bool hasMediaStreamSource() const { return false; }
virtual void processIsSuspendedChanged() { }
virtual bool shouldOverridePauseDuringRouteChange() const { return false; }
#if !RELEASE_LOG_DISABLED
virtual const Logger& logger() const = 0;
#endif
protected:
virtual ~PlatformMediaSessionClient() = default;
};
String convertEnumerationToString(PlatformMediaSession::State);
String convertEnumerationToString(PlatformMediaSession::InterruptionType);
WEBCORE_EXPORT String convertEnumerationToString(PlatformMediaSession::RemoteControlCommandType);
template<class Encoder> inline void PlatformMediaSession::RemoteCommandArgument::encode(Encoder& encoder) const
{
encoder << time << fastSeek;
}
template<class Decoder> inline std::optional<PlatformMediaSession::RemoteCommandArgument> PlatformMediaSession::RemoteCommandArgument::decode(Decoder& decoder)
{
#define DECODE(name, type) \
std::optional<std::optional<type>> name; \
decoder >> name; \
if (!name) \
return std::nullopt; \
DECODE(time, double);
DECODE(fastSeek, bool);
#undef DECODE
return { { *time, *fastSeek } };
}
} // namespace WebCore
namespace WTF {
template<typename Type>
struct LogArgument;
template <>
struct LogArgument<WebCore::PlatformMediaSession::State> {
static String toString(const WebCore::PlatformMediaSession::State state)
{
return convertEnumerationToString(state);
}
};
template <>
struct LogArgument<WebCore::PlatformMediaSession::InterruptionType> {
static String toString(const WebCore::PlatformMediaSession::InterruptionType state)
{
return convertEnumerationToString(state);
}
};
template <>
struct LogArgument<WebCore::PlatformMediaSession::RemoteControlCommandType> {
static String toString(const WebCore::PlatformMediaSession::RemoteControlCommandType command)
{
return convertEnumerationToString(command);
}
};
template <> struct EnumTraits<WebCore::PlatformMediaSession::MediaType> {
using values = EnumValues <
WebCore::PlatformMediaSession::MediaType,
WebCore::PlatformMediaSession::MediaType::None,
WebCore::PlatformMediaSession::MediaType::Video,
WebCore::PlatformMediaSession::MediaType::VideoAudio,
WebCore::PlatformMediaSession::MediaType::Audio,
WebCore::PlatformMediaSession::MediaType::WebAudio
>;
};
template <> struct EnumTraits<WebCore::PlatformMediaSession::State> {
using values = EnumValues <
WebCore::PlatformMediaSession::State,
WebCore::PlatformMediaSession::State::Idle,
WebCore::PlatformMediaSession::State::Autoplaying,
WebCore::PlatformMediaSession::State::Playing,
WebCore::PlatformMediaSession::State::Paused,
WebCore::PlatformMediaSession::State::Interrupted
>;
};
template <> struct EnumTraits<WebCore::PlatformMediaSession::InterruptionType> {
using values = EnumValues <
WebCore::PlatformMediaSession::InterruptionType,
WebCore::PlatformMediaSession::InterruptionType::NoInterruption,
WebCore::PlatformMediaSession::InterruptionType::SystemSleep,
WebCore::PlatformMediaSession::InterruptionType::EnteringBackground,
WebCore::PlatformMediaSession::InterruptionType::SystemInterruption,
WebCore::PlatformMediaSession::InterruptionType::SuspendedUnderLock,
WebCore::PlatformMediaSession::InterruptionType::InvisibleAutoplay,
WebCore::PlatformMediaSession::InterruptionType::ProcessInactive,
WebCore::PlatformMediaSession::InterruptionType::PlaybackSuspended,
WebCore::PlatformMediaSession::InterruptionType::PageNotVisible
>;
};
template <> struct EnumTraits<WebCore::PlatformMediaSession::EndInterruptionFlags> {
using values = EnumValues <
WebCore::PlatformMediaSession::EndInterruptionFlags,
WebCore::PlatformMediaSession::EndInterruptionFlags::NoFlags,
WebCore::PlatformMediaSession::EndInterruptionFlags::MayResumePlaying
>;
};
template <> struct EnumTraits<WebCore::PlatformMediaSession::RemoteControlCommandType> {
using values = EnumValues <
WebCore::PlatformMediaSession::RemoteControlCommandType,
WebCore::PlatformMediaSession::RemoteControlCommandType::NoCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::PlayCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::PauseCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::StopCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::TogglePlayPauseCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::BeginSeekingBackwardCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::EndSeekingBackwardCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::BeginSeekingForwardCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::EndSeekingForwardCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::SeekToPlaybackPositionCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::SkipForwardCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::SkipBackwardCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::NextTrackCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::PreviousTrackCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::BeginScrubbingCommand,
WebCore::PlatformMediaSession::RemoteControlCommandType::EndScrubbingCommand
>;
};
} // namespace WTF
|