| /* |
| * Copyright (C) 2014 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. |
| */ |
| |
| #import "config.h" |
| #import "CDMPrivateMediaSourceAVFObjC.h" |
| |
| #if ENABLE(LEGACY_ENCRYPTED_MEDIA) && ENABLE(MEDIA_SOURCE) |
| |
| #import "CDM.h" |
| #import "CDMSessionAVContentKeySession.h" |
| #import "CDMSessionAVStreamSession.h" |
| #import "ContentType.h" |
| #import "MediaPlayerPrivateMediaSourceAVFObjC.h" |
| #import "WebCoreSystemInterface.h" |
| #import <wtf/NeverDestroyed.h> |
| #import <yarr/RegularExpression.h> |
| |
| using JSC::Yarr::RegularExpression; |
| |
| namespace WebCore { |
| |
| static RegularExpression& validKeySystemRE() |
| { |
| static NeverDestroyed<RegularExpression> keySystemRE("^com\\.apple\\.fps\\.[23]_\\d+(?:,\\d+)*$", TextCaseInsensitive); |
| return keySystemRE; |
| } |
| |
| CDMPrivateMediaSourceAVFObjC::~CDMPrivateMediaSourceAVFObjC() |
| { |
| for (auto& session : m_sessions) |
| session->invalidateCDM(); |
| } |
| |
| bool CDMPrivateMediaSourceAVFObjC::supportsKeySystem(const String& keySystem) |
| { |
| if (!wkQueryDecoderAvailability()) |
| return false; |
| |
| if (!keySystem.isEmpty() && validKeySystemRE().match(keySystem) < 0) |
| return false; |
| |
| if (keySystem.substring(14, 1).toInt() == 3 && !CDMSessionAVContentKeySession::isAvailable()) |
| return false; |
| |
| return true; |
| } |
| |
| bool CDMPrivateMediaSourceAVFObjC::supportsKeySystemAndMimeType(const String& keySystem, const String& mimeType) |
| { |
| if (!supportsKeySystem(keySystem)) |
| return false; |
| |
| if (mimeType.isEmpty()) |
| return true; |
| |
| // FIXME: Why is this ignoring case since the check in supportsMIMEType is checking case? |
| if (equalLettersIgnoringASCIICase(mimeType, "keyrelease")) |
| return true; |
| |
| MediaEngineSupportParameters parameters; |
| parameters.isMediaSource = true; |
| parameters.type = mimeType; |
| |
| return MediaPlayerPrivateMediaSourceAVFObjC::supportsType(parameters) != MediaPlayer::IsNotSupported; |
| } |
| |
| bool CDMPrivateMediaSourceAVFObjC::supportsMIMEType(const String& mimeType) |
| { |
| // FIXME: Why is this checking case since the check in supportsKeySystemAndMimeType is ignoring case? |
| if (mimeType == "keyrelease") |
| return true; |
| |
| MediaEngineSupportParameters parameters; |
| parameters.isMediaSource = true; |
| parameters.type = mimeType; |
| |
| return MediaPlayerPrivateMediaSourceAVFObjC::supportsType(parameters) != MediaPlayer::IsNotSupported; |
| } |
| |
| std::unique_ptr<CDMSession> CDMPrivateMediaSourceAVFObjC::createSession(CDMSessionClient* client) |
| { |
| String keySystem = m_cdm->keySystem(); |
| ASSERT(validKeySystemRE().match(keySystem) >= 0); |
| |
| Vector<String> protocolVersionsStrings; |
| keySystem.substring(16).split(',', false, protocolVersionsStrings); |
| |
| Vector<int> protocolVersions; |
| for (auto& protocolVersionString : protocolVersionsStrings) |
| protocolVersions.append(protocolVersionString.toInt()); |
| |
| std::unique_ptr<CDMSessionMediaSourceAVFObjC> session; |
| if (keySystem.substring(14, 1).toInt() == 3 && CDMSessionAVContentKeySession::isAvailable()) |
| session = std::make_unique<CDMSessionAVContentKeySession>(protocolVersions, *this, client); |
| else |
| session = std::make_unique<CDMSessionAVStreamSession>(protocolVersions, *this, client); |
| |
| m_sessions.append(session.get()); |
| return WTFMove(session); |
| } |
| |
| void CDMPrivateMediaSourceAVFObjC::invalidateSession(CDMSessionMediaSourceAVFObjC* session) |
| { |
| ASSERT(m_sessions.contains(session)); |
| m_sessions.removeAll(session); |
| } |
| |
| } |
| |
| #endif // ENABLE(LEGACY_ENCRYPTED_MEDIA) && ENABLE(MEDIA_SOURCE) |