1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "net/base/platform_mime_util.h"
9 #include "base/logging.h"
10 #include "build/build_config.h"
12 #if defined(OS_ANDROID)
13 #include "net/android/network_library.h"
15 #include "base/nix/mime_util_xdg.h"
20 #if defined(OS_ANDROID)
21 bool PlatformMimeUtil::GetPlatformMimeTypeFromExtension(
22 const base::FilePath::StringType
& ext
, std::string
* result
) const {
23 return android::GetMimeTypeFromExtension(ext
, result
);
26 bool PlatformMimeUtil::GetPlatformMimeTypeFromExtension(
27 const base::FilePath::StringType
& ext
, std::string
* result
) const {
28 // TODO(thestig): This is a temporary hack until we can fix this
29 // properly in test shell / webkit.
30 // We have to play dumb and not return application/x-perl here
31 // to make the reload-subframe-object layout test happy.
35 base::FilePath
dummy_path("foo." + ext
);
36 std::string out
= base::nix::GetFileMimeType(dummy_path
);
38 // GetFileMimeType likes to return application/octet-stream
39 // for everything it doesn't know - ignore that.
40 if (out
== "application/octet-stream" || out
.empty())
43 // GetFileMimeType returns image/x-ico because that's what's in the XDG
44 // mime database. That database is the merger of the Gnome and KDE mime
45 // databases. Apparently someone working on KDE in 2001 decided .ico
46 // resolves to image/x-ico, whereas the rest of the world uses image/x-icon.
47 // FWIW, image/vnd.microsoft.icon is the official IANA assignment.
48 if (out
== "image/x-ico")
55 #endif // defined(OS_ANDROID)
58 const char* mime_type
;
62 const struct MimeToExt mime_type_ext_map
[] = {
63 {"application/pdf", "pdf"},
64 {"application/x-tar", "tar"},
65 {"application/zip", "zip"},
66 {"audio/mpeg", "mp3"},
68 {"image/jpeg", "jpg"},
70 {"text/html", "html"},
72 {"video/mpeg", "mpg"},
73 {"text/plain", "txt"},
77 bool PlatformMimeUtil::GetPreferredExtensionForMimeType(
78 const std::string
& mime_type
, base::FilePath::StringType
* ext
) const {
81 x
< (sizeof(mime_type_ext_map
) / sizeof(MimeToExt
));
83 if (mime_type_ext_map
[x
].mime_type
== mime_type
) {
84 *ext
= mime_type_ext_map
[x
].ext
;
89 // TODO(dhg): Fix this the right way by implementing what's said below.
90 // Unlike GetPlatformMimeTypeFromExtension, this method doesn't have a
91 // default list that it uses, but for now we are also returning false since
92 // this doesn't really matter as much under Linux.
94 // If we wanted to do this properly, we would read the mime.cache file which
95 // has a section where they assign a glob (*.gif) to a mimetype
96 // (image/gif). We look up the "heaviest" glob for a certain mime type and
97 // then then try to chop off "*.".
102 void PlatformMimeUtil::GetPlatformExtensionsForMimeType(
103 const std::string
& mime_type
,
104 base::hash_set
<base::FilePath::StringType
>* extensions
) const {
105 base::FilePath::StringType ext
;
106 if (GetPreferredExtensionForMimeType(mime_type
, &ext
))
107 extensions
->insert(ext
);