2007-12-12 22:09:01 +01:00
|
|
|
/* Copyright (c) 2003, Roger Dingledine
|
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
2017-03-15 21:13:17 +01:00
|
|
|
* Copyright (c) 2007-2017, The Tor Project, Inc. */
|
2004-09-02 20:22:51 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file torgzip.h
|
|
|
|
* \brief Headers for torgzip.h
|
|
|
|
**/
|
|
|
|
|
2012-10-12 18:13:10 +02:00
|
|
|
#ifndef TOR_TORGZIP_H
|
|
|
|
#define TOR_TORGZIP_H
|
2004-09-02 20:22:51 +02:00
|
|
|
|
2017-04-17 14:11:35 +02:00
|
|
|
/** Enumeration of what kind of compression to use. Only ZLIB_METHOD and
|
|
|
|
* GZIP_METHOD is guaranteed to be supported by the compress/uncompress
|
|
|
|
* functions here. */
|
2005-01-19 23:40:33 +01:00
|
|
|
typedef enum {
|
2006-10-09 05:39:06 +02:00
|
|
|
NO_METHOD=0, GZIP_METHOD=1, ZLIB_METHOD=2, UNKNOWN_METHOD=3
|
2005-01-19 23:40:33 +01:00
|
|
|
} compress_method_t;
|
2004-09-02 20:22:51 +02:00
|
|
|
|
2014-11-17 17:43:50 +01:00
|
|
|
/**
|
|
|
|
* Enumeration to define tradeoffs between memory usage and compression level.
|
|
|
|
* HIGH_COMPRESSION saves the most bandwidth; LOW_COMPRESSION saves the most
|
|
|
|
* memory.
|
|
|
|
**/
|
|
|
|
typedef enum {
|
|
|
|
HIGH_COMPRESSION, MEDIUM_COMPRESSION, LOW_COMPRESSION
|
2017-04-17 14:22:13 +02:00
|
|
|
} compression_level_t;
|
2014-11-17 17:43:50 +01:00
|
|
|
|
2004-09-02 20:22:51 +02:00
|
|
|
int
|
2017-04-17 14:29:10 +02:00
|
|
|
tor_compress(char **out, size_t *out_len,
|
|
|
|
const char *in, size_t in_len,
|
|
|
|
compress_method_t method);
|
2004-09-02 20:22:51 +02:00
|
|
|
int
|
2017-04-17 14:29:10 +02:00
|
|
|
tor_uncompress(char **out, size_t *out_len,
|
|
|
|
const char *in, size_t in_len,
|
|
|
|
compress_method_t method,
|
|
|
|
int complete_only,
|
|
|
|
int protocol_warn_level);
|
2004-09-02 20:22:51 +02:00
|
|
|
|
2013-09-01 18:38:01 +02:00
|
|
|
const char *
|
|
|
|
tor_zlib_get_version_str(void);
|
|
|
|
|
|
|
|
const char *
|
|
|
|
tor_zlib_get_header_version_str(void);
|
|
|
|
|
2006-10-09 04:35:51 +02:00
|
|
|
compress_method_t detect_compression_method(const char *in, size_t in_len);
|
2005-01-19 23:40:33 +01:00
|
|
|
|
2017-04-18 02:23:25 +02:00
|
|
|
int
|
|
|
|
tor_compress_memory_level(compression_level_t level);
|
|
|
|
|
2017-04-17 14:57:37 +02:00
|
|
|
/** Return values from tor_compress_process; see that function's documentation
|
|
|
|
* for details. */
|
2006-06-18 09:24:29 +02:00
|
|
|
typedef enum {
|
2017-04-17 14:57:37 +02:00
|
|
|
TOR_COMPRESS_OK,
|
|
|
|
TOR_COMPRESS_DONE,
|
|
|
|
TOR_COMPRESS_BUFFER_FULL,
|
|
|
|
TOR_COMPRESS_ERROR
|
|
|
|
} tor_compress_output_t;
|
2008-12-22 15:56:28 +01:00
|
|
|
/** Internal state for an incremental zlib compression/decompression. */
|
2017-04-17 14:57:37 +02:00
|
|
|
typedef struct tor_compress_state_t tor_compress_state_t;
|
|
|
|
tor_compress_state_t *tor_compress_new(int compress,
|
|
|
|
compress_method_t method,
|
|
|
|
compression_level_t level);
|
2006-06-18 09:24:29 +02:00
|
|
|
|
2017-04-17 14:57:37 +02:00
|
|
|
tor_compress_output_t tor_compress_process(tor_compress_state_t *state,
|
|
|
|
char **out, size_t *out_len,
|
|
|
|
const char **in, size_t *in_len,
|
|
|
|
int finish);
|
|
|
|
void tor_compress_free(tor_compress_state_t *state);
|
2006-06-18 09:24:29 +02:00
|
|
|
|
2017-04-17 14:57:37 +02:00
|
|
|
size_t tor_compress_state_size(const tor_compress_state_t *state);
|
2014-08-19 16:59:15 +02:00
|
|
|
size_t tor_zlib_get_total_allocation(void);
|
|
|
|
|
2004-09-02 20:22:51 +02:00
|
|
|
#endif
|
2005-06-09 21:03:31 +02:00
|
|
|
|