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

org.apache.jackrabbit.jcr2spi.operation.SetMixin 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.jcr2spi.operation;

import javax.jcr.AccessDeniedException;
import javax.jcr.RepositoryException;
import javax.jcr.UnsupportedRepositoryOperationException;
import javax.jcr.nodetype.NoSuchNodeTypeException;
import javax.jcr.version.VersionException;

import org.apache.jackrabbit.jcr2spi.state.ItemStateValidator;
import org.apache.jackrabbit.jcr2spi.state.NodeState;
import org.apache.jackrabbit.spi.Name;
import org.apache.jackrabbit.spi.NodeId;
import org.apache.jackrabbit.spi.commons.name.NameConstants;

/**
 * SetMixin...
 */
public class SetMixin extends TransientOperation {

    private static final int SET_MIXIN_OPTIONS =
            ItemStateValidator.CHECK_LOCK
            | ItemStateValidator.CHECK_VERSIONING;

    private final NodeId nodeId;
    private final NodeState nodeState;
    private final Name[] mixinNames;

    private SetMixin(NodeState nodeState, Name[] mixinNames) throws RepositoryException {
        this(nodeState, mixinNames, SET_MIXIN_OPTIONS);
    }

    private SetMixin(NodeState nodeState, Name[] mixinNames, int options) throws RepositoryException {
        super(options);
        this.nodeState = nodeState;
        this.nodeId = nodeState.getNodeId();
        this.mixinNames = mixinNames;

        // remember node state as affected state
        addAffectedItemState(nodeState);
        // add the jcr:mixinTypes property state as affected if it already exists
        // and therefore gets modified by this operation.
        try {
            if (nodeState.hasPropertyName(NameConstants.JCR_MIXINTYPES)) {
                addAffectedItemState(nodeState.getPropertyState(NameConstants.JCR_MIXINTYPES));
            }
        } catch (RepositoryException e) {
            // jcr:mixinTypes does not exist -> ignore
        }
    }

    //----------------------------------------------------------< Operation >---
    /**
     *
     * @param visitor
     * @see Operation#accept(OperationVisitor)
     */
    public void accept(OperationVisitor visitor) throws AccessDeniedException, NoSuchNodeTypeException, UnsupportedRepositoryOperationException, VersionException, RepositoryException {
        assert status == STATUS_PENDING;
        visitor.visit(this);
    }

    /**
     * @see Operation#persisted()
     */
    public void persisted() throws RepositoryException {
        assert status == STATUS_PENDING;
        status = STATUS_PERSISTED;
        nodeState.getHierarchyEntry().complete(this);
    }

    /**
     * @see Operation#undo()
     */
    @Override
    public void undo() throws RepositoryException {
        assert status == STATUS_PENDING;
        status = STATUS_UNDO;
        nodeState.getHierarchyEntry().complete(this);
    }

    //----------------------------------------< Access Operation Parameters >---
    public NodeState getNodeState() {
        return nodeState;
    }

    public NodeId getNodeId() {
        return nodeId;
    }

    public Name[] getMixinNames() {
        return mixinNames;
    }

    //------------------------------------------------------------< Factory >---

    public static Operation create(NodeState nodeState, Name[] mixinNames)
            throws RepositoryException {
        if (nodeState == null || mixinNames == null) {
            throw new IllegalArgumentException();
        }
        SetMixin sm = new SetMixin(nodeState, mixinNames);
        return sm;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy