/************************************************************************ * * TeXDetectService.java * * Copyright: 2002-2014 by Henrik Just * * This file is part of Writer2LaTeX. * * Writer2LaTeX 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 3 of the License, or * (at your option) any later version. * * Writer2LaTeX 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 Writer2LaTeX. If not, see . * * Version 1.6 (2014-10-29) * */ package org.openoffice.da.comp.writer2latex; import java.io.IOException; import com.sun.star.lib.uno.adapter.XInputStreamToInputStreamAdapter; import com.sun.star.lib.uno.helper.WeakBase; import com.sun.star.beans.PropertyValue; import com.sun.star.document.XExtendedFilterDetection; import com.sun.star.lang.XServiceInfo; import com.sun.star.io.XInputStream; import com.sun.star.ucb.XSimpleFileAccess2; import com.sun.star.uno.AnyConverter; import com.sun.star.uno.UnoRuntime; import com.sun.star.uno.XComponentContext; /** This class provides detect services for TeX documents * It is thus an implementation of the service com.sun.star.document.ExtendedTypeDetection */ public class TeXDetectService extends WeakBase implements XExtendedFilterDetection, XServiceInfo { // Constants // Identify this service public static final String __implementationName = TeXDetectService.class.getName(); public static final String __serviceName = "com.sun.star.document.ExtendedTypeDetection"; private static final String[] m_serviceNames = { __serviceName }; // The type names private static final String LATEX_FILE = "org.openoffice.da.writer2latex.LaTeX_File"; private static final String XELATEX_FILE = "org.openoffice.da.writer2latex.XeLaTeX_File"; // From constructor+initialization private final XComponentContext m_xContext; /** Construct a new TeXDetectService * * @param xContext The Component Context */ public TeXDetectService( XComponentContext xContext ) { m_xContext = xContext; } // Implement com.sun.star.lang.XServiceInfo: public String getImplementationName() { return __implementationName; } public boolean supportsService( String sService ) { int len = m_serviceNames.length; for(int i=0; i < len; i++) { if (sService.equals(m_serviceNames[i])) return true; } return false; } public String[] getSupportedServiceNames() { return m_serviceNames; } // Implement XExtendedFilterDetection public String detect(PropertyValue[][] mediaDescriptor) { // Read the media properties String sURL = null; String sTypeName = null; if (mediaDescriptor.length>0) { int nLength = mediaDescriptor[0].length; for (int i=0; i