2018-12-31 20:04:05 +01:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
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/actor/actor.h"
|
|
|
|
|
|
|
|
#include "td/net/HttpConnectionBase.h"
|
|
|
|
#include "td/net/HttpQuery.h"
|
|
|
|
|
|
|
|
#include "td/utils/port/SocketFd.h"
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class HttpInboundConnection 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, ActorOwn<HttpInboundConnection> connection) = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
// Inherited interface
|
|
|
|
// void write_next(BufferSlice buffer);
|
|
|
|
// void write_ok();
|
|
|
|
// void write_error(Status error);
|
|
|
|
|
|
|
|
HttpInboundConnection(SocketFd fd, size_t max_post_size, size_t max_files, int32 idle_timeout,
|
2020-07-23 18:47:12 +02:00
|
|
|
ActorShared<Callback> callback, int32 slow_scheduler_id = -1);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
private:
|
2019-06-17 18:12:54 +02:00
|
|
|
void on_query(unique_ptr<HttpQuery> query) override;
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_error(Status error) override;
|
|
|
|
void hangup() override {
|
|
|
|
callback_.release();
|
|
|
|
stop();
|
|
|
|
}
|
|
|
|
ActorShared<Callback> callback_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|