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

org.apache.jackrabbit.jcr2spi.xml.Importer 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.xml;

import org.apache.jackrabbit.spi.Name;
import org.apache.jackrabbit.spi.commons.conversion.NamePathResolver;

import javax.jcr.RepositoryException;
import java.io.IOException;
import java.io.Reader;
import java.util.List;

/**
 * The Importer interface ...
 */
public interface Importer {

    /**
     * @throws RepositoryException
     */
    void start() throws RepositoryException;

    /**
     * @param nodeInfo
     * @param propInfos list of PropInfo instances
     * @param resolver NamePathResolver dealing with prefix mappings of current
     * context.
     * @throws RepositoryException
     */
    void startNode(NodeInfo nodeInfo, List propInfos, NamePathResolver resolver)
            throws RepositoryException;

    /**
     * @param nodeInfo
     * @throws RepositoryException
     */
    void endNode(NodeInfo nodeInfo) throws RepositoryException;

    /**
     * @throws RepositoryException
     */
    void end() throws RepositoryException;

    //--------------------------------------------------------< inner classes >
    static class NodeInfo {
        private final Name name;
        private final Name nodeTypeName;
        private final Name[] mixinNames;
        private String uuid;

        public NodeInfo(Name name, Name nodeTypeName, Name[] mixinNames, String uuid) {
            this.name = name;
            this.nodeTypeName = nodeTypeName;
            this.mixinNames = mixinNames;
            this.uuid = uuid;
        }

        public Name getName() {
            return name;
        }

        public Name getNodeTypeName() {
            return nodeTypeName;
        }

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

        public void setUUID(String uuid) {
            this.uuid = uuid;
        }

        public String getUUID() {
            return uuid;
        }
    }

    static class PropInfo {
        private final Name name;
        private final int type;
        private final TextValue[] values;

        public PropInfo(Name name, int type, TextValue[] values) {
            this.name = name;
            this.type = type;
            this.values = values;
        }

        public Name getName() {
            return name;
        }

        public int getType() {
            return type;
        }

        public TextValue[] getValues() {
            return values;
        }
    }

    /**
     * TextValue represents a serialized property value read
     * from a System or Document View XML document.
     */
    interface TextValue {
        /**
         * Returns the length of the serialized value.
         *
         * @return the length of the serialized value
         * @throws IOException if an I/O error occurs
         */
        long length() throws IOException;

        /**
         * Retrieves the serialized value.
         *
         * @return the serialized value
         * @throws IOException if an I/O error occurs
         */
        String retrieve() throws IOException;

        /**
         * Returns a Reader for reading the serialized value.
         *
         * @return a Reader for reading the serialized value.
         * @throws IOException if an I/O error occurs
         */
        Reader reader() throws IOException;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy