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