2022-02-05 21:28:43 +01:00
|
|
|
//
|
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
|
|
|
//
|
|
|
|
// 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/DialogId.h"
|
|
|
|
#include "td/telegram/FolderId.h"
|
2022-02-16 16:36:55 +01:00
|
|
|
#include "td/telegram/FullMessageId.h"
|
2022-02-05 21:28:43 +01:00
|
|
|
#include "td/telegram/MessageContentType.h"
|
|
|
|
#include "td/telegram/PollId.h"
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
|
2022-02-05 22:16:16 +01:00
|
|
|
#include <functional>
|
|
|
|
|
2022-02-05 21:28:43 +01:00
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class ChainId {
|
|
|
|
uint64 id = 0;
|
|
|
|
|
|
|
|
public:
|
2022-02-08 15:30:06 +01:00
|
|
|
ChainId(DialogId dialog_id, MessageContentType message_content_type)
|
2022-02-05 21:28:43 +01:00
|
|
|
: id((static_cast<uint64>(dialog_id.get()) << 10) + get_message_content_chain_id(message_content_type)) {
|
|
|
|
}
|
|
|
|
|
2022-02-08 15:30:06 +01:00
|
|
|
ChainId(DialogId dialog_id) : id((static_cast<uint64>(dialog_id.get()) << 10) + 10) {
|
|
|
|
}
|
|
|
|
|
2022-02-16 16:36:55 +01:00
|
|
|
ChainId(FullMessageId full_message_id) : ChainId(full_message_id.get_dialog_id()) {
|
|
|
|
id += static_cast<uint64>(full_message_id.get_message_id().get()) << 10;
|
|
|
|
}
|
|
|
|
|
2022-02-05 21:28:43 +01:00
|
|
|
ChainId(FolderId folder_id) : id((static_cast<uint64>(folder_id.get() + (1 << 30)) << 10)) {
|
|
|
|
}
|
|
|
|
|
|
|
|
ChainId(PollId poll_id) : id(static_cast<uint64>(poll_id.get())) {
|
|
|
|
}
|
|
|
|
|
2022-02-05 22:16:16 +01:00
|
|
|
ChainId(const string &str) : id(std::hash<string>()(str)) {
|
|
|
|
}
|
|
|
|
|
2022-02-05 21:28:43 +01:00
|
|
|
uint64 get() const {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|