/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This 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 software 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. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.jacorb; import java.util.List; import java.util.Properties; import org.jboss.as.controller.AttributeDefinition; import org.jboss.as.controller.OperationContext; import org.jboss.as.controller.OperationFailedException; import org.jboss.as.controller.ProcessType; import org.jboss.as.controller.RunningMode; import org.jboss.as.controller.registry.Resource; import org.jboss.as.jacorb.logging.JacORBLogger; import org.jboss.dmr.ModelNode; import org.jboss.dmr.Property; import org.wildfly.iiop.openjdk.ConfigValidator; import org.wildfly.iiop.openjdk.IIOPSubsystemAdd; import org.wildfly.iiop.openjdk.PropertiesMap; /** * * @author <a href="mailto:tadamski@redhat.com">Tomasz Adamski</a> */ public class JacORBSubsystemAdd extends IIOPSubsystemAdd { static final JacORBSubsystemAdd INSTANCE = new JacORBSubsystemAdd(); private JacORBSubsystemAdd() { super(JacORBSubsystemDefinitions.SUBSYSTEM_ATTRIBUTES); } @Override protected void performRuntime(final OperationContext context, final ModelNode operation, final ModelNode legacyModel) throws OperationFailedException { printJacORBEmulationWarningMessage(); super.performRuntime(context, operation, legacyModel); } private void printJacORBEmulationWarningMessage() { JacORBLogger.ROOT_LOGGER.jacorbEmulationWarning(); } @Override protected void populateModel(final OperationContext context, final ModelNode operation, final Resource resource) throws OperationFailedException { final ModelNode model = resource.getModel(); for (AttributeDefinition attr : attributes) { attr.validateAndSet(operation, model); } ConfigValidator.validateConfig(context, TransformUtils.transformModel(model)); final boolean adminOnly = context.getRunningMode() == RunningMode.ADMIN_ONLY; final boolean hostController = context.getProcessType().equals(ProcessType.HOST_CONTROLLER); // in case of unsupported configuration parameters: // in admin mode they are all logged as warning to enable fixes before migrate operation // standalone server in normal mode is shutted down with exception as it is unable to run with specified configuration // domain controller in normal mode works normally - it may send old parameters to legacy hosts - such configuration is // valid if (adminOnly || !hostController) { final List<String> unsupportedProperites = TransformUtils.validateDeprecatedProperites(model); if(!unsupportedProperites.isEmpty()) { if (adminOnly) { final String warning = JacORBLogger.ROOT_LOGGER.cannotEmulatePropertiesWarning(unsupportedProperites); JacORBLogger.ROOT_LOGGER.warn(warning); } else { throw JacORBLogger.ROOT_LOGGER.cannotEmulateProperties(unsupportedProperites); } } } } @Override protected Properties getConfigurationProperties(OperationContext context, ModelNode model) throws OperationFailedException { Properties props = new Properties(); // get the configuration properties from the attribute definitions. for (AttributeDefinition attrDefinition : JacORBSubsystemDefinitions.SUBSYSTEM_ATTRIBUTES) { if (JacORBSubsystemDefinitions.ON_OFF_ATTRIBUTES_TO_REJECT.contains(attrDefinition) || JacORBSubsystemDefinitions.ATTRIBUTES_TO_REJECT.contains(attrDefinition)) { continue; } ModelNode resolvedModelAttribute = attrDefinition.resolveModelAttribute(context, model); if (resolvedModelAttribute.isDefined()) { String name = attrDefinition.getName(); String value = resolvedModelAttribute.asString(); String openjdkProperty = PropertiesMap.PROPS_MAP.get(name); if (openjdkProperty != null) { name = openjdkProperty; } props.setProperty(name, value); } } // check if the node contains a list of generic properties. if (model.hasDefined(JacORBSubsystemConstants.PROPERTIES)) { ModelNode propertiesNode = model.get(JacORBSubsystemConstants.PROPERTIES); for (Property property : propertiesNode.asPropertyList()) { String name = property.getName(); ModelNode value = property.getValue(); props.setProperty(name, value.asString()); } } return props; } }