2018-12-31 20:04:05 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// 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)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/net/HttpConnectionBase.h"
|
|
|
|
#include "td/net/HttpQuery.h"
|
2018-08-16 00:06:53 +02:00
|
|
|
#include "td/net/SslStream.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2021-09-18 23:47:05 +02:00
|
|
|
#include "td/actor/actor.h"
|
|
|
|
|
2021-11-04 10:46:08 +01:00
|
|
|
#include "td/utils/BufferedFd.h"
|
2018-08-16 00:06:53 +02:00
|
|
|
#include "td/utils/port/SocketFd.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/Status.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class HttpOutboundConnection final : public detail::HttpConnectionBase {
|
|
|
|
public:
|
|
|
|
class Callback : public Actor {
|
|
|
|
public:
|
2019-06-17 18:12:54 +02:00
|
|
|
virtual void handle(unique_ptr<HttpQuery> query) = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
virtual void on_connection_error(Status error) = 0; // TODO rename to on_error
|
|
|
|
};
|
2021-10-27 19:29:01 +02:00
|
|
|
HttpOutboundConnection(BufferedFd<SocketFd> fd, SslStream ssl_stream, size_t max_post_size, size_t max_files,
|
|
|
|
int32 idle_timeout, ActorShared<Callback> callback, int32 slow_scheduler_id = -1)
|
2018-08-15 14:41:42 +02:00
|
|
|
: HttpConnectionBase(HttpConnectionBase::State::Write, std::move(fd), std::move(ssl_stream), max_post_size,
|
2020-07-23 18:47:12 +02:00
|
|
|
max_files, idle_timeout, slow_scheduler_id)
|
2018-12-31 20:04:05 +01:00
|
|
|
, callback_(std::move(callback)) {
|
|
|
|
}
|
|
|
|
// Inherited interface
|
|
|
|
// void write_next(BufferSlice buffer);
|
|
|
|
// void write_ok();
|
|
|
|
// void write_error(Status error);
|
|
|
|
|
|
|
|
private:
|
2021-07-03 22:51:36 +02:00
|
|
|
void on_query(unique_ptr<HttpQuery> query) final;
|
|
|
|
void on_error(Status error) final;
|
|
|
|
void hangup() final {
|
2018-12-31 20:04:05 +01:00
|
|
|
callback_.release();
|
|
|
|
HttpConnectionBase::hangup();
|
|
|
|
}
|
|
|
|
ActorShared<Callback> callback_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|