001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package org.netbeans.spi.autoupdate;
043:
044: import java.net.MalformedURLException;
045: import java.net.URL;
046: import java.util.HashMap;
047: import java.util.Map;
048: import java.util.jar.Attributes;
049: import java.util.jar.Manifest;
050: import org.netbeans.api.autoupdate.OperationException;
051: import org.netbeans.api.autoupdate.UpdateUnitProvider.CATEGORY;
052: import org.netbeans.api.progress.ProgressHandle;
053:
054: /**
055: *
056: * @author Jiri Rechtacek
057: */
058: public class CustomProviderFactory {
059:
060: public static UpdateProvider getCustomUpdateProvider() {
061: UpdateProvider provider = new UpdateProvider() {
062: public String getName() {
063: return "test-custom-provider";
064: }
065:
066: public String getDisplayName() {
067: return "Test Provider provides self-installed components.";
068: }
069:
070: public String getDescription() {
071: return null;
072: }
073:
074: public Map<String, UpdateItem> getUpdateItems() {
075: Map<String, UpdateItem> res = new HashMap<String, UpdateItem>();
076: res.put("test-module", createNbmModule());
077: res.put("test-custom-component",
078: createCustomComponent());
079: return res;
080: }
081:
082: public boolean refresh(boolean force) {
083: return true;
084: }
085:
086: public CATEGORY getCategory() {
087: return CATEGORY.COMMUNITY;
088: }
089: };
090: return provider;
091: }
092:
093: private static UpdateItem createNbmModule() {
094: String codeName = "test-module";
095: String specificationVersion = "1.0";
096: URL distribution = null;
097: try {
098: distribution = new URL("http://netbeans.de/module.nbm");
099: } catch (MalformedURLException ex) {
100: assert false : ex;
101: }
102: String author = "Jiri Rechtacek";
103: String downloadSize = "12";
104: String homepage = "http://netbeans.de";
105: Manifest manifest = new Manifest();
106: Attributes mfAttrs = manifest.getMainAttributes();
107: mfAttrs.put(new Attributes.Name("OpenIDE-Module"),
108: "org.test.module/1");
109: mfAttrs.put(new Attributes.Name(
110: "OpenIDE-Module-Implementation-Version"), "060216");
111: mfAttrs
112: .put(new Attributes.Name(
113: "OpenIDE-Module-Long-Description"),
114: "Real module Hello installs Hello menu item into Help menu.");
115: mfAttrs.put(new Attributes.Name(
116: "OpenIDE-Module-Module-Dependencies"),
117: "org.openide.util > 6.9.0.1");
118: mfAttrs.put(new Attributes.Name("OpenIDE-Module-Name"),
119: "module");
120: mfAttrs.put(new Attributes.Name("OpenIDE-Module-Requires"),
121: "org.openide.modules.ModuleFormat1");
122: mfAttrs.put(new Attributes.Name(
123: "OpenIDE-Module-Specification-Version"), "1.0");
124: UpdateLicense license = UpdateLicense.createUpdateLicense(
125: "none-license", "no-license");
126: UpdateItem result = UpdateItem.createModule(codeName,
127: specificationVersion, distribution, author,
128: downloadSize, homepage, null, "test-category",
129: manifest, false, false, true, true, "my-cluster",
130: license);
131: return result;
132: }
133:
134: private static UpdateItem createCustomComponent() {
135: String codeName = "test-custom-component";
136: String specificationVersion = "0.1";
137: URL distribution = null;
138: try {
139: distribution = new URL(
140: "http://netbeans.org/org/netbeans/api/autoupdate/data/org-yourorghere-engine-1-1.nbm");
141: } catch (MalformedURLException ex) {
142: assert false : ex;
143: }
144: String author = "Jiri Rechtacek";
145: String downloadSize = "2815";
146: String homepage = "http://netbeans.de";
147: Manifest manifest = new Manifest();
148: Attributes mfAttrs = manifest.getMainAttributes();
149: mfAttrs.put(new Attributes.Name("OpenIDE-Module"),
150: "org.test.custom.module/1");
151: mfAttrs.put(new Attributes.Name(
152: "OpenIDE-Module-Implementation-Version"), "060216");
153: mfAttrs
154: .put(new Attributes.Name(
155: "OpenIDE-Module-Long-Description"),
156: "Real module Hello installs Hello menu item into Help menu.");
157: mfAttrs.put(new Attributes.Name("OpenIDE-Module-Name"),
158: "module");
159: mfAttrs.put(new Attributes.Name("OpenIDE-Module-Requires"),
160: "org.openide.modules.ModuleFormat1");
161: mfAttrs.put(new Attributes.Name(
162: "OpenIDE-Module-Specification-Version"), "0.1");
163: CustomInstaller ci = createCustomInstaller();
164: assert ci != null;
165: UpdateLicense license = UpdateLicense.createUpdateLicense(
166: "none-license", "no-license");
167: UpdateItem result = UpdateItem.createModule(codeName,
168: specificationVersion, distribution, author,
169: downloadSize, homepage, null, "test-category",
170: manifest, false, false, true, true, "my-cluster",
171: license);
172: return result;
173: }
174:
175: private static CustomInstaller createCustomInstaller() {
176: return new CustomInstaller() {
177: public boolean install(String codeName,
178: String specificationVersion, ProgressHandle handle)
179: throws OperationException {
180: assert codeName != null && specificationVersion != null;
181: return true;
182: }
183: };
184: }
185: }
|