/* VisAD system for interactive analysis and visualization of numerical data. Copyright (C) 1996 - 2017 Bill Hibbard, Curtis Rueden, Tom Rink, Dave Glowacki, Steve Emmerson, Tom Whittaker, Don Murray, and Tommy Jasmin. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ package visad.data; import java.io.IOException; import java.rmi.RemoteException; import visad.Data; import visad.VisADException; import visad.data.bio.LociForm; import visad.data.dods.DODSForm; import visad.data.fits.FitsForm; import visad.data.gif.GIFForm; import visad.data.gis.DemFamily; import visad.data.hdfeos.HdfeosAdaptedForm; import visad.data.hrit.HRITForm; import visad.data.jai.JAIForm; import visad.data.mcidas.AreaForm; import visad.data.mcidas.MapForm; import visad.data.mcidas.PointForm; import visad.data.netcdf.Plain; import visad.data.text.TextForm; import visad.data.vis5d.Vis5DFamily; import visad.data.visad.VisADForm; /** * A container for all the officially supported VisAD datatypes.<br> * <br> * To read a <tt>Data</tt> object from a file or URL:<br> * <pre> * Data data = new DefaultFamily("dflt").open(string); * </pre> * <br> * To save a Data object to a file:<br> * <pre> * new DefaultFamily("dflt").save("file.nc", data, true); * </pre> * <br> * To add a Data object to an existing file:<br> * <pre> * new DefaultFamily("dflt").add("file.nc", data, true); * </pre> */ public class DefaultFamily extends FunctionFormFamily { /** * List of all supported VisAD datatype Forms. */ /* * note that I hardcoded the number of FormNodes (100) * increase this if you add a new FormNode */ private static FormNode[] list = new FormNode[100]; private static boolean listInitialized = false; /** * Build a list of all known file adapter Forms */ private static void buildList() { int i = 0; try { list[i] = DODSForm.dodsForm(); i++; } catch (Throwable t) { } try { list[i] = new FitsForm(); i++; } catch (Throwable t) { } try { list[i] = new GIFForm(); i++; } catch (Throwable t) { } try { list[i] = new LociForm(); i++; } catch (Throwable t) { } try { list[i] = new HdfeosAdaptedForm(); i++; } catch (Throwable t) { } try { list[i] = new Plain(); i++; } catch (Throwable t) { } try { list[i] = new Vis5DFamily("vis5d"); i++; } catch (Throwable t) { } try { list[i] = new VisADForm(); i++; } catch (Throwable t) { } try { list[i] = new VisADForm(true); i++; } catch (Throwable t) { } try { list[i] = new AreaForm(); i++; } catch (Throwable t) { } try { list[i] = new PointForm(); i++; } catch (Throwable t) { } try { list[i] = new MapForm(); i++; } catch (Throwable t) { } try { list[i] = new DemFamily("Dem Data"); i++; } catch (Throwable t) { } try { list[i] = new TextForm(); i++; } catch (Throwable t) { } try { list[i] = new JAIForm(); i++; } catch (Throwable t) { } try { list[i] = new HRITForm(); i++; } catch (Throwable t) { } // added to support HDF5 adapter (visad.data.hdf5.HDF5Form) try { Object hdf5form = null; ClassLoader cl = ClassLoader.getSystemClassLoader(); Class hdf5formClass = cl.loadClass("visad.data.hdf5.HDF5Form"); hdf5form = hdf5formClass.newInstance(); if (hdf5form != null) list[i++] = (Form)hdf5form; } catch (Throwable t) { } // throw an Exception if too many Forms for list FormNode junk = list[i]; while (i < list.length) { list[i++] = null; } listInitialized = true; // WLH 24 Jan 2000 } /** * Add a Form to the list of supported VisAD datatype Forms. * * Forms are added to the front of the list, which means * that they will take precedence over existing Forms. * If, for example, an added Form claims to open files * ending in <tt>.gif</tt>, it will supersede the standard * {@link visad.data.gif.GIFForm GIFForm}. * * If the added form discovers that it cannot handle a * file, it can simply throw an exception and DefaultFamily * will pass the file onto the next Form in the list, so any * superseded Form will still be able to open the file. * * @exception ArrayIndexOutOfBoundsException * If there is no more room in the list. */ public static void addFormToList(FormNode form) throws ArrayIndexOutOfBoundsException { synchronized (list) { if (!listInitialized) { buildList(); } int i = 0; while (i < list.length) { if (list[i] == null) { System.arraycopy(list, 0, list, 1, i); list[0] = form; return; } i++; } } throw new ArrayIndexOutOfBoundsException("Only " + list.length + " entries allowed"); } /** * Construct a family of the supported VisAD datatype Forms */ public DefaultFamily(String name) { this(name, false); } /** * Construct a family of the supported VisAD datatype Forms, with a * netCDF form that converts char to Text if netcdfText flag is set. */ public DefaultFamily(String name, boolean netcdfText) { super(name); synchronized (list) { if (!listInitialized) { buildList(); } } if (netcdfText) { forms.addElement(new Plain(true)); } for (int i = 0; i < list.length && list[i] != null; i++) { forms.addElement(list[i]); } } /** * Test the DefaultFamily class */ public static void main(String[] args) throws BadFormException, IOException, RemoteException, VisADException { if (args.length < 1) { System.err.println("Usage: DefaultFamily [-v] infile [infile ...]"); System.exit(1); return; } int iarg; boolean verbose = false; // default for (iarg = 0; iarg < args.length; iarg++) { String arg = args[iarg]; if (!arg.startsWith("-")) break; if (arg.equals("--")) { iarg++; break; } if (arg.equals("-v")) verbose = true; } DefaultFamily fr = new DefaultFamily("sample"); for (; iarg < args.length; iarg++) { String arg = args[iarg]; Data data; System.out.println("Trying dataset " + args[iarg]); data = fr.open(args[iarg]); if (verbose) System.out.println(args[iarg] + ":\n" + data); else System.out.println(args[iarg] + ": " + data.getType().prettyString()); } } }