view src/goodjava/lucene/logging/BasicOpDoer.java @ 1648:224af797b1f9

Mainly small install script improvements - Consistent usage of `$LUANHOME`, removed reliance on current directory. - Made Luan build and install fine (on Linux) without requiring launching it via sudo. Only asks to elevate privileges if installation failed. - Minor spelling mistake fix.
author Fox
date Mon, 28 Mar 2022 18:00:12 +0200
parents 52241b69c339
children
line wrap: on
line source

package goodjava.lucene.logging;

import java.io.IOException;
import java.util.Map;
import org.apache.lucene.search.Query;
import goodjava.lucene.api.GoodIndexWriter;


public class BasicOpDoer implements OpDoer {
	protected final GoodIndexWriter writer;
	protected boolean isActive = true;

	public BasicOpDoer(GoodIndexWriter writer) {
		this.writer = writer;
	}

	public void commit() throws IOException {
		if( !isActive )
			return;
		writer.commit();
	}

	public void deleteAll(long time) throws IOException {
		if( !isActive )
			return;
		writer.deleteAll();
	}

	public void deleteDocuments(long time,Query query) throws IOException {
		if( !isActive )
			return;
		writer.deleteDocuments(query);
	}

	public void addDocument(long time,Map<String,Object> storedFields) throws IOException {
		if( !isActive )
			return;
		writer.addDocument(storedFields);
	}

	public void updateDocument(long time,String keyFieldName,Map<String,Object> storedFields) throws IOException {
		if( !isActive )
			return;
		writer.updateDocument(keyFieldName,storedFields);
	}

	public void tag(long time,String tag) throws IOException {}

}