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_FLINT_VALUES_H
00024 #define OM_HGUARD_FLINT_VALUES_H
00025
00026 #include <map>
00027 #include <string>
00028
00029 #include <xapian/types.h>
00030 #include <xapian/valueiterator.h>
00031 #include "flint_table.h"
00032
00033 using namespace std;
00034
00035 class FlintValueTable : public FlintTable {
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:
00058 FlintValueTable(string path_, bool readonly_)
00059 : FlintTable(path_ + "/value.", readonly_, DONT_COMPRESS, true) { }
00060
00063 void encode_values(string & s,
00064 Xapian::ValueIterator it,
00065 const Xapian::ValueIterator & end);
00066
00068 void set_encoded_values(Xapian::docid did, const string & enc);
00069
00074 void get_value(string & value, Xapian::docid did,
00075 Xapian::valueno valueno) const;
00076
00083 void get_all_values(map<Xapian::valueno, string> & values,
00084 Xapian::docid did) const;
00085
00091 void delete_all_values(Xapian::docid did);
00092 };
00093
00094 #endif