+ add the --verbose|-v option to kiwix-index

This commit is contained in:
kelson42 2010-07-15 19:11:43 +00:00
parent 5891b91433
commit c9a81bf79b
2 changed files with 6 additions and 4 deletions

View File

@ -28,7 +28,7 @@ namespace kiwix {
this->writableDatabase = new Xapian::WritableDatabase(xapianDirectoryPath,
Xapian::DB_CREATE_OR_OVERWRITE);
/* Stemming *
/* Stemming */
/*
stemmer = Xapian::Stem("french");
indexer.set_stemmer(stemmer);
@ -69,7 +69,7 @@ namespace kiwix {
}
/* Index next percent */
bool Indexer::indexNextPercent() {
bool Indexer::indexNextPercent(const bool &verbose) {
float thresholdOffset = this->currentArticleOffset + this->stepSize;
size_t found;
@ -119,7 +119,9 @@ namespace kiwix {
indexer.set_document(currentDocument);
/* Debug output */
if (verbose) {
std::cout << "Indexing " << currentArticle.getLongUrl() << "..." << std::endl;
}
/* Index the title */
if (!this->htmlParser.title.empty()) {

View File

@ -23,7 +23,7 @@ namespace kiwix {
Indexer(const string &zimFilePath, const string &xapianDirectoryPath);
~Indexer();
bool indexNextPercent();
bool indexNextPercent(const bool &verbose = false);
protected:
void prepareIndexing();