Bump libaddressinput version
[chromium-blink-merge.git] / net / http / http_server_properties_impl.h
blob3ea0875c2009a717b3659297782d4cac113a7541
1 // Copyright (c) 2012 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 NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_
6 #define NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_
8 #include <deque>
9 #include <map>
10 #include <set>
11 #include <string>
12 #include <vector>
14 #include "base/basictypes.h"
15 #include "base/containers/hash_tables.h"
16 #include "base/gtest_prod_util.h"
17 #include "base/threading/non_thread_safe.h"
18 #include "base/values.h"
19 #include "net/base/host_port_pair.h"
20 #include "net/base/linked_hash_map.h"
21 #include "net/base/net_export.h"
22 #include "net/http/http_server_properties.h"
24 namespace base {
25 class ListValue;
28 namespace BASE_HASH_NAMESPACE {
30 template <>
31 struct hash<net::AlternativeService> {
32 size_t operator()(const net::AlternativeService& entry) const {
33 return entry.protocol ^ hash<std::string>()(entry.host) ^ entry.port;
37 } // namespace BASE_HASH_NAMESPACE
39 namespace net {
41 // The implementation for setting/retrieving the HTTP server properties.
42 class NET_EXPORT HttpServerPropertiesImpl
43 : public HttpServerProperties,
44 NON_EXPORTED_BASE(public base::NonThreadSafe) {
45 public:
46 HttpServerPropertiesImpl();
47 ~HttpServerPropertiesImpl() override;
49 // Initializes |spdy_servers_map_| with the servers (host/port) from
50 // |spdy_servers| that either support SPDY or not.
51 void InitializeSpdyServers(std::vector<std::string>* spdy_servers,
52 bool support_spdy);
54 void InitializeAlternativeServiceServers(
55 AlternativeServiceMap* alternate_protocol_servers);
57 void InitializeSpdySettingsServers(SpdySettingsMap* spdy_settings_map);
59 void InitializeSupportsQuic(IPAddressNumber* last_address);
61 void InitializeServerNetworkStats(
62 ServerNetworkStatsMap* server_network_stats_map);
64 // Get the list of servers (host/port) that support SPDY. The max_size is the
65 // number of MRU servers that support SPDY that are to be returned.
66 void GetSpdyServerList(base::ListValue* spdy_server_list,
67 size_t max_size) const;
69 // Returns flattened string representation of the |host_port_pair|. Used by
70 // unittests.
71 static std::string GetFlattenedSpdyServer(const HostPortPair& host_port_pair);
73 // Returns the canonical host suffix for |host|, or std::string() if none
74 // exists.
75 std::string GetCanonicalSuffix(const std::string& host);
77 // -----------------------------
78 // HttpServerProperties methods:
79 // -----------------------------
81 base::WeakPtr<HttpServerProperties> GetWeakPtr() override;
82 void Clear() override;
83 bool SupportsRequestPriority(const HostPortPair& server) override;
84 bool GetSupportsSpdy(const HostPortPair& server) override;
85 void SetSupportsSpdy(const HostPortPair& server, bool support_spdy) override;
86 bool RequiresHTTP11(const HostPortPair& server) override;
87 void SetHTTP11Required(const HostPortPair& server) override;
88 void MaybeForceHTTP11(const HostPortPair& server,
89 SSLConfig* ssl_config) override;
90 AlternativeService GetAlternativeService(const HostPortPair& origin) override;
91 void SetAlternativeService(const HostPortPair& origin,
92 const AlternativeService& alternative_service,
93 double alternative_probability) override;
94 void MarkAlternativeServiceBroken(
95 const AlternativeService& alternative_service) override;
96 void MarkAlternativeServiceRecentlyBroken(
97 const AlternativeService& alternative_service) override;
98 bool IsAlternativeServiceBroken(
99 const AlternativeService& alternative_service) const override;
100 bool WasAlternativeServiceRecentlyBroken(
101 const AlternativeService& alternative_service) override;
102 void ConfirmAlternativeService(
103 const AlternativeService& alternative_service) override;
104 void ClearAlternativeService(const HostPortPair& origin) override;
105 const AlternativeServiceMap& alternative_service_map() const override;
106 scoped_ptr<base::Value> GetAlternativeServiceInfoAsValue() const override;
107 void SetAlternativeServiceProbabilityThreshold(double threshold) override;
108 const SettingsMap& GetSpdySettings(
109 const HostPortPair& host_port_pair) override;
110 bool SetSpdySetting(const HostPortPair& host_port_pair,
111 SpdySettingsIds id,
112 SpdySettingsFlags flags,
113 uint32 value) override;
114 void ClearSpdySettings(const HostPortPair& host_port_pair) override;
115 void ClearAllSpdySettings() override;
116 const SpdySettingsMap& spdy_settings_map() const override;
117 bool GetSupportsQuic(IPAddressNumber* last_address) const override;
118 void SetSupportsQuic(bool used_quic, const IPAddressNumber& address) override;
119 void SetServerNetworkStats(const HostPortPair& host_port_pair,
120 ServerNetworkStats stats) override;
121 const ServerNetworkStats* GetServerNetworkStats(
122 const HostPortPair& host_port_pair) override;
123 const ServerNetworkStatsMap& server_network_stats_map() const override;
125 private:
126 friend class HttpServerPropertiesImplPeer;
128 // |spdy_servers_map_| has flattened representation of servers (host, port)
129 // that either support or not support SPDY protocol.
130 typedef base::MRUCache<std::string, bool> SpdyServerHostPortMap;
131 typedef std::map<HostPortPair, HostPortPair> CanonicalHostMap;
132 typedef std::vector<std::string> CanonicalSufficList;
133 typedef std::set<HostPortPair> Http11ServerHostPortSet;
135 // Linked hash map from AlternativeService to expiration time. This container
136 // is a queue with O(1) enqueue and dequeue, and a hash_map with O(1) lookup
137 // at the same time.
138 typedef linked_hash_map<AlternativeService, base::TimeTicks>
139 BrokenAlternativeServices;
140 // Map to the number of times each alternative service has been marked broken.
141 typedef std::map<AlternativeService, int> RecentlyBrokenAlternativeServices;
143 // Return the iterator for |server|, or for its canonical host, or end.
144 AlternativeServiceMap::const_iterator GetAlternateProtocolIterator(
145 const HostPortPair& server);
147 // Return the canonical host for |server|, or end if none exists.
148 CanonicalHostMap::const_iterator GetCanonicalHost(HostPortPair server) const;
150 void RemoveCanonicalHost(const HostPortPair& server);
151 void ExpireBrokenAlternateProtocolMappings();
152 void ScheduleBrokenAlternateProtocolMappingsExpiration();
154 SpdyServerHostPortMap spdy_servers_map_;
155 Http11ServerHostPortSet http11_servers_;
157 AlternativeServiceMap alternative_service_map_;
158 BrokenAlternativeServices broken_alternative_services_;
159 // Class invariant: Every alternative service in broken_alternative_services_
160 // must also be in recently_broken_alternative_services_.
161 RecentlyBrokenAlternativeServices recently_broken_alternative_services_;
163 IPAddressNumber last_quic_address_;
164 SpdySettingsMap spdy_settings_map_;
165 ServerNetworkStatsMap server_network_stats_map_;
166 // Contains a map of servers which could share the same alternate protocol.
167 // Map from a Canonical host/port (host is some postfix of host names) to an
168 // actual origin, which has a plausible alternate protocol mapping.
169 CanonicalHostMap canonical_host_to_origin_map_;
170 // Contains list of suffixes (for exmaple ".c.youtube.com",
171 // ".googlevideo.com", ".googleusercontent.com") of canonical hostnames.
172 CanonicalSufficList canonical_suffixes_;
174 double alternative_service_probability_threshold_;
176 base::WeakPtrFactory<HttpServerPropertiesImpl> weak_ptr_factory_;
178 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesImpl);
181 } // namespace net
183 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_