📄 cmsmoduleconfiguration.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/configuration/CmsModuleConfiguration.java,v $
* Date : $Date: 2006/03/27 14:52:46 $
* Version: $Revision: 1.13 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (c) 2005 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.configuration;
import org.opencms.main.CmsLog;
import org.opencms.main.OpenCms;
import org.opencms.module.CmsModule;
import org.opencms.module.CmsModuleManager;
import org.opencms.module.CmsModuleXmlHandler;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import org.apache.commons.digester.Digester;
import org.dom4j.Element;
/**
* VFS master configuration class.<p>
*
* @author Alexander Kandzior
*
* @version $Revision: 1.13 $
*
* @since 6.0.0
*/
public class CmsModuleConfiguration extends A_CmsXmlConfiguration implements I_CmsXmlConfiguration {
/** The name of the DTD for this configuration. */
public static final String CONFIGURATION_DTD_NAME = "opencms-modules.dtd";
/** The name of the default XML file for this configuration. */
public static final String DEFAULT_XML_FILE_NAME = "opencms-modules.xml";
/** The node name for the modules top node. */
public static final String N_MODULES = "modules";
/** The module manager generated from the configuration. */
private CmsModuleManager m_moduleManager;
/** The configured list of module descriptions. */
private List m_modules;
/**
* Public constructor, will be called by configuration manager.<p>
*/
public CmsModuleConfiguration() {
setXmlFileName(DEFAULT_XML_FILE_NAME);
m_modules = new ArrayList();
if (CmsLog.INIT.isInfoEnabled()) {
CmsLog.INIT.info(Messages.get().getBundle().key(Messages.INIT_MODULE_CONFIG_INIT_0));
}
}
/**
* @see org.opencms.configuration.I_CmsXmlConfiguration#addXmlDigesterRules(org.apache.commons.digester.Digester)
*/
public void addXmlDigesterRules(Digester digester) {
// add finish rule
digester.addCallMethod("*/" + N_MODULES, "initializeFinished");
// add the module rules for the module digester
CmsModuleXmlHandler.addXmlDigesterRules(digester);
}
/**
* @see org.opencms.configuration.I_CmsXmlConfiguration#generateXml(org.dom4j.Element)
*/
public Element generateXml(Element parent) {
List modules;
if (OpenCms.getRunLevel() >= OpenCms.RUNLEVEL_3_SHELL_ACCESS) {
modules = new ArrayList();
Iterator names = OpenCms.getModuleManager().getModuleNames().iterator();
while (names.hasNext()) {
CmsModule module = OpenCms.getModuleManager().getModule((String)names.next());
if (module != null) {
modules.add(module);
}
}
Collections.sort(modules);
} else {
// simple unit tests
modules = m_modules;
}
// generate modules node and subnodes
Element modulesNode = parent.addElement(N_MODULES);
for (int i = 0; i < modules.size(); i++) {
// append all configured modules
CmsModule module = (CmsModule)modules.get(i);
Element moduleNode = CmsModuleXmlHandler.generateXml(module);
modulesNode.add(moduleNode);
}
// return the modules node
return modulesNode;
}
/**
* @see org.opencms.configuration.I_CmsXmlConfiguration#getDtdFilename()
*/
public String getDtdFilename() {
return CONFIGURATION_DTD_NAME;
}
/**
* Returns the configured module manager.<p>
*
* @return the configured module manager
*/
public CmsModuleManager getModuleManager() {
return m_moduleManager;
}
/**
* Will be called when configuration of this object is finished.<p>
*/
public void initializeFinished() {
// create the module manager with the configured modules
m_moduleManager = new CmsModuleManager(m_modules);
if (CmsLog.INIT.isInfoEnabled()) {
CmsLog.INIT.info(Messages.get().getBundle().key(Messages.INIT_MODULE_CONFIG_FINISHED_0));
}
}
/**
* Adds a new module to the list of configured modules.<p>
*
* @param moduleHandler contains the imported module
*/
public void setModule(CmsModuleXmlHandler moduleHandler) {
// add the module info to the list of configured modules
m_modules.add(moduleHandler.getModule());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -