3
0
Fork 0

+ kiwix-serve is now able to read *many* library xml files

small_fixes
kelson42 14 years ago
parent db62ff440a
commit 1a2deeac46

@ -58,6 +58,7 @@ typedef int off_t;
#include <kiwix/xapianSearcher.h>
#include <pathTools.h>
#include <regexTools.h>
#include <splitString.h>
using namespace std;
@ -452,12 +453,21 @@ int main(int argc, char **argv) {
/* Setup the library manager and get the list of books */
if (libraryFlag) {
vector<string> libraryPaths = split(libraryPath, ":");
vector<string>::iterator itr;
for ( itr = libraryPaths.begin(); itr != libraryPaths.end(); ++itr ) {
bool retVal = false;
try {
libraryManager.readFile(libraryPath, true);
retVal = libraryManager.readFile(*itr, true);
} catch (...) {
cerr << "Unable to open the XML library file '" << libraryPath << "'." << endl;
retVal = false;
}
if (!retVal) {
cerr << "Unable to open the XML library file '" << *itr << "'." << endl;
exit(1);
}
}
/* Check if the library is not empty (or only remote books)*/
if (libraryManager.getBookCount(true, false)==0) {

Loading…
Cancel
Save