Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / net / quic / quic_server_session.h
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
3 // found in the LICENSE file.
4 //
5 // A server specific QuicSession subclass.
6
7 #ifndef NET_QUIC_QUIC_SERVER_SESSION_H_
8 #define NET_QUIC_QUIC_SERVER_SESSION_H_
9
10 #include <set>
11 #include <vector>
12
13 #include "base/basictypes.h"
14 #include "base/containers/hash_tables.h"
15 #include "base/memory/scoped_ptr.h"
16 #include "net/quic/quic_crypto_server_stream.h"
17 #include "net/quic/quic_per_connection_packet_writer.h"
18 #include "net/quic/quic_protocol.h"
19 #include "net/quic/quic_session.h"
20
21 namespace net {
22
23 namespace test {
24 class QuicServerSessionPeer;
25 }  // namespace test
26
27 class QuicBlockedWriterInterface;
28 class QuicConfig;
29 class QuicConnection;
30 class QuicCryptoServerConfig;
31 class ReliableQuicStream;
32
33 // An interface from the session to the entity owning the session.
34 // This lets the session notify its owner (the Dispatcher) when the connection
35 // is closed or blocked.
36 class QuicServerSessionVisitor {
37  public:
38   virtual ~QuicServerSessionVisitor() {}
39
40   virtual void OnConnectionClosed(QuicConnectionId connection_id,
41                                   QuicErrorCode error) = 0;
42   virtual void OnWriteBlocked(QuicBlockedWriterInterface* blocked_writer) = 0;
43 };
44
45 class QuicServerSession : public QuicSession {
46  public:
47   QuicServerSession(const QuicConfig& config,
48                     QuicConnection* connection,
49                     QuicServerSessionVisitor* visitor,
50                     bool is_secure);
51
52   // Override the base class to notify the owner of the connection close.
53   void OnConnectionClosed(QuicErrorCode error, bool from_peer) override;
54   void OnWriteBlocked() override;
55
56   // Sends a server config update to the client, containing new bandwidth
57   // estimate.
58   void OnCongestionWindowChange(QuicTime now) override;
59
60   ~QuicServerSession() override;
61
62   virtual void InitializeSession(const QuicCryptoServerConfig& crypto_config);
63
64   const QuicCryptoServerStream* crypto_stream() const {
65     return crypto_stream_.get();
66   }
67
68   // Override base class to process FEC config received from client.
69   void OnConfigNegotiated() override;
70
71   void set_serving_region(string serving_region) {
72     serving_region_ = serving_region;
73   }
74
75  protected:
76   // QuicSession methods:
77   QuicDataStream* CreateIncomingDataStream(QuicStreamId id) override;
78   QuicDataStream* CreateOutgoingDataStream() override;
79   QuicCryptoServerStream* GetCryptoStream() override;
80
81   // If we should create an incoming stream, returns true. Otherwise
82   // does error handling, including communicating the error to the client and
83   // possibly closing the connection, and returns false.
84   virtual bool ShouldCreateIncomingDataStream(QuicStreamId id);
85
86   virtual QuicCryptoServerStream* CreateQuicCryptoServerStream(
87       const QuicCryptoServerConfig& crypto_config);
88
89  private:
90   friend class test::QuicServerSessionPeer;
91
92   scoped_ptr<QuicCryptoServerStream> crypto_stream_;
93   QuicServerSessionVisitor* visitor_;
94
95   // The most recent bandwidth estimate sent to the client.
96   QuicBandwidth bandwidth_estimate_sent_to_client_;
97
98   // Text describing server location. Sent to the client as part of the bandwith
99   // estimate in the source-address token. Optional, can be left empty.
100   string serving_region_;
101
102   // Time at which we send the last SCUP to the client.
103   QuicTime last_scup_time_;
104
105   // Number of packets sent to the peer, at the time we last sent a SCUP.
106   int64 last_scup_sequence_number_;
107
108   DISALLOW_COPY_AND_ASSIGN(QuicServerSession);
109 };
110
111 }  // namespace net
112
113 #endif  // NET_QUIC_QUIC_SERVER_SESSION_H_