00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef XAPIAN_HGUARD_INDEX_UTILS_H
00021 #define XAPIAN_HGUARD_INDEX_UTILS_H
00022
00023 #include <fstream>
00024 #include <string>
00025 #include <vector>
00026
00027 #include <xapian.h>
00028
00029 std::string munge_term(const std::string &term);
00030
00031 class FileIndexer {
00032 std::string datadir;
00033 std::vector<std::string>::const_iterator file, end;
00034 std::ifstream input;
00035
00036 void next_file();
00037
00038 public:
00039 FileIndexer(const std::string & datadir_,
00040 const std::vector<std::string> & files)
00041 : datadir(datadir_), file(files.begin()), end(files.end())
00042 {
00043 next_file();
00044 }
00045
00046 operator bool() {
00047 return !(file == end && (!input.is_open() || input.eof()));
00048 }
00049
00050 Xapian::Document next();
00051 };
00052
00053 #endif