/************************************************************************ * * ConverterFactory.java * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser 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 * * Copyright: 2002-2015 by Henrik Just * * All Rights Reserved. * * Version 1.6 (2015-05-12) * */ package writer2latex.api; /** This is a factory class which provides static methods to create converters * for documents in OpenDocument (or OpenOffice.org 1.x) format into a specific MIME type */ public class ConverterFactory { // Version information private static final String VERSION = "1.5.3"; private static final String DATE = "2015-05-12"; /** Return the Writer2LaTeX version in the form * (major version).(minor version).(patch level)
* Development versions have an odd minor version number * @return the version number */ public static String getVersion() { return VERSION; } /** Return date information * @return the release date for this Writer2LaTeX version */ public static String getDate() { return DATE; } /**

Create a Converter implementation which supports * conversion into the specified MIME type.

*

Currently supported MIME types are:

* * * @param sMIME the MIME type of the target format * @return the required Converter or null if a converter for * the requested MIME type could not be created */ public static Converter createConverter(String sMIME) { Object converter = null; if (MIMETypes.LATEX.equals(sMIME)) { converter = createInstance("writer2latex.latex.ConverterPalette"); } else if (MIMETypes.BIBTEX.equals(sMIME)) { converter = createInstance("writer2latex.bibtex.Converter"); } else if (MIMETypes.XHTML.equals(sMIME)) { converter = createInstance("writer2latex.xhtml.Xhtml10Converter"); } else if (MIMETypes.XHTML11.equals(sMIME)) { converter = createInstance("writer2latex.xhtml.Xhtml11Converter"); } else if (MIMETypes.XHTML_MATHML.equals(sMIME)) { converter = createInstance("writer2latex.xhtml.XhtmlMathMLConverter"); } else if (MIMETypes.HTML5.equals(sMIME)) { converter = createInstance("writer2latex.xhtml.Html5Converter"); } else if (MIMETypes.EPUB3.equals(sMIME)) { converter = createInstance("writer2latex.epub.EPUB3Converter"); } else if (MIMETypes.EPUB.equals(sMIME)) { converter = createInstance("writer2latex.epub.EPUBConverter"); } return converter instanceof Converter ? (Converter) converter : null; } /**

Create a BatchConverter implementation which supports * conversion into the specified MIME type

*

The only currently supported MIME type is text/html * (XHTML 1.0 strict)

* * @param sMIME the MIME type of the target format * @return the required BatchConverter or null if a converter * for the requested MIME type could not be created */ public static BatchConverter createBatchConverter(String sMIME) { Object converter = null; if (MIMETypes.XHTML.equals(sMIME)) { converter = createInstance("writer2latex.xhtml.BatchConverterImpl"); } return converter instanceof BatchConverter ? (BatchConverter) converter : null; } /** Create a StarMathConverter implementation * * @return the converter */ public static StarMathConverter createStarMathConverter() { Object converter = createInstance("writer2latex.latex.StarMathConverter"); return converter instanceof StarMathConverter ? (StarMathConverter) converter : null; } private static Object createInstance(String sClassName) { try { return Class.forName(sClassName).newInstance(); } catch (java.lang.ClassNotFoundException e) { return null; } catch (java.lang.InstantiationException e) { return null; } catch (java.lang.IllegalAccessException e) { return null; } } }