xapian-core  2.0.0
expanddecider.cc
Go to the documentation of this file.
1 
4 /* Copyright (C) 2007,2016 Olly Betts
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, see
18  * <https://www.gnu.org/licenses/>.
19  */
20 
21 #include <config.h>
22 
23 #include <xapian/expanddecider.h>
24 #include "stringutils.h"
25 
26 using namespace std;
27 
28 namespace Xapian {
29 
30 ExpandDecider::~ExpandDecider() { }
31 
32 bool
33 ExpandDeciderAnd::operator()(const string &term) const
34 {
35  return (*first)(term) && (*second)(term);
36 }
37 
38 bool
39 ExpandDeciderFilterTerms::operator()(const string &term) const
40 {
41  return rejects.find(term) == rejects.end();
42 }
43 
44 bool
45 ExpandDeciderFilterPrefix::operator()(const string &term) const
46 {
47  return startswith(term, prefix);
48 }
49 
50 }
string term
Allow rejection of terms during ESet generation.
The Xapian namespace contains public interfaces for the Xapian library.
Definition: compactor.cc:82
Various handy string-related helpers.
bool startswith(std::string_view s, char pfx)
Definition: stringutils.h:56