initial import
[vuplus_webkit] / Source / WebCore / html / track / CueParser.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 are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include "config.h"
32
33 #if ENABLE(VIDEO_TRACK)
34
35 #include "CueParser.h"
36
37 #include "ResourceRequest.h"
38 #include "ResourceResponse.h"
39 #include "ThreadableLoader.h"
40
41 namespace WebCore {
42
43 CueParser::CueParser()
44 {
45     // FIXME(62893): Implement.
46 }
47
48 CueParser::~CueParser()
49 {
50     if (m_loader)
51         m_loader->cancel();
52     m_loader = 0;
53 }
54
55 void CueParser::load(const String& url, ScriptExecutionContext* context, CueParserClient* client)
56 {
57     ResourceRequest request(url);
58
59     ThreadableLoaderOptions options;
60     options.sendLoadCallbacks = SendCallbacks;
61     options.crossOriginRequestPolicy = AllowCrossOriginRequests;
62
63     m_client = client;
64     m_scriptExecutionContext = context;
65
66     m_loader = ThreadableLoader::create(context, this, request, options);
67 }
68
69 bool CueParser::supportsType(const String& url)
70 {
71     // FIXME(62893): check against a list of supported types
72     return false;
73 }
74
75 void CueParser::didReceiveResponse(unsigned long /*identifier*/, const ResourceResponse& response)
76 {
77     if (response.mimeType() == "text/vtt")
78         createWebVTTParser();
79 }
80
81 void CueParser::didReceiveData(const char* data, int length)
82 {
83     // If mime type from didReceiveResponse was not informative, sniff file content.
84     if (!m_private && WebVTTParser::hasRequiredFileIdentifier(data, length))
85         createWebVTTParser();
86
87     if (m_private)
88         m_private->parseBytes(data, length);
89 }
90
91 void CueParser::didFinishLoading(unsigned long)
92 {
93     m_client->trackLoadCompleted();
94 }
95
96 void CueParser::didFail(const ResourceError&)
97 {
98     m_client->trackLoadError();
99 }
100
101 void CueParser::fetchParsedCues(Vector<RefPtr<TextTrackCue> >&)
102 {
103     // FIXME(62893): Implement.
104 }
105
106 void CueParser::newCuesParsed()
107 {
108     m_client->newCuesParsed();
109 }
110
111 void CueParser::createWebVTTParser()
112 {
113     if (!m_private) {
114         m_private = WebVTTParser::create(this, m_scriptExecutionContext);
115         m_client->trackLoadStarted();
116     }
117 }
118
119 } // namespace WebCore
120
121 #endif