2023-05-01 21:33:52 +02:00
|
|
|
//
|
2024-01-01 01:07:21 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
2023-05-01 21:33:52 +02: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"
|
|
|
|
#include "td/utils/HashTableUtils.h"
|
|
|
|
#include "td/utils/StringBuilder.h"
|
|
|
|
#include "td/utils/tl_helpers.h"
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class StoryId {
|
|
|
|
int32 id = 0;
|
|
|
|
|
|
|
|
public:
|
2023-08-11 14:16:24 +02:00
|
|
|
static constexpr int32 MAX_SERVER_STORY_ID = 1999999999;
|
|
|
|
|
2023-05-01 21:33:52 +02:00
|
|
|
StoryId() = default;
|
|
|
|
|
2023-05-20 22:24:36 +02:00
|
|
|
explicit constexpr StoryId(int32 story_id) : id(story_id) {
|
2023-05-01 21:33:52 +02:00
|
|
|
}
|
|
|
|
template <class T, typename = std::enable_if_t<std::is_convertible<T, int32>::value>>
|
|
|
|
StoryId(T story_id) = delete;
|
|
|
|
|
2023-06-15 17:57:12 +02:00
|
|
|
static vector<int32> get_input_story_ids(const vector<StoryId> &story_ids) {
|
|
|
|
vector<int32> input_story_ids;
|
|
|
|
input_story_ids.reserve(story_ids.size());
|
|
|
|
for (auto &story_id : story_ids) {
|
|
|
|
input_story_ids.emplace_back(story_id.get());
|
|
|
|
}
|
|
|
|
return input_story_ids;
|
|
|
|
}
|
|
|
|
|
2023-05-01 21:33:52 +02:00
|
|
|
int32 get() const {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const StoryId &other) const {
|
|
|
|
return id == other.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const StoryId &other) const {
|
|
|
|
return id != other.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_valid() const {
|
2023-08-11 14:16:24 +02:00
|
|
|
return id > 0;
|
2023-05-01 21:33:52 +02:00
|
|
|
}
|
|
|
|
|
2023-05-29 20:43:03 +02:00
|
|
|
bool is_server() const {
|
2023-08-11 14:16:24 +02:00
|
|
|
return id > 0 && id <= MAX_SERVER_STORY_ID;
|
2023-05-29 20:43:03 +02:00
|
|
|
}
|
|
|
|
|
2023-05-01 21:33:52 +02:00
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const {
|
|
|
|
td::store(id, storer);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser) {
|
|
|
|
td::parse(id, parser);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct StoryIdHash {
|
|
|
|
uint32 operator()(StoryId story_id) const {
|
|
|
|
return Hash<int32>()(story_id.get());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
inline StringBuilder &operator<<(StringBuilder &string_builder, StoryId story_id) {
|
|
|
|
return string_builder << "story " << story_id.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|