Package org.jboss.as.logging

Source Code of org.jboss.as.logging.SizeRotatingFileHandlerAdd

/*
* JBoss, Home of Professional Open Source.
* Copyright 2010, 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;

import java.io.FileNotFoundException;
import java.io.UnsupportedEncodingException;
import org.jboss.as.model.UpdateContext;
import org.jboss.as.model.UpdateResultHandler;
import org.jboss.as.services.path.AbstractPathService;
import org.jboss.msc.service.BatchBuilder;
import org.jboss.msc.service.BatchServiceBuilder;
import org.jboss.msc.service.ServiceController;

import java.util.logging.Handler;
import java.util.logging.Level;

/**
* @author <a href="mailto:david.lloyd@redhat.com">David M. Lloyd</a>
*/
public class SizeRotatingFileHandlerAdd extends FileHandlerAdd {

    private static final long serialVersionUID = 3144252544518106859L;

    private long rotateSize = 2L * 1024L * 1024L;

    private int maxBackupIndex = 1;

    public SizeRotatingFileHandlerAdd(final String name) {
        super(name);
    }

    public long getRotateSize() {
        return rotateSize;
    }

    public void setRotateSize(final long rotateSize) {
        this.rotateSize = rotateSize;
    }

    public int getMaxBackupIndex() {
        return maxBackupIndex;
    }

    public void setMaxBackupIndex(final int maxBackupIndex) {
        this.maxBackupIndex = maxBackupIndex;
    }

    protected AbstractHandlerElement<?> createElement(final String name) {
        final SizeRotatingFileHandlerElement element = new SizeRotatingFileHandlerElement(name);
        element.setMaxBackupIndex(maxBackupIndex);
        element.setRotateSize(rotateSize);
        element.setPath(getRelativeTo(), getPath());
        return element;
    }

    protected <P> void applyUpdate(final UpdateContext updateContext, final UpdateResultHandler<? super Void, P> handler, final P param) {
        try {
            final BatchBuilder batchBuilder = updateContext.getBatchBuilder();
            final SizeRotatingFileHandlerService service = new SizeRotatingFileHandlerService();
            final BatchServiceBuilder<Handler> serviceBuilder = batchBuilder.addService(LogServices.handlerName(getName()), service);
            final String relativeTo = getRelativeTo();
            if (relativeTo != null) {
                serviceBuilder.addDependency(AbstractPathService.pathNameOf(relativeTo), String.class, service.getRelativeToInjector());
            }
            service.setLevel(Level.parse(getLevelName()));
            final Boolean autoFlush = getAutoflush();
            if (autoFlush != null) service.setAutoflush(autoFlush.booleanValue());
            try {
                service.setEncoding(getEncoding());
            } catch (UnsupportedEncodingException e) {
                handler.handleFailure(e, param);
                return;
            }
            try {
                service.setPath(getPath());
            } catch (FileNotFoundException e) {
                handler.handleFailure(e, param);
                return;
            }
            service.setFormatterSpec(getFormatter());
            service.setMaxBackupIndex(maxBackupIndex);
            service.setRotateSize(rotateSize);
            serviceBuilder.setInitialMode(ServiceController.Mode.ACTIVE);
            serviceBuilder.addListener(new UpdateResultHandler.ServiceStartListener<P>(handler, param));
        } catch (Throwable t) {
            handler.handleFailure(t, param);
        }
    }
}
TOP

Related Classes of org.jboss.as.logging.SizeRotatingFileHandlerAdd

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.