io.fabric8.maven.docker.log.DefaultLogCallback Maven / Gradle / Ivy
package io.fabric8.maven.docker.log;/*
*
* Copyright 2014 Roland Huss
*
* 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.
*/
import java.io.*;
import java.util.HashMap;
import java.util.Map;
import com.google.common.io.Files;
import io.fabric8.maven.docker.access.log.LogCallback;
import io.fabric8.maven.docker.util.Timestamp;
/**
* @author roland
* @since 26/09/15
*/
public class DefaultLogCallback implements LogCallback {
private static Map printStreamMap = new HashMap<>();
private final LogOutputSpec outputSpec;
private SharedPrintStream sps;
public DefaultLogCallback(LogOutputSpec outputSpec) {
this.outputSpec = outputSpec;
}
@Override
public synchronized void open() throws IOException {
if (this.sps == null) {
String file = outputSpec.getFile();
if (outputSpec.isLogStdout() || file == null) {
this.sps = new SharedPrintStream(System.out);
} else {
SharedPrintStream cachedPs = printStreamMap.get(file);
if (cachedPs == null) {
Files.createParentDirs(new File(file));
PrintStream ps = new PrintStream(new FileOutputStream(file), true);
cachedPs = new SharedPrintStream(ps);
printStreamMap.put(file, cachedPs);
} else {
cachedPs.allocate();
}
this.sps = cachedPs;
}
}
}
@Override
public synchronized void close() {
if (this.sps != null) {
if (sps.close()) {
String file = outputSpec.getFile();
if (file != null) {
printStreamMap.remove(file);
}
this.sps = null;
}
}
}
private PrintStream ps() {
return sps.getPrintStream();
}
@Override
public void log(int type, Timestamp timestamp, String txt) {
addLogEntry(ps(), new LogEntry(type, timestamp, txt));
}
@Override
public void error(String error) {
ps().println(error);
}
private void addLogEntry(PrintStream ps, LogEntry logEntry) {
// TODO: Add the entry to a queue, and let the queue be picked up with a small delay from an extra
// thread which then can sort the entries by time before printing it out in order to avoid race conditions.
LogOutputSpec spec = outputSpec;
if (spec == null) {
spec = LogOutputSpec.DEFAULT;
}
String text = logEntry.getText();
ps.println(spec.getPrompt(spec.isUseColor(),logEntry.getTimestamp()) + text);
}
// A single log-entry
private static class LogEntry implements Comparable {
private final int type;
private final Timestamp timestamp;
private final String text;
public LogEntry(int type, Timestamp timestamp, String text) {
this.type = type;
this.timestamp = timestamp;
this.text = text;
}
public int getType() {
return type;
}
public Timestamp getTimestamp() {
return timestamp;
}
public String getText() {
return text;
}
@Override
public int compareTo(LogEntry entry) {
return timestamp.compareTo(entry.timestamp);
}
}
}