mikescarlett | cd0e475 | 2016-02-08 17:35:47 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 The WebRTC Project Authors. All rights reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
| 11 | #ifndef WEBRTC_P2P_QUIC_RELIABLEQUICSTREAM_H_ |
| 12 | #define WEBRTC_P2P_QUIC_RELIABLEQUICSTREAM_H_ |
| 13 | |
| 14 | #include "net/quic/reliable_quic_stream.h" |
Edward Lemur | c20978e | 2017-07-06 19:44:34 +0200 | [diff] [blame] | 15 | #include "webrtc/rtc_base/constructormagic.h" |
| 16 | #include "webrtc/rtc_base/sigslot.h" |
| 17 | #include "webrtc/rtc_base/stream.h" |
mikescarlett | cd0e475 | 2016-02-08 17:35:47 -0800 | [diff] [blame] | 18 | |
| 19 | namespace cricket { |
| 20 | |
| 21 | // Streams created by QuicSession. |
| 22 | class ReliableQuicStream : public net::ReliableQuicStream, |
| 23 | public sigslot::has_slots<> { |
| 24 | public: |
| 25 | ReliableQuicStream(net::QuicStreamId id, net::QuicSession* session); |
| 26 | |
| 27 | ~ReliableQuicStream() override; |
| 28 | |
| 29 | // ReliableQuicStream overrides. |
| 30 | void OnDataAvailable() override; |
| 31 | void OnClose() override; |
mikescarlett | 18b67a5 | 2016-04-11 16:56:23 -0700 | [diff] [blame] | 32 | void OnCanWrite() override; |
mikescarlett | cd0e475 | 2016-02-08 17:35:47 -0800 | [diff] [blame] | 33 | |
| 34 | // Process decrypted data into encrypted QUIC packets, which get sent to the |
| 35 | // QuicPacketWriter. rtc::SR_BLOCK is returned if the operation blocks instead |
| 36 | // of writing, in which case the data is queued until OnCanWrite() is called. |
mikescarlett | 18b67a5 | 2016-04-11 16:56:23 -0700 | [diff] [blame] | 37 | // If |fin| == true, then this stream closes after sending data. |
| 38 | rtc::StreamResult Write(const char* data, size_t len, bool fin = false); |
| 39 | // Removes this stream from the QuicSession's stream map. |
| 40 | void Close(); |
mikescarlett | cd0e475 | 2016-02-08 17:35:47 -0800 | [diff] [blame] | 41 | |
| 42 | // Called when decrypted data is ready to be read. |
| 43 | sigslot::signal3<net::QuicStreamId, const char*, size_t> SignalDataReceived; |
mikescarlett | 18b67a5 | 2016-04-11 16:56:23 -0700 | [diff] [blame] | 44 | // Called when the stream is closed. |
| 45 | sigslot::signal2<net::QuicStreamId, int> SignalClosed; |
| 46 | // Emits the number of queued bytes that were written by OnCanWrite(), after |
| 47 | // the stream was previously write blocked. |
| 48 | sigslot::signal2<net::QuicStreamId, uint64_t> SignalQueuedBytesWritten; |
mikescarlett | cd0e475 | 2016-02-08 17:35:47 -0800 | [diff] [blame] | 49 | |
| 50 | private: |
| 51 | RTC_DISALLOW_COPY_AND_ASSIGN(ReliableQuicStream); |
| 52 | }; |
| 53 | |
| 54 | } // namespace cricket |
| 55 | |
| 56 | #endif // WEBRTC_P2P_QUIC_RELIABLEQUICSTREAM_H_ |