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