blob: 10887ff0d41aa60cd0b789244f6e953a0129479e [file] [log] [blame]
/*
* Copyright (C) 2011 Google Inc. All rights reserved.
* Copyright (C) 2014-2017 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. ``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"
#if ENABLE(VIDEO)
#include "TextTrackLoader.h"
#include "CachedResourceRequest.h"
#include "CachedTextTrack.h"
#include "CrossOriginAccessControl.h"
#include "DocumentResourceLoader.h"
#include "HTMLMediaElement.h"
#include "HTMLTrackElement.h"
#include "InspectorInstrumentation.h"
#include "Logging.h"
#include "SharedBuffer.h"
#include "VTTCue.h"
#include "WebVTTParser.h"
#include <wtf/NeverDestroyed.h>
namespace WebCore {
Ref<TextTrackLoader> TextTrackLoader::create(TextTrackLoaderClient& client, Document& document)
{
return adoptRef(*new TextTrackLoader(client, document));
}
TextTrackLoader::TextTrackLoader(TextTrackLoaderClient& client, Document& document)
: m_client(client)
, m_document(document)
, m_cueLoadTimer(*this, &TextTrackLoader::cueLoadTimerFired)
{
}
TextTrackLoader::~TextTrackLoader()
{
if (CachedResourceHandle resource = m_resource)
resource->removeClient(*this);
}
void TextTrackLoader::cueLoadTimerFired()
{
if (m_newCuesAvailable) {
m_newCuesAvailable = false;
if (RefPtr client = m_client.get())
client->newCuesAvailable(*this);
}
if (m_state >= Finished) {
if (RefPtr client = m_client.get())
client->cueLoadingCompleted(*this, m_state == Failed);
}
}
void TextTrackLoader::cancelLoad()
{
if (CachedResourceHandle resource = std::exchange(m_resource, nullptr))
resource->removeClient(*this);
}
void TextTrackLoader::processNewCueData(CachedResource& resource)
{
ASSERT_UNUSED(resource, m_resource == &resource);
if (m_state == Failed || !m_resource->resourceBuffer())
return;
Ref buffer = *m_resource->resourceBuffer();
if (m_parseOffset == buffer->size())
return;
if (!m_cueParser) {
RefPtr document = m_document.get();
if (!document)
return;
m_cueParser = makeUnique<WebVTTParser>(static_cast<WebVTTParserClient&>(*this), *document);
}
while (m_parseOffset < buffer->size()) {
auto data = buffer->getSomeData(m_parseOffset);
m_cueParser->parseBytes(data.span());
m_parseOffset += data.size();
}
}
// FIXME: This is a very unusual pattern, no other CachedResourceClient does this. Refactor to use notifyFinished() instead.
void TextTrackLoader::deprecatedDidReceiveCachedResource(CachedResource& resource)
{
ASSERT_UNUSED(resource, m_resource == &resource);
if (!m_resource->resourceBuffer())
return;
processNewCueData(*protectedResource());
}
void TextTrackLoader::corsPolicyPreventedLoad()
{
static NeverDestroyed<String> consoleMessage(MAKE_STATIC_STRING_IMPL("Cross-origin text track load denied by Cross-Origin Resource Sharing policy."));
if (RefPtr document = m_document.get())
document->addConsoleMessage(MessageSource::Security, MessageLevel::Error, consoleMessage);
m_state = Failed;
}
void TextTrackLoader::notifyFinished(CachedResource& resource, const NetworkLoadMetrics&, LoadWillContinueInAnotherProcess)
{
ASSERT_UNUSED(resource, m_resource == &resource);
if (m_resource->resourceError().isAccessControl())
corsPolicyPreventedLoad();
if (!m_resource->resourceBuffer())
m_state = Failed;
if (m_state != Failed) {
CachedResourceHandle resource = m_resource;
processNewCueData(*resource);
if (m_cueParser)
m_cueParser->fileFinished();
if (m_state != Failed)
m_state = resource->errorOccurred() ? Failed : Finished;
}
if (m_state == Finished && m_cueParser)
m_cueParser->flush();
if (!m_cueLoadTimer.isActive())
m_cueLoadTimer.startOneShot(0_s);
cancelLoad();
}
bool TextTrackLoader::load(const URL& url, HTMLTrackElement& element)
{
cancelLoad();
ResourceLoaderOptions options = CachedResourceLoader::defaultCachedResourceOptions();
options.contentSecurityPolicyImposition = element.isInUserAgentShadowTree() ? ContentSecurityPolicyImposition::SkipPolicyCheck : ContentSecurityPolicyImposition::DoPolicyCheck;
RefPtr document = m_document.get();
if (!document)
return false;
// FIXME: Do we really need to call completeURL here?
ResourceRequest resourceRequest(document->completeURL(url.string()));
if (RefPtr mediaElement = element.mediaElement())
resourceRequest.setInspectorInitiatorNodeIdentifier(InspectorInstrumentation::identifierForNode(*mediaElement));
auto cueRequest = createPotentialAccessControlRequest(WTF::move(resourceRequest), WTF::move(options), *document, element.mediaElementCrossOriginAttribute());
m_resource = document->protectedCachedResourceLoader()->requestTextTrack(WTF::move(cueRequest)).value_or(nullptr);
if (CachedResourceHandle resource = m_resource) {
resource->addClient(*this);
return true;
}
return false;
}
void TextTrackLoader::newCuesParsed()
{
if (m_cueLoadTimer.isActive())
return;
m_newCuesAvailable = true;
m_cueLoadTimer.startOneShot(0_s);
}
void TextTrackLoader::newRegionsParsed()
{
if (RefPtr client = m_client.get())
client->newRegionsAvailable(*this);
}
void TextTrackLoader::newStyleSheetsParsed()
{
if (RefPtr client = m_client.get())
client->newStyleSheetsAvailable(*this);
}
void TextTrackLoader::fileFailedToParse()
{
LOG(Media, "TextTrackLoader::fileFailedToParse");
m_state = Failed;
if (!m_cueLoadTimer.isActive())
m_cueLoadTimer.startOneShot(0_s);
cancelLoad();
}
Vector<Ref<VTTCue>> TextTrackLoader::getNewCues()
{
ASSERT(m_cueParser);
if (!m_cueParser)
return { };
RefPtr document = m_document.get();
if (!document)
return { };
return map(m_cueParser->takeCues(), [&](auto&& cueData) {
return VTTCue::create(*document, WTF::move(cueData));
});
}
Vector<Ref<VTTRegion>> TextTrackLoader::getNewRegions()
{
ASSERT(m_cueParser);
if (!m_cueParser)
return { };
return m_cueParser->takeRegions();
}
Vector<String> TextTrackLoader::getNewStyleSheets()
{
ASSERT(m_cueParser);
if (!m_cueParser)
return { };
return m_cueParser->takeStyleSheets();
}
CachedResourceHandle<CachedTextTrack> TextTrackLoader::protectedResource() const
{
return m_resource.get();
}
} // namespace WebCore
#endif