aboutsummaryrefslogtreecommitdiffhomepage
path: root/benchmark/wget.cpp
diff options
context:
space:
mode:
authorArseny Smirnov <arseny30@gmail.com>2018-12-31 22:04:05 +0300
committerArseny Smirnov <arseny30@gmail.com>2017-12-31 23:08:40 +0300
commit71d03f39c364367a8a7c51f783a41099297de826 (patch)
tree4c0c57f9ddb87f46d58192e1ebfd2c40f6d2c315 /benchmark/wget.cpp
Project import generated by Copybara.
GitOrigin-RevId: 318483224ad6164d9966f731d60cde37039bb2d4
Diffstat (limited to 'benchmark/wget.cpp')
-rw-r--r--benchmark/wget.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/benchmark/wget.cpp b/benchmark/wget.cpp
new file mode 100644
index 000000000..c4f9ba88f
--- /dev/null
+++ b/benchmark/wget.cpp
@@ -0,0 +1,39 @@
+//
+// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2017
+//
+// Distributed under the Boost Software License, Version 1.0. (See accompanying
+// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+//
+#include "td/actor/actor.h"
+#include "td/actor/PromiseFuture.h"
+
+#include "td/net/HttpQuery.h"
+#include "td/net/Wget.h"
+
+#include "td/utils/logging.h"
+#include "td/utils/Status.h"
+
+#include <memory>
+#include <string>
+
+int main(int argc, char *argv[]) {
+ SET_VERBOSITY_LEVEL(VERBOSITY_NAME(INFO));
+ td::VERBOSITY_NAME(fd) = VERBOSITY_NAME(INFO);
+
+ std::string url = (argc > 1 ? argv[1] : "https://telegram.org");
+ auto scheduler = std::make_unique<td::ConcurrentScheduler>();
+ scheduler->init(0);
+ scheduler
+ ->create_actor_unsafe<td::Wget>(0, "Client", td::PromiseCreator::lambda([](td::Result<td::HttpQueryPtr> res) {
+ LOG(ERROR) << *res.ok();
+ td::Scheduler::instance()->finish();
+ }),
+ url)
+ .release();
+ scheduler->start();
+ while (scheduler->run_main(10)) {
+ // empty
+ }
+ scheduler->finish();
+ return 0;
+}