2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
2018-01-14 03:03:04 +01:00
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
2018-02-04 03:22:01 +01:00
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
2018-01-14 03:03:04 +01:00
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
2018-02-04 03:22:01 +01:00
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2018-01-14 03:03:04 +01:00
|
|
|
|
|
|
|
#pragma once
|
2018-03-05 15:59:10 +01:00
|
|
|
#define HAVE_IRCD_SERVER_PEER_H
|
2018-01-14 03:03:04 +01:00
|
|
|
|
2018-03-14 00:58:58 +01:00
|
|
|
namespace ircd::server
|
|
|
|
{
|
|
|
|
extern std::map<string_view, std::unique_ptr<peer>> peers;
|
|
|
|
}
|
|
|
|
|
2018-01-14 03:03:04 +01:00
|
|
|
/// Remote entity.
|
|
|
|
///
|
2018-03-05 15:59:10 +01:00
|
|
|
struct ircd::server::peer
|
2018-01-14 03:03:04 +01:00
|
|
|
{
|
2018-03-08 17:24:19 +01:00
|
|
|
struct err;
|
|
|
|
|
2018-05-09 00:50:48 +02:00
|
|
|
static constexpr const size_t &LINK_MAX{16};
|
2018-03-04 06:54:42 +01:00
|
|
|
static conf::item<size_t> link_min_default;
|
|
|
|
static conf::item<size_t> link_max_default;
|
2018-03-09 16:42:28 +01:00
|
|
|
static conf::item<seconds> error_clear_default;
|
2018-03-04 06:54:42 +01:00
|
|
|
|
2018-03-14 00:58:58 +01:00
|
|
|
net::ipport remote;
|
|
|
|
std::string hostname;
|
|
|
|
net::open_opts open_opts;
|
2018-01-14 03:03:04 +01:00
|
|
|
std::list<link> links;
|
2018-03-08 17:24:19 +01:00
|
|
|
std::unique_ptr<err> e;
|
2018-01-24 18:15:57 +01:00
|
|
|
std::string server_name;
|
2018-03-27 02:21:24 +02:00
|
|
|
size_t write_bytes {0};
|
|
|
|
size_t read_bytes {0};
|
2018-03-10 16:50:19 +01:00
|
|
|
bool op_resolve {false};
|
|
|
|
bool op_fini {false};
|
2018-01-16 03:04:23 +01:00
|
|
|
|
|
|
|
template<class F> size_t accumulate_links(F&&) const;
|
|
|
|
template<class F> size_t accumulate_tags(F&&) const;
|
2018-01-14 03:03:04 +01:00
|
|
|
|
2018-03-10 16:50:19 +01:00
|
|
|
void handle_finished();
|
2018-05-02 03:40:03 +02:00
|
|
|
void handle_resolve(std::exception_ptr, const hostport &, const ipport &);
|
2018-01-14 03:03:04 +01:00
|
|
|
void resolve(const hostport &);
|
|
|
|
|
2018-01-16 13:01:26 +01:00
|
|
|
void disperse_uncommitted(link &);
|
|
|
|
void disperse(link &);
|
2018-01-14 06:16:49 +01:00
|
|
|
void del(link &);
|
2018-01-16 09:45:51 +01:00
|
|
|
|
2018-01-24 18:15:57 +01:00
|
|
|
void handle_head_recv(const link &, const tag &, const http::response::head &);
|
2018-01-16 06:13:48 +01:00
|
|
|
void handle_link_done(link &);
|
2018-01-16 05:04:45 +01:00
|
|
|
void handle_tag_done(link &, tag &) noexcept;
|
2018-01-23 20:38:38 +01:00
|
|
|
void handle_finished(link &);
|
2018-01-14 06:16:49 +01:00
|
|
|
void handle_error(link &, const boost::system::system_error &);
|
2018-01-17 10:05:31 +01:00
|
|
|
void handle_error(link &, std::exception_ptr);
|
2018-01-14 06:16:49 +01:00
|
|
|
void handle_close(link &, std::exception_ptr);
|
|
|
|
void handle_open(link &, std::exception_ptr);
|
|
|
|
|
2018-01-14 03:03:04 +01:00
|
|
|
public:
|
2018-03-10 16:50:19 +01:00
|
|
|
// indicator lights
|
|
|
|
bool finished() const;
|
|
|
|
|
2018-01-16 03:04:23 +01:00
|
|
|
// config related
|
2018-01-16 06:13:48 +01:00
|
|
|
size_t link_min() const;
|
2018-03-04 06:54:42 +01:00
|
|
|
size_t link_max() const;
|
2018-01-16 03:04:23 +01:00
|
|
|
|
2018-03-05 15:59:10 +01:00
|
|
|
// stats for all links in peer
|
2018-01-16 05:04:45 +01:00
|
|
|
size_t link_count() const;
|
2018-01-16 03:04:23 +01:00
|
|
|
size_t link_busy() const;
|
|
|
|
size_t link_ready() const;
|
|
|
|
|
2018-03-05 15:59:10 +01:00
|
|
|
// stats for all tags in all links in peer
|
2018-01-16 05:04:45 +01:00
|
|
|
size_t tag_count() const;
|
2018-01-16 03:04:23 +01:00
|
|
|
size_t tag_committed() const;
|
|
|
|
size_t tag_uncommitted() const;
|
|
|
|
|
|
|
|
// stats for all upload-side bytes in all tags in all links
|
2018-03-27 02:11:39 +02:00
|
|
|
size_t write_size() const;
|
2018-01-16 03:04:23 +01:00
|
|
|
size_t write_completed() const;
|
|
|
|
size_t write_remaining() const;
|
|
|
|
|
|
|
|
// stats for download-side bytes in all tags in all links (note:
|
|
|
|
// see notes in link.h/tag.h about inaccuracy here).
|
2018-03-27 02:11:39 +02:00
|
|
|
size_t read_size() const;
|
2018-01-16 03:04:23 +01:00
|
|
|
size_t read_completed() const;
|
|
|
|
size_t read_remaining() const;
|
2018-01-14 06:16:49 +01:00
|
|
|
|
2018-03-27 02:21:24 +02:00
|
|
|
// stats accumulated over time
|
|
|
|
size_t write_total() const;
|
|
|
|
size_t read_total() const;
|
|
|
|
|
2018-01-16 03:04:23 +01:00
|
|
|
// link control panel
|
2018-01-14 03:03:04 +01:00
|
|
|
link &link_add(const size_t &num = 1);
|
2018-01-16 13:01:26 +01:00
|
|
|
link *link_get(const request &);
|
2018-01-14 03:03:04 +01:00
|
|
|
|
2018-01-16 03:04:23 +01:00
|
|
|
// request panel
|
2018-01-14 03:03:04 +01:00
|
|
|
void submit(request &);
|
|
|
|
|
2018-03-03 07:37:52 +01:00
|
|
|
// Error related
|
|
|
|
bool err_has() const;
|
|
|
|
string_view err_msg() const;
|
2018-03-08 17:24:19 +01:00
|
|
|
template<class... A> void err_set(A&&...);
|
2018-03-12 22:06:12 +01:00
|
|
|
bool err_clear();
|
2018-03-09 16:42:28 +01:00
|
|
|
bool err_check();
|
2018-03-03 07:37:52 +01:00
|
|
|
|
2018-01-16 03:04:23 +01:00
|
|
|
// control panel
|
2018-05-29 20:53:37 +02:00
|
|
|
void cancel();
|
2018-03-04 10:22:05 +01:00
|
|
|
void close(const net::close_opts & = net::close_opts_default);
|
2018-01-15 09:11:32 +01:00
|
|
|
|
2018-05-19 04:42:41 +02:00
|
|
|
peer(std::string hostname);
|
2018-05-02 20:29:13 +02:00
|
|
|
peer(peer &&) = delete;
|
|
|
|
peer(const peer &) = delete;
|
2018-03-05 15:59:10 +01:00
|
|
|
~peer() noexcept;
|
2018-01-14 03:03:04 +01:00
|
|
|
};
|
2018-03-08 17:24:19 +01:00
|
|
|
|
|
|
|
struct ircd::server::peer::err
|
|
|
|
{
|
|
|
|
std::exception_ptr eptr;
|
2018-04-14 05:01:46 +02:00
|
|
|
system_point etime;
|
2018-03-08 17:24:19 +01:00
|
|
|
|
|
|
|
err(std::exception_ptr eptr)
|
|
|
|
:eptr{std::move(eptr)}
|
2018-04-14 05:01:46 +02:00
|
|
|
,etime{now<system_point>()}
|
2018-03-08 17:24:19 +01:00
|
|
|
{}
|
|
|
|
};
|