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 ReadCompressedPacketDone( |
| 38 const scoped_refptr<net::GrowableIOBuffer> decompressed_buf, |
| 39 const net::CompletionCallback& cb, |
| 40 int result); |
| 41 |
| 42 // Decompresses the contents of |compressed| to the buffer |decompressed|. |
| 43 // |decompressed_size| is set to the size of the decompressed payload. |
| 44 // Returns true if decompression completed successfully. |
| 45 bool DecompressPacket( |
| 46 char* compressed, |
| 47 int compressed_size, |
| 48 const scoped_refptr<net::GrowableIOBuffer>& decompressed, |
| 49 size_t* decompressed_size); |
| 50 |
| 51 scoped_ptr<PacketReader> source_; |
| 52 scoped_refptr<net::GrowableIOBuffer> compressed_buf_; |
| 53 z_stream zlib_stream_; |
| 54 base::WeakPtrFactory<CompressedPacketReader> weak_factory_; |
| 55 |
| 56 DISALLOW_COPY_AND_ASSIGN(CompressedPacketReader); |
| 57 }; |
| 58 |
| 59 } // namespace blimp |
| 60 |
| 61 #endif // BLIMP_NET_COMPRESSED_PACKET_READER_H_ |
OLD | NEW |