
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@248 f0f2a975-2e09-46c8-9428-3b39399b9f3c
205 lines
8.4 KiB
Java
205 lines
8.4 KiB
Java
/************************************************************************
|
|
*
|
|
* LaTeXUNOPublisher.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-29)
|
|
*
|
|
*/
|
|
package org.openoffice.da.comp.writer2latex;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
|
|
import org.openoffice.da.comp.w2lcommon.filter.UNOPublisher;
|
|
import org.openoffice.da.comp.w2lcommon.helper.MessageBox;
|
|
import org.openoffice.da.comp.w2lcommon.helper.PropertyHelper;
|
|
import org.openoffice.da.comp.w2lcommon.helper.RegistryHelper;
|
|
import org.openoffice.da.comp.w2lcommon.helper.XPropertySetHelper;
|
|
|
|
import writer2latex.util.CSVList;
|
|
import writer2latex.util.Misc;
|
|
|
|
import com.sun.star.beans.PropertyValue;
|
|
import com.sun.star.beans.XPropertySet;
|
|
import com.sun.star.frame.XFrame;
|
|
import com.sun.star.uno.Exception;
|
|
import com.sun.star.uno.UnoRuntime;
|
|
import com.sun.star.uno.XComponentContext;
|
|
|
|
public class LaTeXUNOPublisher extends UNOPublisher {
|
|
|
|
// The TeXifier and associated data
|
|
private TeXify texify = null;
|
|
private String sBibinputs=null;
|
|
private String sBackend = "generic"; //$NON-NLS-1$
|
|
|
|
public LaTeXUNOPublisher(XComponentContext xContext, XFrame xFrame, String sAppName) {
|
|
super(xContext, xFrame, sAppName);
|
|
}
|
|
|
|
/** Get the directory containing the BibTeX files (as defined in the registry)
|
|
*
|
|
* @return the directory
|
|
*/
|
|
public File getBibTeXDirectory() {
|
|
// Get the BibTeX settings from the registry
|
|
RegistryHelper registry = new RegistryHelper(xContext);
|
|
Object view;
|
|
try {
|
|
view = registry.getRegistryView(BibliographyDialog.REGISTRY_PATH, false);
|
|
} catch (Exception e) {
|
|
// Failed to get registry settings
|
|
return null;
|
|
}
|
|
XPropertySet xProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class,view);
|
|
return getDirectory(XPropertySetHelper.getPropertyValueAsShort(xProps, "BibTeXLocation"), //$NON-NLS-1$
|
|
XPropertySetHelper.getPropertyValueAsString(xProps, "BibTeXDir")); //$NON-NLS-1$
|
|
}
|
|
|
|
/** Make a file name LaTeX friendly
|
|
*/
|
|
@Override protected String filterFileName(String sFileName) {
|
|
return Misc.makeTeXFriendly(sFileName,"writer2latex"); //$NON-NLS-1$
|
|
}
|
|
|
|
/** Post process the filter data: Set bibliography options and
|
|
* determine the backend and the BIBINPUTS directory
|
|
*/
|
|
@Override protected PropertyValue[] postProcessMediaProps(PropertyValue[] mediaProps) {
|
|
sBackend = "generic"; //$NON-NLS-1$
|
|
sBibinputs = null;
|
|
|
|
PropertyHelper mediaHelper = new PropertyHelper(mediaProps);
|
|
Object filterData = mediaHelper.get("FilterData"); //$NON-NLS-1$
|
|
if (filterData instanceof PropertyValue[]) {
|
|
PropertyHelper filterHelper = new PropertyHelper((PropertyValue[])filterData);
|
|
|
|
// Get the backend
|
|
Object backend = filterHelper.get("backend"); //$NON-NLS-1$
|
|
if (backend instanceof String) {
|
|
sBackend = (String) backend;
|
|
}
|
|
|
|
// Set the bibliography options according to the settings
|
|
RegistryHelper registry = new RegistryHelper(xContext);
|
|
try {
|
|
Object view = registry.getRegistryView(BibliographyDialog.REGISTRY_PATH, false);
|
|
XPropertySet xProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class,view);
|
|
String sBibTeXFiles = getFileList(XPropertySetHelper.getPropertyValueAsShort(xProps, "BibTeXLocation"), //$NON-NLS-1$
|
|
XPropertySetHelper.getPropertyValueAsString(xProps, "BibTeXDir")); //$NON-NLS-1$
|
|
if (XPropertySetHelper.getPropertyValueAsBoolean(xProps, "UseExternalBibTeXFiles")) { //$NON-NLS-1$
|
|
filterHelper.put("external_bibtex_files", sBibTeXFiles); //$NON-NLS-1$
|
|
if (XPropertySetHelper.getPropertyValueAsBoolean(xProps, "ConvertZoteroCitations")) { //$NON-NLS-1$
|
|
filterHelper.put("zotero_bibtex_files", sBibTeXFiles); //$NON-NLS-1$
|
|
}
|
|
if (XPropertySetHelper.getPropertyValueAsBoolean(xProps, "ConvertJabRefCitations")) { //$NON-NLS-1$
|
|
filterHelper.put("jabref_bibtex_files", sBibTeXFiles); //$NON-NLS-1$
|
|
}
|
|
}
|
|
filterHelper.put("include_original_citations", //$NON-NLS-1$
|
|
Boolean.toString(XPropertySetHelper.getPropertyValueAsBoolean(xProps, "IncludeOriginalCitations"))); //$NON-NLS-1$
|
|
String sBibTeXDir = XPropertySetHelper.getPropertyValueAsString(xProps, "BibTeXDir"); //$NON-NLS-1$
|
|
if (sBibTeXDir.length()>0) {
|
|
// The separator character in BIBINPUTS is OS specific
|
|
sBibinputs = sBibTeXDir+File.pathSeparatorChar;
|
|
}
|
|
filterHelper.put("use_natbib", Boolean.toString(XPropertySetHelper.getPropertyValueAsBoolean(xProps, "UseNatbib"))); //$NON-NLS-1$ //$NON-NLS-2$
|
|
filterHelper.put("natbib_options", XPropertySetHelper.getPropertyValueAsString(xProps, "NatbibOptions")); //$NON-NLS-1$ //$NON-NLS-2$
|
|
|
|
mediaHelper.put("FilterData",filterHelper.toArray()); //$NON-NLS-1$
|
|
PropertyValue[] newMediaProps = mediaHelper.toArray();
|
|
registry.disposeRegistryView(view);
|
|
return newMediaProps;
|
|
}
|
|
catch (Exception e) {
|
|
// Failed to get registry view; return original media props
|
|
return mediaProps;
|
|
}
|
|
}
|
|
// No filter data; return original media props
|
|
return mediaProps;
|
|
}
|
|
|
|
/** Postprocess the converted document with LaTeX and display the result
|
|
*/
|
|
@Override protected void postProcess(String sURL, TargetFormat format) {
|
|
if (texify==null) { texify = new TeXify(xContext); }
|
|
File file = new File(Misc.urlToFile(getTargetPath()),getTargetFileName());
|
|
|
|
boolean bResult = true;
|
|
|
|
try {
|
|
if (sBackend=="pdftex") { //$NON-NLS-1$
|
|
bResult = texify.process(file, sBibinputs, TeXify.PDFTEX, true);
|
|
}
|
|
else if (sBackend=="dvips") { //$NON-NLS-1$
|
|
bResult = texify.process(file, sBibinputs, TeXify.DVIPS, true);
|
|
}
|
|
else if (sBackend=="xetex") { //$NON-NLS-1$
|
|
bResult = texify.process(file, sBibinputs, TeXify.XETEX, true);
|
|
}
|
|
else if (sBackend=="generic") { //$NON-NLS-1$
|
|
bResult = texify.process(file, sBibinputs, TeXify.GENERIC, true);
|
|
}
|
|
}
|
|
catch (IOException e) {
|
|
MessageBox msgBox = new MessageBox(xContext, xFrame);
|
|
msgBox.showMessage("Writer2LaTeX",Messages.getString("LaTeXUNOPublisher.error")+": "+e.getMessage()); //$NON-NLS-1$ //$NON-NLS-2$
|
|
}
|
|
|
|
if (!bResult) {
|
|
MessageBox msgBox = new MessageBox(xContext, xFrame);
|
|
msgBox.showMessage("Writer2LaTeX",Messages.getString("LaTeXUNOPublisher.error")+": "+Messages.getString("LaTeXUNOPublisher.failedlatex")); //$NON-NLS-1$ //$NON-NLS-2$
|
|
}
|
|
}
|
|
|
|
private File getDirectory(short nType, String sDirectory) {
|
|
switch (nType) {
|
|
case 0: // absolute path
|
|
return new File(sDirectory);
|
|
case 1: // relative path
|
|
return new File(Misc.urlToFile(getTargetPath()),sDirectory);
|
|
default: // document directory
|
|
return Misc.urlToFile(getTargetPath());
|
|
}
|
|
}
|
|
|
|
private String getFileList(short nType, String sDirectory) {
|
|
File dir = getDirectory(nType,sDirectory);
|
|
File[] files;
|
|
if (dir.isDirectory()) {
|
|
files = dir.listFiles();
|
|
}
|
|
else {
|
|
return null;
|
|
}
|
|
CSVList filelist = new CSVList(","); //$NON-NLS-1$
|
|
if (files!=null) {
|
|
for (File file : files) {
|
|
if (file.isFile() && file.getName().endsWith(".bib")) { //$NON-NLS-1$
|
|
filelist.addValue(Misc.removeExtension(file.getName()));
|
|
}
|
|
}
|
|
}
|
|
return filelist.toString();
|
|
}
|
|
|
|
}
|