lite.beans.Beans Maven / Gradle / Ivy
Show all versions of litebeans Show documentation
/*
* 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 lite.beans;
import lite.beans.beancontext.BeanContext;
import java.io.IOException;
import java.io.InputStream;
import java.io.ObjectInputStream;
import lite.beans.util.nls.Messages;
/**
* This class Beans
provides some methods for manipulting bean controls.
*/
public class Beans {
private static boolean designTime = false;
private static boolean guiAvailable = true;
/**
* Constructs a Beans instance.
*/
public Beans() {
// expected
}
@SuppressWarnings("unchecked")
private static Object internalInstantiate(ClassLoader cls, String beanName,
BeanContext context, Object initializer) throws IOException,
ClassNotFoundException {
// First try to load it from a serialization file.
String beanResourceName = getBeanResourceName(beanName);
InputStream is = (cls == null) ? ClassLoader
.getSystemResourceAsStream(beanResourceName) : cls
.getResourceAsStream(beanResourceName);
IOException serializationException = null;
Object result = null;
if (is != null) {
try {
ObjectInputStream ois = (cls == null) ? new ObjectInputStream(
is) : new CustomizedObjectInputStream(is, cls);
result = ois.readObject();
} catch (IOException e) {
// Not loadable - remember this as we may throw it later.
serializationException = e;
}
}
// If it didn't work, try to instantiate it from the given classloader
ClassLoader classLoader = cls == null ? ClassLoader
.getSystemClassLoader() : cls;
if (result == null) {
try {
result = Class.forName(beanName, true, classLoader)
.newInstance();
} catch (Exception e) {
if (serializationException != null) {
throw serializationException;
}
throw new ClassNotFoundException(e.getClass() + ": " //$NON-NLS-1$
+ e.getMessage());
}
}
if (result != null) {
if (null != context) {
context.add(result);
}
}
return result;
}
/**
* Obtains an instance of a JavaBean specified the bean name using the specified class loader.
*
* If the specified class loader is null, the system class loader is used.
*
*
* @param loader the specified class loader. It can be null.
* @param name the name of the JavaBean
* @return an isntance of the bean.
* @throws IOException exception
* @throws ClassNotFoundException exception
*/
public static Object instantiate(ClassLoader loader, String name)
throws IOException, ClassNotFoundException {
return internalInstantiate(loader, name, null, null);
}
/**
* Obtains an instance of a JavaBean specified the bean name using the specified class loader, and adds the instance
* into the specified bean context.
*
*
* If the specified class loader is null, the system class loader is used.
*
*
* @param cls the specified class loader. It can be null.
* @param beanName the name of the JavaBean
* @param beanContext the beancontext in which the bean instance will be added.
* @return an instance of the specified JavaBean.
* @throws IOException exception
* @throws ClassNotFoundException exception
*/
public static Object instantiate(ClassLoader cls, String beanName,
BeanContext beanContext) throws IOException, ClassNotFoundException {
return internalInstantiate(cls, beanName, beanContext, null);
}
/**
* Obtains an instance of a JavaBean specified by the bean name using the specified class loader, and adds the
* instance into the specified bean context.
*
* The parameter name must be a qualified name relative to the specified class loader. For example,
* "java.awt.Button" and "x.y.z".
*
*
* If the specified class loader is null, the system class loader is used.
*
*
* Firstly, The class Beans
regards the bean name as a serialized object name. The class
* Beans
convert bean name into pathname, append a suffix ".ser" to the pathname. then try to load the
* resource using the specified class loader. If Beans
fails to load the resource, Beans
* will regard the
* name
as a class name and construct a new instance of the
* bean class.
*
*
* For example, if the name is specified as "x.y.z", The class
* Beans
will try to load the serialized object from the
* resource "x/y/z.ser"; If Beans
fails to load the resource "x/y/z.ser", it will create a new instance
* of "x.y.z".
*
*
* If the bean is an instance of java.applet.Applet, Beans
will do some special initialization for this
* applet bean. First,
* Beans
will set the default AppletStub and AppletContext
* for the applet bean (If the specified AppletInitializer
is not null, Beans
will call
* the
* Object.initialize
to set the default AppletStub
* and AppletContext for the applet bean). Second, Beans
will call the init
method of the
* applet. (If the applet bean is loaded as a serialized object, the init
method will not be called.)
*
*
* @param cls the specified class loader. It can be null.
* @param beanName the name of the JavaBean
* @param context the beancontext in which the bean instance will be added.
* @param initializer the AppletInitializer for applet bean instance.
* @return Obtains an instance of the JavaBean.
* @throws IOException exception
* @throws ClassNotFoundException exception
*/
public static Object instantiate(ClassLoader cls, String beanName,
BeanContext context, Object initializer)
throws IOException, ClassNotFoundException {
return internalInstantiate(cls, beanName, context, initializer);
}
/**
* Obtain an alternative type view of the given bean. The view type is specified by the parameter
* type
.
*
* If the type view cannot be obtained, the original bean object is returned.
*
*
* @param bean the original bean object.
* @param targetType the specified view type.
* @return a type view of the given bean.
*/
public static Object getInstanceOf(Object bean, Class> targetType) {
return bean;
}
/**
* Determine if the the specified bean object can be viewed as the specified type.
*
* @param bean the specified bean object.
* @param targetType the specifed view type.
* @return true if the specified bean object can be viewed as the specified type; otherwise, return false;
*/
public static boolean isInstanceOf(Object bean, Class> targetType) {
if (bean == null) {
throw new NullPointerException(Messages.getString("beans.1D")); //$NON-NLS-1$
}
return targetType == null ? false : targetType.isInstance(bean);
}
/**
* Returns a boolean indication of whether or not a GUI is available for beans.
*
* @return true
if a GUI is available, otherwise
* false
.
*/
public static synchronized boolean isGuiAvailable() {
return guiAvailable;
}
/**
* Set whether or not a GUI is available in the bean's current environment.
*
* @param isGuiAvailable should be true
to signify that a GUI is available, false
* otherwise.
* @throws SecurityException if the caller does not have the required permission to access or modify system
* properties.
*/
public static synchronized void setGuiAvailable(boolean isGuiAvailable)
throws SecurityException {
checkPropertiesAccess();
guiAvailable = isGuiAvailable;
}
/**
* Determine if it's in design-mode.
*
* @return true if it's in an application construction environment.
*/
public static synchronized boolean isDesignTime() {
return designTime;
}
/**
* Used to indicate whether of not it's in an application construction environment.
*
* @param isDesignTime true to indicate that it's in application construction environment.
*/
public static void setDesignTime(boolean isDesignTime)
throws SecurityException {
checkPropertiesAccess();
synchronized (Beans.class) {
designTime = isDesignTime;
}
}
private static void checkPropertiesAccess() throws SecurityException {
SecurityManager sm = System.getSecurityManager();
if (sm != null) {
sm.checkPropertiesAccess();
}
}
private static String getBeanResourceName(String beanName) {
return beanName.replace('.', '/') + ".ser"; //$NON-NLS-1$
}
}