Move pending tile priorities to active on tree activation
[chromium-blink-merge.git] / net / base / platform_mime_util_linux.cc
blob145f218aff3b80c45147e9ef8b17370c5856611e
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"
7 #include <string>
9 #include "base/logging.h"
10 #include "build/build_config.h"
12 #if defined(OS_ANDROID)
13 #include "net/android/network_library.h"
14 #else
15 #include "base/nix/mime_util_xdg.h"
16 #endif
18 namespace net {
20 #if defined(OS_ANDROID)
21 bool PlatformMimeUtil::GetPlatformMimeTypeFromExtension(
22 const FilePath::StringType& ext, std::string* result) const {
23 return android::GetMimeTypeFromExtension(ext, result);
25 #else
26 bool PlatformMimeUtil::GetPlatformMimeTypeFromExtension(
27 const 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.
32 if (ext == "pl")
33 return false;
35 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())
41 return false;
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")
49 out = "image/x-icon";
51 *result = out;
52 return true;
55 #endif // defined(OS_ANDROID)
57 struct MimeToExt {
58 const char* mime_type;
59 const char* ext;
62 const struct MimeToExt mime_type_ext_map[] = {
63 {"application/pdf", "pdf"},
64 {"application/x-tar", "tar"},
65 {"audio/mpeg", "mp3"},
66 {"image/gif", "gif"},
67 {"image/jpeg", "jpg"},
68 {"image/png", "png"},
69 {"text/html", "html"},
70 {"video/mp4", "mp4"},
71 {"video/mpeg", "mpg"},
72 {"text/plain", "txt"},
73 {"text/x-sh", "sh"},
76 bool PlatformMimeUtil::GetPreferredExtensionForMimeType(
77 const std::string& mime_type, FilePath::StringType* ext) const {
79 for (size_t x = 0;
80 x < (sizeof(mime_type_ext_map) / sizeof(MimeToExt));
81 x++) {
82 if (mime_type_ext_map[x].mime_type == mime_type) {
83 *ext = mime_type_ext_map[x].ext;
84 return true;
88 // TODO(dhg): Fix this the right way by implementing what's said below.
89 // Unlike GetPlatformMimeTypeFromExtension, this method doesn't have a
90 // default list that it uses, but for now we are also returning false since
91 // this doesn't really matter as much under Linux.
93 // If we wanted to do this properly, we would read the mime.cache file which
94 // has a section where they assign a glob (*.gif) to a mimetype
95 // (image/gif). We look up the "heaviest" glob for a certain mime type and
96 // then then try to chop off "*.".
98 return false;
101 void PlatformMimeUtil::GetPlatformExtensionsForMimeType(
102 const std::string& mime_type,
103 base::hash_set<FilePath::StringType>* extensions) const {
104 FilePath::StringType ext;
105 if (GetPreferredExtensionForMimeType(mime_type, &ext))
106 extensions->insert(ext);
109 } // namespace net