summaryrefslogtreecommitdiffstats
path: root/tools/assistant/lib/fulltextsearch/qquery_p.h
blob: 924098d2b4d70a281673c7cc4f4c10d174a6807c (plain)
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
/****************************************************************************
**
** Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team.
** All rights reserved.
**
** Portion Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).

**
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this file.
** Please review the following information to ensure the GNU Lesser General
** Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
****************************************************************************/

#ifndef QQUERY_P_H
#define QQUERY_P_H

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API. It exists for the convenience
// of the help generator tools. This header file may change from version
// to version without notice, or even be removed.
//
// We mean it.
//

#include "qterm_p.h"
#include "qclucene_global_p.h"

#include <QtCore/QList>
#include <QtCore/QString>
#include <QtCore/QSharedDataPointer>
#include <QtCore/QSharedData>

CL_NS_DEF(search)
    class Query;
CL_NS_END
CL_NS_USE(search)

QT_BEGIN_NAMESPACE

class QCLuceneHits;
class QCLuceneTermQuery;
class QCLuceneRangeQuery;
class QCLuceneQueryParser;
class QCLucenePrefixQuery;
class QCLuceneBooleanQuery;
class QCLucenePhraseQuery;

class QHELP_EXPORT QCLuceneQueryPrivate : public QSharedData
{
public:
    QCLuceneQueryPrivate();
    QCLuceneQueryPrivate(const QCLuceneQueryPrivate &other);

    ~QCLuceneQueryPrivate();

    Query *query;
    bool deleteCLuceneQuery;

private:
    QCLuceneQueryPrivate &operator=(const QCLuceneQueryPrivate &other);
};

class QHELP_EXPORT QCLuceneQuery
{
public:
    virtual ~QCLuceneQuery();

    void setBoost(qreal boost);
    qreal getBoost() const;
    QString getQueryName() const;
    bool instanceOf(const QString &other) const;
    QString toString(const QString &field) const;    
    quint32 hashCode() const;
    QString toString() const;
    bool equals(const QCLuceneQuery &other) const;

protected:
    friend class QCLuceneHits;
    friend class QCLuceneTermQuery;
    friend class QCLuceneRangeQuery;
    friend class QCLucenePrefixQuery;
    friend class QCLuceneQueryParser;
    friend class QCLuceneBooleanQuery;
    friend class QCLucenePhraseQuery;
    QSharedDataPointer<QCLuceneQueryPrivate> d;

private:
    QCLuceneQuery();
};

class QHELP_EXPORT QCLucenePrefixQuery : public QCLuceneQuery
{
public:
    QCLucenePrefixQuery(const QCLuceneTerm &prefix);
    ~QCLucenePrefixQuery();

    static QString getClassName();
	    
	QCLuceneTerm getPrefix() const;

private:
    QCLuceneTerm prefix;
};

class QHELP_EXPORT QCLuceneRangeQuery : public QCLuceneQuery
{
public:
    QCLuceneRangeQuery(const QCLuceneTerm &lowerTerm, 
        const QCLuceneTerm &upperTerm, bool inclusive);
    ~QCLuceneRangeQuery();

    static QString getClassName();
	    
	QCLuceneTerm getLowerTerm() const;
    QCLuceneTerm getUpperTerm() const;

    bool isInclusive() const;
    QString getField() const;

private:
    QCLuceneTerm lowerTerm;
    QCLuceneTerm upperTerm;
};

class QHELP_EXPORT QCLuceneTermQuery : public QCLuceneQuery
{
public:
    QCLuceneTermQuery(const QCLuceneTerm &term);
    ~QCLuceneTermQuery();

    static QString getClassName();
	    
	QCLuceneTerm getTerm() const;

private:
    QCLuceneTerm term;
};

class QHELP_EXPORT QCLuceneBooleanQuery : public QCLuceneQuery
{
public:
    QCLuceneBooleanQuery();
    ~QCLuceneBooleanQuery();

    static QString getClassName();

    quint32 getClauseCount() const;
    quint32 getMaxClauseCount() const;
    void setMaxClauseCount(quint32 maxClauseCount);

    void add(QCLuceneQuery *query, bool required, bool prohibited);
    void add(QCLuceneQuery *query, bool delQuery, bool required, bool prohibited);

private:
    QList<QCLuceneQuery*> queries;
};

class QHELP_EXPORT QCLucenePhraseQuery : public QCLuceneQuery
{
public:
    QCLucenePhraseQuery();
    ~QCLucenePhraseQuery();

    static QString getClassName();

    qint32 getSlop() const;
    void setSlop(const qint32 slop);
    
    void addTerm(const QCLuceneTerm &term);
    void addTerm(const QCLuceneTerm &term, qint32 position);

    QString getFieldName() const;
    QList<QCLuceneTerm> getTerms() const;

private:
    QList<QCLuceneTerm> termList;
};

QT_END_NAMESPACE

#endif  // QQUERY_P_H