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: /*
043: * TestCatalogModel.java
044: *
045: * Created on April 2, 2006, 10:41 AM
046: *
047: * To change this template, choose Tools | Template Manager
048: * and open the template in the editor.
049: */
050:
051: package org.netbeans.modules.xml.wsdl.ui;
052:
053: import java.io.File;
054: import java.io.FileInputStream;
055: import java.io.InputStream;
056: import javax.swing.text.Document;
057: import org.netbeans.modules.xml.xam.locator.CatalogModelException;
058: import org.netbeans.modules.xml.xam.ModelSource;
059: import org.netbeans.modules.xml.xam.spi.ModelAccessProvider;
060: import org.openide.filesystems.FileObject;
061: import org.openide.filesystems.FileUtil;
062: import org.openide.loaders.DataObject;
063: import org.openide.loaders.DataObjectNotFoundException;
064: import org.openide.util.Lookup;
065: import org.openide.util.lookup.Lookups;
066:
067: /**
068: *
069: * @author girix
070: */
071:
072: public class TestUtil {
073:
074: public static ModelSource createModelSource(
075: final FileObject this FileObj, boolean editable)
076: throws CatalogModelException {
077: assert this FileObj != null : "Null file object.";
078: final DataObject dobj;
079: try {
080: dobj = DataObject.find(this FileObj);
081: } catch (DataObjectNotFoundException ex) {
082: throw new CatalogModelException(ex);
083: }
084: final Document document = getDocument(this FileObj);
085: Lookup proxyLookup = Lookups.proxy(new Lookup.Provider() {
086: public Lookup getLookup() {
087: return Lookups.fixed(new Object[] { this FileObj,
088: document, dobj,
089: new ModelAccessProviderImpl(this FileObj) });
090: }
091: });
092: return new ModelSource(proxyLookup, editable);
093: }
094:
095: private static Document getDocument(FileObject fo) {
096: Document result = null;
097: if (result != null)
098: return result;
099: try {
100:
101: InputStream fis = fo.getInputStream();
102: byte buffer[] = new byte[fis.available()];
103: // result = new org.netbeans.editor.BaseDocument(
104: // org.netbeans.modules.xml.text.syntax.XMLKit.class, false);
105: result = new javax.swing.text.PlainDocument();
106: result.remove(0, result.getLength());
107: fis.read(buffer);
108: fis.close();
109: String str = new String(buffer);
110: result.insertString(0, str, null);
111:
112: } catch (Exception dObjEx) {
113: return null;
114: }
115: return result;
116: }
117:
118: static class ModelAccessProviderImpl implements ModelAccessProvider {
119: private FileObject mFile;
120:
121: public ModelAccessProviderImpl(FileObject file) {
122: this .mFile = file;
123: }
124:
125: public Object getModelSourceKey(ModelSource source) {
126: return mFile;
127: }
128:
129: }
130: }
|