org.rhq.plugins.apache.ApacheDirectoryDiscoveryComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhq-apache-plugin Show documentation
Show all versions of rhq-apache-plugin Show documentation
a plugin for managing Apache web servers (1.3 and later)
/*
* RHQ Management Platform
* Copyright (C) 2005-2009 Red Hat, Inc.
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2, as
* published by the Free Software Foundation, and/or the GNU Lesser
* General Public License, version 2.1, also as published by the Free
* Software Foundation.
*
* This program 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 General Public License and the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* and the GNU Lesser General Public License along with this program;
* if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.rhq.plugins.apache;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import net.augeas.AugeasException;
import org.rhq.augeas.AugeasComponent;
import org.rhq.augeas.node.AugeasNode;
import org.rhq.augeas.tree.AugeasTree;
import org.rhq.core.domain.configuration.Configuration;
import org.rhq.core.domain.configuration.PropertySimple;
import org.rhq.core.domain.resource.ResourceType;
import org.rhq.core.pluginapi.inventory.DiscoveredResourceDetails;
import org.rhq.core.pluginapi.inventory.InvalidPluginConfigurationException;
import org.rhq.core.pluginapi.inventory.ResourceDiscoveryComponent;
import org.rhq.core.pluginapi.inventory.ResourceDiscoveryContext;
import org.rhq.plugins.apache.util.AugeasNodeSearch;
import org.rhq.plugins.apache.util.AugeasNodeValueUtil;
/**
* Discovery component for Apache discovery directives.
*
* @author Lukas Krejci
*/
public class ApacheDirectoryDiscoveryComponent implements ResourceDiscoveryComponent {
/* (non-Javadoc)
* @see org.rhq.core.pluginapi.inventory.ResourceDiscoveryComponent#discoverResources(org.rhq.core.pluginapi.inventory.ResourceDiscoveryContext)
*/
public static final String DIRECTORY_DIRECTIVE = " discoverResources(
ResourceDiscoveryContext context)
throws InvalidPluginConfigurationException, Exception {
Set discoveredResources = new LinkedHashSet();
if (!context.getParentResourceComponent().isAugeasEnabled())
return discoveredResources;
AugeasComponent comp = context.getParentResourceComponent().getAugeas();
AugeasTree tree = null;
try {
tree = comp.getAugeasTree(ApacheServerComponent.AUGEAS_HTTP_MODULE_NAME);
} catch (AugeasException e) {
//we depend on Augeas to do anything useful with directories.
//give up, if Augeas isn't there.
comp.close();
return discoveredResources;
}
try {
AugeasNode parentNode = context.getParentResourceComponent().getNode(tree);
List directories =
AugeasNodeSearch.searchNode(PARENT_DIRECTIVES, DIRECTORY_DIRECTIVE, parentNode);
ResourceType resourceType = context.getResourceType();
for (AugeasNode node : directories) {
Configuration pluginConfiguration = context.getDefaultPluginConfiguration();
String ifmoduleParams = AugeasNodeSearch.getNodeKey(node, parentNode);
List params = node.getChildByLabel("param");
String directoryParam;
boolean isRegexp;
if (params.size() > 1) {
directoryParam = params.get(1).getValue();
isRegexp = true;
} else {
directoryParam = params.get(0).getValue();
isRegexp = false;
}
pluginConfiguration.put(new PropertySimple(ApacheDirectoryComponent.REGEXP_PROP, isRegexp));
String resourceKey = ifmoduleParams;
String resourceName = AugeasNodeValueUtil.unescape(directoryParam);
discoveredResources.add(new DiscoveredResourceDetails(resourceType, resourceKey, resourceName, null,
null, pluginConfiguration, null));
}
return discoveredResources;
} finally {
if (comp != null)
comp.close();
}
}
}