blob: dbf94ce64fa8d8a2f673fcfd1515b7e54ed5f48f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2026
//
// 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/telegram/Version.h"
#include "td/utils/common.h"
#include "td/utils/HashTableUtils.h"
#include "td/utils/StringBuilder.h"
#include <type_traits>
namespace td {
class ChannelId {
int64 id = 0;
public:
// the last (1 << 31) - 1 identifiers will be used for secret chat dialog identifiers
static constexpr int64 MAX_CHANNEL_ID = 1000000000000ll - (1ll << 31);
static constexpr int64 MIN_MONOFORUM_CHANNEL_ID = 1000000000000ll + (1ll << 31) + 1;
static constexpr int64 MAX_MONOFORUM_CHANNEL_ID = 3000000000000ll;
ChannelId() = default;
explicit constexpr ChannelId(int64 channel_id) : id(channel_id) {
}
template <class T, typename = std::enable_if_t<std::is_convertible<T, int64>::value>>
ChannelId(T channel_id) = delete;
bool is_valid() const {
return is_regular_channel() || (MIN_MONOFORUM_CHANNEL_ID <= id && id < MAX_MONOFORUM_CHANNEL_ID);
}
bool is_regular_channel() const {
return 0 < id && id < MAX_CHANNEL_ID;
}
int64 get() const {
return id;
}
bool operator==(const ChannelId &other) const {
return id == other.id;
}
bool operator!=(const ChannelId &other) const {
return id != other.id;
}
template <class StorerT>
void store(StorerT &storer) const {
storer.store_long(id);
}
template <class ParserT>
void parse(ParserT &parser) {
if (parser.version() >= static_cast<int32>(Version::Support64BitIds)) {
id = parser.fetch_long();
} else {
id = parser.fetch_int();
}
}
};
struct ChannelIdHash {
uint32 operator()(ChannelId channel_id) const {
return Hash<int64>()(channel_id.get());
}
};
inline StringBuilder &operator<<(StringBuilder &string_builder, ChannelId channel_id) {
return string_builder << "supergroup " << channel_id.get();
}
} // namespace td
|