89 lines
2.4 KiB
C++
89 lines
2.4 KiB
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
|
//
|
|
// 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/telegram/DialogFilter.h"
|
|
|
|
#include "td/utils/common.h"
|
|
#include "td/utils/tl_helpers.h"
|
|
|
|
namespace td {
|
|
|
|
template <class StorerT>
|
|
void DialogFilter::store(StorerT &storer) const {
|
|
using td::store;
|
|
bool has_pinned_dialog_ids = !pinned_dialog_ids_.empty();
|
|
bool has_included_dialog_ids = !included_dialog_ids_.empty();
|
|
bool has_excluded_dialog_ids = !excluded_dialog_ids_.empty();
|
|
BEGIN_STORE_FLAGS();
|
|
STORE_FLAG(exclude_muted_);
|
|
STORE_FLAG(exclude_read_);
|
|
STORE_FLAG(exclude_archived_);
|
|
STORE_FLAG(include_contacts_);
|
|
STORE_FLAG(include_non_contacts_);
|
|
STORE_FLAG(include_bots_);
|
|
STORE_FLAG(include_groups_);
|
|
STORE_FLAG(include_channels_);
|
|
STORE_FLAG(has_pinned_dialog_ids);
|
|
STORE_FLAG(has_included_dialog_ids);
|
|
STORE_FLAG(has_excluded_dialog_ids);
|
|
STORE_FLAG(is_shareable_);
|
|
STORE_FLAG(has_my_invites_);
|
|
END_STORE_FLAGS();
|
|
|
|
store(dialog_filter_id_, storer);
|
|
store(title_, storer);
|
|
store(emoji_, storer);
|
|
if (has_pinned_dialog_ids) {
|
|
store(pinned_dialog_ids_, storer);
|
|
}
|
|
if (has_included_dialog_ids) {
|
|
store(included_dialog_ids_, storer);
|
|
}
|
|
if (has_excluded_dialog_ids) {
|
|
store(excluded_dialog_ids_, storer);
|
|
}
|
|
}
|
|
|
|
template <class ParserT>
|
|
void DialogFilter::parse(ParserT &parser) {
|
|
using td::parse;
|
|
bool has_pinned_dialog_ids;
|
|
bool has_included_dialog_ids;
|
|
bool has_excluded_dialog_ids;
|
|
BEGIN_PARSE_FLAGS();
|
|
PARSE_FLAG(exclude_muted_);
|
|
PARSE_FLAG(exclude_read_);
|
|
PARSE_FLAG(exclude_archived_);
|
|
PARSE_FLAG(include_contacts_);
|
|
PARSE_FLAG(include_non_contacts_);
|
|
PARSE_FLAG(include_bots_);
|
|
PARSE_FLAG(include_groups_);
|
|
PARSE_FLAG(include_channels_);
|
|
PARSE_FLAG(has_pinned_dialog_ids);
|
|
PARSE_FLAG(has_included_dialog_ids);
|
|
PARSE_FLAG(has_excluded_dialog_ids);
|
|
PARSE_FLAG(is_shareable_);
|
|
PARSE_FLAG(has_my_invites_);
|
|
END_PARSE_FLAGS();
|
|
|
|
parse(dialog_filter_id_, parser);
|
|
parse(title_, parser);
|
|
parse(emoji_, parser);
|
|
if (has_pinned_dialog_ids) {
|
|
parse(pinned_dialog_ids_, parser);
|
|
}
|
|
if (has_included_dialog_ids) {
|
|
parse(included_dialog_ids_, parser);
|
|
}
|
|
if (has_excluded_dialog_ids) {
|
|
parse(excluded_dialog_ids_, parser);
|
|
}
|
|
}
|
|
|
|
} // namespace td
|