blob: 82e326fe0ece42616233df3c798cc0cc76fef347 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
David Garcia Quintasca281372015-06-08 20:07:39 -070034#ifndef GRPC_COMPRESSION_H
35#define GRPC_COMPRESSION_H
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080036
David Garcia Quintas1c604fd2015-07-21 16:22:58 -070037#include <stdlib.h>
38
David Garcia Quintasbeac88c2015-08-10 13:39:52 -070039#include <grpc/support/port_platform.h>
40
David Garcia Quintasd7d9ce22015-06-30 23:29:03 -070041#ifdef __cplusplus
42extern "C" {
43#endif
44
David Garcia Quintase29feb22015-06-15 18:08:13 -070045/** To be used in channel arguments */
David Garcia Quintascadbf222015-07-17 15:33:13 -070046#define GRPC_COMPRESSION_ALGORITHM_ARG "grpc.compression_algorithm"
David Garcia Quintasb58b3462015-08-09 13:52:19 -070047#define GRPC_COMPRESSION_ALGORITHM_STATE_ARG "grpc.compression_algorithm_state"
David Garcia Quintase29feb22015-06-15 18:08:13 -070048
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080049/* The various compression algorithms supported by GRPC */
50typedef enum {
51 GRPC_COMPRESS_NONE = 0,
52 GRPC_COMPRESS_DEFLATE,
53 GRPC_COMPRESS_GZIP,
54 /* TODO(ctiller): snappy */
55 GRPC_COMPRESS_ALGORITHMS_COUNT
56} grpc_compression_algorithm;
57
David Garcia Quintase29feb22015-06-15 18:08:13 -070058typedef enum {
59 GRPC_COMPRESS_LEVEL_NONE = 0,
60 GRPC_COMPRESS_LEVEL_LOW,
61 GRPC_COMPRESS_LEVEL_MED,
David Garcia Quintasfc0fa332015-06-25 18:11:07 -070062 GRPC_COMPRESS_LEVEL_HIGH,
63 GRPC_COMPRESS_LEVEL_COUNT
David Garcia Quintase29feb22015-06-15 18:08:13 -070064} grpc_compression_level;
65
David Garcia Quintasbeac88c2015-08-10 13:39:52 -070066typedef struct grpc_compression_options {
67 gpr_uint32 enabled_algorithms_bitset; /**< All algs are enabled by default */
68 grpc_compression_algorithm default_compression_algorithm; /**< for channel */
69} grpc_compression_options;
70
David Garcia Quintas1c604fd2015-07-21 16:22:58 -070071/** Parses the first \a name_length bytes of \a name as a
72 * grpc_compression_algorithm instance, updating \a algorithm. Returns 1 upon
73 * success, 0 otherwise. */
74int grpc_compression_algorithm_parse(const char *name, size_t name_length,
David Garcia Quintasfc0fa332015-06-25 18:11:07 -070075 grpc_compression_algorithm *algorithm);
76
77/** Updates \a name with the encoding name corresponding to a valid \a
78 * algorithm. Returns 1 upon success, 0 otherwise. */
79int grpc_compression_algorithm_name(grpc_compression_algorithm algorithm,
80 char **name);
81
82/** Returns the compression level corresponding to \a algorithm.
83 *
84 * It abort()s for unknown algorithms. */
85grpc_compression_level grpc_compression_level_for_algorithm(
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080086 grpc_compression_algorithm algorithm);
87
David Garcia Quintasfc0fa332015-06-25 18:11:07 -070088/** Returns the compression algorithm corresponding to \a level.
89 *
90 * It abort()s for unknown levels . */
David Garcia Quintase29feb22015-06-15 18:08:13 -070091grpc_compression_algorithm grpc_compression_algorithm_for_level(
92 grpc_compression_level level);
93
David Garcia Quintasbeac88c2015-08-10 13:39:52 -070094void grpc_compression_options_init(grpc_compression_options *opts);
95
96/** Mark \a algorithm as enabled in \a opts. */
97void grpc_compression_options_enable_algorithm(
98 grpc_compression_options *opts, grpc_compression_algorithm algorithm);
99
100/** Mark \a algorithm as disabled in \a opts. */
101void grpc_compression_options_disable_algorithm(
102 grpc_compression_options *opts, grpc_compression_algorithm algorithm);
103
104/** Returns true if \a algorithm is marked as enabled in \a opts. */
105int grpc_compression_options_is_algorithm_enabled(
106 const grpc_compression_options *opts, grpc_compression_algorithm algorithm);
107
David Garcia Quintasd7d9ce22015-06-30 23:29:03 -0700108#ifdef __cplusplus
109}
110#endif
111
Craig Tiller9a576332015-06-17 10:21:49 -0700112#endif /* GRPC_COMPRESSION_H */