Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / MIMETypeRegistry.cpp
1 /*
2  * Copyright (c) 2008, 2009, 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 #include "platform/MIMETypeRegistry.h"
33
34 #include "platform/plugins/PluginData.h"
35 #include "public/platform/Platform.h"
36 #include "public/platform/WebMimeRegistry.h"
37 #include "wtf/text/CString.h"
38
39 namespace blink {
40
41 String MIMETypeRegistry::getMIMETypeForExtension(const String &ext)
42 {
43     return Platform::current()->mimeRegistry()->mimeTypeForExtension(ext);
44 }
45
46 String MIMETypeRegistry::getWellKnownMIMETypeForExtension(const String &ext)
47 {
48     // This method must be thread safe and should not consult the OS/registry.
49     return Platform::current()->mimeRegistry()->wellKnownMimeTypeForExtension(ext);
50 }
51
52 String MIMETypeRegistry::getMIMETypeForPath(const String& path)
53 {
54     int pos = path.reverseFind('.');
55     if (pos < 0)
56         return "application/octet-stream";
57     String extension = path.substring(pos + 1);
58     String mimeType = getMIMETypeForExtension(extension);
59     if (mimeType.isEmpty()) {
60         // If there's no mimetype registered for the extension, check to see
61         // if a plugin can handle the extension.
62         mimeType = getPluginMimeTypeFromExtension(extension);
63     }
64     if (mimeType.isEmpty())
65         return "application/octet-stream";
66     return mimeType;
67 }
68
69 bool MIMETypeRegistry::isSupportedImageMIMEType(const String& mimeType)
70 {
71     return Platform::current()->mimeRegistry()->supportsImageMIMEType(mimeType.lower())
72         != WebMimeRegistry::IsNotSupported;
73 }
74
75 bool MIMETypeRegistry::isSupportedImageResourceMIMEType(const String& mimeType)
76 {
77     return isSupportedImageMIMEType(mimeType);
78 }
79
80 bool MIMETypeRegistry::isSupportedImagePrefixedMIMEType(const String& mimeType)
81 {
82     return Platform::current()->mimeRegistry()->supportsImagePrefixedMIMEType(mimeType.lower())
83         != WebMimeRegistry::IsNotSupported;
84 }
85
86 bool MIMETypeRegistry::isSupportedImageMIMETypeForEncoding(const String& mimeType)
87 {
88     if (equalIgnoringCase(mimeType, "image/jpeg") || equalIgnoringCase(mimeType, "image/png"))
89         return true;
90     if (equalIgnoringCase(mimeType, "image/webp"))
91         return true;
92     return false;
93 }
94
95 bool MIMETypeRegistry::isSupportedJavaScriptMIMEType(const String& mimeType)
96 {
97     return Platform::current()->mimeRegistry()->supportsJavaScriptMIMEType(mimeType.lower())
98         != WebMimeRegistry::IsNotSupported;
99 }
100
101 bool MIMETypeRegistry::isSupportedNonImageMIMEType(const String& mimeType)
102 {
103     return Platform::current()->mimeRegistry()->supportsNonImageMIMEType(mimeType.lower())
104         != WebMimeRegistry::IsNotSupported;
105 }
106
107 bool MIMETypeRegistry::isSupportedMediaSourceMIMEType(const String& mimeType, const String& codecs)
108 {
109     return !mimeType.isEmpty()
110         && Platform::current()->mimeRegistry()->supportsMediaSourceMIMEType(mimeType.lower(), codecs);
111 }
112
113 bool MIMETypeRegistry::isSupportedEncryptedMediaMIMEType(const String& keySystem, const String& mimeType, const String& codecs)
114 {
115     // Key system names are case-sensitive!
116     return Platform::current()->mimeRegistry()->supportsEncryptedMediaMIMEType(keySystem, mimeType.lower(), codecs);
117 }
118
119 bool MIMETypeRegistry::isJavaAppletMIMEType(const String& mimeType)
120 {
121     // Since this set is very limited and is likely to remain so we won't bother with the overhead
122     // of using a hash set.
123     // Any of the MIME types below may be followed by any number of specific versions of the JVM,
124     // which is why we use startsWith()
125     return mimeType.startsWith("application/x-java-applet", false)
126         || mimeType.startsWith("application/x-java-bean", false)
127         || mimeType.startsWith("application/x-java-vm", false);
128 }
129
130 } // namespace blink