/* * JBoss, Home of Professional Open Source. * Copyright 2012, 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.infinispan.subsystem; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.NAME; import java.util.List; import org.jboss.as.clustering.infinispan.InfinispanMessages; 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.operations.validation.ParametersValidator; import org.jboss.dmr.ModelNode; /** * Custom command to remove an alias for a cache-container. * * @author Richard Achmatowicz (c) 2011 Red Hat Inc. */ public class RemoveAliasCommand implements OperationStepHandler { public static final RemoveAliasCommand INSTANCE = new RemoveAliasCommand(); private final ParametersValidator nameValidator = new ParametersValidator(); /** * An attribute write handler which performs special processing for ALIAS attributes. * * @param context the operation context * @param operation the operation being executed * @throws org.jboss.as.controller.OperationFailedException */ @Override public void execute(OperationContext context, ModelNode operation) throws OperationFailedException { nameValidator.validate(operation); final String aliasToRemove = operation.require(NAME).asString(); final ModelNode submodel = context.readResourceForUpdate(PathAddress.EMPTY_ADDRESS).getModel(); final ModelNode currentValue = submodel.get(CacheContainerResource.ALIASES.getName()).clone(); ModelNode newValue = removeAliasFromList(currentValue, aliasToRemove) ; // now set the new ALIAS attribute final ModelNode syntheticOp = new ModelNode(); syntheticOp.get(CacheContainerResource.ALIASES.getName()).set(newValue); CacheContainerResource.ALIASES.validateAndSet(syntheticOp, submodel); // since we modified the model, set reload required if (requiresRuntime(context)) { context.addStep(new OperationStepHandler() { @Override public void execute(OperationContext context, ModelNode operation) throws OperationFailedException { context.reloadRequired(); context.completeStep(OperationContext.RollbackHandler.REVERT_RELOAD_REQUIRED_ROLLBACK_HANDLER); } }, OperationContext.Stage.RUNTIME); } context.stepCompleted(); } /** * Gets whether a {@link org.jboss.as.controller.OperationContext.Stage#RUNTIME} handler should be added. This default implementation * returns {@code true} if the {@link org.jboss.as.controller.OperationContext#getProcessType()} process type} is a * server and {@link org.jboss.as.controller.OperationContext#isBooting() context.isBooting()} returns {@code false}. * * @param context operation context * @return {@code true} if a runtime stage handler should be added; {@code false} otherwise. */ protected boolean requiresRuntime(OperationContext context) { return context.getProcessType().isServer() && !context.isBooting(); } /** * Remove an alias from a LIST ModelNode of existing aliases. * * @param list LIST ModelNode of aliases * @param alias * @return LIST ModelNode with the alias removed */ private ModelNode removeAliasFromList(ModelNode list, String alias) throws OperationFailedException { // check for empty string if (alias == null || alias.equals("")) return list ; // check for undefined list (AS7-3476) if (!list.isDefined()) { throw InfinispanMessages.MESSAGES.cannotRemoveAliasFromEmptyList(alias); } ModelNode newList = new ModelNode() ; List<ModelNode> listElements = list.asList(); for (ModelNode listElement : listElements) { if (!listElement.asString().equals(alias)) { newList.add().set(listElement); } } return newList ; } }