/* * 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.clustering.jgroups.subsystem; import java.util.Collections; import java.util.HashMap; import java.util.Locale; import java.util.Map; import org.jboss.as.clustering.jgroups.subsystem.ProtocolMetricsHandler.Attribute; import org.jboss.as.clustering.jgroups.subsystem.ProtocolMetricsHandler.FieldType; import org.jboss.as.controller.OperationContext; import org.jboss.as.controller.OperationFailedException; import org.jboss.as.controller.OperationStepHandler; import org.jboss.as.controller.PathAddress; import org.jboss.as.controller.SimpleAttributeDefinitionBuilder; import org.jboss.as.controller.descriptions.ModelDescriptionConstants; import org.jboss.as.controller.descriptions.OverrideDescriptionProvider; import org.jboss.as.controller.registry.ManagementResourceRegistration; import org.jboss.dmr.ModelNode; import org.jboss.modules.ModuleLoadException; import org.jboss.msc.service.ServiceController; import org.jboss.msc.service.ServiceRegistry; import org.jgroups.Channel; import org.jgroups.protocols.FORK; import org.jgroups.protocols.TP; import org.jgroups.stack.Protocol; import org.wildfly.clustering.jgroups.spi.ChannelFactory; import org.wildfly.clustering.jgroups.spi.JGroupsRequirement; import org.wildfly.clustering.jgroups.spi.ProtocolConfiguration; import org.wildfly.clustering.jgroups.spi.ProtocolStackConfiguration; /** * Operation handler for registration of fork protocol runtime resources. * @author Paul Ferraro */ public class ForkProtocolResourceRegistrationHandler implements OperationStepHandler, ProtocolMetricsHandler.ProtocolLocator { @Override public Protocol findProtocol(OperationContext context) throws ClassNotFoundException, ModuleLoadException { PathAddress address = context.getCurrentAddress(); String channelName = address.getElement(address.size() - 3).getValue(); String forkName = address.getElement(address.size() - 2).getValue(); String protocolName = address.getElement(address.size() - 1).getValue(); ServiceRegistry registry = context.getServiceRegistry(false); ServiceController<?> controller = registry.getService(JGroupsRequirement.CHANNEL.getServiceName(context, channelName)); if (controller != null) { Channel channel = (Channel) controller.getValue(); if (channel != null) { FORK fork = (FORK) channel.getProtocolStack().findProtocol(FORK.class); if (fork != null) { controller = registry.getService(JGroupsRequirement.CHANNEL_FACTORY.getServiceName(context, channelName)); if (controller != null) { ChannelFactory factory = (ChannelFactory) controller.getValue(); if (factory != null) { ProtocolStackConfiguration configuration = factory.getProtocolStackConfiguration(); ProtocolConfiguration<? extends TP> transport = configuration.getTransport(); if (transport.getName().equals(protocolName)) { Class<? extends Protocol> protocolClass = transport.createProtocol(configuration).getClass(); return channel.getProtocolStack().findProtocol(protocolClass); } for (ProtocolConfiguration<? extends Protocol> protocol : configuration.getProtocols()) { if (protocol.getName().equals(protocolName)) { Class<? extends Protocol> protocolClass = protocol.createProtocol(configuration).getClass(); return fork.get(forkName).getProtocolStack().findProtocol(protocolClass); } } } } } } } return null; } @Override public void execute(OperationContext context, ModelNode operation) throws OperationFailedException { ManagementResourceRegistration registration = context.getResourceRegistrationForUpdate(); String protocolName = context.getCurrentAddressValue(); String moduleName = ProtocolResourceDefinition.Attribute.MODULE.resolveModelAttribute(context, operation).asString(); Class<? extends Protocol> protocolClass = ProtocolResourceRegistrationHandler.findProtocolClass(context, protocolName, moduleName); final Map<String, Attribute> attributes = ProtocolMetricsHandler.findProtocolAttributes(protocolClass); OverrideDescriptionProvider provider = new OverrideDescriptionProvider() { @Override public Map<String, ModelNode> getAttributeOverrideDescriptions(Locale locale) { Map<String, ModelNode> result = new HashMap<>(); for (Attribute attribute : attributes.values()) { ModelNode value = new ModelNode(); value.get(ModelDescriptionConstants.DESCRIPTION).set(attribute.getDescription()); result.put(attribute.getName(), value); } return result; } @Override public Map<String, ModelNode> getChildTypeOverrideDescriptions(Locale locale) { return Collections.emptyMap(); } }; ManagementResourceRegistration protocolRegistration = registration.registerOverrideModel(protocolName, provider); ProtocolMetricsHandler handler = new ProtocolMetricsHandler(this); for (Attribute attribute : attributes.values()) { String name = attribute.getName(); FieldType type = FieldType.valueOf(attribute.getType()); protocolRegistration.registerMetric(new SimpleAttributeDefinitionBuilder(name, type.getModelType()).setStorageRuntime().build(), handler); } } }