Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1474,6 +1474,19 @@ The server can apply compression to the following MIME type contents:
- application/protobuf
- application/xhtml+xml

A response that already carries `Content-Encoding` is sent as it is. A handler serving content it encoded itself, an asset compressed at build time for instance, keeps its own coding and its own bytes:

```c++
svr.Get("/app.js", [](const Request & /*req*/, Response &res) {
res.set_header("Content-Encoding", "gzip");
res.set_content(gzipped_asset, "application/javascript");
});
```

This holds for every kind of response, including the file-backed ones below.

`Vary: Accept-Encoding` is added only to responses the server encoded itself. A handler that chooses between an encoded and an identity representation by reading `Accept-Encoding` should set the field itself, so that shared caches keep the two apart.

### Static file compression

Responses served from a file, whether through `set_mount_point()` or `Response::set_file_content()`, are sent as is by default. Turn compression on for them with:
Expand Down
66 changes: 45 additions & 21 deletions httplib.h
Original file line number Diff line number Diff line change
Expand Up @@ -1817,10 +1817,12 @@ struct Response {
std::string file_content_path_;
std::string file_content_content_type_;

// Content coding chosen for a file-backed content provider, decided once
// where the file is opened so that the ETag and the body cannot disagree.
// `EncodingType::None` for every other kind of response.
detail::EncodingType file_content_encoding_ = detail::EncodingType::None;
// Content coding chosen for the response body, decided once so that the
// headers and the body cannot disagree: where the file is opened for a
// file-backed content provider (keeping the ETag honest), and in
// `apply_ranges()` for a chunked content provider. `EncodingType::None`
// for every other kind of response.
detail::EncodingType content_coding_ = detail::EncodingType::None;
};

enum class Error {
Expand Down Expand Up @@ -2359,6 +2361,7 @@ class Server {

bool parse_request_line(const char *s, Request &req) const;
detail::EncodingType static_file_encoding(const Request &req,
const Response &res,
const std::string &content_type,
size_t length) const;
bool apply_static_file_compression(const Request &req, Response &res) const;
Expand Down Expand Up @@ -3663,6 +3666,9 @@ ssize_t read_socket(socket_t sock, void *ptr, size_t size, int flags);

EncodingType encoding_type(const Request &req, const std::string &content_type);

EncodingType encoding_type(const Request &req, const Response &res,
const std::string &content_type);

EncodingType encoding_type(const Request &req, const Response &res);

class BufferStream final : public Stream {
Expand Down Expand Up @@ -7542,8 +7548,21 @@ inline EncodingType encoding_type(const Request &req,
return best;
}

// `content_type` is taken separately because a file-backed response has not
// been given one yet when its coding has to be decided.
inline EncodingType encoding_type(const Request &req, const Response &res,
const std::string &content_type) {
// The response already names a content coding of its own: a handler serving
// a body it encoded itself (pre-compressed static assets, say), or a mount
// point whose headers name the coding its files are stored in. Applying one
// on top of that would double-encode the body and append a second
// `Content-Encoding` field line.
if (res.has_header("Content-Encoding")) { return EncodingType::None; }
return encoding_type(req, content_type);
}

inline EncodingType encoding_type(const Request &req, const Response &res) {
return encoding_type(req, res.get_header_value("Content-Type"));
return encoding_type(req, res, res.get_header_value("Content-Type"));
}

inline std::unique_ptr<compressor> make_compressor(EncodingType type) {
Expand Down Expand Up @@ -8629,7 +8648,7 @@ inline void set_file_content_provider(Response &res,
return true;
});

res.file_content_encoding_ = encoding;
res.content_coding_ = encoding;
}

template <typename T, typename U>
Expand Down Expand Up @@ -11496,7 +11515,7 @@ inline void Response::set_content(const char *s, size_t n,
auto rng = headers.equal_range("Content-Type");
headers.erase(rng.first, rng.second);
set_header("Content-Type", content_type);
file_content_encoding_ = detail::EncodingType::None;
content_coding_ = detail::EncodingType::None;
}

inline void Response::set_content(const std::string &s,
Expand All @@ -11511,7 +11530,7 @@ inline void Response::set_content(std::string &&s,
auto rng = headers.equal_range("Content-Type");
headers.erase(rng.first, rng.second);
set_header("Content-Type", content_type);
file_content_encoding_ = detail::EncodingType::None;
content_coding_ = detail::EncodingType::None;
}

inline void Response::set_content_provider(
Expand All @@ -11522,7 +11541,7 @@ inline void Response::set_content_provider(
if (in_length > 0) { content_provider_ = std::move(provider); }
content_provider_resource_releaser_ = std::move(resource_releaser);
is_chunked_content_provider_ = false;
file_content_encoding_ = detail::EncodingType::None;
content_coding_ = detail::EncodingType::None;
}

inline void Response::set_content_provider(
Expand All @@ -11533,7 +11552,7 @@ inline void Response::set_content_provider(
content_provider_ = detail::ContentProviderAdapter(std::move(provider));
content_provider_resource_releaser_ = std::move(resource_releaser);
is_chunked_content_provider_ = false;
file_content_encoding_ = detail::EncodingType::None;
content_coding_ = detail::EncodingType::None;
}

inline void Response::set_chunked_content_provider(
Expand All @@ -11544,7 +11563,7 @@ inline void Response::set_chunked_content_provider(
content_provider_ = detail::ContentProviderAdapter(std::move(provider));
content_provider_resource_releaser_ = std::move(resource_releaser);
is_chunked_content_provider_ = true;
file_content_encoding_ = detail::EncodingType::None;
content_coding_ = detail::EncodingType::None;
}

inline void Response::set_file_content(const std::string &path,
Expand Down Expand Up @@ -13247,9 +13266,10 @@ Server::write_content_with_provider(Stream &strm, const Request &req,
}
} else {
if (res.is_chunked_content_provider_) {
auto type = detail::encoding_type(req, res);

auto compressor = detail::make_compressor(type);
// Use the coding `apply_ranges()` chose when it wrote the headers;
// re-negotiating here would disagree with them, e.g. once a handler's
// own Content-Encoding header suppresses the negotiation.
auto compressor = detail::make_compressor(res.content_coding_);
if (!compressor) {
compressor = detail::make_unique<detail::nocompressor>();
}
Expand Down Expand Up @@ -13475,7 +13495,8 @@ inline bool Server::handle_file_request(Request &req, Response &res) {
auto encoding = detail::EncodingType::None;
if (static_file_compression_) {
content_type = content_type_of();
encoding = static_file_encoding(req, content_type, stat.size());
encoding =
static_file_encoding(req, res, content_type, stat.size());
}

// The ETag names the representation actually sent, so a client that
Expand Down Expand Up @@ -13890,8 +13911,10 @@ inline bool Server::dispatch_request(Request &req, Response &res,
// the ETag, which has to name the representation actually sent, and
// `apply_static_file_compression()` go through this, so the two cannot drift
// apart.
inline detail::EncodingType Server::static_file_encoding(
const Request &req, const std::string &content_type, size_t length) const {
inline detail::EncodingType
Server::static_file_encoding(const Request &req, const Response &res,
const std::string &content_type,
size_t length) const {
if (!static_file_compression_) { return detail::EncodingType::None; }

// Nothing to compress, and an empty file already answers with
Expand All @@ -13916,14 +13939,14 @@ inline detail::EncodingType Server::static_file_encoding(
return detail::EncodingType::None;
}

return detail::encoding_type(req, content_type);
return detail::encoding_type(req, res, content_type);
}

// Compresses a file-backed content provider into `res.body` and takes over the
// framing headers. Returns false when the response is left untouched.
inline bool Server::apply_static_file_compression(const Request &req,
Response &res) const {
auto type = res.file_content_encoding_;
auto type = res.content_coding_;
if (type == detail::EncodingType::None || !res.content_provider_) {
return false;
}
Expand All @@ -13947,7 +13970,7 @@ inline bool Server::apply_static_file_compression(const Request &req,
res.content_provider_success_ = true;
res.content_provider_ = nullptr;
res.content_length_ = 0;
res.file_content_encoding_ = detail::EncodingType::None;
res.content_coding_ = detail::EncodingType::None;

res.set_header("Content-Encoding", detail::encoding_name(type));
res.set_header("Vary", "Accept-Encoding");
Expand Down Expand Up @@ -14006,6 +14029,7 @@ inline void Server::apply_ranges(const Request &req, Response &res,
if (res.content_provider_) {
if (res.is_chunked_content_provider_) {
res.set_header("Transfer-Encoding", "chunked");
res.content_coding_ = type;
if (type != detail::EncodingType::None) {
res.set_header("Content-Encoding", detail::encoding_name(type));
res.set_header("Vary", "Accept-Encoding");
Expand Down Expand Up @@ -14402,7 +14426,7 @@ Server::process_request(Stream &strm, const std::string &remote_addr,

detail::set_file_content_provider(
res, mm, content_type,
static_file_encoding(req, content_type, mm->size()));
static_file_encoding(req, res, content_type, mm->size()));
}
}

Expand Down
151 changes: 151 additions & 0 deletions test/test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8910,12 +8910,24 @@ class StaticFileCompressionTest : public ::testing::Test {
}

int start(const std::function<void(Server &)> &configure = nullptr) {
// Serves the same tree as a directory of build-time compressed assets
// would be served: the mount point names the coding the files are already
// stored in. Registered before "/" so it is the one that matches.
svr_.set_mount_point("/pre-encoded", "./www",
{{"Content-Encoding", "gzip"}});

svr_.set_mount_point("/", "./www");

svr_.Get("/file_content", [](const Request & /*req*/, Response &res) {
res.set_file_content("./www/dir/index.html", "text/html");
});

svr_.Get("/pre-encoded-file-content",
[](const Request & /*req*/, Response &res) {
res.set_header("Content-Encoding", "gzip");
res.set_file_content("./www/dir/index.html", "text/html");
});

svr_.Get("/streamed", [](const Request & /*req*/, Response &res) {
res.set_content_provider(
6, "text/plain",
Expand Down Expand Up @@ -9021,6 +9033,47 @@ TEST_F(StaticFileCompressionTest, FileContent) {
EXPECT_EQ(104U, res->body.size());
}

// A handler that serves an already-encoded file names the coding itself. The
// file-backed path decided its coding from Accept-Encoding and the content
// type alone, so it compressed the stored bytes a second time and appended a
// second Content-Encoding field line.
TEST_F(StaticFileCompressionTest, PreEncodedFileContentIsNotCompressedAgain) {
auto port = start(enable_without_floor);

Client cli(HOST, port);
cli.set_decompress(false);
auto res = cli.Get("/pre-encoded-file-content",
Headers{{"Accept-Encoding", "gzip"}});

ASSERT_TRUE(res) << "Error: " << to_string(res.error());
EXPECT_EQ(StatusCode::OK_200, res->status);
EXPECT_EQ(1U, res->get_header_value_count("Content-Encoding"));
EXPECT_EQ("gzip", res->get_header_value("Content-Encoding"));
// Vary belongs to a coding the server chose, and it chose none here.
EXPECT_FALSE(res->has_header("Vary"));
// The file travels exactly as it is stored on disk.
EXPECT_EQ(104U, res->body.size());
}

// The 1MB file clears the default floor, so this one runs the configuration a
// deployment would actually have.
TEST_F(StaticFileCompressionTest, PreEncodedMountPointIsNotCompressedAgain) {
auto port = start(enable);

Client cli(HOST, port);
cli.set_decompress(false);
auto res =
cli.Get("/pre-encoded/dir/1MB.txt", Headers{{"Accept-Encoding", "gzip"}});

ASSERT_TRUE(res) << "Error: " << to_string(res.error());
EXPECT_EQ(StatusCode::OK_200, res->status);
EXPECT_EQ(1U, res->get_header_value_count("Content-Encoding"));
EXPECT_EQ("gzip", res->get_header_value("Content-Encoding"));
EXPECT_FALSE(res->has_header("Vary"));
EXPECT_EQ(1048576U, res->body.size());
EXPECT_EQ("1048576", res->get_header_value("Content-Length"));
}

TEST_F(StaticFileCompressionTest, Head) {
auto port = start(enable);

Expand Down Expand Up @@ -12616,6 +12669,104 @@ TEST(ContentEncodingTest, KnownEncodingWithoutSupportIsReported) {
}
}

#ifdef CPPHTTPLIB_ZLIB_SUPPORT
// A handler serving pre-compressed content (e.g. build-time gzipped static
// assets) sets Content-Encoding itself. The server used to pick a coding from
// Accept-Encoding and the content type alone, gzipping the already-gzipped
// body a second time and appending a second Content-Encoding field line, so
// clients that decode one coding per listed value handed back raw gzip bytes.
TEST(ContentEncodingTest, PreEncodedResponseIsNotCompressedAgain) {
const std::string gzipped(GZIPPED_HELLO_WORLD, sizeof(GZIPPED_HELLO_WORLD));

Server svr;

// text/plain is a compressible type, so only the pre-set Content-Encoding
// keeps the server from applying a coding of its own.
svr.Get("/pre-gzipped", [&](const Request & /*req*/, Response &res) {
res.set_content(gzipped, "text/plain");
res.set_header("Content-Encoding", "gzip");
});

auto port = svr.bind_to_any_port(HOST);
thread t = thread([&]() { svr.listen_after_bind(); });
auto se = detail::scope_exit([&] {
svr.stop();
t.join();
ASSERT_FALSE(svr.is_running());
});

svr.wait_until_ready();

Client cli(HOST, port);

Headers headers = {{"Accept-Encoding", "gzip"}};
auto res = cli.Get("/pre-gzipped", headers);
ASSERT_TRUE(res) << "Error: " << to_string(res.error());
EXPECT_EQ(StatusCode::OK_200, res->status);
EXPECT_EQ(1U, res->get_header_value_count("Content-Encoding"));
EXPECT_EQ("Hello World!", res->body);
}

// A chunked provider settles its coding where the headers are written and
// reuses it at write time. Both ends of that have to hold: a handler's own
// Content-Encoding suppresses the coding, and a response without one is still
// compressed as it always was.
TEST(ContentEncodingTest, PreEncodedChunkedResponseIsNotCompressedAgain) {
const std::string gzipped(GZIPPED_HELLO_WORLD, sizeof(GZIPPED_HELLO_WORLD));
const std::string plain = "Hello World! Hello World! Hello World!";

Server svr;

svr.Get("/pre-gzipped", [&](const Request & /*req*/, Response &res) {
res.set_header("Content-Encoding", "gzip");
res.set_chunked_content_provider(
"text/plain", [gzipped](size_t /*offset*/, DataSink &sink) {
sink.write(gzipped.data(), gzipped.size());
sink.done();
return true;
});
});

svr.Get("/negotiated", [&](const Request & /*req*/, Response &res) {
res.set_chunked_content_provider(
"text/plain", [plain](size_t /*offset*/, DataSink &sink) {
sink.write(plain.data(), plain.size());
sink.done();
return true;
});
});

auto port = svr.bind_to_any_port(HOST);
thread t = thread([&]() { svr.listen_after_bind(); });
auto se = detail::scope_exit([&] {
svr.stop();
t.join();
ASSERT_FALSE(svr.is_running());
});

svr.wait_until_ready();

Client cli(HOST, port);
Headers headers = {{"Accept-Encoding", "gzip"}};

{
auto res = cli.Get("/pre-gzipped", headers);
ASSERT_TRUE(res) << "Error: " << to_string(res.error());
EXPECT_EQ(StatusCode::OK_200, res->status);
EXPECT_EQ(1U, res->get_header_value_count("Content-Encoding"));
EXPECT_EQ("Hello World!", res->body);
}

{
auto res = cli.Get("/negotiated", headers);
ASSERT_TRUE(res) << "Error: " << to_string(res.error());
EXPECT_EQ(StatusCode::OK_200, res->status);
EXPECT_EQ("gzip", res->get_header_value("Content-Encoding"));
EXPECT_EQ(plain, res->body);
}
}
#endif

// RFC 9110 Section 5.3: a Content-Encoding split over several field lines is
// the same message as the comma-joined one, so both have to be read the same
// way. Reading only the first line made "gzip" followed by "gzip" look like a
Expand Down
Loading