buildframework/helium/sf/java/logging/src/com/nokia/helium/logger/ant/taskdefs/TriggerLoggerTask.java
author wbernard
Fri, 13 Aug 2010 14:59:05 +0300
changeset 628 7c4a911dc066
parent 588 c7c26511138f
child 645 b8d81fa19e7d
permissions -rw-r--r--
helium_11.0.0-e00f171ca185

/*
* Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  
*
*/
package com.nokia.helium.logger.ant.taskdefs;

import org.apache.log4j.Logger;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.Task;

import com.nokia.helium.logger.ant.listener.AntLoggingHandler;
import com.nokia.helium.logger.ant.listener.StatusAndLogListener;

/**
 * This task is used to start the helium logging listener.
 * @ant.task name="triggerlogger" category="Logging"
 */
public class TriggerLoggerTask extends Task {
    
    private Logger log = Logger.getLogger(TriggerLoggerTask.class);
    
    public void execute() {
        log.debug("Registering Ant logging to StatusAndLogListener listener");
        if (StatusAndLogListener.getStatusAndLogListener() == null) {
            this.log("The StatusAndLogListener is not available.", Project.MSG_WARN);
            return;
        }
        AntLoggingHandler antLoggingHandler = new AntLoggingHandler(getProject());
        StatusAndLogListener.getStatusAndLogListener().register(antLoggingHandler);
        if (antLoggingHandler != null ) {
            if (!antLoggingHandler.getLoggingStarted()) {
                log.debug("Starting Logging using 'AntLoggingHandler' first time.");
                antLoggingHandler.setLoggingStarted(true);
            } else {
                log.debug("'AntLoggingHandler' is already started logging.");
            }
        } else {
            log.debug("Could not find the AntLoggingHandler instance.");
        }
    }

}