Skip to main content
summaryrefslogtreecommitdiffstats
blob: 620b189d6908b67bb3aabb5d111a25d9efd38553 (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2010, 2016 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     Sopot Cela - Bug 466829
 *******************************************************************************/

package org.eclipse.help.internal.search;

import java.io.Reader;
import java.io.StringReader;

import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.document.StoredField;
import org.apache.lucene.document.TextField;
import org.eclipse.help.search.ISearchDocument;

/**
 * Class which adapts a Lucene Document to ISearchDocument.
 */

public class LuceneSearchDocument implements ISearchDocument {

	private Document doc;

	public LuceneSearchDocument(Document document) {
		this.doc = document;
	}

	@Override
	public void setTitle(String title) {
		doc.add(new TextField("title", title, Field.Store.NO)); //$NON-NLS-1$
		doc.add(new TextField("exact_title", title, Field.Store.NO)); //$NON-NLS-1$
		doc.add(new StoredField("raw_title", title)); //$NON-NLS-1$
	}

	@Override
	public void setSummary(String summary) {
		doc.add(new StoredField("summary", summary)); //$NON-NLS-1$
	}

	@Override
	public void addContents(String contents) {
		doc.add(new TextField("contents", new StringReader(contents))); //$NON-NLS-1$
		doc.add(new TextField("exact_contents", new StringReader(contents))); //$NON-NLS-1$
	}

	@Override
	public void setHasFilters(boolean hasFilters) {
		doc.add(new StoredField("filters", Boolean.toString(hasFilters))); //$NON-NLS-1$
	}

	public Document getDocument() {
		return doc;
	}

	@Override
	public void addContents(Reader contents, Reader exactContents) {
		doc.add(new TextField("contents", contents)); //$NON-NLS-1$
		doc.add(new TextField("exact_contents", exactContents)); //$NON-NLS-1$
	}

}

Back to the top