LogGobbler.java

89 lines | 2.136 kB Blame History Raw Download
/*
 * Copyright 2012 LinkedIn Corp.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

package azkaban.utils;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.Reader;

import org.apache.log4j.Level;
import org.apache.log4j.Logger;

import com.google.common.base.Joiner;

public class LogGobbler extends Thread {
	private final BufferedReader inputReader;
	private final Logger logger;
	private final Level loggingLevel;
	private final CircularBuffer<String> buffer;

	public LogGobbler(final Reader inputReader, final Logger logger, final Level level, final int bufferLines) {
		this.inputReader = new BufferedReader(inputReader);
		this.logger = logger;
		this.loggingLevel = level;
		buffer = new CircularBuffer<String>(bufferLines);
	}

	@Override
	public void run() {
		try {
			while (!Thread.currentThread().isInterrupted()) {
				String line = inputReader.readLine();
				if (line == null) {
					return;
				}

				buffer.append(line);
				log(line);
			}
		} catch (IOException e) {
			error("Error reading from logging stream:", e);
		}
	}

	private void log(String message) {
		if (logger != null) {
			logger.log(loggingLevel, message);
		}
	}
	
	private void error(String message, Exception e) {
		if (logger != null) {
			logger.error(message, e);
		}
	}
	
	private void info(String message, Exception e) {
		if (logger != null) {
			logger.info(message, e);
		}
	}
	
	public void awaitCompletion(final long waitMs) {
		try {
			join(waitMs);
		} catch (InterruptedException e) {
			info("I/O thread interrupted.", e);
		}
	}

	public String getRecentLog() {
		return Joiner.on(System.getProperty("line.separator")).join(buffer);
	}

}