Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / net / http / http_server_properties_impl.h
blob3abf5c83f4c267854516c4a20cc4303107651d0f
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 AlternativeServiceVector GetAlternativeServices(
91 const HostPortPair& origin) override;
92 bool SetAlternativeService(const HostPortPair& origin,
93 const AlternativeService& alternative_service,
94 double alternative_probability) override;
95 bool SetAlternativeServices(const HostPortPair& origin,
96 const AlternativeServiceInfoVector&
97 alternative_service_info_vector) override;
98 void MarkAlternativeServiceBroken(
99 const AlternativeService& alternative_service) override;
100 void MarkAlternativeServiceRecentlyBroken(
101 const AlternativeService& alternative_service) override;
102 bool IsAlternativeServiceBroken(
103 const AlternativeService& alternative_service) const override;
104 bool WasAlternativeServiceRecentlyBroken(
105 const AlternativeService& alternative_service) override;
106 void ConfirmAlternativeService(
107 const AlternativeService& alternative_service) override;
108 void ClearAlternativeServices(const HostPortPair& origin) override;
109 const AlternativeServiceMap& alternative_service_map() const override;
110 scoped_ptr<base::Value> GetAlternativeServiceInfoAsValue() const override;
111 void SetAlternativeServiceProbabilityThreshold(double threshold) override;
112 const SettingsMap& GetSpdySettings(
113 const HostPortPair& host_port_pair) override;
114 bool SetSpdySetting(const HostPortPair& host_port_pair,
115 SpdySettingsIds id,
116 SpdySettingsFlags flags,
117 uint32 value) override;
118 void ClearSpdySettings(const HostPortPair& host_port_pair) override;
119 void ClearAllSpdySettings() override;
120 const SpdySettingsMap& spdy_settings_map() const override;
121 bool GetSupportsQuic(IPAddressNumber* last_address) const override;
122 void SetSupportsQuic(bool used_quic, const IPAddressNumber& address) override;
123 void SetServerNetworkStats(const HostPortPair& host_port_pair,
124 ServerNetworkStats stats) override;
125 const ServerNetworkStats* GetServerNetworkStats(
126 const HostPortPair& host_port_pair) override;
127 const ServerNetworkStatsMap& server_network_stats_map() const override;
129 private:
130 friend class HttpServerPropertiesImplPeer;
132 // |spdy_servers_map_| has flattened representation of servers (host, port)
133 // that either support or not support SPDY protocol.
134 typedef base::MRUCache<std::string, bool> SpdyServerHostPortMap;
135 typedef std::map<HostPortPair, HostPortPair> CanonicalHostMap;
136 typedef std::vector<std::string> CanonicalSufficList;
137 typedef std::set<HostPortPair> Http11ServerHostPortSet;
139 // Linked hash map from AlternativeService to expiration time. This container
140 // is a queue with O(1) enqueue and dequeue, and a hash_map with O(1) lookup
141 // at the same time.
142 typedef linked_hash_map<AlternativeService, base::TimeTicks>
143 BrokenAlternativeServices;
144 // Map to the number of times each alternative service has been marked broken.
145 typedef std::map<AlternativeService, int> RecentlyBrokenAlternativeServices;
147 // Return the iterator for |server|, or for its canonical host, or end.
148 AlternativeServiceMap::const_iterator GetAlternateProtocolIterator(
149 const HostPortPair& server);
151 // Return the canonical host for |server|, or end if none exists.
152 CanonicalHostMap::const_iterator GetCanonicalHost(HostPortPair server) const;
154 void RemoveCanonicalHost(const HostPortPair& server);
155 void ExpireBrokenAlternateProtocolMappings();
156 void ScheduleBrokenAlternateProtocolMappingsExpiration();
158 SpdyServerHostPortMap spdy_servers_map_;
159 Http11ServerHostPortSet http11_servers_;
161 AlternativeServiceMap alternative_service_map_;
162 BrokenAlternativeServices broken_alternative_services_;
163 // Class invariant: Every alternative service in broken_alternative_services_
164 // must also be in recently_broken_alternative_services_.
165 RecentlyBrokenAlternativeServices recently_broken_alternative_services_;
167 IPAddressNumber last_quic_address_;
168 SpdySettingsMap spdy_settings_map_;
169 ServerNetworkStatsMap server_network_stats_map_;
170 // Contains a map of servers which could share the same alternate protocol.
171 // Map from a Canonical host/port (host is some postfix of host names) to an
172 // actual origin, which has a plausible alternate protocol mapping.
173 CanonicalHostMap canonical_host_to_origin_map_;
174 // Contains list of suffixes (for exmaple ".c.youtube.com",
175 // ".googlevideo.com", ".googleusercontent.com") of canonical hostnames.
176 CanonicalSufficList canonical_suffixes_;
178 double alternative_service_probability_threshold_;
180 base::WeakPtrFactory<HttpServerPropertiesImpl> weak_ptr_factory_;
182 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesImpl);
185 } // namespace net
187 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_