mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
143 lines
2.8 KiB
C++
143 lines
2.8 KiB
C++
|
|
#ifndef KHC_SEARCHENGINE_H
|
|
#define KHC_SEARCHENGINE_H
|
|
|
|
#include <QObject>
|
|
|
|
#include <KProcess>
|
|
#include <kio/job.h>
|
|
|
|
#include "docentrytraverser.h"
|
|
|
|
namespace KHC {
|
|
|
|
class Formatter;
|
|
class SearchEngine;
|
|
class View;
|
|
class SearchHandler;
|
|
|
|
class SearchTraverser : public QObject, public DocEntryTraverser
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SearchTraverser( SearchEngine *engine, int level );
|
|
~SearchTraverser();
|
|
|
|
void process( DocEntry * );
|
|
|
|
void startProcess( DocEntry * );
|
|
|
|
DocEntryTraverser *createChild( DocEntry * );
|
|
|
|
DocEntryTraverser *parentTraverser();
|
|
|
|
void deleteTraverser();
|
|
|
|
void finishTraversal();
|
|
|
|
protected:
|
|
void connectHandler( SearchHandler *handler );
|
|
void disconnectHandler( SearchHandler *handler );
|
|
|
|
protected Q_SLOTS:
|
|
void showSearchResult( SearchHandler *, DocEntry *, const QString &result );
|
|
void showSearchError( SearchHandler *, DocEntry *, const QString &error );
|
|
|
|
private:
|
|
const int mMaxLevel;
|
|
|
|
SearchEngine *mEngine;
|
|
int mLevel;
|
|
|
|
DocEntry *mEntry;
|
|
QString mJobData;
|
|
|
|
QString mResult;
|
|
|
|
QMap<SearchHandler *, int> mConnectCount;
|
|
};
|
|
|
|
|
|
class SearchEngine : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum Operation { And, Or };
|
|
|
|
SearchEngine( View * );
|
|
~SearchEngine();
|
|
|
|
bool initSearchHandlers();
|
|
|
|
bool search( const QString & words, const QString & method = "and", int matches = 5,
|
|
const QString & scope = "" );
|
|
|
|
Formatter *formatter() const;
|
|
View *view() const;
|
|
|
|
QString substituteSearchQuery( const QString &query );
|
|
|
|
static QString substituteSearchQuery( const QString &query,
|
|
const QString &identifier, const QStringList &words, int maxResults,
|
|
Operation operation, const QString &lang, const QString& binary );
|
|
|
|
void finishSearch();
|
|
|
|
/**
|
|
Append error message to error log.
|
|
*/
|
|
void logError( DocEntry *entry, const QString &msg );
|
|
|
|
/**
|
|
Return error log.
|
|
*/
|
|
QString errorLog() const;
|
|
|
|
bool isRunning() const;
|
|
|
|
SearchHandler *handler( const QString &documentType ) const;
|
|
|
|
QStringList words() const;
|
|
int maxResults() const;
|
|
Operation operation() const;
|
|
|
|
bool canSearch( DocEntry * );
|
|
bool needsIndex( DocEntry * );
|
|
|
|
Q_SIGNALS:
|
|
void searchFinished();
|
|
|
|
protected Q_SLOTS:
|
|
void searchExited(int, QProcess::ExitStatus);
|
|
|
|
protected:
|
|
void processSearchQueue();
|
|
|
|
private:
|
|
KProcess *mProc;
|
|
bool mSearchRunning;
|
|
QString mSearchResult;
|
|
|
|
QString mStderr;
|
|
|
|
View *mView;
|
|
|
|
QString mWords;
|
|
int mMatches;
|
|
QString mMethod;
|
|
QString mLang;
|
|
QString mScope;
|
|
|
|
QStringList mWordList;
|
|
int mMaxResults;
|
|
Operation mOperation;
|
|
|
|
DocEntryTraverser *mRootTraverser;
|
|
|
|
QMap<QString, SearchHandler *> mHandlers;
|
|
};
|
|
|
|
}
|
|
|
|
#endif //KHC_SEARCHENGINE_H
|
|
// vim:ts=2:sw=2:et
|