// Class: DefaultDisplayFactory
//
// Author: Alyce Brady
//
// Created on Mar 1, 2005
//
// License Information:
// This class is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation.
//
// This class is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
package edu.kzoo.grid.display;
import java.util.HashSet;
import java.util.Iterator;
/**
* Grid Display Package:
*
* The DefaultDisplayFactory
class contains methods
* that provide a suitable default display for a given class.
*
* @author Alyce Brady
* @version Mar 1, 2005
**/
public class DefaultDisplayFactory
{
private static GridObjectDisplay baseDefault = new DefaultDisplay();
private static String baseSuffixes[] = {"gif", "GIF",
"jpg", "jpeg", "JPG", "JPEG"};
private static HashSet suffixes = new HashSet();
static
{
for ( int i = 0; i < baseSuffixes.length; i++ )
suffixes.add(baseSuffixes[i]);
}
/** Adds the specified suffix to the list of image suffixes to look for.
* @param suffix image suffix (e.g., "tiff")
*/
public static void addSuffix(String suffix)
{
suffixes.add(suffix);
}
/** Returns a DefaultDisplay object.
**/
public static GridObjectDisplay getDefaultDisplay()
{
return baseDefault;
}
/** Returns a default display specific to the given class if there
* is one. In the following detailed description of which
* display object is returned, assume that ClassName
* is the base class name passed in as a parameter and package
* is the name of the package in which that class resides. The
* returned display is:
*
ClassNameDisplay
object if there is a
* a ClassNameDisplay
class with a default
* (no-parameter) constructor in package, in
* the associated display package (package.display),
* or in the unnamed default display
* ScaledImageDisplay
object if there is a
* an image file named ClassName.sfx in the jar
* file or current directory (where sfx is one of
* the following suffixes: gif, GIF, jpg, JPG, jpeg, JPEG,
* or any added with the addSuffix
method)
* If no default display specific to the given class is available,
* this method returns null
.
* @param className the name of the class for which to find
* a default display
**/
public static GridObjectDisplay getDefaultDisplay(Class cls)
{
return getDefaultDisplay(cls.getName());
}
/** Returns a default display specific to the given class if there
* is one. In the following detailed description of which
* display object is returned, assume that ClassName
* is the base class name passed in as a parameter and package
* is the name of the package in which that class resides. The
* returned display is:
* ClassNameDisplay
object if there is a
* a ClassNameDisplay
class with a default
* (no-parameter) constructor in package, in
* the associated display package (package.display),
* or in the unnamed default display
* ScaledImageDisplay
object if there is a
* an image file named ClassName.sfx in the jar
* file or current directory (where sfx is one of
* the following suffixes: gif, GIF, jpg, JPG, jpeg, JPEG,
* or any added with the addSuffix
method)
* If no default display specific to the given class is available,
* this method returns null
.
* @param className the name of the class for which to find
* a default display
**/
public static GridObjectDisplay getDefaultDisplay(String className)
{
// If the className includes package information, strip it.
String packageName = null;
String baseName = className;
int endOfPkgPrefix = className.lastIndexOf('.');
if ( endOfPkgPrefix != -1 )
{
packageName = className.substring(0, endOfPkgPrefix);
baseName = className.substring(endOfPkgPrefix + 1);
}
// Look for ...Display class in a package.
if ( packageName != null )
{
// Look in that package.
try
{
Class dispClass = Class.forName(className + "Display");
return (GridObjectDisplay) dispClass.newInstance();
}
catch (Exception e) { /* Just go on to next section. */ }
// Look in the related display package.
String tempName = packageName + ".display." + baseName;
try
{
Class dispClass = Class.forName(tempName + "Display");
return (GridObjectDisplay) dispClass.newInstance();
}
catch (Exception e) { /* Just go on to next section. */ }
}
// Look for ...Display class in unnamed default package.
try
{
Class dispClass = Class.forName(baseName + "Display");
return (GridObjectDisplay) dispClass.newInstance();
}
catch (Exception e) { /* Just go on to next section. */ }
// Look for related image files, e.g., ClassName.gif.
Iterator it = suffixes.iterator();
while ( it.hasNext() )
{
String suffix = (String) it.next();
String imageFilename = baseName + "." + suffix;
ScaledImageDisplay disp = new ScaledImageDisplay(imageFilename);
if ( disp.imageLoadedOK() )
return disp;
}
return null;
}
}