00001
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include <config.h>
00022
00023 #include <string>
00024 #include "stringutils.h"
00025
00026 using namespace std;
00027
00028 #define XAPIAN_NO_V102_NUMBER_VRP
00029
00030 #include <xapian/base.h>
00031 #include <xapian/queryparser.h>
00032 #include <xapian/types.h>
00033 #include <xapian/visibility.h>
00034
00035 #include <string>
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048 namespace Xapian {
00049
00050 class XAPIAN_VISIBILITY_DEFAULT NumberValueRangeProcessor : public ValueRangeProcessor {
00051 Xapian::valueno valno;
00052 bool prefix;
00053 std::string str;
00054
00055 public:
00056 NumberValueRangeProcessor(Xapian::valueno valno_)
00057 : valno(valno_), prefix(false) { }
00058
00059 NumberValueRangeProcessor(Xapian::valueno valno_, const std::string &str_,
00060 bool prefix_ = true)
00061 : valno(valno_), prefix(prefix_), str(str_) { }
00062
00063 Xapian::valueno operator()(std::string &begin, std::string &end);
00064 };
00065
00066 }
00067
00068 Xapian::valueno
00069 Xapian::NumberValueRangeProcessor::operator()(string &begin, string &end)
00070 {
00071 size_t b_b = 0, e_b = 0;
00072 size_t b_e = string::npos, e_e = string::npos;
00073
00074 if (str.size()) {
00075 if (prefix) {
00076
00077 if (!startswith(begin, str)) {
00078
00079 return Xapian::BAD_VALUENO;
00080 }
00081 b_b = str.size();
00082
00083 if (startswith(end, str)) {
00084 e_b = str.size();
00085 }
00086 } else {
00087
00088 if (!endswith(end, str)) {
00089
00090 return Xapian::BAD_VALUENO;
00091 }
00092 e_e = end.size() - str.size();
00093
00094 if (endswith(begin, str)) {
00095 b_e = begin.size() - str.size();
00096 }
00097 }
00098 }
00099
00100 if (begin.find_first_not_of("0123456789", b_b) != b_e)
00101
00102 return Xapian::BAD_VALUENO;
00103
00104 if (end.find_first_not_of("0123456789", e_b) != e_e)
00105
00106 return Xapian::BAD_VALUENO;
00107
00108
00109 if (b_b)
00110 begin.erase(0, b_b);
00111 else if (b_e != string::npos)
00112 begin.resize(b_e);
00113
00114
00115 if (e_b)
00116 end.erase(0, e_b);
00117 else if (e_e != string::npos)
00118 end.resize(e_e);
00119
00120 return valno;
00121 }