summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/tags/2.0.1-RC1/testing/itest/ws/wsdlgen/src/test/java/helloworld/SchemaCorrectionTestCase.java
blob: 39f5380a0051bfe67805757934261f0cede7807d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package helloworld;

import java.io.IOException;
import java.lang.annotation.Annotation;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.SchemaOutputResolver;
import javax.xml.bind.annotation.XmlSchema;
import javax.xml.namespace.QName;
import javax.xml.transform.Result;
import javax.xml.transform.Source;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMResult;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;

import org.apache.tuscany.sca.Node;
import org.apache.tuscany.sca.TuscanyRuntime;
import org.apache.tuscany.sca.core.ExtensionPointRegistry;
import org.apache.tuscany.sca.databinding.jaxb.JAXBContextHelper;
import org.apache.tuscany.sca.databinding.jaxb.JAXBTypeHelper;
import org.apache.tuscany.sca.impl.NodeImpl;
import org.apache.tuscany.sca.interfacedef.java.jaxws.GeneratedClassLoader;
import org.apache.ws.commons.schema.XmlSchemaCollection;
import org.apache.ws.commons.schema.XmlSchemaComplexType;
import org.apache.ws.commons.schema.XmlSchemaElement;
import org.apache.ws.commons.schema.XmlSchemaGroupBase;
import org.apache.ws.commons.schema.XmlSchemaImport;
import org.apache.ws.commons.schema.XmlSchemaObject;
import org.apache.ws.commons.schema.XmlSchemaObjectCollection;
import org.apache.ws.commons.schema.XmlSchemaSerializer.XmlSchemaSerializerException;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.objectweb.asm.AnnotationVisitor;
import org.objectweb.asm.ClassWriter;
import org.objectweb.asm.FieldVisitor;
import org.objectweb.asm.MethodVisitor;
import org.objectweb.asm.Opcodes;
import org.w3c.dom.Document;

import anotherpackage.BBean;
import anotherpackage.CBean;
import yetanotherpackage.DBean;

/**
 * Tests that the helloworld server is available
 */
@Ignore("Just some scratch code I don't want to loose just yet")
public class SchemaCorrectionTestCase{

    private Node node;

    @Before
	public void startServer() throws Exception {
        node = TuscanyRuntime.newInstance().createNode("default");
	}
    
    @Test
    public void testSchemaGen() throws JAXBException, IOException, TransformerException, Exception {                  
        ExtensionPointRegistry extensionPointRegistry = ((NodeImpl)node).getExtensionPointRegistry();
        JAXBTypeHelper typeHelper = new JAXBTypeHelper(extensionPointRegistry);
        JAXBContextHelper contextHelper = new JAXBContextHelper(extensionPointRegistry);
        
        //typeHelper.getSchemaDefinitions(factory, resolver, intf);
        
        Package pkg = CBean.class.getPackage();
        String pkgName = pkg.getName();
        Annotation[] pkgAnnotations = pkg.getAnnotations();
        boolean genPkgInfo = true;
        
        for (Annotation annotation : pkgAnnotations){
            if (annotation instanceof XmlSchema){
                XmlSchema schemaAnnotation = (XmlSchema)annotation;
                if (schemaAnnotation.namespace() != null){
                    genPkgInfo = false;
                    break;
                }
            }
        }
        
        JAXBContext context = null;
            
        if (genPkgInfo){
            System.out.println("There is no package info so generate one");
/*  Can gen the annotation but then what?             
            Class<?> genClass = generatePackageInfo(pkgName, "http://sometestsnamespace");
            
            Package pkgGen = aClass.getPackage();
            String pkgGenName = pkg.getName();
            Annotation[] pkgGenAnnotations = pkg.getAnnotations();
            XmlSchema schemaAnnotation = null;
            
            for (Annotation annotation : pkgGenAnnotations){
                if (annotation instanceof XmlSchema){
                    schemaAnnotation = (XmlSchema)annotation;
                }
            }
            
            pkgAnnotations = pkgGenAnnotations;
*/            
            
/*   Can't pass the generarted package into JAXB. It has to 
 *   be properly referenced as a package of a class you're trying 
 *   generate.          
            Class<?>[] classes = {aClass, genClass};
            context = contextHelper.createJAXBContext(classes);
*/         
        } else {
            System.out.println("There is package info");
        }
        
        Class<?>[] classes = {ABean.class, BBean.class, CBean.class, DBean.class};
        context = contextHelper.createJAXBContext(classes);
   
        DOMResolverImpl resolver = new DOMResolverImpl();
        context.generateSchema(resolver);     
        
        String toNamespace = null;
        String fromNamespace = null;
        Document toDocument = null;
        Document fromDocument = null;
        Map<String, Document> otherDocuments = new HashMap<String, Document>();
        
        Map<String, DOMResult> results = resolver.getResults();
        for (Map.Entry<String, DOMResult> entry : results.entrySet()) {
            System.out.println("\nPREMERGE NS: " + entry.getKey());
            if (entry.getKey().equals("")){
                fromNamespace = entry.getKey();
                fromDocument = (Document)entry.getValue().getNode();
            } else if (entry.getKey().equals("http://helloworld/")){
                toNamespace = entry.getKey();
                toDocument = (Document)entry.getValue().getNode();
            } else {
                otherDocuments.put(entry.getKey(), (Document)entry.getValue().getNode());
            }
            System.out.println("PREMERGE XSD: ");
            printDOM((Document)entry.getValue().getNode());
        }
        
        // merge no-namespace XSD into default namespace XSD
        System.out.println("\nPOSTMERGE");
        List<Document> mergedDocuments = mergeSchema(fromNamespace, fromDocument, toNamespace, toDocument, otherDocuments.values());
        
        for (Document mergedDocument : mergedDocuments){
            System.out.println("\n");
            printDOM(mergedDocument);
        }    
    }

	@After
	public void stopServer() throws Exception {

	}
	
    private static class DOMResolverImpl extends SchemaOutputResolver {
        private Map<String, DOMResult> results = new HashMap<String, DOMResult>();

        @Override
        public Result createOutput(String ns, String file) throws IOException {
            DOMResult result = new DOMResult();
            // TUSCANY-2498: Set the system id to "" so that the xsd:import doesn't produce 
            // an illegal schemaLocation attr 
            result.setSystemId("");
            results.put(ns, result);
            return result;
        }

        public Map<String, DOMResult> getResults() {
            return results;
        }
    }
    
    private void printDOM(Document document)throws TransformerException {
        Transformer transformer = TransformerFactory.newInstance().newTransformer();
        Source source = new DOMSource(document);
        Result output = new StreamResult(System.out);
        transformer.transform(source, output);
    }
    
    public Class<?> generatePackageInfo(String packageName, String namespace) throws Exception{
        String className  = packageName + ".package-info";
        String internalClassName = className.replace('.', '/');

        PackageInfoGenerator pig = new PackageInfoGenerator();
        
        byte[] byteCode = pig.dump(internalClassName, namespace);
        
        GeneratedClassLoader classLoader = new GeneratedClassLoader(this.getClass().getClassLoader());
        return classLoader.getGeneratedClass(className, byteCode);
    }
    
    
    public class PackageInfoGenerator implements Opcodes {

        public byte[] dump (String internalClassName, String namespace) throws Exception {
            ClassWriter cw = new ClassWriter(0);
            FieldVisitor fv;
            MethodVisitor mv;
            AnnotationVisitor av0;
    
            cw.visit(V1_6, ACC_ABSTRACT + ACC_INTERFACE + ACC_SYNTHETIC, internalClassName, null, "java/lang/Object", null);
    
            cw.visitSource("package-info.java", null);
    

            av0 = cw.visitAnnotation("Ljavax/xml/bind/annotation/XmlSchema;", true);
            av0.visit("namespace", namespace);
            av0.visitEnd();

            cw.visitEnd();
    
            return cw.toByteArray();
        }
    }
    
    private List<Document> mergeSchema(String fromNamespace, Document fromDoc, String toNamespace, Document toDoc, Collection<Document> relatedDocs) throws XmlSchemaSerializerException{
        // Read all the input DOMs into a schema collection so we can maniuplate them
        XmlSchemaCollection schemaCollection = new XmlSchemaCollection();
        schemaCollection.read(fromDoc.getDocumentElement());
        schemaCollection.read(toDoc.getDocumentElement());
        
        for(Document doc : relatedDocs){
            schemaCollection.read(doc.getDocumentElement());
        }
        
        org.apache.ws.commons.schema.XmlSchema fromSchema = null;
        org.apache.ws.commons.schema.XmlSchema toSchema = null;
        List<org.apache.ws.commons.schema.XmlSchema> relatedSchema = new ArrayList<org.apache.ws.commons.schema.XmlSchema>();
        org.apache.ws.commons.schema.XmlSchema schemas[] = schemaCollection.getXmlSchemas();
        for (int i=1; i < schemas.length; i++){
            org.apache.ws.commons.schema.XmlSchema schema = schemas[i];
            if (schema.getTargetNamespace() == null){
                fromSchema = schema;
            } else if (schema.getTargetNamespace().equals(toNamespace)){
                toSchema = schema; 
                relatedSchema.add(schema);
            } else {
                relatedSchema.add(schema);
            }
        }
        
        // copy all the FROM items to the TO schema
        XmlSchemaObjectCollection fromItems = fromSchema.getItems();
        XmlSchemaObjectCollection toItems = toSchema.getItems();
       
        Iterator<XmlSchemaObject> iter = fromItems.getIterator();
        while(iter.hasNext()){
            // don't copy import for TO namespace
            XmlSchemaObject obj = iter.next();
            if (obj instanceof XmlSchemaImport &&
                ((XmlSchemaImport)obj).getNamespace().equals(toNamespace)){
                // do nothing
            } else {
                toItems.add(obj);
                // correct any references to the item just moved
                fixUpMovedTypeReferences(fromNamespace, toNamespace, obj, relatedSchema);
            }
        }
        
        // Create the list of resulting DOMs
        List<Document> resultDocs = new ArrayList<Document>();
        
        for (org.apache.ws.commons.schema.XmlSchema related : relatedSchema){
            resultDocs.add(related.getSchemaDocument());
        }
        
        return resultDocs;
    }
    
    public void fixUpMovedTypeReferences(String fromNamespace, String toNamespace, XmlSchemaObject fixUpObj, List<org.apache.ws.commons.schema.XmlSchema> relatedSchema){
        
        if (!(fixUpObj instanceof XmlSchemaComplexType)){
            return;
        }
        
        for (org.apache.ws.commons.schema.XmlSchema schema : relatedSchema){
            int importRemoveIndex = -1;
            for (int i = 0; i < schema.getItems().getCount(); i++){
                XmlSchemaObject obj = schema.getItems().getItem(i);
                
                // if this is not the TO schema then fix up all references
                // to items moved to the TO schema
                if(!schema.getTargetNamespace().equals(toNamespace)){
                    processXMLSchemaObject(toNamespace, obj, fixUpObj);
                }
                
                // remove FROM imports
                if (obj instanceof XmlSchemaImport &&
                    ((XmlSchemaImport)obj).getNamespace().equals(fromNamespace)){
                    importRemoveIndex = i;
                }
            }

            if (importRemoveIndex >= 0){
                schema.getItems().removeAt(importRemoveIndex);
            }
        }
    }
    
    public void processXMLSchemaObject(String toNamespace, XmlSchemaObject obj,  XmlSchemaObject fixUpObj){
        if (obj instanceof XmlSchemaComplexType){
            processXMLSchemaObject(toNamespace, ((XmlSchemaComplexType)obj).getParticle(), fixUpObj);
        } else if (obj instanceof XmlSchemaElement){
            XmlSchemaElement element = (XmlSchemaElement)obj;
            if(element.getSchemaType() == fixUpObj){
                QName name = element.getSchemaTypeName();
                QName newName = new QName(toNamespace, name.getLocalPart());
                element.setSchemaTypeName(newName);
            }
            ((XmlSchemaElement)obj).getSchemaType();
        } else if (obj instanceof XmlSchemaGroupBase){
            XmlSchemaObjectCollection items = ((XmlSchemaGroupBase)obj).getItems();
            Iterator<XmlSchemaObject> iter = items.getIterator();
            while(iter.hasNext()){
                processXMLSchemaObject(toNamespace, iter.next(), fixUpObj);
            }
        }
    }
    
/*
    private List<Document> mergeSchema(String fromNamespace, Document fromDoc, String toNamespace, Document toDoc, Collection<Document> relatedDocs) throws XmlSchemaSerializerException{
        XmlSchemaCollection schemaCollection = new XmlSchemaCollection();
        schemaCollection.read(fromDoc.getDocumentElement());
        schemaCollection.read(toDoc.getDocumentElement());
        
        for(Document doc : relatedDocs){
            schemaCollection.read(doc.getDocumentElement());
        }
        
        org.apache.ws.commons.schema.XmlSchema fromSchema = null;
        org.apache.ws.commons.schema.XmlSchema toSchema = null;
        List<org.apache.ws.commons.schema.XmlSchema> relatedSchema = new ArrayList<org.apache.ws.commons.schema.XmlSchema>();
        org.apache.ws.commons.schema.XmlSchema schemas[] = schemaCollection.getXmlSchemas();
        for (int i=1; i < schemas.length; i++){
            org.apache.ws.commons.schema.XmlSchema schema = schemas[i];
            if (schema.getTargetNamespace() == null){
                fromSchema = schema;
            } else if (schema.getTargetNamespace().equals(toNamespace)){
                toSchema = schema;   
            } else {
                relatedSchema.add(schema);
            }
        }
        
        // add all the FROM items to the TO schema
        XmlSchemaObjectCollection fromItems = fromSchema.getItems();
        XmlSchemaObjectCollection toItems = toSchema.getItems();
       
        Iterator<XmlSchemaObject> iter = fromItems.getIterator();
        while(iter.hasNext()){
            // don't copy import for TO namespace
            XmlSchemaObject obj = iter.next();
            if (obj instanceof XmlSchemaImport &&
                ((XmlSchemaImport)obj).getNamespace().equals(toNamespace)){
                // do nothing
            } else {
                toItems.add(obj);
                fixUpMovedTypeReferences(fromNamespace, toNamespace, obj, relatedSchema);
            }
        }
        
        // remove the FROM namespace from TO schema includes list
        XmlSchemaObjectCollection toIncludes = toSchema.getIncludes();
        XmlSchemaImport schemaImport = null;
        iter = toIncludes.getIterator();
        while(iter.hasNext()){
            XmlSchemaImport tmpImport = (XmlSchemaImport)iter.next();
            if (tmpImport.getNamespace().equals(fromNamespace)){
                schemaImport = tmpImport;
                break;
            }
        }
        
        if (schemaImport != null){
            toIncludes.remove(schemaImport);
            toItems.remove(schemaImport);
        }       
        
        List<Document> resultDocs = new ArrayList<Document>();
        resultDocs.add(toSchema.getSchemaDocument());
        
        for (org.apache.ws.commons.schema.XmlSchema related : relatedSchema){
            resultDocs.add(related.getSchemaDocument());
        }
        
        return resultDocs;
    }
    
    public void fixUpMovedTypeReferences(String fromNamespace, String toNamespace, XmlSchemaObject fixUpObj, List<org.apache.ws.commons.schema.XmlSchema> relatedSchema){
        for (org.apache.ws.commons.schema.XmlSchema schema : relatedSchema){
            XmlSchemaObjectCollection items = schema.getItems();
            Iterator<XmlSchemaObject> iter = items.getIterator();
            XmlSchemaImport importToRemove = null;
            while(iter.hasNext()){
                XmlSchemaObject obj = iter.next();
                processXMLSchemaObject(toNamespace, obj, fixUpObj);
                
                // remote FROM imports
                if (obj instanceof XmlSchemaImport &&
                   ((XmlSchemaImport)obj).getNamespace().equals(fromNamespace)){
                    importToRemove = (XmlSchemaImport)obj;
                }
            }
            
            if (importToRemove != null){
                items.remove(importToRemove);
                schema.getIncludes().remove(importToRemove);
            }
        }
    }
    
    public void processXMLSchemaObject(String toNamespace, XmlSchemaObject obj,  XmlSchemaObject fixUpObj){
        if (obj instanceof XmlSchemaComplexType){
            processXMLSchemaObject(toNamespace, ((XmlSchemaComplexType)obj).getParticle(), fixUpObj);
        } else if (obj instanceof XmlSchemaElement){
            XmlSchemaElement element = (XmlSchemaElement)obj;
            if(element.getSchemaType() == fixUpObj){
                QName name = element.getSchemaTypeName();
                QName newName = new QName(toNamespace, name.getLocalPart());
                element.setSchemaTypeName(newName);
            }
            ((XmlSchemaElement)obj).getSchemaType();
        } else if (obj instanceof XmlSchemaGroupBase){
            XmlSchemaObjectCollection items = ((XmlSchemaGroupBase)obj).getItems();
            Iterator<XmlSchemaObject> iter = items.getIterator();
            while(iter.hasNext()){
                processXMLSchemaObject(toNamespace, iter.next(), fixUpObj);
            }
        }
    }
 */
    
}