Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : */
9 :
10 : #include <helpcompiler/HelpSearch.hxx>
11 : #include <osl/file.hxx>
12 : #include <osl/thread.hxx>
13 :
14 : #include "LuceneHelper.hxx"
15 :
16 0 : HelpSearch::HelpSearch(OUString const &indexDir)
17 : {
18 0 : OUString ustrSystemPath;
19 0 : osl::File::getSystemPathFromFileURL(indexDir, ustrSystemPath);
20 0 : d_indexDir = OUStringToOString(ustrSystemPath, osl_getThreadTextEncoding());
21 0 : }
22 :
23 0 : bool HelpSearch::query(OUString const &queryStr, bool captionOnly,
24 : std::vector<OUString> &rDocuments, std::vector<float> &rScores) {
25 :
26 0 : lucene::index::IndexReader *reader = lucene::index::IndexReader::open(d_indexDir.getStr());
27 0 : lucene::search::IndexSearcher searcher(reader);
28 :
29 0 : TCHAR captionField[] = L"caption";
30 0 : TCHAR contentField[] = L"content";
31 0 : TCHAR *field = captionOnly ? captionField : contentField;
32 :
33 0 : bool isWildcard = queryStr[queryStr.getLength() - 1] == L'*';
34 0 : std::vector<TCHAR> aQueryStr(OUStringToTCHARVec(queryStr));
35 : lucene::search::Query *pQuery;
36 0 : if (isWildcard)
37 0 : pQuery = _CLNEW lucene::search::WildcardQuery(_CLNEW lucene::index::Term(field, &aQueryStr[0]));
38 : else
39 0 : pQuery = _CLNEW lucene::search::TermQuery(_CLNEW lucene::index::Term(field, &aQueryStr[0]));
40 :
41 0 : lucene::search::Hits *hits = searcher.search(pQuery);
42 0 : for (size_t i = 0; i < hits->length(); ++i) {
43 0 : lucene::document::Document &doc = hits->doc(i); // Document* belongs to Hits.
44 0 : wchar_t const *path = doc.get(L"path");
45 0 : rDocuments.push_back(TCHARArrayToOUString(path != 0 ? path : L""));
46 0 : rScores.push_back(hits->score(i));
47 : }
48 :
49 0 : _CLDELETE(hits);
50 0 : _CLDELETE(pQuery);
51 :
52 0 : reader->close();
53 0 : _CLDELETE(reader);
54 :
55 0 : return true;
56 : }
57 :
58 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|