alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2004 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.core;

import javax.swing.UIManager;
import org.netbeans.core.perftool.StartLog;
import org.openide.ErrorManager;
import org.openide.filesystems.*;
import org.openide.loaders.DataObject;
import org.openide.loaders.DataFolder;
import org.openide.cookies.InstanceCookie;
import org.openide.util.RequestProcessor;

/**
 * This class controls "warm-up" initialization after IDE startup (some time
 * after main window is shown). It scans WarmUp folder for individual tasks
 * to be performed. The tasks should be instance objects implementing Runnable.
 *
 * The tasks may be provided by modules via xml layer.
 *
 * @author Tomas Pavek
 */

class WarmUpSupport implements Runnable {

    static final String WARMUP_FOLDER = "WarmUp"; // NOI18N
    static final int WARMUP_DELAY = 1500; // 1.5 sec after main window is shown
    
    static boolean finished = false;    // usefull for testability

    private ErrorManager err = ErrorManager.getDefault().getInstance("org.netbeans.core.WarmUpSupport");

    static void warmUp() {
        RequestProcessor.getDefault().post(new WarmUpSupport(), WARMUP_DELAY);
    }

    // -------

    public void run() {
        boolean willLog = err.isLoggable(ErrorManager.INFORMATIONAL);
        
        if (System.getProperty("java.version").indexOf("1.4") != -1 //NOI18N
            && "Windows".equals(UIManager.getLookAndFeel().getID())) {//NOI18N
            //Warm up windows file chooser UI - otherwise all file choosers
            //in the IDE can be broken due to a bug in WindowsFileChooserUI
            Issue38479Workaround.run();
        }
        
        if (willLog) {
            err.log("starting..."); // NOI18N
            StartLog.logStart("Warmup"); // NOI18N
        }

        FileObject fo = Repository.getDefault().getDefaultFileSystem()
                                                 .findResource(WARMUP_FOLDER);
        DataObject[] warmObjects =
            fo != null ? DataFolder.findFolder(fo).getChildren() : new DataObject[0];

        if (warmObjects.length == 0) {
            if (willLog) {
                err.log("no warmp up task"); // NOI18N
            }
        }
        else {
            for (int i=0; i < warmObjects.length; i++) {
                try {
                    InstanceCookie ic = (InstanceCookie)
                        warmObjects[i].getCookie(InstanceCookie.class);
                    if (willLog) {
                        StartLog.logProgress("running " + ic.instanceName()); // NOI18N
                    }
                    Object warmer = ic.instanceCreate();
                    if (warmer instanceof Runnable) {
                        ((Runnable)warmer).run();
                    }
                } catch (Exception ex) {
                    ErrorManager.getDefault().notify(ErrorManager.INFORMATIONAL, ex);
                }
            }
        }
        if (willLog) {
            err.log("done"); // NOI18N
            StartLog.logEnd("Warmup"); // NOI18N
        }
        finished = true;
    }
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.