OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 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 #ifndef BLIMP_NET_COMPRESSED_PACKET_READER_H_ | |
6 #define BLIMP_NET_COMPRESSED_PACKET_READER_H_ | |
7 | |
8 #include "base/memory/weak_ptr.h" | |
9 #include "blimp/net/blimp_net_export.h" | |
10 #include "blimp/net/packet_reader.h" | |
11 #include "net/base/completion_callback.h" | |
12 #include "net/base/io_buffer.h" | |
13 #include "third_party/zlib/zlib.h" | |
14 | |
15 namespace blimp { | |
16 | |
17 // Filter object which wraps a PacketReader, adding a DEFLATE decompression step | |
18 // to received packets. | |
19 // Details about the encoding format are available in the CompressedPacketWriter | |
20 // header. | |
21 class BLIMP_NET_EXPORT CompressedPacketReader : public PacketReader { | |
22 public: | |
23 // |source|: The source which from which compressed packets are read. | |
24 explicit CompressedPacketReader(scoped_ptr<PacketReader> source); | |
25 | |
26 ~CompressedPacketReader() override; | |
27 | |
28 // PacketReader implementation. | |
29 void ReadPacket(const scoped_refptr<net::GrowableIOBuffer>& decompressed_buf, | |
30 const net::CompletionCallback& cb) override; | |
31 | |
32 private: | |
33 // Called when source->ReadPacket() has completed. | |
34 // |buf|: The buffer which will receive decompressed data. | |
35 // |cb|: Callback which is triggered after decompression has finished. | |
36 // |result|: The result of the read operation. | |
37 void OnCompressedPacketReceived( | |
38 const scoped_refptr<net::GrowableIOBuffer> decompressed_buf, | |
39 const net::CompletionCallback& cb, | |
40 int result); | |
41 | |
42 // Decompresses the contents of |compressed_buf_| to the buffer | |
43 // |decompressed|. | |
44 // |decompressed_size| is set to the size of the decompressed payload. | |
45 // On success, returns a >= 0 value indicating the size of the | |
46 // decompressed payload. | |
47 // On failure, returns a negative value indicating the error code | |
48 // (see net_errors.h). | |
49 int DecompressPacket(const scoped_refptr<net::GrowableIOBuffer>& decompressed, | |
50 int size); | |
51 | |
52 scoped_ptr<PacketReader> source_; | |
53 scoped_refptr<net::GrowableIOBuffer> compressed_buf_; | |
54 z_stream zlib_stream_{}; | |
Wez
2016/03/29 21:38:38
Is this valid syntax? Never seen this form before!
Kevin M
2016/03/29 23:48:23
"brace-init", new in C++11. Empty braces imply def
Wez
2016/03/29 23:59:15
Poo :( Looks like that language feature is current
Kevin M
2016/03/30 00:26:32
Back to memset. :(
| |
55 | |
56 // Used to abandon pending ReadPacket() calls on teardown. | |
57 base::WeakPtrFactory<CompressedPacketReader> weak_factory_; | |
58 | |
59 DISALLOW_COPY_AND_ASSIGN(CompressedPacketReader); | |
60 }; | |
61 | |
62 } // namespace blimp | |
63 | |
64 #endif // BLIMP_NET_COMPRESSED_PACKET_READER_H_ | |
OLD | NEW |