Roll src/third_party/WebKit ef7cfd7:80927b2 (svn 194570:194575)
[chromium-blink-merge.git] / mojo / shell / fetcher.h
blob21cad3f225238dde5b699438425b1ffdac6ef1fe
1 // Copyright 2015 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 #ifndef MOJO_SHELL_FETCHER_H_
6 #define MOJO_SHELL_FETCHER_H_
8 #include "base/callback.h"
9 #include "base/memory/scoped_ptr.h"
11 #include "mojo/services/network/public/interfaces/url_loader.mojom.h"
13 class GURL;
15 namespace base {
16 class FilePath;
17 class TaskRunner;
20 namespace mojo {
21 namespace shell {
23 // Fetcher abstracts getting an application by either file or http[s] URL.
25 // Although it is possible to use the Network implementation for http[s] URLs
26 // (because the underlying net library knows how to handle them), it is
27 // extremely slow because network responses must be copied to disk in order to
28 // get a file handle we can use with dlopen.
30 // Until this is solved, we use two different implementations so that
31 // performance isn't completely absymal.
32 class Fetcher {
33 public:
34 // The param will be null in the case where the content could not be fetched.
35 // Reasons include:
36 // - network error
37 // - 4x or 5x HTTP errors
38 typedef base::Callback<void(scoped_ptr<Fetcher>)> FetchCallback;
40 Fetcher(const FetchCallback& fetch_callback);
41 virtual ~Fetcher();
43 // Returns the original URL that was fetched.
44 virtual const GURL& GetURL() const = 0;
46 // If the fetch resulted in a redirect, this returns the final URL after all
47 // redirects. Otherwise, it returns an empty URL.
48 virtual GURL GetRedirectURL() const = 0;
50 virtual URLResponsePtr AsURLResponse(base::TaskRunner* task_runner,
51 uint32_t skip) = 0;
53 virtual void AsPath(
54 base::TaskRunner* task_runner,
55 base::Callback<void(const base::FilePath&, bool)> callback) = 0;
57 virtual std::string MimeType() = 0;
59 virtual bool HasMojoMagic() = 0;
61 virtual bool PeekFirstLine(std::string* line) = 0;
63 bool PeekContentHandler(std::string* mojo_shebang,
64 GURL* mojo_content_handler_url);
66 protected:
67 static const char kMojoMagic[];
68 static const size_t kMaxShebangLength;
70 FetchCallback loader_callback_;
73 } // namespace shell
74 } // namespace mojo
76 #endif // MOJO_SHELL_FETCHER_H_