~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to nbbuild/antsrc/org/netbeans/nbbuild/ConfigureModules.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-2006 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.nbbuild;
 
43
 
 
44
import java.util.*;
 
45
 
 
46
import org.apache.tools.ant.BuildException;
 
47
import org.apache.tools.ant.Project;
 
48
import org.apache.tools.ant.Task;
 
49
 
 
50
/** Set a default list of modules for a given configuration.
 
51
 * Ugly implementation because of the poor support for initialization
 
52
 * from nested elements in Ant.
 
53
 * @author Jesse Glick
 
54
 * @deprecated unused
 
55
 */
 
56
@Deprecated
 
57
public class ConfigureModules extends Task {
 
58
 
 
59
    private String property, config;
 
60
    private List<Config> configs = new LinkedList<Config>();
 
61
 
 
62
    /** You must add a <samp>&lt;config&gt;</samp> nested element for each configuration. */
 
63
    public class Config {
 
64
        public String name, modules;
 
65
        /** Name of the configuration. Used in <samp>-Dmoduleconfig=...</samp> option. */
 
66
        public void setName (String n) {
 
67
            name = n;
 
68
            //checkMyself ();
 
69
        }
 
70
        /** Comma-separated list of modules. */
 
71
        public void setModules (String m) {
 
72
            modules = m;
 
73
            //checkMyself ();
 
74
        }
 
75
        public String toString () {
 
76
            return name;
 
77
        }
 
78
        /*
 
79
        private void checkMyself () {
 
80
            if (name != null && modules != null && config.equals (name)) {
 
81
                if (project0 ().getProperty (property) == null) {
 
82
                    project0 ().setProperty (property, modules);
 
83
                } else {
 
84
                    log0 ("Note: not overriding property " + property, Project.MSG_VERBOSE);
 
85
                }
 
86
            }
 
87
        }
 
88
        */
 
89
    }
 
90
    /*
 
91
    // Javac 1.2 nonsense:
 
92
    private void log0 (String m, int l) {
 
93
        log (m, l);
 
94
    }
 
95
    private Project project0 () {
 
96
        return project;
 
97
    }
 
98
    */
 
99
 
 
100
    /** Name of the property used to hold the resulting comma-separated list of modules. */
 
101
    public void setProperty (String p) {
 
102
        property = p;
 
103
    }
 
104
    /** The desired configuration. */
 
105
    public void setSelectedconfig (String c) {
 
106
        config = c;
 
107
    }
 
108
 
 
109
    public Config createConfig () {
 
110
        Config c = new Config ();
 
111
        configs.add (c);
 
112
        return c;
 
113
    }
 
114
 
 
115
    public void execute () throws BuildException {
 
116
        if (property == null || config == null)
 
117
            throw new BuildException("Must set both the property and selectedconfig attributes", getLocation());
 
118
        Iterator it = configs.iterator ();
 
119
        while (it.hasNext ()) {
 
120
            Config c = (Config) it.next ();
 
121
            if (config.equals (c.name)) {
 
122
                String value = c.modules;
 
123
                if (value == null)
 
124
                    throw new BuildException("Missing modules attribute for config " + config, getLocation());
 
125
                if (getProject().getProperty(property) == null) {
 
126
                    getProject().setProperty(property, value);
 
127
                } else {
 
128
                    log ("Note: not overriding property " + property, Project.MSG_VERBOSE);
 
129
                }
 
130
                return;
 
131
            }
 
132
        }
 
133
        throw new BuildException("Unrecognized module configuration: " + config + "; pick from: " + configs, getLocation());
 
134
    }
 
135
 
 
136
}