xapian-core  2.0.0
boolweight.cc
Go to the documentation of this file.
1 
4 /* Copyright (C) 2009,2011,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/weight.h"
24 
25 #include "xapian/error.h"
26 
27 using namespace std;
28 
29 namespace Xapian {
30 
31 BoolWeight *
32 BoolWeight::clone() const
33 {
34  return new BoolWeight;
35 }
36 
37 void
38 BoolWeight::init(double)
39 {
40  // Nothing to do here.
41 }
42 
43 string
45 {
46  return "bool";
47 }
48 
49 string
50 BoolWeight::serialise() const
51 {
52  // No parameters to serialise.
53  return string();
54 }
55 
56 BoolWeight *
57 BoolWeight::unserialise(const string& s) const
58 {
59  if (rare(!s.empty()))
60  throw Xapian::SerialisationError("Extra data in BoolWeight::unserialise()");
61  return new BoolWeight;
62 }
63 
64 double
65 BoolWeight::get_sumpart(Xapian::termcount, Xapian::termcount,
67 {
68  return 0;
69 }
70 
71 double
72 BoolWeight::get_maxpart() const
73 {
74  return 0;
75 }
76 
77 BoolWeight *
78 BoolWeight::create_from_parameters(const char * p) const
79 {
80  if (*p != '\0')
81  throw InvalidArgumentError("No parameters are required for BoolWeight");
82  return new Xapian::BoolWeight();
83 }
84 
85 }
char name[9]
Definition: dbcheck.cc:57
Class implementing a "boolean" weighting scheme.
Definition: weight.h:678
InvalidArgumentError indicates an invalid parameter value was passed to the API.
Definition: error.h:229
Indicates an error in the std::string serialisation of an object.
Definition: error.h:917
#define rare(COND)
Definition: config.h:607
PositionList * p
Hierarchy of classes which Xapian can throw as exceptions.
The Xapian namespace contains public interfaces for the Xapian library.
Definition: compactor.cc:82
unsigned XAPIAN_TERMCOUNT_BASE_TYPE termcount
A counts of terms.
Definition: types.h:64
Weighting scheme API.