/* * 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.augeas.mappingImpl; import java.util.List; import org.rhq.augeas.node.AugeasNode; import org.rhq.core.domain.configuration.Property; import org.rhq.core.domain.configuration.PropertyList; import org.rhq.core.domain.configuration.PropertyMap; import org.rhq.core.domain.configuration.PropertySimple; import org.rhq.core.domain.configuration.definition.PropertyDefinition; import org.rhq.core.domain.configuration.definition.PropertyDefinitionList; import org.rhq.core.domain.configuration.definition.PropertyDefinitionMap; import org.rhq.core.domain.configuration.definition.PropertyDefinitionSimple; import org.rhq.plugins.apache.ApacheServerComponent; import org.rhq.plugins.apache.mapping.ApacheDirectiveRegExpression; import org.rhq.rhqtransform.AugeasRhqException; import org.rhq.rhqtransform.impl.AugeasToConfigurationSimple; /** * The most complicated mapping strategy. * It is used when we have a list of maps in the configuration and * each map corresponds only to a parameter (or more) of a directive (i.e. single directive * can be mapped as multiple maps). * * This tries to map each (set of) parameters of a directive as a standalone map. * * The map definition's name is taken as the name of the directive to look for. * Then for all such directives, take all their parameters, chunk them up by the number of * sub-properties of the map and assign params from each chunk to a new map. * * Each map is supposed to contain the "_index" property ({@link ApacheServerComponent#AUXILIARY_INDEX_PROP}) * which is set to the index of the corresponding directive in the config file. * * @author Lukas Krejci */ public class MappingParamPerMap extends AugeasToConfigurationSimple { @Override public Property createPropertyList(PropertyDefinitionList propDefList, AugeasNode node) throws AugeasRhqException { PropertyList propList = new PropertyList(propDefList.getName()); PropertyDefinition listMemberPropDef = propDefList.getMemberDefinition(); if (!(listMemberPropDef instanceof PropertyDefinitionMap)) { return loadProperty(listMemberPropDef, node); } PropertyDefinitionMap mapDef = (PropertyDefinitionMap) listMemberPropDef; //now count how many properties there are in the member map int propCnt = mapDef.getMap().size(); //don't count the auxiliary "_index" property if (mapDef.getMap().containsKey(ApacheServerComponent.AUXILIARY_INDEX_PROP)) propCnt -= 1; //get all the directives List<AugeasNode> nodes = tree.matchRelative(node, mapDef.getName()); for (AugeasNode directiveNode : nodes) { List<String> params = ApacheDirectiveRegExpression.getParams(directiveNode); for (int i = 0; i < params.size(); i += propCnt) { int idx = i; PropertyMap map = new PropertyMap(mapDef.getName()); propList.add(map); for (PropertyDefinition def : mapDef.getOrderedPropertyDefinitions()) { if (ApacheServerComponent.AUXILIARY_INDEX_PROP.equals(def.getName())) { map.put(new PropertySimple(ApacheServerComponent.AUXILIARY_INDEX_PROP, directiveNode.getSeq())); } else { map.put(Util.createPropertySimple((PropertyDefinitionSimple) def, params.get(idx))); idx++; } } } } return propList; } }