~ubuntu-branches/ubuntu/trusty/netbeans/trusty

« back to all changes in this revision

Viewing changes to autoupdate/services/libsrc/org/netbeans/updater/UpdaterDispatcher.java

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
3
 *
 
4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
5
 *
 
6
 * The contents of this file are subject to the terms of either the GNU
 
7
 * General Public License Version 2 only ("GPL") or the Common
 
8
 * Development and Distribution License("CDDL") (collectively, the
 
9
 * "License"). You may not use this file except in compliance with the
 
10
 * License. You can obtain a copy of the License at
 
11
 * http://www.netbeans.org/cddl-gplv2.html
 
12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
13
 * specific language governing permissions and limitations under the
 
14
 * License.  When distributing the software, include this License Header
 
15
 * Notice in each file and include the License file at
 
16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
17
 * particular file as subject to the "Classpath" exception as provided
 
18
 * by Sun in the GPL Version 2 section of the License file that
 
19
 * accompanied this code. If applicable, add the following below the
 
20
 * License Header, with the fields enclosed by brackets [] replaced by
 
21
 * your own identifying information:
 
22
 * "Portions Copyrighted [year] [name of copyright owner]"
 
23
 *
 
24
 * Contributor(s):
 
25
 *
 
26
 * The Original Software is NetBeans. The Initial Developer of the Original
 
27
 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
 
28
 * Microsystems, Inc. All Rights Reserved.
 
29
 *
 
30
 * If you wish your version of this file to be governed by only the CDDL
 
31
 * or only the GPL Version 2, indicate your decision by adding
 
32
 * "[Contributor] elects to include this software in this distribution
 
33
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
 
34
 * single choice of license, a recipient has the option to distribute
 
35
 * your version of this file under either the CDDL, the GPL Version 2 or
 
36
 * to extend the choice of license to its licensees as provided above.
 
37
 * However, if you add GPL Version 2 code and therefore, elected the GPL
 
38
 * Version 2 license, then the option applies only if the new code is
 
39
 * made subject to such option by the copyright holder.
 
40
 */
 
41
 
 
42
package org.netbeans.updater;
 
43
 
 
44
import java.io.File;
 
45
import javax.swing.SwingUtilities;
 
46
 
 
47
/**
 
48
 * @author  Jiri Rechtacek
 
49
 */
 
50
public final class UpdaterDispatcher implements Runnable {
 
51
    
 
52
    UpdaterDispatcher () {}
 
53
    
 
54
    private Boolean disable = null;
 
55
    private Boolean install = null;
 
56
    private Boolean uninstall = null;
 
57
    
 
58
    public static final String UPDATE_DIR = "update"; // NOI18N
 
59
    public static final String DEACTIVATE_DIR = "deactivate"; // NOI18N
 
60
    
 
61
    public static final String DEACTIVATE_LATER = "deactivate_later.txt"; // NOI18N
 
62
    
 
63
    /** Explore <cluster>/update directory and schedules actions handler for
 
64
     * Install/Update, Uninstall or Disable modules
 
65
     * 
 
66
     */
 
67
    private void dispatch () {
 
68
        assert ! SwingUtilities.isEventDispatchThread () : "Cannot run in EQ";
 
69
        try {
 
70
            // uninstall first
 
71
            if (isUninstallScheduled ()) {
 
72
                ModuleDeactivator.delete ();
 
73
            }
 
74
 
 
75
            // then disable
 
76
            if (isDisableScheduled ()) {
 
77
                ModuleDeactivator.disable ();
 
78
            }
 
79
 
 
80
            // finally install/update
 
81
            if (isInstallScheduled ()) {
 
82
                try {
 
83
                    ModuleUpdater mu = new ModuleUpdater (null);
 
84
                    mu.start ();
 
85
                    mu.join ();
 
86
                } catch (InterruptedException ex) {
 
87
                    System.out.println("Error: " + ex);
 
88
                }
 
89
            }
 
90
        } catch (Exception x) {
 
91
            System.out.println ("Error: Handling delete throws " + x);
 
92
        } finally {
 
93
            UpdaterFrame.getUpdaterFrame ().unpackingFinished ();
 
94
        }
 
95
    }
 
96
    
 
97
    private boolean isDisableScheduled () {
 
98
        if (disable == null) {
 
99
            exploreUpdateDir ();
 
100
        }
 
101
        return disable;
 
102
    }
 
103
    
 
104
    private boolean isUninstallScheduled () {
 
105
        if (uninstall == null) {
 
106
            exploreUpdateDir ();
 
107
        }
 
108
        return uninstall;
 
109
    }
 
110
    
 
111
    private boolean isInstallScheduled () {
 
112
        if (install == null) {
 
113
            exploreUpdateDir ();
 
114
        }
 
115
        return install;
 
116
    }
 
117
    
 
118
    private void exploreUpdateDir () {
 
119
        // initialize to false
 
120
        install = false;
 
121
        uninstall = false;
 
122
        disable = false;
 
123
        
 
124
        // go over all clusters
 
125
        for (File cluster : UpdateTracking.clusters (true)) {
 
126
            File updateDir = new File (cluster, UPDATE_DIR);
 
127
            if (updateDir.exists () && updateDir.isDirectory ()) {
 
128
                // install/update
 
129
                if (install == null || ! install) {
 
130
                    install = ! ModuleUpdater.getModulesToInstall (cluster).isEmpty ();
 
131
                }
 
132
                // uninstall
 
133
                if (uninstall == null || ! uninstall) {
 
134
                    uninstall = ModuleDeactivator.hasModulesForDelete (updateDir);
 
135
                }
 
136
                // disable
 
137
                if (disable == null || ! disable) {
 
138
                    disable = ModuleDeactivator.hasModulesForDisable (updateDir);
 
139
                }
 
140
            }
 
141
        }
 
142
    }
 
143
 
 
144
    public void run () {
 
145
        dispatch ();
 
146
        UpdaterFrame.disposeSplash ();
 
147
    }
 
148
    
 
149
}