All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bidib.wizard.rxjava2.SwingScheduler Maven / Gradle / Ivy

There is a newer version: 2.0.0-M1
Show newest version
/**
 * Copyright 2014 Netflix, Inc.
 * 
 * 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.bidib.wizard.rxjava2;

import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.concurrent.TimeUnit;

import javax.swing.SwingUtilities;
import javax.swing.Timer;

import io.reactivex.rxjava3.core.Scheduler;
import io.reactivex.rxjava3.disposables.CompositeDisposable;
import io.reactivex.rxjava3.disposables.Disposable;

/**
 * Executes work on the Swing UI thread. This scheduler should only be used with actions that execute quickly.
 *
 * If the calling thread is the Swing UI thread, and no delay parameter is provided, the action will run immediately.
 * Otherwise, if the calling thread is NOT the Swing UI thread, the action will be deferred until all pending UI events
 * have been processed.
 */
public final class SwingScheduler extends Scheduler {
    private static final SwingScheduler INSTANCE = new SwingScheduler();

    public static SwingScheduler getInstance() {
        return INSTANCE;
    }

    /* package for unit test */ SwingScheduler() {
    }

    @Override
    public Worker createWorker() {
        return new InnerSwingScheduler();
    }

    private static class InnerSwingScheduler extends Worker {

        private final CompositeDisposable innerSubscription = new CompositeDisposable();

        @Override
        public Disposable schedule(final Runnable action, long delayTime, TimeUnit unit) {
            long delay = Math.max(0, unit.toMillis(delayTime));
            assertThatTheDelayIsValidForTheSwingTimer(delay);

            if (delayTime == 0) {
                return scheduleNow(action);
            }

            class ExecuteOnceAction implements ActionListener {
                private Timer timer;

                private void setTimer(Timer timer) {
                    this.timer = timer;
                }

                @Override
                public void actionPerformed(ActionEvent e) {
                    timer.stop();
                    if (innerSubscription.isDisposed()) {
                        return;
                    }
                    action.run();
                }
            }

            ExecuteOnceAction executeOnce = new ExecuteOnceAction();
            final Timer timer = new Timer((int) delay, executeOnce);
            executeOnce.setTimer(timer);
            timer.start();

            return innerSubscription;
        }

        @Override
        public Disposable schedule(final Runnable action) {
            return scheduleNow(action);
        }

        private Disposable scheduleNow(final Runnable action) {
            final Runnable runnable = new Runnable() {
                @Override
                public void run() {
                    if (innerSubscription.isDisposed()) {
                        return;
                    }
                    action.run();
                }
            };

            if (SwingUtilities.isEventDispatchThread()) {
                runnable.run();
            }
            else {
                EventQueue.invokeLater(runnable);
            }

            return innerSubscription;
        }

        @Override
        public void dispose() {
            innerSubscription.dispose();

        }

        @Override
        public boolean isDisposed() {
            return innerSubscription.isDisposed();
        }

    }

    private static void assertThatTheDelayIsValidForTheSwingTimer(long delay) {
        if (delay < 0 || delay > Integer.MAX_VALUE) {
            throw new IllegalArgumentException(String
                .format("The swing timer only accepts non-negative delays up to %d milliseconds.", Integer.MAX_VALUE));
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy