summaryrefslogtreecommitdiffstats
path: root/sandbox/implementation-spring2/src/main/java/org/apache/tuscany/implementation/spring/xml/SpringBeanIntrospector.java
blob: 0fdeb4da717f84c720d0071cbf0197484a3e119e (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
/*
 * 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.implementation.spring.xml;

import java.util.List;
import java.util.ArrayList;
import java.util.Iterator;

import org.apache.tuscany.sca.assembly.AssemblyFactory;
import org.apache.tuscany.sca.contribution.service.ContributionResolveException;
import org.apache.tuscany.sca.interfacedef.java.JavaInterfaceFactory;
import org.apache.tuscany.sca.interfacedef.java.introspect.JavaInterfaceIntrospector;
import org.apache.tuscany.sca.implementation.java.DefaultJavaImplementationFactory;
import org.apache.tuscany.sca.implementation.java.JavaImplementation;
import org.apache.tuscany.sca.implementation.java.JavaImplementationFactory;
import org.apache.tuscany.sca.implementation.java.introspect.DefaultJavaClassIntrospectorExtensionPoint;
import org.apache.tuscany.sca.implementation.java.introspect.ExtensibleJavaClassIntrospector;
import org.apache.tuscany.sca.implementation.java.introspect.IntrospectionException;
import org.apache.tuscany.sca.implementation.java.introspect.JavaClassIntrospector;
import org.apache.tuscany.sca.implementation.java.introspect.JavaClassIntrospectorExtensionPoint;
import org.apache.tuscany.sca.implementation.java.introspect.JavaClassVisitor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.AllowsPassByReferenceProcessor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.BaseJavaClassVisitor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.ConstructorProcessor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.ContextProcessor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.ConversationProcessor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.DestroyProcessor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.EagerInitProcessor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.HeuristicPojoProcessor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.InitProcessor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.PolicyProcessor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.PropertyProcessor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.ReferenceProcessor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.ResourceProcessor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.ScopeProcessor;
import org.apache.tuscany.sca.implementation.java.introspect.impl.ServiceProcessor;
import org.apache.tuscany.sca.policy.PolicyFactory;

import org.apache.tuscany.sca.assembly.ComponentType;
import org.apache.tuscany.sca.assembly.Reference;
import org.apache.tuscany.sca.assembly.Service;

/**
 * Provides introspection functions for Spring beans
 * This version leans heavily on the implementation-java classes
 *
 * @version $Rev: 512919 $ $Date: 2007-02-28 19:32:56 +0000 (Wed, 28 Feb 2007) $
 */
public class SpringBeanIntrospector {

	private JavaClassIntrospector classIntrospector;
    private JavaClassIntrospectorExtensionPoint classVisitors = 
    	new DefaultJavaClassIntrospectorExtensionPoint();
    private JavaImplementationFactory javaImplementationFactory;

	/**
	 * The constructor sets up the various visitor elements that will be used to inrospect
	 * the Spring bean and extract SCA information
	 * @param assemblyFactory - an AssemblyFactory
	 * @param interfaceIntrospector - an Java InterfaceIntrospector
	 * @param javaFactory - a Java Interface Factory
	 */
    public SpringBeanIntrospector( AssemblyFactory assemblyFactory,
			 JavaInterfaceIntrospector interfaceIntrospector,
			 JavaInterfaceFactory javaFactory,
			 PolicyFactory 		  policyFactory ) {
    	
        // Create the list of class visitors
    	BaseJavaClassVisitor[] extensions = new BaseJavaClassVisitor[] {
                new ConstructorProcessor(assemblyFactory),
                new AllowsPassByReferenceProcessor(assemblyFactory),
                new ContextProcessor(assemblyFactory),
                new ConversationProcessor(assemblyFactory),
                new DestroyProcessor(assemblyFactory),
                new EagerInitProcessor(assemblyFactory),
                new InitProcessor(assemblyFactory),
                new PropertyProcessor(assemblyFactory),
                new ReferenceProcessor(assemblyFactory, javaFactory, interfaceIntrospector),
                new ResourceProcessor(assemblyFactory),
                new ScopeProcessor(assemblyFactory),
                new ServiceProcessor(assemblyFactory, javaFactory, interfaceIntrospector),
                new HeuristicPojoProcessor(assemblyFactory, javaFactory, interfaceIntrospector),
                new PolicyProcessor(assemblyFactory, policyFactory)
            };
        for (JavaClassVisitor extension : extensions) {
            classVisitors.addClassVisitor(extension);
        }
        this.classIntrospector = new ExtensibleJavaClassIntrospector(classVisitors);
        
        javaImplementationFactory = new DefaultJavaImplementationFactory();

    } // end constructor 
    
    /**
     * Introspect a Spring Bean and extract the features important to SCA
     * @param beanClass the Spring Bean class to introspect
     * @param componentType the componentType that is filled in through the introspection
     * process (assumed empty on invocation, filled on return
     * @throws ContributionResolveException - if there was a problem resolving the
     * Spring Bean or its componentType
     *
     */
    public void introspectBean( Class<?> beanClass, ComponentType componentType ) 
    	throws ContributionResolveException {
    	
    	if( componentType == null ) throw new ContributionResolveException( 
    			"Introspect Spring bean: supplied componentType is null" );
        
    	// Create a Java implementation ready for the introspection
    	JavaImplementation javaImplementation = javaImplementationFactory.createJavaImplementation();
    	
    	try {
    		// Introspect the bean...the results of the introspection are placed into the Java implementation
            classIntrospector.introspect( beanClass, javaImplementation);
            
            // Extract the services, references & properties found through introspection
            // put the services, references and properties into the component type
            componentType.getServices().addAll( javaImplementation.getServices() );
            componentType.getReferences().addAll( javaImplementation.getReferences() );
            componentType.getProperties().addAll( javaImplementation.getProperties() );
        } catch (IntrospectionException e) {
            throw new ContributionResolveException(e);
        } // end try
        
        List<Service> services = javaImplementation.getServices();
        for ( Service service : services ) {
        	String name = service.getName();
        	System.out.println("Spring Bean: found service with name: " + name);
        } // end for

    } // end method introspectBean
    
  
    
} // end class SpringBeanIntrospector