1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
// Copyright 2024 Wladimir Palant
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! # Compression Module for Pingora
//!
//! This crate helps configure Pingora’s built-in compression mechanism. It provides two
//! configuration options:
//!
//! * `compression_level` (`--compression-level` as command-line option): If present, will enable
//! dynamic downstream compression and use the specified compression level (same level for all
//! compression algorithms, see
//! [Pingora issue #228](https://github.com/cloudflare/pingora/issues/228)).
//! * `decompress_upstream` (`--decompress-upstream` as command-line flag): If `true`,
//! decompression of upstream responses will be enabled.
//!
//! ## Code example
//!
//! You will usually want to merge Pingora’s command-line options and configuration settings with
//! the ones provided by this crate:
//!
//! ```rust
//! use compression_module::{CompressionConf, CompressionHandler, CompressionOpt};
//! use module_utils::{merge_conf, merge_opt, FromYaml};
//! use pingora_core::server::Server;
//! use pingora_core::server::configuration::{Opt as ServerOpt, ServerConf};
//! use structopt::StructOpt;
//!
//! #[merge_opt]
//! struct Opt {
//! server: ServerOpt,
//! compression: CompressionOpt,
//! }
//!
//! #[merge_conf]
//! struct Conf {
//! server: ServerConf,
//! compression: CompressionConf,
//! }
//!
//! let opt = Opt::from_args();
//! let mut conf = opt
//! .server
//! .conf
//! .as_ref()
//! .and_then(|path| Conf::load_from_yaml(path).ok())
//! .unwrap_or_else(Conf::default);
//! conf.compression.merge_with_opt(opt.compression);
//!
//! let mut server = Server::new_with_opt_and_conf(opt.server, conf.server);
//! server.bootstrap();
//!
//! let compression_handler: CompressionHandler = conf.compression.try_into().unwrap();
//! ```
//!
//! You can then use that handler in your server implementation:
//!
//! ```rust
//! use async_trait::async_trait;
//! use compression_module::CompressionHandler;
//! use module_utils::RequestFilter;
//! use pingora_core::Error;
//! use pingora_core::upstreams::peer::HttpPeer;
//! use pingora_proxy::{ProxyHttp, Session};
//!
//! pub struct MyServer {
//! compression_handler: CompressionHandler,
//! }
//!
//! #[async_trait]
//! impl ProxyHttp for MyServer {
//! type CTX = <CompressionHandler as RequestFilter>::CTX;
//! fn new_ctx(&self) -> Self::CTX {
//! CompressionHandler::new_ctx()
//! }
//!
//! async fn request_filter(
//! &self,
//! session: &mut Session,
//! ctx: &mut Self::CTX,
//! ) -> Result<bool, Box<Error>> {
//! // Enable compression according to settings
//! self.compression_handler.handle(session, ctx).await
//! }
//!
//! async fn upstream_peer(
//! &self,
//! _session: &mut Session,
//! _ctx: &mut Self::CTX,
//! ) -> Result<Box<HttpPeer>, Box<Error>> {
//! Ok(Box::new(HttpPeer::new(
//! "example.com:443",
//! true,
//! "example.com".to_owned(),
//! )))
//! }
//! }
//! ```
//!
//! For complete and more realistic code, see `single-static-root` example in the repository.
use async_trait;
use ;
use Error;
use Session;
use Deserialize;
use StructOpt;
/// Command line options of the compression module
/// Configuration settings of the compression module
/// Handler for Pingora’s `request_filter` phase