| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_CRONET_ANDROID_URL_REQUEST_CONTEXT_ADAPTER_H_ | 5 #ifndef COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ |
| 6 #define COMPONENTS_CRONET_ANDROID_URL_REQUEST_CONTEXT_ADAPTER_H_ | 6 #define COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/threading/thread.h" | 14 #include "base/threading/thread.h" |
| 15 #include "net/base/net_log.h" | 15 #include "net/base/net_log.h" |
| 16 #include "net/base/network_change_notifier.h" | 16 #include "net/base/network_change_notifier.h" |
| 17 #include "net/url_request/url_request_context.h" | 17 #include "net/url_request/url_request_context.h" |
| 18 #include "net/url_request/url_request_context_getter.h" | 18 #include "net/url_request/url_request_context_getter.h" |
| 19 | 19 |
| 20 namespace net { | 20 namespace net { |
| 21 class NetLogLogger; | 21 class NetLogLogger; |
| 22 } // namespace net | 22 } // namespace net |
| 23 | 23 |
| 24 namespace cronet { | 24 namespace cronet { |
| 25 | 25 |
| 26 struct URLRequestContextConfig; | 26 struct URLRequestContextConfig; |
| 27 | 27 |
| 28 // Implementation of the Chromium NetLog observer interface. | 28 // Fully configured |URLRequestContext|. |
| 29 class NetLogObserver : public net::NetLog::ThreadSafeObserver { | 29 class CronetURLRequestContextAdapter : public net::URLRequestContextGetter { |
| 30 public: | 30 public: |
| 31 explicit NetLogObserver() {} | 31 class CronetURLRequestContextAdapterDelegate |
| 32 | 32 : public base::RefCountedThreadSafe< |
| 33 virtual ~NetLogObserver() {} | 33 CronetURLRequestContextAdapterDelegate> { |
| 34 | |
| 35 virtual void OnAddEntry(const net::NetLog::Entry& entry) OVERRIDE; | |
| 36 | |
| 37 private: | |
| 38 DISALLOW_COPY_AND_ASSIGN(NetLogObserver); | |
| 39 }; | |
| 40 | |
| 41 // Fully configured |URLRequestContext|. | |
| 42 class URLRequestContextAdapter : public net::URLRequestContextGetter { | |
| 43 public: | |
| 44 class URLRequestContextAdapterDelegate | |
| 45 : public base::RefCountedThreadSafe<URLRequestContextAdapterDelegate> { | |
| 46 public: | 34 public: |
| 47 virtual void OnContextInitialized(URLRequestContextAdapter* context) = 0; | 35 virtual void OnContextInitialized( |
| 36 CronetURLRequestContextAdapter* context) = 0; |
| 48 | 37 |
| 49 protected: | 38 protected: |
| 50 friend class base::RefCountedThreadSafe<URLRequestContextAdapterDelegate>; | 39 friend class base::RefCountedThreadSafe< |
| 40 CronetURLRequestContextAdapterDelegate>; |
| 51 | 41 |
| 52 virtual ~URLRequestContextAdapterDelegate() {} | 42 virtual ~CronetURLRequestContextAdapterDelegate() {} |
| 53 }; | 43 }; |
| 54 | 44 |
| 55 URLRequestContextAdapter(URLRequestContextAdapterDelegate* delegate, | 45 explicit CronetURLRequestContextAdapter( |
| 56 std::string user_agent); | 46 CronetURLRequestContextAdapterDelegate* delegate); |
| 57 void Initialize(scoped_ptr<URLRequestContextConfig> config); | 47 void Initialize(scoped_ptr<URLRequestContextConfig> config); |
| 58 | 48 |
| 59 const std::string& GetUserAgent(const GURL& url) const; | 49 const std::string& GetUserAgent(const GURL& url) const; |
| 60 | 50 |
| 61 // net::URLRequestContextGetter implementation: | 51 // net::URLRequestContextGetter implementation: |
| 62 virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE; | 52 virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE; |
| 63 virtual scoped_refptr<base::SingleThreadTaskRunner> GetNetworkTaskRunner() | 53 virtual scoped_refptr<base::SingleThreadTaskRunner> GetNetworkTaskRunner() |
| 64 const OVERRIDE; | 54 const OVERRIDE; |
| 65 | 55 |
| 66 void StartNetLogToFile(const std::string& file_name); | 56 void StartNetLogToFile(const std::string& file_name); |
| 67 void StopNetLog(); | 57 void StopNetLog(); |
| 68 | 58 |
| 69 private: | 59 private: |
| 70 scoped_refptr<URLRequestContextAdapterDelegate> delegate_; | 60 scoped_refptr<CronetURLRequestContextAdapterDelegate> delegate_; |
| 71 scoped_ptr<net::URLRequestContext> context_; | 61 scoped_ptr<net::URLRequestContext> context_; |
| 72 std::string user_agent_; | 62 std::string user_agent_; |
| 73 base::Thread* network_thread_; | 63 base::Thread* network_thread_; |
| 74 scoped_ptr<net::NetworkChangeNotifier> network_change_notifier_; | 64 scoped_ptr<net::NetworkChangeNotifier> network_change_notifier_; |
| 75 scoped_ptr<NetLogObserver> net_log_observer_; | |
| 76 scoped_ptr<net::NetLogLogger> net_log_logger_; | 65 scoped_ptr<net::NetLogLogger> net_log_logger_; |
| 77 | 66 |
| 78 virtual ~URLRequestContextAdapter(); | 67 virtual ~CronetURLRequestContextAdapter(); |
| 79 | 68 |
| 80 // Initializes |context_| on the Network thread. | 69 // Initializes |context_| on the Network thread. |
| 81 void InitializeURLRequestContext(scoped_ptr<URLRequestContextConfig> config); | 70 void InitializeURLRequestContext(scoped_ptr<URLRequestContextConfig> config); |
| 82 | 71 |
| 83 DISALLOW_COPY_AND_ASSIGN(URLRequestContextAdapter); | 72 DISALLOW_COPY_AND_ASSIGN(CronetURLRequestContextAdapter); |
| 84 }; | 73 }; |
| 85 | 74 |
| 86 } // namespace cronet | 75 } // namespace cronet |
| 87 | 76 |
| 88 #endif // COMPONENTS_CRONET_ANDROID_URL_REQUEST_CONTEXT_ADAPTER_H_ | 77 #endif // COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ |
| OLD | NEW |