// // MetaSupportAutogen.java // /* Bio-Formats autogen package for programmatically generating source code. Copyright (C) 2005-@year@ UW-Madison LOCI and Glencoe Software, Inc. This program 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; either version 2 of the License, or (at your option) any later version. This program 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. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ import java.io.File; import java.io.IOException; import org.apache.velocity.VelocityContext; import org.apache.velocity.app.VelocityEngine; /** * Automatically generates a report on supported metadata fields * for each file format reader in Bio-Formats. * * Uses data from the meta-support.txt file. * * TODO - Add support for group reporting using meta-groups.txt. * * <dl><dt><b>Source code:</b></dt> * <dd><a href="http://trac.openmicroscopy.org.uk/ome/browser/bioformats.git/components/autogen/src/MetaSupportAutogen.java">Trac</a>, * <a href="http://git.openmicroscopy.org/?p=bioformats.git;a=blob;f=components/autogen/src/MetaSupportAutogen.java;hb=HEAD">Gitweb</a></dd></dl> * * @author Curtis Rueden ctrueden at wisc.edu */ public class MetaSupportAutogen { // -- Main method -- public static void main(String[] args) throws Exception { if (args.length == 0) { System.out.println("Usage: java MetaSupportAutogen ome-xml-version"); System.out.println(" E.g.: java MetaSupportAutogen 2008-02"); System.exit(1); } String version = args[0]; // create needed directories File doc = new File("doc"); if (!doc.exists()) { boolean success = doc.mkdir(); if (!success) { throw new IOException("Could not create " + doc.getAbsolutePath()); } } File docMeta = new File(doc, "meta"); if (!docMeta.exists()) { boolean success = docMeta.mkdir(); if (!success) { throw new IOException("Could not create " + docMeta.getAbsolutePath()); } } // initialize Velocity VelocityEngine ve = VelocityTools.createEngine(); VelocityContext context = VelocityTools.createContext(); // parse supported properties list MetaSupportList supportList = new MetaSupportList(version); context.put("q", supportList); // generate master table of metadata properties VelocityTools.processTemplate(ve, context, "doc/meta-summary.vm", "doc/meta-summary.html"); // generate metadata property support documentation for each handler for (String handler : supportList.handlers()) { supportList.setHandler(handler); VelocityTools.processTemplate(ve, context, "doc/MetaSupportWikiPage.vm", "doc/meta/" + handler + ".txt"); } } }