00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef OM_HGUARD_QUARTZ_VALUES_H
00024 #define OM_HGUARD_QUARTZ_VALUES_H
00025
00026 #include <map>
00027 #include <string>
00028
00029 #include <xapian/types.h>
00030 #include <xapian/valueiterator.h>
00031 #include "btree.h"
00032
00033 using namespace std;
00034
00035 class QuartzValueTable : public Btree {
00036 private:
00040 static void unpack_entry(const char ** pos,
00041 const char * end,
00042 Xapian::valueno * this_value_no,
00043 string & this_value);
00044
00045 public:
00060 QuartzValueTable(string path_, bool readonly_)
00061 : Btree(path_ + "/value_", readonly_) { }
00062
00065 void encode_values(string & s,
00066 Xapian::ValueIterator it,
00067 const Xapian::ValueIterator & end);
00068
00070 void set_encoded_values(Xapian::docid did, const string & enc);
00071
00076 void get_value(string & value, Xapian::docid did,
00077 Xapian::valueno valueno) const;
00078
00085 void get_all_values(map<Xapian::valueno, string> & values,
00086 Xapian::docid did) const;
00087
00093 void delete_all_values(Xapian::docid did);
00094 };
00095
00096 #endif