001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements. See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache license, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License. You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the license for the specific language governing permissions and
015 * limitations under the license.
016 */
017package org.apache.logging.log4j.core.async;
018
019import com.lmax.disruptor.LifecycleAware;
020import com.lmax.disruptor.Sequence;
021import com.lmax.disruptor.SequenceReportingEventHandler;
022
023/**
024 * This event handler gets passed messages from the RingBuffer as they become
025 * available. Processing of these messages is done in a separate thread,
026 * controlled by the {@code Executor} passed to the {@code Disruptor}
027 * constructor.
028 */
029public class RingBufferLogEventHandler implements
030        SequenceReportingEventHandler<RingBufferLogEvent>, LifecycleAware {
031
032    private static final int NOTIFY_PROGRESS_THRESHOLD = 50;
033    private Sequence sequenceCallback;
034    private int counter;
035    private long threadId = -1;
036
037    @Override
038    public void setSequenceCallback(final Sequence sequenceCallback) {
039        this.sequenceCallback = sequenceCallback;
040    }
041
042    @Override
043    public void onEvent(final RingBufferLogEvent event, final long sequence,
044            final boolean endOfBatch) throws Exception {
045        event.execute(endOfBatch);
046        event.clear();
047
048        // notify the BatchEventProcessor that the sequence has progressed.
049        // Without this callback the sequence would not be progressed
050        // until the batch has completely finished.
051        if (++counter > NOTIFY_PROGRESS_THRESHOLD) {
052            sequenceCallback.set(sequence);
053            counter = 0;
054        }
055    }
056
057    /**
058     * Returns the thread ID of the background consumer thread, or {@code -1} if the background thread has not started
059     * yet.
060     * @return the thread ID of the background consumer thread, or {@code -1}
061     */
062    public long getThreadId() {
063        return threadId;
064    }
065
066    @Override
067    public void onStart() {
068        threadId = Thread.currentThread().getId();
069    }
070
071    @Override
072    public void onShutdown() {
073    }
074}