Package org.gradle.gradleplugin.userinterface.swing.standalone

Source Code of org.gradle.gradleplugin.userinterface.swing.standalone.BlockingApplication$WaitingLock

/*
* Copyright 2010 the original author or 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 org.gradle.gradleplugin.userinterface.swing.standalone;

import org.gradle.util.UncheckedException;

import javax.swing.*;
import java.lang.reflect.InvocationTargetException;

/**
* This is the same as Application, but this version blocks the calling thread until the Application shuts down.
*
* @author mhunsicker
*/
public class BlockingApplication {

    /**
     * This launches this application and blocks until it closes. Useful for being called from the gradle command line.
     * We launch this in the Event Dispatch Thread and block the calling thread.
     */
    public static void launchAndBlock() {
        if (SwingUtilities.isEventDispatchThread()) {
            throw new RuntimeException("Cannot launch and block from the Event Dispatch Thread!");
        }

        //create a lock to wait on
        final WaitingLock waitingLock = new WaitingLock();

        //instantiate the app in the Event Dispatch Thread
        try {
            SwingUtilities.invokeAndWait(new Runnable() {
                public void run() {
                    new Application(new Application.LifecycleListener() {
                        /**
                         Notification that the application has started successfully. This is
                         fired within the same thread that instantiates us.
                         */
                        public void hasStarted() {  //only lock if we start
                            waitingLock.lock();
                        }

                        /**
                         Notification that the application has shut down. This is fired from the
                         Event Dispatch Thread.
                         */
                        public void hasShutDown() {  //when we shutdown we'll unlock
                            waitingLock.unlock();
                        }
                    });
                }
            });
        } catch (InterruptedException e) {
            throw UncheckedException.asUncheckedException(e);
        } catch (InvocationTargetException e) {
            throw UncheckedException.asUncheckedException(e.getCause());
        }

        //the calling thread will now block until the caller is complete.
        waitingLock.waitOnLock();
    }

    /**
     * Lock so the calling thread can wait on the Application to exit.
     */
    private static class WaitingLock {
        private boolean isLocked;

        public synchronized void lock() {
            isLocked = true;

            //Notify status has changed.
            notifyAll();
        }

        public synchronized void unlock() {
            isLocked = false;

            //Notify status has changed.
            notifyAll();
        }

        public synchronized void waitOnLock() {
            //Wait only if we're locked
            while (isLocked) {
                try {
                    wait();
                } catch (InterruptedException e) {
                    throw new UncheckedException(e);
                }
            }
        }
    }
}
TOP

Related Classes of org.gradle.gradleplugin.userinterface.swing.standalone.BlockingApplication$WaitingLock

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.