summaryrefslogtreecommitdiffstats
path: root/sandbox/samples/extending-tuscany/implementation-extension/src/main/java/sample/impl/ImplUtil.java
blob: abd4cd7ab0f1f081099f3c7b32f857735339974b (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
/*
 * 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 sample.impl;

import java.lang.annotation.Annotation;

import javax.xml.namespace.QName;

import org.apache.tuscany.sca.assembly.AssemblyFactory;
import org.apache.tuscany.sca.assembly.Reference;
import org.apache.tuscany.sca.assembly.Service;
import org.apache.tuscany.sca.interfacedef.InvalidInterfaceException;
import org.apache.tuscany.sca.interfacedef.java.JavaInterfaceContract;
import org.apache.tuscany.sca.interfacedef.java.JavaInterfaceFactory;
import org.apache.tuscany.sca.interfacedef.wsdl.WSDLDefinition;
import org.apache.tuscany.sca.interfacedef.wsdl.WSDLFactory;
import org.apache.tuscany.sca.interfacedef.wsdl.WSDLInterface;
import org.apache.tuscany.sca.interfacedef.wsdl.WSDLInterfaceContract;

import sample.api.Java;
import sample.api.WSDL;

/**
 * Utility functions to help develop a component implementation extension.
 */
class ImplUtil {

    /**
     * Return a Sample implementation with the given name.
     */
    static SampleImplementation implementation(String name) {
        final SampleImplementation impl = new SampleImplementation(name);
        impl.setUnresolved(true);
        return impl;
    }

    /**
     * Return the Java class configured on an annotation.
     */
    static Class<?> clazz(final Annotation a) {
        return ((Java)a).value();
    }

    /**
     * Return the WSDL QName configured on an annotation.
     */
    static QName qname(final Annotation a) {
        final String uri = ((WSDL)a).value();
        final int h = uri.indexOf('#');
        return new QName(uri.substring(0, h), uri.substring(h + 1));
    }

    /**
     * Convert a Java class to an interface contract.
     */
    static JavaInterfaceContract contract(final Class<?> c, final JavaInterfaceFactory jif) throws InvalidInterfaceException {
        final JavaInterfaceContract ic = jif.createJavaInterfaceContract();
        ic.setInterface(jif.createJavaInterface(c));
        return ic;
    }

    /**
     * Convert a WSDL interface to an interface contract.
     */
    static WSDLInterfaceContract contract(final WSDLInterface wi, final WSDLFactory wf) {
        final WSDLInterfaceContract ic = wf.createWSDLInterfaceContract();
        ic.setInterface(wi);
        return ic;
    }

    /**
     * Convert a Java class to a service.
     */
    static Service service(final Class<?> c, final JavaInterfaceFactory jif, final AssemblyFactory af) throws InvalidInterfaceException {
        Service s = af.createService();
        s.setName(c.getSimpleName());
        s.setInterfaceContract(contract(c, jif));
        return s;
    }

    /**
     * Convert a WSDL interface to a service.
     */
    static Service service(final WSDLInterface wi, final WSDLFactory wf, final AssemblyFactory af) {
        Service s = af.createService();
        s.setName(wi.getName().getLocalPart());
        s.setInterfaceContract(contract(wi, wf));
        return s;
    }

    /**
     * Convert a name and Java class to a reference.
     */
    static Reference reference(final String name, final Class<?> c, final JavaInterfaceFactory jif, final AssemblyFactory af) throws InvalidInterfaceException {
        final Reference r = af.createReference();
        r.setName(name);
        r.setInterfaceContract(contract(c, jif));
        return r;
    }

    /**
     * Convert a name and WSDL interface to a reference.
     */
    static Reference reference(final String name, final WSDLInterface wi, final WSDLFactory wf, final AssemblyFactory af) {
        final Reference r = af.createReference();
        r.setName(name);
        r.setInterfaceContract(contract(wi, wf));
        return r;
    }

    /**
     * Convert a WSDL qname to a WSDL interface.
     */
    static WSDLInterface interfaze(final QName name, final WSDLFactory wif) {
        final WSDLInterface wir = wif.createWSDLInterface();
        wir.setUnresolved(true);
        wir.setName(name);
        return wir;
    }

    /**
     * Convert a WSDL qname to a WSDL definition.
     */
    static WSDLDefinition definition(final QName name, final WSDLFactory wif) {
        final WSDLDefinition wdr = wif.createWSDLDefinition();
        wdr.setUnresolved(true);
        wdr.setNamespace(name.getNamespaceURI());
        wdr.setNameOfPortTypeToResolve(name);
        return wdr;
    }
}