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"
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.
34 // The param will be null in the case where the content could not be fetched.
37 // - 4x or 5x HTTP errors
38 typedef base::Callback
<void(scoped_ptr
<Fetcher
>)> FetchCallback
;
40 Fetcher(const FetchCallback
& fetch_callback
);
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
,
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
);
67 static const char kMojoMagic
[];
68 static const size_t kMaxShebangLength
;
70 FetchCallback loader_callback_
;
76 #endif // MOJO_SHELL_FETCHER_H_