2019-12-01 17:03:51 +01:00
|
|
|
//
|
2024-01-01 01:07:21 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
2019-12-01 17:03:51 +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/utils/common.h"
|
2022-11-23 17:37:32 +01:00
|
|
|
#include "td/utils/HashTableUtils.h"
|
2019-12-05 18:34:19 +01:00
|
|
|
#include "td/utils/StringBuilder.h"
|
2019-12-01 17:03:51 +01:00
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class ScheduledServerMessageId {
|
|
|
|
int32 id = 0;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ScheduledServerMessageId() = default;
|
|
|
|
|
2023-05-21 12:21:49 +02:00
|
|
|
explicit constexpr ScheduledServerMessageId(int32 message_id) : id(message_id) {
|
2019-12-01 17:03:51 +01:00
|
|
|
}
|
|
|
|
template <class T, typename = std::enable_if_t<std::is_convertible<T, int32>::value>>
|
|
|
|
ScheduledServerMessageId(T message_id) = delete;
|
|
|
|
|
|
|
|
bool is_valid() const {
|
|
|
|
return id > 0 && id < (1 << 18);
|
|
|
|
}
|
|
|
|
|
|
|
|
int32 get() const {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const ScheduledServerMessageId &other) const {
|
|
|
|
return id == other.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const ScheduledServerMessageId &other) const {
|
|
|
|
return id != other.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const {
|
|
|
|
storer.store_int(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser) {
|
|
|
|
id = parser.fetch_int();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-12-01 18:50:52 +01:00
|
|
|
struct ScheduledServerMessageIdHash {
|
2022-11-23 17:37:32 +01:00
|
|
|
uint32 operator()(ScheduledServerMessageId message_id) const {
|
|
|
|
return Hash<int32>()(message_id.get());
|
2019-12-01 18:50:52 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-12-05 18:34:19 +01:00
|
|
|
inline StringBuilder &operator<<(StringBuilder &string_builder, ScheduledServerMessageId message_id) {
|
|
|
|
return string_builder << "scheduled server message " << message_id.get();
|
|
|
|
}
|
|
|
|
|
2019-12-01 17:03:51 +01:00
|
|
|
} // namespace td
|