/*
* This file is part of Skript.
*
* Skript is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Skript 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Skript. If not, see <http://www.gnu.org/licenses/>.
*
*
* Copyright 2011, 2012 Peter Güttinger
*
*/
package ch.njol.skript.log;
import java.util.logging.Level;
import org.eclipse.jdt.annotation.Nullable;
import ch.njol.skript.Skript;
/**
* Does nothing but print messages before the first error encountered and/or a message at the end if no error were encountered.
*
* @author Peter Güttinger
*/
public class ErrorDescLogHandler extends LogHandler {
@Nullable
private final String before, after, success;
public ErrorDescLogHandler() {
this(null, null, null);
}
public ErrorDescLogHandler(final @Nullable String before, final @Nullable String after, final @Nullable String success) {
this.before = before;
this.after = after;
this.success = success;
}
private boolean hadError = false;
@Override
public LogResult log(final LogEntry entry) {
if (!hadError && entry.getLevel() == Level.SEVERE) {
hadError = true;
beforeErrors();
}
return LogResult.LOG;
}
protected void beforeErrors() {
if (before != null)
Skript.error(before);
}
protected void afterErrors() {
if (after != null)
Skript.error(after);
}
protected void onSuccess() {
if (success != null)
Skript.info(success);
}
@Override
protected void onStop() {
if (!hadError)
onSuccess();
else
afterErrors();
}
}