blob: d1d71399ecc18b06057b14721a601f326426bc30 [file] [log] [blame]
/*
* 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.spi.commit;
import static com.google.common.base.Preconditions.checkNotNull;
import static org.apache.jackrabbit.oak.plugins.memory.EmptyNodeState.MISSING_NODE;
import org.apache.jackrabbit.oak.api.CommitFailedException;
import org.apache.jackrabbit.oak.api.PropertyState;
import org.apache.jackrabbit.oak.spi.state.NodeState;
import org.apache.jackrabbit.oak.spi.state.NodeStateDiff;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class EditorDiff implements NodeStateDiff {
/**
* Validates and possibly edits the given subtree by diffing
* and recursing through it.
*
* @param editor editor for the root of the subtree
* @param before state of the original subtree
* @param after state of the modified subtree
* @return exception if the processing failed, {@code null} otherwise
*/
@Nullable
public static CommitFailedException process(
@Nullable Editor editor,
@NotNull NodeState before, @NotNull NodeState after) {
checkNotNull(before);
checkNotNull(after);
if (editor != null) {
try {
editor.enter(before, after);
EditorDiff diff = new EditorDiff(editor);
if (!after.compareAgainstBaseState(before, diff)) {
return diff.exception;
}
editor.leave(before, after);
} catch (CommitFailedException e) {
return e;
}
}
return null;
}
private final Editor editor;
/**
* Checked exceptions don't compose. So we need to hack around.
* See http://markmail.org/message/ak67n5k7mr3vqylm and
* http://markmail.org/message/bhocbruikljpuhu6
*/
private CommitFailedException exception;
private EditorDiff(Editor editor) {
this.editor = editor;
}
//-------------------------------------------------< NodeStateDiff >--
@Override
public boolean propertyAdded(PropertyState after) {
try {
editor.propertyAdded(after);
return true;
} catch (CommitFailedException e) {
exception = e;
return false;
}
}
@Override
public boolean propertyChanged(PropertyState before, PropertyState after) {
try {
editor.propertyChanged(before, after);
return true;
} catch (CommitFailedException e) {
exception = e;
return false;
}
}
@Override
public boolean propertyDeleted(PropertyState before) {
try {
editor.propertyDeleted(before);
return true;
} catch (CommitFailedException e) {
exception = e;
return false;
}
}
@Override
public boolean childNodeAdded(String name, NodeState after) {
try {
NodeState before = MISSING_NODE;
Editor childEditor = editor.childNodeAdded(name, after);
// NOTE: This piece of code is duplicated across this and the
// other child node diff methods. The reason for the duplication
// is to simplify the frequently occurring long stack traces
// in diff processing.
if (childEditor != null) {
childEditor.enter(before, after);
EditorDiff diff = new EditorDiff(childEditor);
if (!after.compareAgainstBaseState(before, diff)) {
exception = diff.exception;
return false;
}
childEditor.leave(before, after);
}
return true;
} catch (CommitFailedException e) {
exception = e;
return false;
}
}
@Override
public boolean childNodeChanged(
String name, NodeState before, NodeState after) {
try {
Editor childEditor = editor.childNodeChanged(name, before, after);
if (childEditor != null) {
childEditor.enter(before, after);
EditorDiff diff = new EditorDiff(childEditor);
if (!after.compareAgainstBaseState(before, diff)) {
exception = diff.exception;
return false;
}
childEditor.leave(before, after);
}
return true;
} catch (CommitFailedException e) {
exception = e;
return false;
}
}
@Override
public boolean childNodeDeleted(String name, NodeState before) {
try {
NodeState after = MISSING_NODE;
Editor childEditor = editor.childNodeDeleted(name, before);
if (childEditor != null) {
childEditor.enter(before, after);
EditorDiff diff = new EditorDiff(childEditor);
if (!after.compareAgainstBaseState(before, diff)) {
exception = diff.exception;
return false;
}
childEditor.leave(before, after);
}
return true;
} catch (CommitFailedException e) {
exception = e;
return false;
}
}
}