001 // Copyright 2004, 2005 The Apache Software Foundation
002 //
003 // Licensed under the Apache License, Version 2.0 (the "License");
004 // you may not use this file except in compliance with the License.
005 // You may obtain a copy of the License at
006 //
007 // http://www.apache.org/licenses/LICENSE-2.0
008 //
009 // Unless required by applicable law or agreed to in writing, software
010 // distributed under the License is distributed on an "AS IS" BASIS,
011 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
012 // See the License for the specific language governing permissions and
013 // limitations under the License.
014
015 package org.apache.hivemind.service.impl;
016
017 import javassist.CtClass;
018 import javassist.NotFoundException;
019
020 import org.apache.hivemind.ApplicationRuntimeException;
021 import org.apache.hivemind.service.ClassFabUtils;
022
023 /**
024 * Wrapper around Javassist's {@link javassist.ClassPool} and our own
025 * {@link org.apache.hivemind.service.impl.ClassFactoryClassLoader} that manages the creation of new
026 * instance of {@link javassist.CtClass} and converts finished CtClass's into instantiable Classes.
027 *
028 * @author Howard Lewis Ship
029 */
030 public class CtClassSource
031 {
032 private HiveMindClassPool _pool;
033
034 private int _createdClassCount = 0;
035
036 /**
037 * Returns the number of classes (and interfaces) created by this source.
038 *
039 * @see #createClass(CtClass)
040 * @return the count
041 * @since 1.2
042 */
043 public int getCreatedClassCount()
044 {
045 return _createdClassCount;
046 }
047
048 public CtClassSource(HiveMindClassPool pool)
049 {
050 _pool = pool;
051 }
052
053 public boolean canConvert(Class searchClass)
054 {
055 ensureClassLoaderAvailable(searchClass);
056 String name = ClassFabUtils.getJavaClassName(searchClass);
057 try
058 {
059 _pool.get(name);
060 return true;
061 }
062 catch (NotFoundException ex)
063 {
064 return false;
065 }
066 }
067
068 public CtClass getCtClass(Class searchClass)
069 {
070 ensureClassLoaderAvailable(searchClass);
071
072 String name = ClassFabUtils.getJavaClassName(searchClass);
073
074 try
075 {
076 return _pool.get(name);
077 }
078 catch (NotFoundException ex)
079 {
080 throw new ApplicationRuntimeException(ServiceMessages.unableToLookupClass(name, ex), ex);
081 }
082 }
083
084 /**
085 * @param searchClass
086 */
087 private void ensureClassLoaderAvailable(Class searchClass) {
088 ClassLoader loader = searchClass.getClassLoader();
089
090 // Add the class loader for the searchClass to the class pool and
091 // delegating class loader if needed.
092
093 _pool.appendClassLoader(loader);
094 }
095
096 public CtClass newClass(String name, Class superClass)
097 {
098 CtClass ctSuperClass = getCtClass(superClass);
099
100 return _pool.makeClass(name, ctSuperClass);
101 }
102
103 /**
104 * Creates a new, empty interace, with the given name.
105 *
106 * @since 1.1
107 */
108
109 public CtClass newInterface(String name)
110 {
111 return _pool.makeInterface(name);
112 }
113
114 public Class createClass(CtClass ctClass)
115 {
116 // String className = ctClass.getName();
117
118 try
119 {
120 Class result = _pool.toClass(ctClass);
121
122 _createdClassCount++;
123
124 return result;
125 }
126 catch (Throwable ex)
127 {
128 throw new ApplicationRuntimeException(ServiceMessages.unableToWriteClass(ctClass, ex),
129 ex);
130 }
131 }
132 }