cmscachesettings.java

来自「找了很久才找到到源代码」· Java 代码 · 共 453 行

JAVA
453
字号
/*
 * File   : $Source: /usr/local/cvs/opencms/src/org/opencms/db/CmsCacheSettings.java,v $
 * Date   : $Date: 2007-08-13 16:30:03 $
 * Version: $Revision: 1.6 $
 *
 * This library is part of OpenCms -
 * the Open Source Content Management System
 *
 * Copyright (c) 2002 - 2007 Alkacon Software GmbH (http://www.alkacon.com)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * For further information about Alkacon Software GmbH, please see the
 * company website: http://www.alkacon.com
 *
 * For further information about OpenCms, please see the
 * project website: http://www.opencms.org
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package org.opencms.db;

/**
 * The settings of the OpenCms driver manager.<p>
 * 
 * @author Thomas Weckert 
 * 
 * @version $Revision: 1.6 $
 * 
 * @since 6.0.0
 */
public class CmsCacheSettings {

    /** The size of the driver manager's cache for ACLs. */
    private int m_aclCacheSize;

    /** The name of the class to generate cache keys. */
    private String m_cacheKeyGenerator;

    /** The size of the driver manager's cache for groups. */
    private int m_groupCacheSize;

    /** The size of the driver manager's cache for organizational units. */
    private int m_orgUnitCacheSize = -1; // this configuration entry is optional 

    /** The size of the security manager's cache for permission checks. */
    private int m_permissionCacheSize;

    /** The size of the driver manager's cache for projects. */
    private int m_projectCacheSize;

    /** The size of the driver manager's cache for project resources. */
    private int m_projectResourcesCacheSize = -1; // this configuration entry is optional

    /** The size of the driver manager's cache for properties. */
    private int m_propertyCacheSize;

    /** The size of the driver manager's cache for property lists. */
    private int m_propertyListsCacheSize = -1; // this configuration entry is optional

    /** The size of the driver manager's cache for resources. */
    private int m_resourceCacheSize;

    /** The size of the driver manager's cache for lists of resources. */
    private int m_resourcelistCacheSize;

    /** The size of the driver manager's cache for roles. */
    private int m_rolesCacheSize = -1;

    /** The size of the driver manager's cache for users. */
    private int m_userCacheSize;

    /** The size of the driver manager's cache for user/group relations. */
    private int m_userGroupsCacheSize;

    /**
     * Default constructor.<p>
     */
    public CmsCacheSettings() {

        super();
    }

    /**
     * Returns the size of the driver manager's cache for ACLs.<p>
     *
     * @return the size of the driver manager's cache for ACLs
     */
    public int getAclCacheSize() {

        return m_aclCacheSize;
    }

    /**
     * Returns the name of the class to generate cache keys.<p>
     *
     * @return the name of the class to generate cache keys
     */
    public String getCacheKeyGenerator() {

        return m_cacheKeyGenerator;
    }

    /**
     * Returns the size of the driver manager's cache for organizational units.<p>
     *
     * Might be <code>-1</code> if configuration entry is missing.<p>
     *
     * @return the size of the driver manager's cache for organizational units
     */
    public int getConfiguredOrgUnitCacheSize() {

        return m_orgUnitCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for project resources.<p>
     *
     * Might be <code>-1</code> if configuration entry is missing.<p>
     *
     * @return the size of the driver manager's cache for project resources
     */
    public int getConfiguredProjectResourcesCacheSize() {

        return m_projectResourcesCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for property lists.<p>
     *
     * Might be <code>-1</code> if configuration entry is missing.<p>
     *
     * @return the size of the driver manager's cache for property lists
     */
    public int getConfiguredPropertyListsCacheSize() {

        return m_propertyListsCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for roles.<p>
     *
     * Might be <code>-1</code> if configuration entry is missing.<p>
     *
     * @return the size of the driver manager's cache for roles
     */
    public int getConfiguredRolesCacheSize() {

        return m_rolesCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for groups.<p>
     *
     * @return the size of the driver manager's cache for groups
     */
    public int getGroupCacheSize() {

        return m_groupCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for organizational units.<p>
     * 
     * @return the size of the driver manager's cache for organizational units
     */
    public int getOrgUnitCacheSize() {

        if (m_orgUnitCacheSize < 0) {
            return getGroupCacheSize();
        }
        return m_orgUnitCacheSize;
    }

    /**
     * Returns the size of the security manager's cache for permission checks.<p>
     *
     * @return the size of the security manager's cache for permission checks
     */
    public int getPermissionCacheSize() {

        return m_permissionCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for projects.<p>
     *
     * @return the size of the driver manager's cache for projects
     */
    public int getProjectCacheSize() {

        return m_projectCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for project resources.<p>
     *
     * @return the size of the driver manager's cache for project resources
     */
    public int getProjectResourcesCacheSize() {

        if (m_propertyListsCacheSize < 0) {
            return getProjectCacheSize();
        }
        return m_projectResourcesCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for properties.<p>
     *
     * @return the size of the driver manager's cache for properties
     */
    public int getPropertyCacheSize() {

        return m_propertyCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for property lists.<p>
     *
     * @return the size of the driver manager's cache for property lists
     */
    public int getPropertyListsCacheSize() {

        if (m_propertyListsCacheSize < 0) {
            return getPropertyCacheSize();
        }
        return m_propertyListsCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for resources.<p>
     *
     * @return the size of the driver manager's cache for resources
     */
    public int getResourceCacheSize() {

        return m_resourceCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for lists of resources.<p>
     *
     * @return the size of the driver manager's cache for lists of resources
     */
    public int getResourcelistCacheSize() {

        return m_resourcelistCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for roles.<p>
     * 
     * @return the size of the driver manager's cache for roles
     */
    public int getRolesCacheSize() {

        if (m_rolesCacheSize < 0) {
            return getPermissionCacheSize();
        }
        return m_rolesCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for users.<p>
     *
     * @return the size of the driver manager's cache for users
     */
    public int getUserCacheSize() {

        return m_userCacheSize;
    }

    /**
     * Returns the size of the driver manager's cache for user/group relations.<p>
     *
     * @return the size of the driver manager's cache for user/group relations
     */
    public int getUserGroupsCacheSize() {

        return m_userGroupsCacheSize;
    }

    /**
     * Sets the size of the driver manager's cache for ACLs.<p>
     *
     * @param size the size of the driver manager's cache for ACLs
     */
    public void setAclCacheSize(String size) {

        m_aclCacheSize = getIntValue(size, 1024);
    }

    /**
     * Sets the name of the class to generate cache keys.<p>
     *
     * @param classname the name of the class to generate cache keys
     */
    public void setCacheKeyGenerator(String classname) {

        m_cacheKeyGenerator = classname;
    }

    /**
     * Sets the size of the driver manager's cache for groups.<p>
     *
     * @param size the size of the driver manager's cache for groups
     */
    public void setGroupCacheSize(String size) {

        m_groupCacheSize = getIntValue(size, 64);
    }

    /**
     * Sets the size of the driver manager's cache for organizational units.<p>
     *
     * @param size the size of the driver manager's cache for organizational units
     */
    public void setOrgUnitCacheSize(String size) {

        m_orgUnitCacheSize = getIntValue(size, 64);
    }

    /**
     * Sets the size of the security manager's cache for permission checks.<p>
     *
     * @param size the size of the security manager's cache for permission checks
     */
    public void setPermissionCacheSize(String size) {

        m_permissionCacheSize = getIntValue(size, 1024);
    }

    /**
     * Sets the size of the driver manager's cache for projects.<p>
     *
     * @param size the size of the driver manager's cache for projects
     */
    public void setProjectCacheSize(String size) {

        m_projectCacheSize = getIntValue(size, 32);
    }

    /**
     * Sets the size of the driver manager's cache for project resources.<p>
     *
     * @param size the size of the driver manager's cache for project resources
     */
    public void setProjectResourcesCacheSize(String size) {

        m_projectResourcesCacheSize = getIntValue(size, -1);
    }

    /**
     * Sets the size of the driver manager's cache for properties.<p>
     *
     * @param size the size of the driver manager's cache for properties
     */
    public void setPropertyCacheSize(String size) {

        m_propertyCacheSize = getIntValue(size, 128);
    }

    /**
     * Sets the size of the driver manager's cache for property lists.<p>
     *
     * @param size the size of the driver manager's cache for property lists
     */
    public void setPropertyListsCacheSize(String size) {

        m_propertyListsCacheSize = getIntValue(size, -1);
    }

    /**
     * Sets the size of the driver manager's cache for resources.<p>
     *
     * @param size the size of the driver manager's cache for resources
     */
    public void setResourceCacheSize(String size) {

        m_resourceCacheSize = getIntValue(size, 8192);
    }

    /**
     * Sets the size of the driver manager's cache for lists of resources.<p>
     *
     * @param size the size of the driver manager's cache for lists of resources
     */
    public void setResourcelistCacheSize(String size) {

        m_resourcelistCacheSize = getIntValue(size, 256);
    }

    /**
     * Sets the size of the driver manager's cache for roles.<p>
     *
     * @param size the size of the driver manager's cache for roles
     */
    public void setRolesCacheSize(String size) {

        m_rolesCacheSize = getIntValue(size, 8192);
    }

    /**
     * Sets the size of the driver manager's cache for users.<p>
     *
     * @param size the size of the driver manager's cache for users
     */
    public void setUserCacheSize(String size) {

        m_userCacheSize = getIntValue(size, 64);
    }

    /**
     * Sets the size of the driver manager's cache for user/group relations.<p>
     *
     * @param size the size of the driver manager's cache for user/group relations
     */
    public void setUserGroupsCacheSize(String size) {

        m_userGroupsCacheSize = getIntValue(size, 256);
    }

    /**
     * Turns a string into an int.<p>
     * 
     * @param str the string to be converted
     * @param defaultValue a default value to be returned in case the string could not be parsed or the parsed int value is <= 0
     * @return the int value of the string
     */
    private int getIntValue(String str, int defaultValue) {

        try {
            int intValue = Integer.parseInt(str);
            return (intValue > 0) ? intValue : defaultValue;
        } catch (NumberFormatException e) {
            // intentionally left blank
        }
        return defaultValue;
    }
}

⌨️ 快捷键说明

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