/* * JBoss, Home of Professional Open Source. * Copyright 2015, 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.logging.deployments.resources; import org.jboss.as.controller.PathElement; import org.jboss.as.controller.SimpleAttributeDefinition; import org.jboss.as.controller.SimpleAttributeDefinitionBuilder; import org.jboss.as.controller.SimpleListAttributeDefinition; import org.jboss.as.controller.SimpleResourceDefinition; import org.jboss.as.controller.registry.ManagementResourceRegistration; import org.jboss.as.logging.LoggingExtension; import org.jboss.as.logging.RootLoggerResourceDefinition; import org.jboss.dmr.ModelNode; import org.jboss.dmr.ModelType; import org.jboss.logmanager.config.LogContextConfiguration; import org.jboss.logmanager.config.LoggerConfiguration; /** * Describes a logger used on a deployment. * * @author <a href="mailto:jperkins@redhat.com">James R. Perkins</a> */ class LoggerResourceDefinition extends SimpleResourceDefinition { static final String NAME = "logger"; public static final PathElement PATH = PathElement.pathElement(NAME); static final SimpleAttributeDefinition LEVEL = SimpleAttributeDefinitionBuilder.create("level", ModelType.STRING, true) .setStorageRuntime() .build(); static final SimpleAttributeDefinition HANDLER = SimpleAttributeDefinitionBuilder.create("handler", ModelType.STRING, true) .setStorageRuntime() .build(); static final SimpleListAttributeDefinition HANDLERS = SimpleListAttributeDefinition.Builder.of("handlers", HANDLER) .setStorageRuntime() .build(); static final SimpleAttributeDefinition FILTER = SimpleAttributeDefinitionBuilder.create("filter", ModelType.STRING, true) .setStorageRuntime() .build(); static final SimpleAttributeDefinition USE_PARENT_HANDLERS = SimpleAttributeDefinitionBuilder.create("use-parent-handlers", ModelType.BOOLEAN, true) .setStorageRuntime() .build(); public LoggerResourceDefinition() { super(new Parameters(PATH, LoggingExtension.getResourceDescriptionResolver("deployment", NAME)).setRuntime()); } @Override public void registerAttributes(final ManagementResourceRegistration resourceRegistration) { resourceRegistration.registerReadOnlyAttribute(LEVEL, new LoggerConfigurationReadStepHandler() { @Override protected void updateModel(final LoggerConfiguration configuration, final ModelNode model) { setModelValue(model, configuration.getLevel()); } }); resourceRegistration.registerReadOnlyAttribute(FILTER, new LoggerConfigurationReadStepHandler() { @Override protected void updateModel(final LoggerConfiguration configuration, final ModelNode model) { setModelValue(model, configuration.getFilter()); } }); resourceRegistration.registerReadOnlyAttribute(HANDLERS, new LoggerConfigurationReadStepHandler() { @Override protected void updateModel(final LoggerConfiguration configuration, final ModelNode model) { final ModelNode handlers = model.setEmptyList(); configuration.getHandlerNames().forEach(handlers::add); } }); resourceRegistration.registerReadOnlyAttribute(USE_PARENT_HANDLERS, new LoggerConfigurationReadStepHandler() { @Override protected void updateModel(final LoggerConfiguration configuration, final ModelNode model) { setModelValue(model, configuration.getUseParentHandlers()); } }); } abstract static class LoggerConfigurationReadStepHandler extends LoggingConfigurationReadStepHandler { @Override protected void updateModel(final LogContextConfiguration logContextConfiguration, final String name, final ModelNode model) { final LoggerConfiguration configuration = logContextConfiguration.getLoggerConfiguration(RootLoggerResourceDefinition.ROOT_LOGGER_ATTRIBUTE_NAME.equals(name) ? "" : name); updateModel(configuration, model); } protected abstract void updateModel(LoggerConfiguration configuration, ModelNode model); } }