2018-12-31 20:04:05 +01:00
|
|
|
//
|
2024-01-01 01:07:21 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
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
|
|
|
|
|
2021-09-08 22:57:10 +02:00
|
|
|
#include "td/telegram/Version.h"
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/common.h"
|
2022-11-23 17:37:32 +01:00
|
|
|
#include "td/utils/HashTableUtils.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/StringBuilder.h"
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class ChatId {
|
2021-09-03 11:27:59 +02:00
|
|
|
int64 id = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
public:
|
2021-09-14 16:09:40 +02:00
|
|
|
static constexpr int64 MAX_CHAT_ID = 999999999999ll;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
ChatId() = default;
|
|
|
|
|
2023-05-21 12:21:49 +02:00
|
|
|
explicit constexpr ChatId(int64 chat_id) : id(chat_id) {
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
2021-09-03 11:27:59 +02:00
|
|
|
template <class T, typename = std::enable_if_t<std::is_convertible<T, int64>::value>>
|
2018-12-31 20:04:05 +01:00
|
|
|
ChatId(T chat_id) = delete;
|
|
|
|
|
|
|
|
bool is_valid() const {
|
2021-09-14 16:09:40 +02:00
|
|
|
return 0 < id && id <= MAX_CHAT_ID;
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2021-09-03 11:27:59 +02:00
|
|
|
int64 get() const {
|
2018-12-31 20:04:05 +01:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const ChatId &other) const {
|
|
|
|
return id == other.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const ChatId &other) const {
|
|
|
|
return id != other.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const {
|
2021-09-03 11:27:59 +02:00
|
|
|
storer.store_long(id);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser) {
|
2021-09-03 11:27:59 +02:00
|
|
|
if (parser.version() >= static_cast<int32>(Version::Support64BitIds)) {
|
|
|
|
id = parser.fetch_long();
|
|
|
|
} else {
|
|
|
|
id = parser.fetch_int();
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ChatIdHash {
|
2022-11-23 17:37:32 +01:00
|
|
|
uint32 operator()(ChatId chat_id) const {
|
|
|
|
return Hash<int64>()(chat_id.get());
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
inline StringBuilder &operator<<(StringBuilder &string_builder, ChatId chat_id) {
|
|
|
|
return string_builder << "basic group " << chat_id.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|