Upstream version 5.34.92.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / loader / TextTrackLoader.cpp
1 /*
2  * Copyright (C) 2011 Google Inc.  All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "config.h"
27
28 #include "core/loader/TextTrackLoader.h"
29
30 #include "FetchInitiatorTypeNames.h"
31 #include "core/dom/Document.h"
32 #include "core/fetch/CrossOriginAccessControl.h"
33 #include "core/fetch/FetchRequest.h"
34 #include "core/fetch/ResourceFetcher.h"
35 #include "platform/Logging.h"
36 #include "platform/SharedBuffer.h"
37 #include "platform/weborigin/SecurityOrigin.h"
38
39 namespace WebCore {
40
41 TextTrackLoader::TextTrackLoader(TextTrackLoaderClient& client, Document& document)
42     : m_client(client)
43     , m_document(document)
44     , m_cueLoadTimer(this, &TextTrackLoader::cueLoadTimerFired)
45     , m_state(Idle)
46     , m_newCuesAvailable(false)
47 {
48 }
49
50 TextTrackLoader::~TextTrackLoader()
51 {
52 }
53
54 void TextTrackLoader::cueLoadTimerFired(Timer<TextTrackLoader>* timer)
55 {
56     ASSERT_UNUSED(timer, timer == &m_cueLoadTimer);
57
58     if (m_newCuesAvailable) {
59         m_newCuesAvailable = false;
60         m_client.newCuesAvailable(this);
61     }
62
63     if (m_state >= Finished)
64         m_client.cueLoadingCompleted(this, m_state == Failed);
65 }
66
67 void TextTrackLoader::cancelLoad()
68 {
69     clearResource();
70 }
71
72 void TextTrackLoader::dataReceived(Resource* resource, const char* data, int length)
73 {
74     ASSERT(this->resource() == resource);
75
76     if (m_state == Failed)
77         return;
78
79     if (!m_cueParser)
80         m_cueParser = VTTParser::create(this, m_document);
81
82     m_cueParser->parseBytes(data, length);
83 }
84
85 void TextTrackLoader::corsPolicyPreventedLoad(SecurityOrigin* securityOrigin, const KURL& url)
86 {
87     String consoleMessage("Text track from origin '" + SecurityOrigin::create(url)->toString() + "' has been blocked from loading: Not at same origin as the document, and parent of track element does not have a 'crossorigin' attribute. Origin '" + securityOrigin->toString() + "' is therefore not allowed access.");
88     m_document.addConsoleMessage(SecurityMessageSource, ErrorMessageLevel, consoleMessage);
89     m_state = Failed;
90 }
91
92 void TextTrackLoader::notifyFinished(Resource* resource)
93 {
94     ASSERT(this->resource() == resource);
95     if (m_state != Failed)
96         m_state = resource->errorOccurred() ? Failed : Finished;
97
98     if (m_state == Finished && m_cueParser)
99         m_cueParser->flush();
100
101     if (!m_cueLoadTimer.isActive())
102         m_cueLoadTimer.startOneShot(0);
103
104     cancelLoad();
105 }
106
107 bool TextTrackLoader::load(const KURL& url, const String& crossOriginMode)
108 {
109     cancelLoad();
110
111     FetchRequest cueRequest(ResourceRequest(m_document.completeURL(url)), FetchInitiatorTypeNames::texttrack);
112
113     if (!crossOriginMode.isNull()) {
114         StoredCredentials allowCredentials = equalIgnoringCase(crossOriginMode, "use-credentials") ? AllowStoredCredentials : DoNotAllowStoredCredentials;
115         cueRequest.setCrossOriginAccessControl(m_document.securityOrigin(), allowCredentials);
116     } else if (!m_document.securityOrigin()->canRequest(url)) {
117         // Text track elements without 'crossorigin' set on the parent are "No CORS"; report error if not same-origin.
118         corsPolicyPreventedLoad(m_document.securityOrigin(), url);
119         return false;
120     }
121
122     ResourceFetcher* fetcher = m_document.fetcher();
123     setResource(fetcher->fetchRawResource(cueRequest));
124     return resource();
125 }
126
127 void TextTrackLoader::newCuesParsed()
128 {
129     if (m_cueLoadTimer.isActive())
130         return;
131
132     m_newCuesAvailable = true;
133     m_cueLoadTimer.startOneShot(0);
134 }
135
136 void TextTrackLoader::newRegionsParsed()
137 {
138     m_client.newRegionsAvailable(this);
139 }
140
141 void TextTrackLoader::fileFailedToParse()
142 {
143     WTF_LOG(Media, "TextTrackLoader::fileFailedToParse");
144
145     m_state = Failed;
146
147     if (!m_cueLoadTimer.isActive())
148         m_cueLoadTimer.startOneShot(0);
149
150     cancelLoad();
151 }
152
153 void TextTrackLoader::getNewCues(Vector<RefPtr<VTTCue> >& outputCues)
154 {
155     ASSERT(m_cueParser);
156     if (m_cueParser)
157         m_cueParser->getNewCues(outputCues);
158 }
159
160 void TextTrackLoader::getNewRegions(Vector<RefPtr<VTTRegion> >& outputRegions)
161 {
162     ASSERT(m_cueParser);
163     if (m_cueParser)
164         m_cueParser->getNewRegions(outputRegions);
165 }
166
167 }