1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
|
/* This file is part of Strigi Desktop Search
*
* Copyright (C) 2007 Jos van den Oever <jos@vandenoever.info>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <strigi/diranalyzer.h>
#include <strigi/indexwriter.h>
#include <strigi/indexmanager.h>
#include <strigi/indexreader.h>
#include <strigi/filelister.h>
#include <strigi/analysisresult.h>
#include <strigi/analyzerconfiguration.h>
#include <strigi/strigi_thread.h>
#include <strigi/fileinputstream.h>
#include <map>
#include <iostream>
#include <sys/stat.h>
using namespace Strigi;
using namespace std;
// MSVC doesn't define them
#ifdef _MSC_VER
# define _IFMT 0170000 // type of file
# define _IFDIR 0040000 // directory
# define _IFREG 0100000 // regular
# define S_ISDIR(m) (((m)&_IFMT) == _IFDIR)
# define S_ISREG(m) (((m)&_IFMT) == _IFREG)
#endif
class DirAnalyzer::Private {
public:
DirLister dirlister;
IndexManager& manager;
AnalyzerConfiguration& config;
StreamAnalyzer analyzer;
AnalysisCaller* caller;
Private(IndexManager& m, AnalyzerConfiguration& c)
:dirlister(&c), manager(m), config(c), analyzer(c) {
analyzer.setIndexWriter(*manager.indexWriter());
}
~Private() {
}
int analyzeDir(const string& dir, int nthreads, AnalysisCaller* caller,
const string& lastToSkip);
int updateDirs(const vector<string>& dir, int nthreads,
AnalysisCaller* caller);
void analyze(StreamAnalyzer*);
void update(StreamAnalyzer*);
int analyzeFile(const string& path, time_t mtime, bool realfile);
};
struct DA {
StreamAnalyzer* streamanalyzer;
DirAnalyzer::Private* diranalyzer;
};
extern "C" // Linkage for functions passed to pthread_create matters
{
void*
analyzeInThread(void* d) {
DA* a = static_cast<DA*>(d);
a->diranalyzer->analyze(a->streamanalyzer);
delete a;
STRIGI_THREAD_EXIT(0);
return 0; // Return bogus value
}
void*
updateInThread(void* d) {
DA* a = static_cast<DA*>(d);
a->diranalyzer->update(a->streamanalyzer);
delete a;
STRIGI_THREAD_EXIT(0);
return 0; // Return bogus value
}
}
DirAnalyzer::DirAnalyzer(IndexManager& manager, AnalyzerConfiguration& conf)
:p(new Private(manager, conf)) {
}
DirAnalyzer::~DirAnalyzer() {
delete p;
}
int
DirAnalyzer::Private::analyzeFile(const string& path, time_t mtime,
bool realfile) {
AnalysisResult analysisresult(path, mtime, *manager.indexWriter(),
analyzer, "");
if (realfile) {
InputStream* file = FileInputStream::open(path.c_str());
int r = analysisresult.index(file);
delete file;
return r;
} else {
return analysisresult.index(0);
}
}
void
DirAnalyzer::Private::analyze(StreamAnalyzer* analyzer) {
IndexWriter& indexWriter = *manager.indexWriter();
try {
string parentpath;
vector<pair<string, struct stat> > dirfiles;
int r = dirlister.nextDir(parentpath, dirfiles);
while (r == 0 && (caller == 0 || caller->continueAnalysis())) {
vector<pair<string, struct stat> >::const_iterator end
= dirfiles.end();
for (vector<pair<string, struct stat> >::const_iterator i
= dirfiles.begin(); i != end; ++i) {
const string& filepath(i->first);
struct stat s = i->second;
AnalysisResult analysisresult(filepath, s.st_mtime,
indexWriter, *analyzer, parentpath);
if (S_ISREG(s.st_mode)) {
InputStream* file = FileInputStream::open(filepath.c_str());
analysisresult.index(file);
delete file;
} else {
analysisresult.index(0);
}
if (!config.indexMore()) return;
}
r = dirlister.nextDir(parentpath, dirfiles);
}
} catch(...) {
fprintf(stderr, "Unknown error\n");
}
}
void
DirAnalyzer::Private::update(StreamAnalyzer* analyzer) {
IndexReader* reader = manager.indexReader();
vector<pair<string, struct stat> > dirfiles;
map<string, time_t> dbdirfiles;
vector<string> toDelete;
vector<pair<string, struct stat> > toIndex;
try {
string path;
// loop over all files that exist in the index
int r = dirlister.nextDir(path, dirfiles);
while (r >= 0 && (caller == 0 || caller->continueAnalysis())) {
if (r < 0) {
continue;
}
// get the files that are in the current database
reader->getChildren(path, dbdirfiles);
// get all files in this directory
vector<pair<string, struct stat> >::const_iterator end
= dirfiles.end();
map<string, time_t>::const_iterator dbend = dbdirfiles.end();
for (vector<pair<string, struct stat> >::const_iterator i
= dirfiles.begin(); i != end; ++i) {
const string& filepath(i->first);
time_t mtime = i->second.st_mtime;
// check if this file is new or not
map<string, time_t>::iterator j = dbdirfiles.find(filepath);
bool newfile = j == dbend;
bool updatedfile = !newfile && j->second != mtime;
if (newfile || (updatedfile && !S_ISDIR(i->second.st_mode))) {
// if the file has not yet been indexed or if the mtime has
// changed, index it
// if a directory has been updated, this will not change the index
// so the entry is not removed from the index, nor reindexed
toIndex.push_back(make_pair(filepath, i->second));
} else {
// files left in dbdirfiles after this loop will be deleted from the
// index. because this file has not changed, it should not be
// removed from the index
dbdirfiles.erase(j);
}
}
// all the files left in dbdirfiles, are not in the current
// directory and should be deleted
for (map<string, time_t>::const_iterator i = dbdirfiles.begin();
i != dbend; ++i) {
toDelete.push_back(i->first);
}
if (toDelete.size() > 0) {
manager.indexWriter()->deleteEntries(toDelete);
}
vector<pair<string, struct stat> >::const_iterator fend
= toIndex.end();
for (vector<pair<string, struct stat> >::const_iterator i
= toIndex.begin(); i != fend; ++i) {
AnalysisResult analysisresult(i->first, i->second.st_mtime,
*manager.indexWriter(), *analyzer, path);
if (S_ISREG(i->second.st_mode)) {
InputStream* file = FileInputStream::open(i->first.c_str());
analysisresult.index(file);
delete file;
} else {
analysisresult.index(0);
}
}
toDelete.clear();
toIndex.clear();
r = dirlister.nextDir(path, dirfiles);
}
} catch(...) {
fprintf(stderr, "Unknown error\n");
}
}
int
DirAnalyzer::analyzeDir(const string& dir, int nthreads, AnalysisCaller* c,
const string& lastToSkip) {
return p->analyzeDir(dir, nthreads, c, lastToSkip);
}
namespace {
string
removeTrailingSlash(const string& path) {
string cleanpath(path);
if (path.length() && path[path.length()-1] == '/') {
cleanpath.resize(path.length()-1);
}
return cleanpath;
}
}
int
DirAnalyzer::Private::analyzeDir(const string& dir, int nthreads,
AnalysisCaller* c, const string& lastToSkip) {
caller = c;
// check if the path exists and if it is a file or a directory
struct stat s;
const string path(removeTrailingSlash(dir));
int retval;
if (path.size() == 0) {
// special case for analyzing the root directory '/' on unix
retval = stat("/", &s);
} else {
retval = stat(path.c_str(), &s);
}
time_t mtime = (retval == -1) ?0 :s.st_mtime;
bool isfile = (retval == -1) ?false :S_ISREG(s.st_mode);
bool isdir = (retval == -1) ?false :S_ISDIR(s.st_mode);
retval = analyzeFile(path, mtime, isfile);
// if the path does not point to a directory, return
if (!isdir) {
manager.indexWriter()->commit();
return retval;
}
dirlister.startListing(path);
if (lastToSkip.length()) {
dirlister.skipTillAfter(lastToSkip);
}
if (nthreads < 1) nthreads = 1;
vector<StreamAnalyzer*> analyzers(nthreads);
analyzers[0] = &analyzer;
for (int i=1; i<nthreads; ++i) {
analyzers[i] = new StreamAnalyzer(config);
analyzers[i]->setIndexWriter(*manager.indexWriter());
}
vector<STRIGI_THREAD_TYPE> threads;
threads.resize(nthreads-1);
for (int i=1; i<nthreads; i++) {
DA* da = new DA();
da->diranalyzer = this;
da->streamanalyzer = analyzers[i];
STRIGI_THREAD_CREATE(&threads[i-1], analyzeInThread, da);
}
analyze(analyzers[0]);
for (int i=1; i<nthreads; i++) {
STRIGI_THREAD_JOIN(threads[i-1]);
delete analyzers[i];
}
manager.indexWriter()->commit();
return 0;
}
int
DirAnalyzer::updateDir(const string& dir, int nthreads, AnalysisCaller* caller){
vector<string> dirs;
dirs.push_back(dir);
return p->updateDirs(dirs, nthreads, caller);
}
int
DirAnalyzer::Private::updateDirs(const vector<string>& dirs, int nthreads,
AnalysisCaller* c) {
IndexReader* reader = manager.indexReader();
if (reader == 0) return -1;
caller = c;
// create the streamanalyzers
if (nthreads < 1) nthreads = 1;
vector<StreamAnalyzer*> analyzers(nthreads);
analyzers[0] = &analyzer;
for (int i=1; i<nthreads; ++i) {
analyzers[i] = new StreamAnalyzer(config);
analyzers[i]->setIndexWriter(*manager.indexWriter());
}
vector<STRIGI_THREAD_TYPE> threads;
threads.resize(nthreads-1);
// loop over all directories that should be updated
for (vector<string>::const_iterator d =dirs.begin(); d != dirs.end(); ++d) {
dirlister.startListing(removeTrailingSlash(*d));
for (int i=1; i<nthreads; i++) {
DA* da = new DA();
da->diranalyzer = this;
da->streamanalyzer = analyzers[i];
STRIGI_THREAD_CREATE(&threads[i-1], updateInThread, da);
}
update(analyzers[0]);
// wait until all threads have finished
for (int i=1; i<nthreads; i++) {
STRIGI_THREAD_JOIN(threads[i-1]);
}
dirlister.stopListing();
}
// clean up the analyzers
for (int i=1; i<nthreads; i++) {
delete analyzers[i];
}
// remove the files that were not encountered from the index
/* vector<string> todelete(1);
map<string,time_t>::iterator it = dbfiles.begin();
while (it != dbfiles.end()) {
todelete[0].assign(it->first);
manager.indexWriter()->deleteEntries(todelete);
++it;
}
dbfiles.clear();*/
manager.indexWriter()->commit();
return 0;
}
int
DirAnalyzer::updateDirs(const vector<string>& dirs, int nthreads,
AnalysisCaller* caller) {
return p->updateDirs(dirs, nthreads, caller);
}
|