xapian-core  2.0.0
coordweight.cc
Go to the documentation of this file.
1 
4 /* Copyright (C) 2004,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 CoordWeight *
32 CoordWeight::clone() const
33 {
34  return new CoordWeight;
35 }
36 
37 void
38 CoordWeight::init(double factor_)
39 {
40  factor = factor_;
41 }
42 
43 string
45 {
46  return "coord";
47 }
48 
49 string
50 CoordWeight::serialise() const
51 {
52  // No parameters to serialise.
53  return string();
54 }
55 
57 CoordWeight::unserialise(const string& s) const
58 {
59  if (rare(!s.empty()))
60  throw Xapian::SerialisationError("Extra data in CoordWeight::unserialise()");
61  return new CoordWeight;
62 }
63 
64 double
65 CoordWeight::get_sumpart(Xapian::termcount, Xapian::termcount,
67 {
68  return factor;
69 }
70 
71 double
72 CoordWeight::get_maxpart() const
73 {
74  return factor;
75 }
76 
78 CoordWeight::create_from_parameters(const char * p) const
79 {
80  if (*p != '\0')
81  throw InvalidArgumentError("No parameters are required for CoordWeight");
82  return new Xapian::CoordWeight();
83 }
84 
85 }
char name[9]
Definition: dbcheck.cc:57
Xapian::Weight subclass implementing Coordinate Matching.
Definition: weight.h:2163
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.