refine file downloader example

master
Chunting Gu 4 years ago
parent e27338854c
commit b76ce67726

@ -1,5 +1,9 @@
// Download files. // file_downloader.cc
// This example demonstrates the usage of streamed response. // This example downloads a JPG file.
// NOTE:
// - The response is streamed to file to avoid comsuming large memory.
// - A callback is set to be informed about the download progress.
#include <iostream> #include <iostream>
@ -26,11 +30,15 @@ int main(int argc, char* argv[]) {
webcc::ClientSession session; webcc::ClientSession session;
auto on_progress = [](std::size_t length, std::size_t total_length) {
if (total_length > 0) { // Avoid dividing zero
int percent = static_cast<int>(length * 100.0 / total_length);
std::cout << "Download progress: " << percent << "%" << std::endl;
}
};
try { try {
auto r = session.Send(webcc::RequestBuilder{}.Get(url)(), true, auto r = session.Send(WEBCC_GET(url)(), true, on_progress);
[](std::size_t length, std::size_t total_length) {
std::cout << "Progress " << length << " / " << total_length << std::endl;
});
if (auto file_body = r->file_body()) { if (auto file_body = r->file_body()) {
file_body->Move(path); file_body->Move(path);

@ -55,8 +55,9 @@ public:
} }
// Set progress callback to be informed about the read progress. // Set progress callback to be informed about the read progress.
// TODO: What about write? // NOTE: Don't use move semantics because in practice, there is no difference
// TODO: std::move? // between copying and moving an object of a closure type.
// TODO: Support write progress
void set_progress_callback(ProgressCallback callback) { void set_progress_callback(ProgressCallback callback) {
progress_callback_ = callback; progress_callback_ = callback;
} }

Loading…
Cancel
Save