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
|
|
|
|
|
2018-06-26 01:43:11 +02:00
|
|
|
#include "td/telegram/net/DcId.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/net/DcOptions.h"
|
|
|
|
|
|
|
|
#include "td/utils/Container.h"
|
|
|
|
#include "td/utils/port/IPAddress.h"
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
#include "td/utils/Time.h"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
namespace td {
|
2018-04-24 18:21:47 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
class DcOptionsSet {
|
|
|
|
public:
|
|
|
|
void add_dc_options(DcOptions dc_options);
|
|
|
|
|
|
|
|
DcOptions get_dc_options() const;
|
|
|
|
|
|
|
|
struct Stat {
|
|
|
|
double ok_at{-1000};
|
|
|
|
double error_at{-1001};
|
|
|
|
double check_at{-1002};
|
2018-06-03 01:35:32 +02:00
|
|
|
enum class State : int32 { Ok, Error, Checking };
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void on_ok() {
|
|
|
|
ok_at = Time::now_cached();
|
|
|
|
}
|
|
|
|
void on_error() {
|
|
|
|
error_at = Time::now_cached();
|
|
|
|
}
|
|
|
|
void on_check() {
|
|
|
|
check_at = Time::now_cached();
|
|
|
|
}
|
|
|
|
bool is_ok() const {
|
2018-06-03 01:35:32 +02:00
|
|
|
return state() == State::Ok;
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
State state() const {
|
|
|
|
if (ok_at > error_at && ok_at > check_at) {
|
2018-06-03 01:35:32 +02:00
|
|
|
return State::Ok;
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
if (check_at > ok_at && check_at > error_at) {
|
2018-06-03 01:35:32 +02:00
|
|
|
return State::Checking;
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
2018-06-03 01:35:32 +02:00
|
|
|
return State::Error;
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ConnectionInfo {
|
|
|
|
DcOption *option{nullptr};
|
|
|
|
bool use_http{false};
|
|
|
|
size_t order{0};
|
|
|
|
bool should_check{false};
|
|
|
|
Stat *stat{nullptr};
|
|
|
|
};
|
|
|
|
|
2018-07-27 02:54:25 +02:00
|
|
|
vector<ConnectionInfo> find_all_connections(DcId dc_id, bool allow_media_only, bool use_static, bool prefer_ipv6,
|
|
|
|
bool only_http);
|
2018-06-03 01:35:32 +02:00
|
|
|
|
2018-07-27 02:54:25 +02:00
|
|
|
Result<ConnectionInfo> find_connection(DcId dc_id, bool allow_media_only, bool use_static, bool prefer_ipv6,
|
|
|
|
bool only_http);
|
2018-12-31 20:04:05 +01:00
|
|
|
void reset();
|
|
|
|
|
|
|
|
private:
|
2018-04-19 15:08:30 +02:00
|
|
|
enum class State : int32 { Error, Ok, Checking };
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
struct OptionStat {
|
|
|
|
Stat tcp_stat;
|
|
|
|
Stat http_stat;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DcOptionInfo {
|
|
|
|
DcOption option;
|
2021-11-11 15:39:09 +01:00
|
|
|
int64 stat_id = -1;
|
2018-12-31 20:04:05 +01:00
|
|
|
size_t pos;
|
|
|
|
size_t order = 0;
|
|
|
|
|
|
|
|
DcOptionInfo(DcOption &&option, size_t pos) : option(std::move(option)), pos(pos) {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DcOptionId {
|
|
|
|
size_t pos;
|
|
|
|
auto as_tie() const {
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
bool operator==(const DcOptionId &other) const {
|
|
|
|
return as_tie() == other.as_tie();
|
|
|
|
}
|
|
|
|
bool operator<(const DcOptionId &other) const {
|
|
|
|
return as_tie() < other.as_tie();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-09-27 03:19:03 +02:00
|
|
|
std::vector<unique_ptr<DcOptionInfo>> options_;
|
2018-12-31 20:04:05 +01:00
|
|
|
std::vector<DcOptionId> ordered_options_;
|
|
|
|
std::map<IPAddress, int64> option_to_stat_id_;
|
2018-09-27 03:19:03 +02:00
|
|
|
Container<unique_ptr<OptionStat>> option_stats_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
DcOptionInfo *register_dc_option(DcOption &&option);
|
|
|
|
void init_option_stat(DcOptionInfo *option_info);
|
|
|
|
OptionStat *get_option_stat(const DcOptionInfo *option_info);
|
|
|
|
};
|
2018-04-24 18:21:47 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|