io.sirix.index.name.NameIndexBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sirix-core Show documentation
Show all versions of sirix-core Show documentation
SirixDB is a hybrid on-disk and in-memory document oriented, versioned database system. It has a lightweight buffer manager, stores everything in a huge persistent and durable tree and allows efficient reconstruction of every revision. Furthermore, SirixDB implements change tracking, diffing and supports time travel queries.
package io.sirix.index.name;
import io.sirix.api.visitor.VisitResultType;
import io.sirix.index.SearchMode;
import io.sirix.exception.SirixIOException;
import io.sirix.index.redblacktree.RBTreeReader;
import io.sirix.index.redblacktree.RBTreeWriter;
import io.sirix.index.redblacktree.keyvalue.NodeReferences;
import io.sirix.utils.LogWrapper;
import io.brackit.query.atomic.QNm;
import io.sirix.node.interfaces.immutable.ImmutableNode;
import org.slf4j.LoggerFactory;
import java.util.Optional;
import java.util.Set;
public final class NameIndexBuilder {
private static final LogWrapper LOGGER = new LogWrapper(LoggerFactory.getLogger(NameIndexBuilder.class));
public Set includes;
public Set excludes;
public RBTreeWriter indexWriter;
public NameIndexBuilder(final Set includes, final Set excludes,
final RBTreeWriter indexWriter) {
this.includes = includes;
this.excludes = excludes;
this.indexWriter = indexWriter;
}
public VisitResultType build(QNm name, ImmutableNode node) {
final boolean included = (includes.isEmpty() || includes.contains(name));
final boolean excluded = (!excludes.isEmpty() && excludes.contains(name));
if (!included || excluded) {
return VisitResultType.CONTINUE;
}
final Optional textReferences = indexWriter.get(name, SearchMode.EQUAL);
try {
textReferences.ifPresentOrElse(nodeReferences -> setNodeReferences(node, nodeReferences, name),
() -> setNodeReferences(node, new NodeReferences(), name));
} catch (final SirixIOException e) {
LOGGER.error(e.getMessage(), e);
}
return VisitResultType.CONTINUE;
}
private void setNodeReferences(final ImmutableNode node, final NodeReferences references, final QNm name) {
indexWriter.index(name, references.addNodeKey(node.getNodeKey()), RBTreeReader.MoveCursor.NO_MOVE);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy