2017-08-29 19:52:52 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2017-08-29 19:52:52 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2017-08-29 19:52:52 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "storage/storage_user_photos.h"
|
2017-11-30 17:33:27 +00:00
|
|
|
#include "base/weak_ptr.h"
|
2017-08-29 19:52:52 +00:00
|
|
|
|
2020-06-08 09:06:50 +00:00
|
|
|
namespace Main {
|
|
|
|
class Session;
|
|
|
|
} // namespace Main
|
|
|
|
|
2017-08-29 19:52:52 +00:00
|
|
|
class UserPhotosSlice {
|
|
|
|
public:
|
|
|
|
using Key = Storage::UserPhotosKey;
|
|
|
|
|
|
|
|
UserPhotosSlice(Key key);
|
2017-09-06 14:50:11 +00:00
|
|
|
UserPhotosSlice(
|
|
|
|
Key key,
|
2017-11-23 09:58:12 +00:00
|
|
|
std::deque<PhotoId> &&ids,
|
2018-09-21 16:28:46 +00:00
|
|
|
std::optional<int> fullCount,
|
|
|
|
std::optional<int> skippedBefore,
|
|
|
|
std::optional<int> skippedAfter);
|
2017-11-23 09:58:12 +00:00
|
|
|
|
|
|
|
void reverse();
|
2017-08-29 19:52:52 +00:00
|
|
|
|
|
|
|
const Key &key() const { return _key; }
|
|
|
|
|
2018-09-21 16:28:46 +00:00
|
|
|
std::optional<int> fullCount() const { return _fullCount; }
|
|
|
|
std::optional<int> skippedBefore() const { return _skippedBefore; }
|
|
|
|
std::optional<int> skippedAfter() const { return _skippedAfter; }
|
|
|
|
std::optional<int> indexOf(PhotoId msgId) const;
|
2017-08-29 19:52:52 +00:00
|
|
|
int size() const { return _ids.size(); }
|
|
|
|
PhotoId operator[](int index) const;
|
2018-09-21 16:28:46 +00:00
|
|
|
std::optional<int> distance(const Key &a, const Key &b) const;
|
2017-08-29 19:52:52 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Key _key;
|
|
|
|
std::deque<PhotoId> _ids;
|
2018-09-21 16:28:46 +00:00
|
|
|
std::optional<int> _fullCount;
|
|
|
|
std::optional<int> _skippedBefore;
|
|
|
|
std::optional<int> _skippedAfter;
|
2017-08-29 19:52:52 +00:00
|
|
|
|
2017-09-06 14:50:11 +00:00
|
|
|
friend class UserPhotosSliceBuilder;
|
2017-08-29 19:52:52 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2017-09-06 14:50:11 +00:00
|
|
|
rpl::producer<UserPhotosSlice> UserPhotosViewer(
|
2020-06-08 09:06:50 +00:00
|
|
|
not_null<Main::Session*> session,
|
2017-09-06 14:50:11 +00:00
|
|
|
UserPhotosSlice::Key key,
|
|
|
|
int limitBefore,
|
|
|
|
int limitAfter);
|
2017-11-23 09:58:12 +00:00
|
|
|
|
|
|
|
rpl::producer<UserPhotosSlice> UserPhotosReversedViewer(
|
2020-06-08 09:06:50 +00:00
|
|
|
not_null<Main::Session*> session,
|
2017-11-23 09:58:12 +00:00
|
|
|
UserPhotosSlice::Key key,
|
|
|
|
int limitBefore,
|
|
|
|
int limitAfter);
|