summaryrefslogtreecommitdiffstats
path: root/sandbox/old/contrib/implementation-javascript/container/src/main/java/org/apache/tuscany/container/javascript/JavaScriptComponentBuilder.java
blob: 5d9ed491f920116c96e0baf7cbad2a2e2b8dcb06 (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
/*
 * 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 org.apache.tuscany.container.javascript;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.tuscany.container.javascript.rhino.RhinoScript;
import org.apache.tuscany.container.javascript.utils.xmlfromxsd.XmlInstanceRegistry;
import org.apache.tuscany.spi.annotation.Autowire;
import org.apache.tuscany.spi.builder.BuilderConfigException;
import org.apache.tuscany.spi.component.Component;
import org.apache.tuscany.spi.component.CompositeComponent;
import org.apache.tuscany.spi.component.ScopeContainer;
import org.apache.tuscany.spi.deployer.DeploymentContext;
import org.apache.tuscany.spi.extension.ComponentBuilderExtension;
import org.apache.tuscany.spi.model.ComponentDefinition;
import org.apache.tuscany.spi.model.PropertyValue;
import org.apache.tuscany.spi.model.ServiceDefinition;
import org.apache.xmlbeans.XmlObject;
import org.osoa.sca.annotations.Constructor;

/**
 * Extension point for creating {@link JavaScriptComponent}s from an assembly configuration
 */
public class JavaScriptComponentBuilder extends ComponentBuilderExtension<JavaScriptImplementation> {

    private static String head = "var xmlInstanceMap = new Array();";

    private static String part1 = "xmlInstanceMap[\"";

    private static String part2 = "\"] = ";

    private static String part3 = ";";

    private static String getXmlObjectFunction = 
        "function getXmlObject(xmlElementNamespace, xmlElementName){\n" +
        "return xmlInstanceMap[xmlElementNamespace + \"#\" + xmlElementName];\n}";
    
    XmlInstanceRegistry xmlInstRegistry;

    @Constructor({"xmlInstRegistry"})
    public JavaScriptComponentBuilder(@Autowire XmlInstanceRegistry reg) {
        this.xmlInstRegistry = reg;
    }

    protected Class<JavaScriptImplementation> getImplementationType() {
        return JavaScriptImplementation.class;
    }

    @SuppressWarnings("unchecked")
    public Component build(CompositeComponent parent, ComponentDefinition<JavaScriptImplementation> componentDefinition,
            DeploymentContext deploymentContext) throws BuilderConfigException {

        String name = componentDefinition.getName();
        JavaScriptImplementation implementation = componentDefinition.getImplementation();
        JavaScriptComponentType componentType = implementation.getComponentType();

        // get list of serviceBindings provided by this component
        Collection<ServiceDefinition> collection = componentType.getServices().values();
        List<Class<?>> services = new ArrayList<Class<?>>(collection.size());
        for (ServiceDefinition serviceDefinition : collection) {
            services.add(serviceDefinition.getServiceContract().getInterfaceClass());
            //do this for the set of references also
            enhanceRhinoScript(serviceDefinition, implementation);       
        }

        // get the properties for the component
        Collection<PropertyValue<?>> propertyValues = componentDefinition.getPropertyValues().values();
        Map<String, Object> properties = new HashMap<String, Object>();
        for (PropertyValue propertyValue : propertyValues) {
            properties.put(propertyValue.getName(), propertyValue.getValueFactory().getInstance());
        }

        RhinoScript rhinoScript = implementation.getRhinoScript();

        return new JavaScriptComponent(name, rhinoScript, properties, parent, wireService, workContext , monitor);
    }

    private void enhanceRhinoScript(ServiceDefinition serviceDefn, JavaScriptImplementation implementation) throws BuilderConfigException {
        //if the service interface of the component is a wsdl get the wsdl interface and generate 
        //xml instances for the elements in it.  Add these xml instances to the rhinoscript.
        //TODO : when interface.wsdl and wsdl registry is integrated remove this hardcoding and 
        //obtain wsdl from the interface.wsdl or wsdl registry
        String wsdlPath = "org/apache/tuscany/container/javascript/rhino/helloworld.wsdl";

        //this if block is a tempfix to get other testcases working. Again when a the interface.wsdl 
        //extension is in place this will be deleted.  Right now this is the only way we know that 
        //a js has to do with an interface that is wsdl.
        if (!implementation.getRhinoScript().getScriptName().endsWith("e4x.js")) {
            return;
        }

        try {
            Map<String, XmlObject> xmlInstanceMap = xmlInstRegistry.getXmlInstance(wsdlPath);
            StringBuffer sb = new StringBuffer();

            sb.append(head);
            sb.append("\n");
            for (String xmlInstanceKey : xmlInstanceMap.keySet()) {
                sb.append(part1);
                sb.append(xmlInstanceKey);
                sb.append(part2);
                sb.append(xmlInstanceMap.get(xmlInstanceKey).toString());
                sb.append(part3);
                sb.append("\n");
            }
            // System.out.println(" **** - " + sb.toString());

            sb.append(getXmlObjectFunction);

            RhinoScript rhinoScript = implementation.getRhinoScript();
            sb.append(rhinoScript.getScript());
            rhinoScript.setScript(sb.toString());
            rhinoScript.initScriptScope(rhinoScript.getScriptName(), sb.toString(), null, rhinoScript.getClassLoader());
            implementation.setRhinoScript(rhinoScript);

        } catch (Exception e) {
            throw new BuilderConfigException(e);
        }
    }

}