/* 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 #include "base/weak_ptr.h" #include "base/timer.h" class History; class HistoryService; namespace Data { class Histories; struct MessagePosition; struct MessagesSlice; struct MessageUpdate; class RepliesList final : public base::has_weak_ptr { public: RepliesList(not_null history, MsgId rootId); ~RepliesList(); [[nodiscard]] rpl::producer source( MessagePosition aroundId, int limitBefore, int limitAfter); [[nodiscard]] rpl::producer fullCount() const; [[nodiscard]] bool unreadCountKnown() const; [[nodiscard]] int unreadCountCurrent() const; [[nodiscard]] int displayedUnreadCount() const; [[nodiscard]] rpl::producer> unreadCountValue() const; void setInboxReadTill(MsgId readTillId, std::optional unreadCount); [[nodiscard]] MsgId inboxReadTillId() const; [[nodiscard]] MsgId computeInboxReadTillFull() const; void setOutboxReadTill(MsgId readTillId); [[nodiscard]] MsgId computeOutboxReadTillFull() const; [[nodiscard]] bool isServerSideUnread( not_null item) const; [[nodiscard]] std::optional computeUnreadCountLocally( MsgId afterId) const; void requestUnreadCount(); void readTill(not_null item); void readTill(MsgId tillId); [[nodiscard]] rpl::lifetime &lifetime() { return _lifetime; } private: struct Viewer; HistoryItem *lookupRoot(); [[nodiscard]] Histories &histories(); [[nodiscard]] rpl::producer sourceFromServer( MessagePosition aroundId, int limitBefore, int limitAfter); void appendClientSideMessages(MessagesSlice &slice); [[nodiscard]] bool buildFromData(not_null viewer); [[nodiscard]] bool applyItemDestroyed( not_null viewer, not_null item); [[nodiscard]] bool applyUpdate(const MessageUpdate &update); [[nodiscard]] bool applyDifferenceTooLong( not_null channel); void injectRootMessageAndReverse(not_null viewer); void injectRootMessage(not_null viewer); void injectRootDivider( not_null root, not_null slice); bool processMessagesIsEmpty(const MTPmessages_Messages &result); void loadAround(MsgId id); void loadBefore(); void loadAfter(); void changeUnreadCountByPost(MsgId id, int delta); void setUnreadCount(std::optional count); void readTill(MsgId tillId, HistoryItem *tillIdItem); void checkReadTillEnd(); void sendReadTillRequest(); void reloadUnreadCountIfNeeded(); const not_null _history; const MsgId _rootId = 0; const bool _creating = false; std::vector _list; std::optional _skippedBefore; std::optional _skippedAfter; rpl::variable> _fullCount; rpl::event_stream<> _listChanges; std::optional _loadingAround; rpl::variable> _unreadCount; MsgId _inboxReadTillId = 0; MsgId _outboxReadTillId = 0; HistoryService *_divider = nullptr; bool _dividerWithComments = false; int _beforeId = 0; int _afterId = 0; base::Timer _readRequestTimer; mtpRequestId _readRequestId = 0; mtpRequestId _reloadUnreadCountRequestId = 0; rpl::lifetime _lifetime; }; } // namespace Data