2016-04-09 18:45:55 +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.
|
2016-04-09 18:45:55 +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
|
2016-04-09 18:45:55 +00:00
|
|
|
*/
|
|
|
|
#include "dialogs/dialogs_indexed_list.h"
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
#include "main/main_session.h"
|
2018-01-04 19:54:35 +00:00
|
|
|
#include "data/data_session.h"
|
2018-01-13 12:45:11 +00:00
|
|
|
#include "history/history.h"
|
2018-01-04 19:54:35 +00:00
|
|
|
|
2016-04-09 18:45:55 +00:00
|
|
|
namespace Dialogs {
|
|
|
|
|
2020-03-17 13:04:30 +00:00
|
|
|
IndexedList::IndexedList(SortMode sortMode, FilterId filterId)
|
2016-04-09 18:45:55 +00:00
|
|
|
: _sortMode(sortMode)
|
2020-03-17 13:04:30 +00:00
|
|
|
, _filterId(filterId)
|
|
|
|
, _list(sortMode, filterId)
|
|
|
|
, _empty(sortMode, filterId) {
|
2016-04-09 18:45:55 +00:00
|
|
|
}
|
|
|
|
|
2018-01-04 17:15:04 +00:00
|
|
|
RowsByLetter IndexedList::addToEnd(Key key) {
|
2020-02-07 09:43:12 +00:00
|
|
|
if (const auto row = _list.getRow(key)) {
|
|
|
|
return { row };
|
|
|
|
}
|
|
|
|
|
|
|
|
auto result = RowsByLetter{ _list.addToEnd(key) };
|
|
|
|
for (const auto ch : key.entry()->chatListFirstLetters()) {
|
|
|
|
auto j = _index.find(ch);
|
|
|
|
if (j == _index.cend()) {
|
2020-03-17 13:04:30 +00:00
|
|
|
j = _index.emplace(ch, _sortMode, _filterId).first;
|
2016-04-09 18:45:55 +00:00
|
|
|
}
|
2020-02-07 09:43:12 +00:00
|
|
|
result.letters.emplace(ch, j->second.addToEnd(key));
|
2016-04-09 18:45:55 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-01-04 17:15:04 +00:00
|
|
|
Row *IndexedList::addByName(Key key) {
|
|
|
|
if (const auto row = _list.getRow(key)) {
|
2016-04-09 18:45:55 +00:00
|
|
|
return row;
|
|
|
|
}
|
|
|
|
|
2019-04-16 11:37:50 +00:00
|
|
|
const auto result = _list.addByName(key);
|
2019-01-15 11:57:45 +00:00
|
|
|
for (const auto ch : key.entry()->chatListFirstLetters()) {
|
2016-04-09 18:45:55 +00:00
|
|
|
auto j = _index.find(ch);
|
|
|
|
if (j == _index.cend()) {
|
2020-03-17 13:04:30 +00:00
|
|
|
j = _index.emplace(ch, _sortMode, _filterId).first;
|
2016-04-09 18:45:55 +00:00
|
|
|
}
|
2019-04-16 14:05:56 +00:00
|
|
|
j->second.addByName(key);
|
2016-04-09 18:45:55 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-04-16 11:37:50 +00:00
|
|
|
void IndexedList::adjustByDate(const RowsByLetter &links) {
|
2020-02-07 09:43:12 +00:00
|
|
|
_list.adjustByDate(links.main);
|
2021-03-13 08:26:58 +00:00
|
|
|
for (const auto &[ch, row] : links.letters) {
|
2020-02-07 09:43:12 +00:00
|
|
|
if (auto it = _index.find(ch); it != _index.cend()) {
|
|
|
|
it->second.adjustByDate(row);
|
2016-04-09 18:45:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 17:15:04 +00:00
|
|
|
void IndexedList::moveToTop(Key key) {
|
|
|
|
if (_list.moveToTop(key)) {
|
2019-01-15 11:57:45 +00:00
|
|
|
for (const auto ch : key.entry()->chatListFirstLetters()) {
|
2017-10-24 17:11:35 +00:00
|
|
|
if (auto it = _index.find(ch); it != _index.cend()) {
|
2019-04-16 14:05:56 +00:00
|
|
|
it->second.moveToTop(key);
|
2016-09-06 14:45:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-30 15:27:13 +00:00
|
|
|
void IndexedList::movePinned(Row *row, int deltaSign) {
|
|
|
|
auto swapPinnedIndexWith = find(row);
|
2017-08-17 09:06:26 +00:00
|
|
|
Assert(swapPinnedIndexWith != cend());
|
2017-01-30 15:27:13 +00:00
|
|
|
if (deltaSign > 0) {
|
|
|
|
++swapPinnedIndexWith;
|
|
|
|
} else {
|
2017-08-17 09:06:26 +00:00
|
|
|
Assert(swapPinnedIndexWith != cbegin());
|
2017-01-30 15:27:13 +00:00
|
|
|
--swapPinnedIndexWith;
|
|
|
|
}
|
2020-03-17 13:04:30 +00:00
|
|
|
row->key().entry()->owner().reorderTwoPinnedChats(
|
|
|
|
_filterId,
|
2018-01-04 19:54:35 +00:00
|
|
|
row->key(),
|
|
|
|
(*swapPinnedIndexWith)->key());
|
2017-01-30 15:27:13 +00:00
|
|
|
}
|
|
|
|
|
2018-01-04 17:15:04 +00:00
|
|
|
void IndexedList::peerNameChanged(
|
|
|
|
not_null<PeerData*> peer,
|
2018-01-22 09:33:09 +00:00
|
|
|
const base::flat_set<QChar> &oldLetters) {
|
2020-03-17 13:04:30 +00:00
|
|
|
Expects(_sortMode != SortMode::Date);
|
2018-01-04 17:15:04 +00:00
|
|
|
|
2019-01-18 12:27:37 +00:00
|
|
|
if (const auto history = peer->owner().historyLoaded(peer)) {
|
2018-01-04 17:15:04 +00:00
|
|
|
if (_sortMode == SortMode::Name) {
|
2018-01-22 09:33:09 +00:00
|
|
|
adjustByName(history, oldLetters);
|
2018-01-04 17:15:04 +00:00
|
|
|
} else {
|
2020-02-07 09:43:12 +00:00
|
|
|
adjustNames(FilterId(), history, oldLetters);
|
2018-01-04 17:15:04 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-09 18:45:55 +00:00
|
|
|
|
2018-01-04 17:15:04 +00:00
|
|
|
void IndexedList::peerNameChanged(
|
2020-02-07 09:43:12 +00:00
|
|
|
FilterId filterId,
|
2018-01-04 17:15:04 +00:00
|
|
|
not_null<PeerData*> peer,
|
2018-01-22 09:33:09 +00:00
|
|
|
const base::flat_set<QChar> &oldLetters) {
|
2020-03-17 13:04:30 +00:00
|
|
|
Expects(_sortMode == SortMode::Date);
|
2018-01-04 17:15:04 +00:00
|
|
|
|
2019-01-18 12:27:37 +00:00
|
|
|
if (const auto history = peer->owner().historyLoaded(peer)) {
|
2020-02-07 09:43:12 +00:00
|
|
|
adjustNames(filterId, history, oldLetters);
|
2018-01-04 17:15:04 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2016-04-09 18:45:55 +00:00
|
|
|
|
2018-01-04 09:40:58 +00:00
|
|
|
void IndexedList::adjustByName(
|
2018-01-04 17:15:04 +00:00
|
|
|
Key key,
|
2018-01-22 09:33:09 +00:00
|
|
|
const base::flat_set<QChar> &oldLetters) {
|
2019-04-16 11:37:50 +00:00
|
|
|
Expects(_sortMode == SortMode::Name);
|
|
|
|
|
2018-01-04 17:15:04 +00:00
|
|
|
const auto mainRow = _list.adjustByName(key);
|
2016-04-11 10:59:01 +00:00
|
|
|
if (!mainRow) return;
|
2016-04-09 18:45:55 +00:00
|
|
|
|
2018-01-22 09:33:09 +00:00
|
|
|
auto toRemove = oldLetters;
|
|
|
|
auto toAdd = base::flat_set<QChar>();
|
2019-01-15 11:57:45 +00:00
|
|
|
for (const auto ch : key.entry()->chatListFirstLetters()) {
|
2016-04-11 10:59:01 +00:00
|
|
|
auto j = toRemove.find(ch);
|
|
|
|
if (j == toRemove.cend()) {
|
|
|
|
toAdd.insert(ch);
|
|
|
|
} else {
|
|
|
|
toRemove.erase(j);
|
2017-10-24 17:11:35 +00:00
|
|
|
if (auto it = _index.find(ch); it != _index.cend()) {
|
2019-04-16 14:05:56 +00:00
|
|
|
it->second.adjustByName(key);
|
2016-04-09 18:45:55 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2017-10-24 17:11:35 +00:00
|
|
|
for (auto ch : toRemove) {
|
|
|
|
if (auto it = _index.find(ch); it != _index.cend()) {
|
2019-04-16 14:05:56 +00:00
|
|
|
it->second.del(key, mainRow);
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
|
|
|
}
|
2017-10-24 17:11:35 +00:00
|
|
|
if (!toAdd.empty()) {
|
|
|
|
for (auto ch : toAdd) {
|
2016-04-09 18:45:55 +00:00
|
|
|
auto j = _index.find(ch);
|
|
|
|
if (j == _index.cend()) {
|
2020-03-17 13:04:30 +00:00
|
|
|
j = _index.emplace(ch, _sortMode, _filterId).first;
|
2016-04-09 18:45:55 +00:00
|
|
|
}
|
2019-04-16 14:05:56 +00:00
|
|
|
j->second.addByName(key);
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 17:15:04 +00:00
|
|
|
void IndexedList::adjustNames(
|
2020-02-07 09:43:12 +00:00
|
|
|
FilterId filterId,
|
2018-01-05 15:57:18 +00:00
|
|
|
not_null<History*> history,
|
2018-01-22 09:33:09 +00:00
|
|
|
const base::flat_set<QChar> &oldLetters) {
|
2018-01-05 15:57:18 +00:00
|
|
|
const auto key = Dialogs::Key(history);
|
2018-01-04 17:15:04 +00:00
|
|
|
auto mainRow = _list.getRow(key);
|
2016-04-11 10:59:01 +00:00
|
|
|
if (!mainRow) return;
|
|
|
|
|
2018-01-22 09:33:09 +00:00
|
|
|
auto toRemove = oldLetters;
|
|
|
|
auto toAdd = base::flat_set<QChar>();
|
2019-01-15 11:57:45 +00:00
|
|
|
for (const auto ch : key.entry()->chatListFirstLetters()) {
|
2016-04-11 10:59:01 +00:00
|
|
|
auto j = toRemove.find(ch);
|
|
|
|
if (j == toRemove.cend()) {
|
|
|
|
toAdd.insert(ch);
|
|
|
|
} else {
|
|
|
|
toRemove.erase(j);
|
|
|
|
}
|
|
|
|
}
|
2017-10-24 17:11:35 +00:00
|
|
|
for (auto ch : toRemove) {
|
2020-03-17 13:04:30 +00:00
|
|
|
if (_sortMode == SortMode::Date) {
|
2020-02-07 09:43:12 +00:00
|
|
|
history->removeChatListEntryByLetter(filterId, ch);
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2017-10-24 17:11:35 +00:00
|
|
|
if (auto it = _index.find(ch); it != _index.cend()) {
|
2019-04-16 14:05:56 +00:00
|
|
|
it->second.del(key, mainRow);
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
|
|
|
}
|
2017-10-24 17:11:35 +00:00
|
|
|
for (auto ch : toAdd) {
|
2016-04-11 10:59:01 +00:00
|
|
|
auto j = _index.find(ch);
|
|
|
|
if (j == _index.cend()) {
|
2020-03-17 13:04:30 +00:00
|
|
|
j = _index.emplace(ch, _sortMode, _filterId).first;
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2019-04-16 14:05:56 +00:00
|
|
|
auto row = j->second.addToEnd(key);
|
2020-03-17 13:04:30 +00:00
|
|
|
if (_sortMode == SortMode::Date) {
|
2020-02-07 09:43:12 +00:00
|
|
|
history->addChatListEntryByLetter(filterId, ch, row);
|
2016-04-09 18:45:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 17:15:04 +00:00
|
|
|
void IndexedList::del(Key key, Row *replacedBy) {
|
|
|
|
if (_list.del(key, replacedBy)) {
|
2019-01-15 11:57:45 +00:00
|
|
|
for (const auto ch : key.entry()->chatListFirstLetters()) {
|
2017-10-24 17:11:35 +00:00
|
|
|
if (auto it = _index.find(ch); it != _index.cend()) {
|
2019-04-16 14:05:56 +00:00
|
|
|
it->second.del(key, replacedBy);
|
2016-04-09 18:45:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void IndexedList::clear() {
|
2017-10-24 17:11:35 +00:00
|
|
|
_index.clear();
|
2016-04-09 18:45:55 +00:00
|
|
|
}
|
|
|
|
|
2019-04-22 18:18:57 +00:00
|
|
|
std::vector<not_null<Row*>> IndexedList::filtered(
|
|
|
|
const QStringList &words) const {
|
|
|
|
const auto minimal = [&]() -> const Dialogs::List* {
|
|
|
|
if (empty()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
auto result = (const Dialogs::List*)nullptr;
|
|
|
|
for (const auto &word : words) {
|
|
|
|
if (word.isEmpty()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const auto found = filtered(word[0]);
|
|
|
|
if (!found || found->empty()) {
|
|
|
|
return nullptr;
|
|
|
|
} else if (!result || result->size() > found->size()) {
|
|
|
|
result = found;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}();
|
|
|
|
auto result = std::vector<not_null<Row*>>();
|
|
|
|
if (!minimal || minimal->empty()) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
result.reserve(minimal->size());
|
|
|
|
for (const auto row : *minimal) {
|
|
|
|
const auto &nameWords = row->entry()->chatListNameWords();
|
|
|
|
const auto found = [&](const QString &word) {
|
|
|
|
for (const auto &name : nameWords) {
|
|
|
|
if (name.startsWith(word)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
const auto allFound = [&] {
|
|
|
|
for (const auto &word : words) {
|
|
|
|
if (!found(word)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}();
|
|
|
|
if (allFound) {
|
|
|
|
result.push_back(row);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-04-09 18:45:55 +00:00
|
|
|
} // namespace Dialogs
|