/* * Copyright (C) 2013 Google Inc. All rights reserved. * Copyright (C) 2013 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. ``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 * 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. */ #include "config.h" #include "MockRealtimeMediaSourceCenter.h" #if ENABLE(MEDIA_STREAM) #include "MediaConstraintsMock.h" #include "MediaStream.h" #include "MediaStreamCreationClient.h" #include "MediaStreamPrivate.h" #include "MediaStreamTrack.h" #include "MediaStreamTrackSourcesRequestClient.h" #include "MockRealtimeAudioSource.h" #include "MockRealtimeMediaSource.h" #include "MockRealtimeVideoSource.h" #include "RealtimeMediaSource.h" #include "RealtimeMediaSourceCapabilities.h" #include "UUID.h" #include namespace WebCore { void MockRealtimeMediaSourceCenter::setMockRealtimeMediaSourceCenterEnabled(bool enabled) { static NeverDestroyed center; static bool active = false; if (active != enabled) { active = enabled; RealtimeMediaSourceCenter::setSharedStreamCenterOverride(enabled ? ¢er.get() : nullptr); } } MockRealtimeMediaSourceCenter::MockRealtimeMediaSourceCenter() { m_supportedConstraints.setSupportsWidth(true); m_supportedConstraints.setSupportsHeight(true); m_supportedConstraints.setSupportsAspectRatio(true); m_supportedConstraints.setSupportsFrameRate(true); m_supportedConstraints.setSupportsFacingMode(true); m_supportedConstraints.setSupportsVolume(true); m_supportedConstraints.setSupportsDeviceId(true); } void MockRealtimeMediaSourceCenter::validateRequestConstraints(MediaStreamCreationClient* client, RefPtr& audioConstraints, RefPtr& videoConstraints) { ASSERT(client); Vector> audioSources; Vector> videoSources; if (audioConstraints) { String invalidQuery = MediaConstraintsMock::verifyConstraints(audioConstraints); if (!invalidQuery.isEmpty()) { client->constraintsInvalid(invalidQuery); return; } RefPtr audioSource = MockRealtimeAudioSource::create(); audioSources.append(audioSource.release()); } if (videoConstraints) { String invalidQuery = MediaConstraintsMock::verifyConstraints(videoConstraints); if (!invalidQuery.isEmpty()) { client->constraintsInvalid(invalidQuery); return; } RefPtr videoSource = MockRealtimeVideoSource::create(); videoSources.append(videoSource.release()); } client->constraintsValidated(audioSources, videoSources); } void MockRealtimeMediaSourceCenter::createMediaStream(PassRefPtr prpQueryClient, PassRefPtr audioConstraints, PassRefPtr videoConstraints) { RefPtr client = prpQueryClient; ASSERT(client); Vector> audioSources; Vector> videoSources; if (audioConstraints) { String invalidQuery = MediaConstraintsMock::verifyConstraints(audioConstraints); if (!invalidQuery.isEmpty()) { client->failedToCreateStreamWithConstraintsError(invalidQuery); return; } RefPtr audioSource = MockRealtimeAudioSource::create(); audioSources.append(audioSource.release()); } if (videoConstraints) { String invalidQuery = MediaConstraintsMock::verifyConstraints(videoConstraints); if (!invalidQuery.isEmpty()) { client->failedToCreateStreamWithConstraintsError(invalidQuery); return; } RefPtr videoSource = MockRealtimeVideoSource::create(); videoSources.append(videoSource.release()); } client->didCreateStream(MediaStreamPrivate::create(audioSources, videoSources)); } void MockRealtimeMediaSourceCenter::createMediaStream(MediaStreamCreationClient* client, const String& audioDeviceID, const String& videoDeviceID) { ASSERT(client); Vector> audioSources; Vector> videoSources; if (!audioDeviceID.isEmpty() && audioDeviceID == MockRealtimeMediaSource::mockAudioSourcePersistentID()) { RefPtr audioSource = MockRealtimeAudioSource::create(); audioSources.append(audioSource.release()); } if (!videoDeviceID.isEmpty() && videoDeviceID == MockRealtimeMediaSource::mockVideoSourcePersistentID()) { RefPtr videoSource = MockRealtimeVideoSource::create(); videoSources.append(videoSource.release()); } client->didCreateStream(MediaStreamPrivate::create(audioSources, videoSources)); } bool MockRealtimeMediaSourceCenter::getMediaStreamTrackSources(PassRefPtr prpClient) { RefPtr requestClient = prpClient; TrackSourceInfoVector sources; sources.append(MockRealtimeMediaSource::trackSourceWithUID(MockRealtimeMediaSource::mockAudioSourcePersistentID(), nullptr)); sources.append(MockRealtimeMediaSource::trackSourceWithUID(MockRealtimeMediaSource::mockVideoSourcePersistentID(), nullptr)); callOnMainThread([this, requestClient, sources] { requestClient->didCompleteRequest(sources); }); return true; } RefPtr MockRealtimeMediaSourceCenter::sourceWithUID(const String& UID, RealtimeMediaSource::Type, MediaConstraints* constraints) { return MockRealtimeMediaSource::trackSourceWithUID(UID, constraints); } } // namespace WebCore #endif // ENABLE(MEDIA_STREAM)