⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jcarepositorymanager.java

📁 jsr170接口的java实现。是个apache的开源项目。
💻 JAVA
字号:
/* * 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.jca;import org.apache.jackrabbit.core.RepositoryImpl;import org.apache.jackrabbit.core.config.RepositoryConfig;import javax.jcr.RepositoryException;import java.io.InputStream;import java.util.Collection;import java.util.HashMap;import java.util.Iterator;import java.util.Map;/** * This class implements the repository manager. */public final class JCARepositoryManager {    /** The config file prefix that signifies the file is to be loaded from the classpath. */    public static final String CLASSPATH_CONFIG_PREFIX = "classpath:";    /**     * Instance of manager.     */    private static final JCARepositoryManager INSTANCE =            new JCARepositoryManager();    /**     * References.     */    private final Map references;    /**     * Flag indicating that the life cycle     * of the resource is not managed by the     * application server     */    private boolean autoShutdown = true;    /**     * Construct the manager.     */    private JCARepositoryManager() {        this.references = new HashMap();    }    /**     * Create repository.     *     * @param homeDir   The location of the repository.     * @param configFile The path to the repository configuration file. If the file is located on     *                   the classpath, the path should be prepended with     *                   JCARepositoryManager.CLASSPATH_CONFIG_PREFIX.     * @return repository instance     */    public RepositoryImpl createRepository(String homeDir, String configFile)            throws RepositoryException {        Reference ref = getReference(homeDir, configFile);        return ref.create();    }    /**     * Shutdown all the repositories.     */    public void shutdown() {        Collection references = this.references.values();        Iterator iter = references.iterator();        while (iter.hasNext()) {            Reference ref = (Reference) iter.next();            ref.shutdown();        }        this.references.clear();    }    /**     * Return the reference.     *     * @param homeDir   The location of the repository.     * @param configFile The path to the repository configuration file.     */    private synchronized Reference getReference(String homeDir, String configFile) {        Reference ref = new Reference(homeDir, configFile);        Reference other = (Reference) references.get(ref);        if (other == null) {            references.put(ref, ref);            return ref;        } else {            return other;        }    }    /**     * Return the instance.     */    public static JCARepositoryManager getInstance() {        return INSTANCE;    }    /**     * Repository reference implementation.     */    private final class Reference {        /**         * Home directory.         */        private final String homeDir;        /**         * Configuration file.         *         * Configuration files located on the classpath begin with         * JCARepositoryManager.CLASSPATH_CONFIG_PREFIX.         */        private String configFile;        /**         * Repository instance.         */        private RepositoryImpl repository;        /**         * Construct the manager.         */        private Reference(String homeDir, String configFile) {            this.homeDir = homeDir;            this.configFile = configFile;            this.repository = null;        }        /**         * Return the repository.         */        public RepositoryImpl create()                throws RepositoryException {            if (repository == null) {                RepositoryConfig config = null;                if (configFile.startsWith(CLASSPATH_CONFIG_PREFIX)) {                    ClassLoader cl = Thread.currentThread().getContextClassLoader();                    if (cl == null) {                        cl = this.getClass().getClassLoader();                    }                    InputStream configInputStream = cl.getResourceAsStream(                        configFile.substring(CLASSPATH_CONFIG_PREFIX.length()));                    config = RepositoryConfig.create(configInputStream, homeDir);                } else {                    config = RepositoryConfig.create(configFile, homeDir);                }                repository = RepositoryImpl.create(config);            }            return repository;        }        /**         * Shutdown the repository.         */        public void shutdown() {            if (repository != null) {                repository.shutdown();            }        }        /**         * Return the hash code.         */        public int hashCode() {            int result = homeDir != null ? homeDir.hashCode() : 0;            result = 37 * result + (configFile != null ? configFile.hashCode() : 0);            return result;        }        /**         * Return true if equals.         */        public boolean equals(Object o) {            if (o == this) {                return true;            } else if (o instanceof Reference) {                return equals((Reference) o);            } else {                return false;            }        }        /**         * Return true if equals.         */        private boolean equals(Reference o) {            return equals(homeDir, o.homeDir)                && equals(configFile, o.configFile);        }        /**         * Return true if equals.         */        private boolean equals(String s1, String s2) {            if (s1 == s2) {                return true;            } else if ((s1 == null) || (s2 == null)) {                return false;            } else {                return s1.equals(s2);            }        }    }    public boolean isAutoShutdown() {        return autoShutdown;    }    public void setAutoShutdown(boolean autoShutdown) {        this.autoShutdown = autoShutdown;    }    /**     * Try to shutdown the repository only if     * {@link JCARepositoryManager#autoShutdown} is true.     *     * @param homeDir   The location of the repository.     * @param configFile The path to the repository configuration file.     */    public void autoShutdownRepository(String homeDir, String configFile) {        if (this.isAutoShutdown()) {            Reference ref = getReference(homeDir, configFile);            ref.shutdown();        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -