stream_peer_gzip.h 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /**************************************************************************/
  2. /* stream_peer_gzip.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef STREAM_PEER_GZIP_H
  31. #define STREAM_PEER_GZIP_H
  32. #include "core/io/stream_peer.h"
  33. #include "core/core_bind.h"
  34. #include "core/io/compression.h"
  35. #include "core/templates/ring_buffer.h"
  36. class StreamPeerGZIP : public StreamPeer {
  37. GDCLASS(StreamPeerGZIP, StreamPeer);
  38. private:
  39. void *ctx = nullptr; // Will hold our z_stream instance.
  40. bool compressing = true;
  41. RingBuffer<uint8_t> rb;
  42. Vector<uint8_t> buffer;
  43. Error _process(uint8_t *p_dst, int p_dst_size, const uint8_t *p_src, int p_src_size, int &r_consumed, int &r_out, bool p_close = false);
  44. void _close();
  45. Error _start(bool p_compress, bool p_is_deflate, int buffer_size = 65535);
  46. protected:
  47. static void _bind_methods();
  48. public:
  49. Error start_compression(bool p_is_deflate, int buffer_size = 65535);
  50. Error start_decompression(bool p_is_deflate, int buffer_size = 65535);
  51. Error finish();
  52. void clear();
  53. virtual Error put_data(const uint8_t *p_data, int p_bytes) override;
  54. virtual Error put_partial_data(const uint8_t *p_data, int p_bytes, int &r_sent) override;
  55. virtual Error get_data(uint8_t *p_buffer, int p_bytes) override;
  56. virtual Error get_partial_data(uint8_t *p_buffer, int p_bytes, int &r_received) override;
  57. virtual int get_available_bytes() const override;
  58. StreamPeerGZIP();
  59. ~StreamPeerGZIP();
  60. };
  61. #endif // STREAM_PEER_GZIP_H