compression.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. *
  3. * Copyright 2015 gRPC authors.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. */
  18. #ifndef GRPC_COMPRESSION_H
  19. #define GRPC_COMPRESSION_H
  20. #include <grpc/impl/codegen/port_platform.h>
  21. #include <stdlib.h>
  22. #include <grpc/impl/codegen/compression_types.h>
  23. #include <grpc/slice.h>
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /** Parses the first \a name_length bytes of \a name as a
  28. * grpc_compression_algorithm instance, updating \a algorithm. Returns 1 upon
  29. * success, 0 otherwise. */
  30. GRPCAPI int grpc_compression_algorithm_parse(
  31. grpc_slice value, grpc_compression_algorithm *algorithm);
  32. /** Updates \a name with the encoding name corresponding to a valid \a
  33. * algorithm. Note that \a name is statically allocated and must *not* be freed.
  34. * Returns 1 upon success, 0 otherwise. */
  35. GRPCAPI int grpc_compression_algorithm_name(
  36. grpc_compression_algorithm algorithm, char **name);
  37. /** Returns the compression algorithm corresponding to \a level for the
  38. * compression algorithms encoded in the \a accepted_encodings bitset.
  39. *
  40. * It abort()s for unknown levels . */
  41. GRPCAPI grpc_compression_algorithm grpc_compression_algorithm_for_level(
  42. grpc_compression_level level, uint32_t accepted_encodings);
  43. GRPCAPI void grpc_compression_options_init(grpc_compression_options *opts);
  44. /** Mark \a algorithm as enabled in \a opts. */
  45. GRPCAPI void grpc_compression_options_enable_algorithm(
  46. grpc_compression_options *opts, grpc_compression_algorithm algorithm);
  47. /** Mark \a algorithm as disabled in \a opts. */
  48. GRPCAPI void grpc_compression_options_disable_algorithm(
  49. grpc_compression_options *opts, grpc_compression_algorithm algorithm);
  50. /** Returns true if \a algorithm is marked as enabled in \a opts. */
  51. GRPCAPI int grpc_compression_options_is_algorithm_enabled(
  52. const grpc_compression_options *opts, grpc_compression_algorithm algorithm);
  53. #ifdef __cplusplus
  54. }
  55. #endif
  56. #endif /* GRPC_COMPRESSION_H */