All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.jackrabbit.oak.spi.state.ReadOnlyBuilder Maven / Gradle / Ivy

There is a newer version: 1.62.0
Show newest version
/*
 * 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.state;

import static com.google.common.base.Preconditions.checkNotNull;

import java.io.IOException;
import java.io.InputStream;

import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;

import org.apache.jackrabbit.oak.api.Blob;
import org.apache.jackrabbit.oak.api.PropertyState;
import org.apache.jackrabbit.oak.api.Type;

/**
 * A node builder that throws an {@link UnsupportedOperationException} on
 * all attempts to modify the given base state.
 */
public class ReadOnlyBuilder implements NodeBuilder {

    @Nonnull
    private final NodeState state;

    public ReadOnlyBuilder(@Nonnull NodeState state) {
        this.state = checkNotNull(state);
    }

    protected RuntimeException unsupported() {
        return new UnsupportedOperationException("This builder is read-only.");
    }

    @Override
    public boolean exists() {
        return state.exists();
    }

    @Override
    public boolean isNew() {
        return false;
    }

    @Override
    public boolean isNew(String name) {
        return false;
    }

    @Override
    public boolean isModified() {
        return false;
    }

    @Override
    public boolean isReplaced() {
        return false;
    }

    @Override
    public boolean isReplaced(String name) {
        return false;
    }

    @Override @Nonnull
    public NodeState getNodeState() {
        return state;
    }

    @Override @Nonnull
    public NodeState getBaseState() {
        return state;
    }

    @Override
    public long getChildNodeCount(long max) {
        return state.getChildNodeCount(max);
    }

    @Override
    public boolean hasChildNode(@Nonnull String name) {
        return state.hasChildNode(name);
    }

    @Nonnull
    @Override
    public Iterable getChildNodeNames() {
        return state.getChildNodeNames();
    }

    @Override @Nonnull
    public NodeBuilder setChildNode(@Nonnull String name, @Nonnull NodeState nodeState) {
        throw unsupported();
    }

    @Override
    public boolean remove() {
        throw unsupported();
    }

    @Override
    public boolean moveTo(@Nonnull NodeBuilder newParent, @Nonnull String newName) {
        throw unsupported();
    }

    @Override
    public long getPropertyCount() {
        return state.getPropertyCount();
    }

    @Nonnull
    @Override
    public Iterable getProperties() {
        return state.getProperties();
    }

    @Override
    public boolean hasProperty(String name) {
        return state.hasProperty(name);
    }

    @Override
    public PropertyState getProperty(String name) {
        return state.getProperty(name);
    }

    @Override
    public boolean getBoolean(@Nonnull String name) {
        return state.getBoolean(name);
    }

    @Override @CheckForNull
    public String getString(@Nonnull String name) {
        return state.getString(name);
    }

    @Override @CheckForNull
    public String getName(@Nonnull String name) {
        return state.getName(name);
    }

    @Override @Nonnull
    public Iterable getNames(@Nonnull String name) {
        return state.getNames(name);
    }

    @Override @Nonnull
    public NodeBuilder removeProperty(String name) {
        throw unsupported();
    }

    @Nonnull
    @Override
    public NodeBuilder setProperty(@Nonnull PropertyState property) {
        throw unsupported();
    }

    @Nonnull
    @Override
    public  NodeBuilder setProperty(String name, @Nonnull T value) {
        throw unsupported();
    }

    @Nonnull
    @Override
    public  NodeBuilder setProperty(String name, @Nonnull T value, Type type) {
        throw unsupported();
    }

    @Nonnull
    @Override
    public ReadOnlyBuilder child(@Nonnull String name) {
        NodeState child = state.getChildNode(name);
        if (child.exists()) {
            return new ReadOnlyBuilder(child);
        } else {
            throw unsupported();
        }
    }

    @Override @Nonnull
    public NodeBuilder getChildNode(@Nonnull String name) {
        return new ReadOnlyBuilder(state.getChildNode(name));
    }

    @Override @Nonnull
    public NodeBuilder setChildNode(@Nonnull String name) {
        throw unsupported();
    }

    @Override
    public Blob createBlob(InputStream stream) throws IOException {
        throw unsupported();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy