1/*
2 * Copyright (C) 2006 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2006 Apple Inc.  All rights reserved.
4 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
16 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
19 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#include "config.h"
29#include "MIMETypeRegistry.h"
30
31#include <wtf/Assertions.h>
32#include <wtf/MainThread.h>
33
34namespace WebCore {
35
36struct ExtensionMap {
37    const char* extension;
38    const char* mimeType;
39};
40
41static const ExtensionMap extensionMap [] = {
42    { "bmp", "image/bmp" },
43    { "css", "text/css" },
44    { "gif", "image/gif" },
45    { "htm", "text/html" },
46    { "html", "text/html" },
47    { "ico", "image/x-icon" },
48    { "jpeg", "image/jpeg" },
49    { "jpg", "image/jpeg" },
50    { "js", "application/x-javascript" },
51    { "pdf", "application/pdf" },
52    { "png", "image/png" },
53    { "rss", "application/rss+xml" },
54    { "svg", "image/svg+xml" },
55    { "text", "text/plain" },
56    { "txt", "text/plain" },
57    { "xbm", "image/x-xbitmap" },
58    { "xml", "text/xml" },
59    { "xsl", "text/xsl" },
60    { "xhtml", "application/xhtml+xml" },
61    { "wml", "text/vnd.wap.wml" },
62    { "wmlc", "application/vnd.wap.wmlc" },
63    { 0, 0 }
64};
65
66String MIMETypeRegistry::getMIMETypeForExtension(const String &ext)
67{
68    ASSERT(isMainThread());
69
70    String s = ext.lower();
71    const ExtensionMap *e = extensionMap;
72    while (e->extension) {
73        if (s == e->extension)
74            return e->mimeType;
75        ++e;
76    }
77
78    return String();
79}
80
81bool MIMETypeRegistry::isApplicationPluginMIMEType(const String&)
82{
83    return false;
84}
85
86}
87