buildframework/helium/sf/java/legacy/src/com/nokia/ant/taskdefs/HlmExecTask.java
author wbernard
Fri, 13 Aug 2010 14:59:05 +0300
changeset 628 7c4a911dc066
parent 588 c7c26511138f
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.ant.taskdefs;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadPoolExecutor;

import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.taskdefs.ExecTask;

/**
 * Exec task using shared thread pool
 * @ant.task name="exec"
 */
public class HlmExecTask extends ExecTask
{   
    private static int poolSize = Runtime.getRuntime().availableProcessors();
    private static int maxPoolSize = poolSize * 2;
    private static ExecutorService threadPool = Executors.newFixedThreadPool(maxPoolSize);
    private final Object semaphore = new Object();
    
    /**
      * Submit exec into pool and throw exceptions
      */
    public void execute()
    {
        String property = getProject().getProperty("number.of.threads");
        if (property != null) {
            ((ThreadPoolExecutor)threadPool).setCorePoolSize(Integer.parseInt(property));
            ((ThreadPoolExecutor)threadPool).setMaximumPoolSize(Integer.parseInt(property));
        }
        TaskRunnable taskRunnable = new TaskRunnable();
        threadPool.submit(taskRunnable);
        try {
            synchronized (semaphore) {
                while (!taskRunnable.isFinished()) {
                    semaphore.wait();
                }
            }
        } catch (InterruptedException e) { e.printStackTrace(); }
          
        Throwable exception = taskRunnable.getException();
        if (exception != null)
        {
            if (exception instanceof BuildException) {
                throw (BuildException)exception;
            } else {
                exception.printStackTrace();
            }
        }
    }
    
    private class TaskRunnable implements Runnable {
        private boolean finished;
        private volatile Thread thread;
        private Throwable exception;

        /**
         * Executes the task within a thread and takes care about
         * Exceptions raised within the task.
         */
        public void run() {
            try {
                thread = Thread.currentThread();
                HlmExecTask.super.execute();
            } // CheckStyle:IllegalCatch OFF
            catch (Throwable t) {
                exception = t;
            } // CheckStyle:IllegalCatch ON
            finally {
                synchronized (semaphore) {
                    finished = true;
                    semaphore.notifyAll();
                }
            }
        }
        
        /**
         * get any exception that got thrown during execution;
         * @return an exception or null for no exception/not yet finished
         */
        public Throwable getException() {
            return exception;
        }
        
        /**
         * Provides the indicator that the task has been finished.
         * @return Returns true when the task is finished.
         */
        boolean isFinished() {
            return finished;
        }

        void interrupt() {
            thread.interrupt();
        }
    }
}