
org.apache.jackrabbit.oak.segment.SegmentNodeBuilder Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.jackrabbit.oak.segment;
import static com.google.common.base.Preconditions.checkNotNull;
import java.io.IOException;
import java.io.InputStream;
import javax.annotation.Nonnull;
import org.apache.jackrabbit.oak.api.Blob;
import org.apache.jackrabbit.oak.plugins.memory.MemoryNodeBuilder;
import org.apache.jackrabbit.oak.spi.state.NodeState;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A node builder that keeps track of the number of updates
* (set property calls and so on). If there are too many updates,
* getNodeState() is called, which will write the records to the segment,
* and that might persist the changes (if the segment is flushed).
*/
public class SegmentNodeBuilder extends MemoryNodeBuilder {
private static final Logger LOG = LoggerFactory.getLogger(SegmentNodeBuilder.class);
/**
* Number of content updates that need to happen before the updates
* are automatically purged to the underlying segments.
*/
private static final int UPDATE_LIMIT =
Integer.getInteger("update.limit", 10000);
@Nonnull
private final SegmentWriter writer;
/**
* Local update counter for the root builder.
*
* The value encodes both the counter and the type of the node builder:
*
* - value >= {@code 0} represents a root builder (builder keeps
* counter updates)
* - value = {@code -1} represents a child builder (value doesn't
* change, builder doesn't keep an updated counter)
*
*
*/
private long updateCount;
SegmentNodeBuilder(@Nonnull SegmentNodeState base, @Nonnull SegmentWriter writer) {
super(base);
this.writer = checkNotNull(writer);
this.updateCount = 0;
}
private SegmentNodeBuilder(SegmentNodeBuilder parent, String name, @Nonnull SegmentWriter writer) {
super(parent, name);
this.writer = checkNotNull(writer);
this.updateCount = -1;
}
/**
* @return {@code true} iff this builder has been acquired from a root node state.
*/
boolean isRootBuilder() {
return isRoot();
}
//-------------------------------------------------< MemoryNodeBuilder >--
@Override
protected void updated() {
if (isChildBuilder()) {
super.updated();
} else {
updateCount++;
if (updateCount > UPDATE_LIMIT) {
getNodeState();
}
}
}
private boolean isChildBuilder() {
return updateCount < 0;
}
//-------------------------------------------------------< NodeBuilder >--
@Nonnull
@Override
public SegmentNodeState getNodeState() {
try {
NodeState state = super.getNodeState();
SegmentNodeState sstate = writer.writeNode(state);
if (state != sstate) {
set(sstate);
updateCount = 0;
}
return sstate;
} catch (IOException e) {
LOG.error("Error flushing changes", e);
throw new IllegalStateException("Unexpected IOException", e);
}
}
@Override
protected MemoryNodeBuilder createChildBuilder(String name) {
return new SegmentNodeBuilder(this, name, writer);
}
@Override
public Blob createBlob(InputStream stream) throws IOException {
return writer.writeStream(stream);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy