2019-08-08 14:13:26 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
|
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2020-06-09 16:57:05 +00:00
|
|
|
namespace Main {
|
|
|
|
class Session;
|
|
|
|
} // namespace Main
|
|
|
|
|
2019-08-08 14:13:26 +00:00
|
|
|
namespace Api {
|
|
|
|
|
2021-08-25 08:15:05 +00:00
|
|
|
[[nodiscard]] uint64 CountStickersHash(
|
2020-06-09 16:57:05 +00:00
|
|
|
not_null<Main::Session*> session,
|
|
|
|
bool checkOutdatedInfo = false);
|
2021-08-25 08:15:05 +00:00
|
|
|
[[nodiscard]] uint64 CountMasksHash(
|
|
|
|
not_null<Main::Session*> session,
|
|
|
|
bool checkOutdatedInfo = false);
|
2022-07-08 17:04:31 +00:00
|
|
|
[[nodiscard]] uint64 CountCustomEmojiHash(
|
|
|
|
not_null<Main::Session*> session,
|
|
|
|
bool checkOutdatedInfo = false);
|
2021-08-25 08:15:05 +00:00
|
|
|
[[nodiscard]] uint64 CountRecentStickersHash(
|
2021-03-25 11:05:33 +00:00
|
|
|
not_null<Main::Session*> session,
|
|
|
|
bool attached = false);
|
2022-07-22 13:08:10 +00:00
|
|
|
[[nodiscard]] uint64 CountFavedStickersHash(
|
|
|
|
not_null<Main::Session*> session);
|
2021-08-25 08:15:05 +00:00
|
|
|
[[nodiscard]] uint64 CountFeaturedStickersHash(
|
2020-06-09 16:57:05 +00:00
|
|
|
not_null<Main::Session*> session);
|
2022-07-22 13:08:10 +00:00
|
|
|
[[nodiscard]] uint64 CountFeaturedEmojiHash(
|
|
|
|
not_null<Main::Session*> session);
|
2021-08-25 08:15:05 +00:00
|
|
|
[[nodiscard]] uint64 CountSavedGifsHash(not_null<Main::Session*> session);
|
2020-06-09 16:57:05 +00:00
|
|
|
|
2021-08-25 08:15:05 +00:00
|
|
|
[[nodiscard]] inline uint64 HashInit() {
|
2019-08-08 14:13:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-08-25 08:15:05 +00:00
|
|
|
inline void HashUpdate(uint64 &already, uint64 value) {
|
|
|
|
already ^= (already >> 21);
|
|
|
|
already ^= (already << 35);
|
|
|
|
already ^= (already >> 4);
|
|
|
|
already += value;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void HashUpdate(uint64 &already, int64 value) {
|
|
|
|
HashUpdate(already, uint64(value));
|
2019-08-08 14:13:26 +00:00
|
|
|
}
|
|
|
|
|
2021-08-25 08:15:05 +00:00
|
|
|
inline void HashUpdate(uint64 &already, uint32 value) {
|
|
|
|
HashUpdate(already, uint64(value));
|
2019-08-09 17:58:58 +00:00
|
|
|
}
|
|
|
|
|
2021-08-25 08:15:05 +00:00
|
|
|
inline void HashUpdate(uint64 &already, int32 value) {
|
|
|
|
HashUpdate(already, int64(value));
|
2019-08-09 17:58:58 +00:00
|
|
|
}
|
|
|
|
|
2021-08-25 08:15:05 +00:00
|
|
|
[[nodiscard]] inline uint64 HashFinalize(uint64 already) {
|
|
|
|
return already;
|
2019-08-08 14:13:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename IntRange>
|
2021-08-25 08:15:05 +00:00
|
|
|
[[nodiscard]] inline uint64 CountHash(IntRange &&range) {
|
2019-08-08 14:13:26 +00:00
|
|
|
auto result = HashInit();
|
|
|
|
for (const auto value : range) {
|
|
|
|
HashUpdate(result, value);
|
|
|
|
}
|
|
|
|
return HashFinalize(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Api
|