com.google.javascript.jscomp.diagnostic.WritingLogFile Maven / Gradle / Ivy
Show all versions of closure-compiler-linter Show documentation
/*
* Copyright 2019 The Closure Compiler Authors.
*
* 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 com.google.javascript.jscomp.diagnostic;
import com.google.errorprone.annotations.FormatMethod;
import com.google.errorprone.annotations.FormatString;
import com.google.errorprone.annotations.MustBeClosed;
import java.io.BufferedWriter;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.function.Supplier;
/**
* An implementation that adapts a {@link BufferedWriter} and writes to a real file.
*
* This class is designed to be super-sourceable by J2CL, since JS environments often don't have
* file APIs. Doing so enables logging statements to be checked-in.
*/
final class WritingLogFile extends LogFile {
@MustBeClosed
static LogFile create(Path file) {
try {
Path dir = file.getParent();
Files.createDirectories(dir);
return new WritingLogFile(Files.newBufferedWriter(file));
} catch (IOException e) {
throw new RuntimeException(e);
}
}
private final BufferedWriter writer;
private WritingLogFile(BufferedWriter writer) {
this.writer = writer;
}
@Override
public LogFile log(Object value) {
return logInternal(value.toString());
}
@Override
public LogFile log(String value) {
return logInternal(value);
}
@Override
public LogFile log(Supplier value) {
return logInternal(value.get());
}
@Override
@FormatMethod
public LogFile log(@FormatString String template, Object... values) {
return logInternal(String.format(template, values));
}
private LogFile logInternal(String value) {
try {
// It's fine to pass a fully rendered string because we know we're going to use it by the
// time this method is called.
writer.append(value).append('\n');
} catch (IOException e) {
throw new RuntimeException(e);
}
return this;
}
@Override
public void close() {
try {
writer.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}