Files
mu4e/lib/mu-query-match-deciders.hh
Dirk-Jan C. Binnema 1b42ad6099 mu-query: cleanups
Cleanup the query running and handling the results.

- in threading, use stable_sort
- remove dead code
- fix indentation in a few places
- don't need Option in various run_... in mu-query.cc
2026-08-20 15:05:31 -07:00

77 lines
2.4 KiB
C++

/*
** Copyright (C) 2021-2026 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
**
** This program is free software; you can redistribute it and/or modify it
** under the terms of the GNU General Public License as published by the
** Free Software Foundation; either version 3, or (at your option) any
** later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software Foundation,
** Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**
*/
#ifndef MU_QUERY_MATCH_DECIDERS_HH__
#define MU_QUERY_MATCH_DECIDERS_HH__
#include <unordered_set>
#include <unordered_map>
#include <memory>
#include "mu-xapian-db.hh"
#include "mu-query-results.hh"
namespace Mu {
using StringSet = std::unordered_set<std::string>;
struct DeciderInfo {
QueryMatches matches;
StringSet thread_ids;
StringSet message_ids;
};
/**
* Make a "leader" decider, that is, a MatchDecider for either a singular or the
* first query in the leader/related pair of queries. Gather information for
* threading, and the subsequent "related" query.
*
* @param qflags query flags
* @param match_info receives information about the matches.
*
* @return a unique_ptr to a match decider.
*/
std::unique_ptr<Xapian::MatchDecider> make_leader_decider(QueryFlags qflags, DeciderInfo& info);
/**
* Make a "related" decider, that is, a MatchDecider for the second query
* in the leader/related pair of queries.
*
* @param qflags query flags
* @param match_info receives information about the matches.
*
* @return a unique_ptr to a match decider.
*/
std::unique_ptr<Xapian::MatchDecider> make_related_decider(QueryFlags qflags, DeciderInfo& info);
/**
* Make a "thread" decider, that is, a MatchDecider that removes all but the
* documents found during the initial/related searches (i.e., those that
* received a thread-path during threading).
*
* @param matches the matches found during the initial/related searches
*
* @return a unique_ptr to a match decider.
*/
std::unique_ptr<Xapian::MatchDecider> make_thread_decider(const QueryMatches& matches);
} // namespace Mu
#endif /* MU_QUERY_MATCH_DECIDERS_HH__ */