/* * 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.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 add an alias to a cache-container. * * @author Richard Achmatowicz (c) 2011 Red Hat Inc. */ public class AddAliasCommand implements OperationStepHandler { public static final AddAliasCommand INSTANCE = new AddAliasCommand(); 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 newAlias = operation.require(NAME).asString(); final ModelNode submodel = context.readResourceForUpdate(PathAddress.EMPTY_ADDRESS).getModel(); final ModelNode currentValue = submodel.get(CacheContainerResource.ALIASES.getName()).clone(); ModelNode newValue = addNewAliasToList(currentValue, newAlias) ; // 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); } } /** * Gets whether a {@link 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 * as sever and {@link 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(); } /** * Adds new alias to a LIST ModelNode of existing aliases. * * @param list LIST ModelNode of aliases * @param alias * @return LIST ModelNode with the added aliases */ private ModelNode addNewAliasToList(ModelNode list, String alias) { // check for empty string if (alias == null || alias.equals("")) return list ; // check for undefined list (AS7-3476) if (!list.isDefined()) { list.setEmptyList(); } ModelNode newList = list.clone() ; List<ModelNode> listElements = list.asList(); boolean found = false; for (ModelNode listElement : listElements) { if (listElement.asString().equals(alias)) { found = true; } } if (!found) { newList.add().set(alias); } return newList ; } }