2017-12-18 11:57:20 +00:00
|
|
|
// Copyright (c) 2017 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
#ifndef ATOM_BROWSER_IO_THREAD_H_
|
|
|
|
#define ATOM_BROWSER_IO_THREAD_H_
|
2017-12-18 11:57:20 +00:00
|
|
|
|
|
|
|
#include <memory>
|
2019-06-04 03:44:12 +00:00
|
|
|
#include <set>
|
2017-12-18 11:57:20 +00:00
|
|
|
|
2018-11-07 14:24:05 +00:00
|
|
|
#include "atom/browser/net/system_network_context_manager.h"
|
2017-12-18 11:57:20 +00:00
|
|
|
#include "base/macros.h"
|
2019-06-04 03:44:12 +00:00
|
|
|
#include "base/synchronization/lock.h"
|
2017-12-18 11:57:20 +00:00
|
|
|
#include "content/public/browser/browser_thread_delegate.h"
|
2018-11-07 14:24:05 +00:00
|
|
|
#include "services/network/public/mojom/network_service.mojom.h"
|
2017-12-18 11:57:20 +00:00
|
|
|
|
2019-06-04 03:44:12 +00:00
|
|
|
namespace atom {
|
|
|
|
class URLRequestContextGetter;
|
|
|
|
}
|
|
|
|
|
2017-12-18 11:57:20 +00:00
|
|
|
namespace net {
|
|
|
|
class URLRequestContext;
|
2018-11-07 14:24:05 +00:00
|
|
|
}
|
2017-12-18 11:57:20 +00:00
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
namespace net_log {
|
|
|
|
class ChromeNetLog;
|
|
|
|
}
|
|
|
|
|
2017-12-18 11:57:20 +00:00
|
|
|
class IOThread : public content::BrowserThreadDelegate {
|
|
|
|
public:
|
2018-11-07 14:24:05 +00:00
|
|
|
explicit IOThread(
|
|
|
|
net_log::ChromeNetLog* net_log,
|
|
|
|
SystemNetworkContextManager* system_network_context_manager);
|
2017-12-18 11:57:20 +00:00
|
|
|
~IOThread() override;
|
|
|
|
|
2019-06-04 03:44:12 +00:00
|
|
|
void RegisterURLRequestContextGetter(atom::URLRequestContextGetter* getter);
|
|
|
|
void DeregisterURLRequestContextGetter(atom::URLRequestContextGetter* getter);
|
|
|
|
|
2017-12-18 11:57:20 +00:00
|
|
|
protected:
|
|
|
|
// BrowserThreadDelegate Implementation, runs on the IO thread.
|
|
|
|
void Init() override;
|
|
|
|
void CleanUp() override;
|
|
|
|
|
|
|
|
private:
|
2018-10-04 18:08:56 +00:00
|
|
|
// The NetLog is owned by the browser process, to allow logging from other
|
|
|
|
// threads during shutdown, but is used most frequently on the IOThread.
|
|
|
|
net_log::ChromeNetLog* net_log_;
|
2018-11-07 14:24:05 +00:00
|
|
|
|
|
|
|
// When the network service is disabled, this holds on to a
|
|
|
|
// content::NetworkContext class that owns |system_request_context_|.
|
2019-06-04 03:44:12 +00:00
|
|
|
std::unique_ptr<network::mojom::NetworkContext> system_network_context_;
|
2018-11-07 14:24:05 +00:00
|
|
|
net::URLRequestContext* system_request_context_;
|
|
|
|
|
|
|
|
// These are set on the UI thread, and then consumed during initialization on
|
|
|
|
// the IO thread.
|
|
|
|
network::mojom::NetworkContextRequest network_context_request_;
|
|
|
|
network::mojom::NetworkContextParamsPtr network_context_params_;
|
|
|
|
|
|
|
|
// Initial HTTP auth configuration used when setting up the NetworkService on
|
|
|
|
// the IO Thread. Future updates are sent using the NetworkService mojo
|
|
|
|
// interface, but initial state needs to be set non-racily.
|
|
|
|
network::mojom::HttpAuthStaticParamsPtr http_auth_static_params_;
|
|
|
|
network::mojom::HttpAuthDynamicParamsPtr http_auth_dynamic_params_;
|
2017-12-18 11:57:20 +00:00
|
|
|
|
2019-06-04 03:44:12 +00:00
|
|
|
// |lock_| protects access to |request_context_getters_|.
|
|
|
|
base::Lock lock_;
|
|
|
|
|
|
|
|
// List of all request contexts that needs to be notified when
|
|
|
|
// IO thread is shutting down.
|
|
|
|
std::set<atom::URLRequestContextGetter*> request_context_getters_;
|
|
|
|
|
2017-12-18 11:57:20 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(IOThread);
|
|
|
|
};
|
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
#endif // ATOM_BROWSER_IO_THREAD_H_
|