2018-12-31 20:04:05 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
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
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/StringBuilder.h"
|
|
|
|
#include "td/utils/tl_helpers.h"
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class WebPageId {
|
|
|
|
int64 id = 0;
|
|
|
|
|
|
|
|
public:
|
|
|
|
WebPageId() = default;
|
|
|
|
|
2019-02-19 14:45:32 +01:00
|
|
|
explicit WebPageId(int64 web_page_id) : id(web_page_id) {
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
template <class T, typename = std::enable_if_t<std::is_convertible<T, int64>::value>>
|
2019-02-19 14:45:32 +01:00
|
|
|
WebPageId(T web_page_id) = delete;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
int64 get() const {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const WebPageId &other) const {
|
|
|
|
return id == other.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const WebPageId &other) const {
|
|
|
|
return id != other.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_valid() const {
|
|
|
|
return id != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const {
|
|
|
|
td::store(id, storer);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser) {
|
|
|
|
td::parse(id, parser);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct WebPageIdHash {
|
2019-02-19 14:45:32 +01:00
|
|
|
std::size_t operator()(WebPageId web_page_id) const {
|
|
|
|
return std::hash<int64>()(web_page_id.get());
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-19 14:45:32 +01:00
|
|
|
inline StringBuilder &operator<<(StringBuilder &string_builder, WebPageId web_page_id) {
|
|
|
|
return string_builder << "web page " << web_page_id.get();
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|