refine file downloader example

master
Chunting Gu 4 years ago
parent e27338854c
commit b76ce67726

@ -1,5 +1,9 @@
// Download files.
// This example demonstrates the usage of streamed response.
// file_downloader.cc
// 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>
@ -26,11 +30,15 @@ int main(int argc, char* argv[]) {
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 {
auto r = session.Send(webcc::RequestBuilder{}.Get(url)(), true,
[](std::size_t length, std::size_t total_length) {
std::cout << "Progress " << length << " / " << total_length << std::endl;
});
auto r = session.Send(WEBCC_GET(url)(), true, on_progress);
if (auto file_body = r->file_body()) {
file_body->Move(path);

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

Loading…
Cancel
Save