/* * RHQ Management Platform * Copyright (C) 2012 Red Hat, Inc. * All rights reserved. * * This program 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 version 2 of the License. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ package org.rhq.enterprise.server.util; import java.io.PrintWriter; import java.util.Date; import org.apache.tools.ant.BuildEvent; import org.apache.tools.ant.BuildListener; import org.apache.tools.ant.Target; import org.apache.tools.ant.Task; /** * Listens for Ant build events and logs them to a log stream. * * @author John Mazzitelli */ public class LoggerAntBuildListener implements BuildListener { private PrintWriter output; public LoggerAntBuildListener(PrintWriter logFile) { output = logFile; // just output our first line with the date this was started output.println(new Date().toString()); } public void buildFinished(BuildEvent event) { logEvent(event, "FINISHED!"); } public void buildStarted(BuildEvent event) { logEvent(event, "STARTED!"); } public void messageLogged(BuildEvent event) { logEvent(event, null); } public void targetFinished(BuildEvent event) { logEvent(event, null); } public void targetStarted(BuildEvent event) { logEvent(event, null); } public void taskFinished(BuildEvent event) { logEvent(event, null); } public void taskStarted(BuildEvent event) { logEvent(event, null); } private void logEvent(BuildEvent event, String additionalMessage) { String message = event.getMessage(); Throwable exception = event.getException(); Target target = event.getTarget(); Task task = event.getTask(); if (additionalMessage != null) { output.println(additionalMessage); } if (target != null) { output.print("[" + target.getName() + "] "); } if (task != null) { output.print("[" + task.getTaskName() + "] "); } if (message != null) { output.print(message); } if (exception != null) { output.println(); exception.printStackTrace(output); } output.println(); return; } }