/************************************************************************ * * BibTeXDialog.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-02-10) * */ package org.openoffice.da.comp.writer2latex; import java.awt.Desktop; import java.io.File; import java.io.FilenameFilter; import java.io.IOException; import com.sun.star.awt.XDialog; import com.sun.star.beans.PropertyValue; import com.sun.star.beans.XPropertySet; import com.sun.star.frame.XFrame; import com.sun.star.lang.XMultiServiceFactory; import com.sun.star.text.XDependentTextField; import com.sun.star.text.XText; import com.sun.star.text.XTextDocument; import com.sun.star.text.XTextViewCursor; import com.sun.star.text.XTextViewCursorSupplier; import com.sun.star.uno.UnoRuntime; import com.sun.star.uno.XComponentContext; import org.jbibtex.ParseException; import org.openoffice.da.comp.w2lcommon.helper.DialogBase; import org.openoffice.da.comp.w2lcommon.helper.MessageBox; import writer2latex.office.BibMark; import writer2latex.office.BibMark.EntryType; /** This class provides a UNO dialog to insert a BibTeX bibliographic reference */ public class BibTeXDialog extends DialogBase implements com.sun.star.lang.XInitialization { // **** Data used for component registration /** The component will be registered under this service name */ public static String __serviceName = "org.openoffice.da.writer2latex.BibTeXDialog"; /** The implementation name of the component */ public static String __implementationName = "org.openoffice.da.comp.writer2latex.BibTeXDialog"; // **** Member variables // The current frame (passed at initialization) XFrame xFrame = null; // The BibTeX directory (passed at initialization) File bibTeXDirectory = null; // Cache of BibTeX files in the BibTeX directory File[] files = null; // Cache of the current BibTeX file BibTeXReader currentFile = null; // **** Implement com.sun.star.lang.XInitialization // We expect to get the current frame and a comma separated list of BibTeX files to use @Override public void initialize( Object[] objects ) throws com.sun.star.uno.Exception { for (Object object : objects) { if (object instanceof XFrame) { xFrame = (XFrame) UnoRuntime.queryInterface(XFrame.class, object); } if (object instanceof String) { bibTeXDirectory = new File((String) object); } } } // **** Extend DialogBase /** Create a new BibTeXDialog */ public BibTeXDialog(XComponentContext xContext) { super(xContext); } /** Return the name of the library containing the dialog */ @Override public String getDialogLibraryName() { return "W2LDialogs2"; } /** Return the name of the dialog within the library */ @Override public String getDialogName() { return "BibTeXEntry"; } @Override public void initialize() { refresh(); } @Override public void endDialog() { } // **** Implement XDialogEventHandler @Override public boolean callHandlerMethod(XDialog xDialog, Object event, String sMethod) { if (sMethod.equals("FileChange")) { fileChange(); } else if (sMethod.equals("EntryChange")) { entryChange(); } else if (sMethod.equals("InsertReference")) { insertReference(); } else if (sMethod.equals("New")) { newFile(); } else if (sMethod.equals("Edit")) { edit(); } else if (sMethod.equals("Refresh")) { refresh(); } return true; } @Override public String[] getSupportedMethodNames() { String[] sNames = { "FileChange", "EntryChange", "InsertReference", "Edit", "Refresh" }; return sNames; } // **** Implement the UI functions // (Re)load the list of BibTeX files private void refresh() { // Remember current file selection, if any String sFile = null; short nFile = getListBoxSelectedItem("File"); if (nFile>=0 && files[nFile]!=null) { sFile = getListBoxStringItemList("File")[nFile]; } if (bibTeXDirectory!=null && bibTeXDirectory.isDirectory()) { // Populate the file list based on the BibTeX directory files = bibTeXDirectory.listFiles( new FilenameFilter() { public boolean accept(File file, String sName) { return sName!=null && sName.endsWith(".bib"); } } ); int nFileCount = files.length; String[] sFileNames = new String[nFileCount]; // Select either the first or the previous item nFile = 0; for (short i=0; i0) { setControlEnabled("FileLabel",true); setControlEnabled("File",true); setControlEnabled("EntryLabel",true); setControlEnabled("Entry",true); setControlEnabled("Edit",true); setControlEnabled("Insert",true); fileChange(); return; } } // The directory did not contain any BibTeX files setControlEnabled("FileLabel",false); setControlEnabled("File",false); setControlEnabled("EntryLabel",false); setControlEnabled("Entry",false); setControlEnabled("Edit",false); setControlEnabled("Insert",false); setLabelText("EntryInformation","No BibTeX files were found"); } // Update the list of entries based on the current selection in the file list private void fileChange() { // Remember current entry selection, if any String sEntry = null; short nEntry = getListBoxSelectedItem("Entry"); if (nEntry>=0) { sEntry = getListBoxStringItemList("Entry")[nEntry]; } // Parse the selected file int nFile = getListBoxSelectedItem("File"); if (nFile>=0) { try { currentFile = new BibTeXReader(files[nFile]); } catch (IOException e) { currentFile = null; } catch (ParseException e) { currentFile = null; } if (currentFile!=null) { // Populate the entry list with the keys from the current file, if any String[] sCurrentKeys = currentFile.getEntries().keySet().toArray(new String[0]); setListBoxStringItemList("Entry", sCurrentKeys); if (sCurrentKeys.length>0) { // Select either the first or the previous entry nEntry = 0; if (sEntry!=null) { int nEntryCount = sCurrentKeys.length; for (short i=0; i=0) { if (files[nFile].exists()) { edit(files[nFile]); } } } // Helper function: Get the currently selected entry, or null if none is selected private BibMark getCurrentEntry() { BibMark bibMark = null; int nEntry = getListBoxSelectedItem("Entry"); if (nEntry>=0) { String[] sCurrentKeys = getListBoxStringItemList("Entry"); String sKey = sCurrentKeys[nEntry]; bibMark = currentFile.getEntries().get(sKey); } return bibMark; } // **** Implement core functions // Edit a BibTeX files using the systems default application, if any private void edit(File file) { if (Desktop.isDesktopSupported()) { Desktop desktop = Desktop.getDesktop(); try { desktop.open(file); } catch (IOException e) { if (xFrame!=null) { MessageBox msgBox = new MessageBox(xContext, xFrame); msgBox.showMessage("Writer2LaTeX","Error: Failed to open file with BibTeX editor"); } } } else if (xFrame!=null) { MessageBox msgBox = new MessageBox(xContext, xFrame); msgBox.showMessage("Writer2LaTeX","Error: No BibTeX editor was found"); } } // Insert a bibliographic reference from a BibMark private void insertReference(BibMark bibMark) { if (xFrame!=null) { try { // To be able to manipulate the text we need to get the XText interface of the model XTextDocument xTextDoc = (XTextDocument) UnoRuntime.queryInterface( XTextDocument.class, xFrame.getController().getModel()); XText xText = xTextDoc.getText(); // To locate the current position, we need to get the XTextViewCursor from the controller XTextViewCursorSupplier xViewCursorSupplier = (XTextViewCursorSupplier) UnoRuntime.queryInterface( XTextViewCursorSupplier.class, xFrame.getController()); XTextViewCursor xViewCursor = xViewCursorSupplier.getViewCursor(); // To create a new bibliographic field, we need to get the document service factory XMultiServiceFactory xDocFactory = (XMultiServiceFactory) UnoRuntime.queryInterface( XMultiServiceFactory.class, xFrame.getController().getModel()); // Use the service factory to create a bibliography field XDependentTextField xBibField = (XDependentTextField) UnoRuntime.queryInterface ( XDependentTextField.class, xDocFactory.createInstance("com.sun.star.text.textfield.Bibliography")); // Create a field master for the field XPropertySet xMasterPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xDocFactory.createInstance("com.sun.star.text.fieldmaster.Bibliography")); // Populate the bibliography field XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xBibField); PropertyValue[] fields = createBibliographyFields(bibMark); xPropSet.setPropertyValue("Fields", fields); // Attach the field master to the bibliography field xBibField.attachTextFieldMaster(xMasterPropSet); // Finally, insert the field at the end of the cursor xText.insertTextContent(xViewCursor.getEnd(), xBibField, false); } catch (Exception e) { e.printStackTrace(System.out); } } } // Create fields from a BibMark private PropertyValue[] createBibliographyFields(BibMark bibMark) { EntryType[] entryTypes = EntryType.values(); PropertyValue[] fields = new PropertyValue[entryTypes.length+2]; fields[0] = new PropertyValue(); fields[0].Name="Identifier"; fields[0].Value=bibMark.getIdentifier(); fields[1] = new PropertyValue(); fields[1].Name="BibiliographicType"; // sic! fields[1].Value=new Short(getBibliographicType(bibMark.getEntryType())); int i=1; for (EntryType entryType : entryTypes) { fields[++i] = new PropertyValue(); fields[i].Name = getFieldName(entryType); String sValue = bibMark.getField(entryType); fields[i].Value = sValue!=null ? bibMark.getField(entryType) : ""; } return fields; } // Translate entry type to field name private String getFieldName(EntryType entryType) { switch(entryType) { case address: return "Address"; case annote: return "Annote"; case author: return "Author"; case booktitle: return "Booktitle"; case chapter : return "Chapter"; case edition: return "Edition"; case editor: return "Editor"; case howpublished: return "Howpublished"; case institution: return "Institution"; case journal: return "Journal"; case month: return "Month"; case note: return "Note"; case number: return "Number"; case organizations: return "Organizations"; case pages: return "Pages"; case publisher: return "Publisher"; case school: return "School"; case series: return "Series"; case title: return "Title"; case report_type: return "Report_Type"; case volume: return "Volume"; case year: return "Year"; case url: return "URL"; case custom1: return "Custom1"; case custom2: return "Custom2"; case custom3: return "Custom3"; case custom4: return "Custom4"; case custom5: return "Custom5"; case isbn: return "ISBN"; default: return null; } } // Translate bibliographic type to internal code private short getBibliographicType(String sBibType) { String s = sBibType.toUpperCase(); if ("ARTICLE".equals(s)) { return (short)0; } else if ("BOOK".equals(s)) { return (short)1; } else if ("BOOKLET".equals(s)) { return (short)2; } else if ("CONFERENCE".equals(s)) { return (short)3; } else if ("INBOOK".equals(s)) { return (short)4; } else if ("INCOLLECTION".equals(s)) { return (short)5; } else if ("INPROCEEDINGS".equals(s)) { return (short)6; } else if ("JOURNAL".equals(s)) { return (short)7; } else if ("MANUAL".equals(s)) { return (short)8; } else if ("MASTERSTHESIS".equals(s)) { return (short)9; } else if ("MISC".equals(s)) { return (short)10; } else if ("PHDTHESIS".equals(s)) { return (short)11; } else if ("PROCEEDINGS".equals(s)) { return (short)12; } else if ("TECHREPORT".equals(s)) { return (short)13; } else if ("UNPUBLISHED".equals(s)) { return (short)14; } else if ("EMAIL".equals(s)) { return (short)15; } else if ("WWW".equals(s)) { return (short)16; } else if ("CUSTOM1".equals(s)) { return (short)17; } else if ("CUSTOM2".equals(s)) { return (short)18; } else if ("CUSTOM3".equals(s)) { return (short)19; } else if ("CUSTOM4".equals(s)) { return (short)20; } else if ("CUSTOM5".equals(s)) { return (short)21; } else { return (short)10; // misc } } } // Some test code kept for future reference: Traverse all existing bibliography fields /* private void test() { XTextFieldsSupplier xSupplier = (XTextFieldsSupplier) UnoRuntime.queryInterface( XTextFieldsSupplier.class, xFrame.getController().getModel()); XEnumerationAccess fields = xSupplier.getTextFields(); XEnumeration enumeration = fields.createEnumeration(); while (enumeration.hasMoreElements()) { try { Object elm = enumeration.nextElement(); System.out.println("************"); if (AnyConverter.isObject(elm)) { XTextField xTextField = (XTextField) AnyConverter.toObject(XTextField.class, elm); if (xTextField!=null) { XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xTextField); if (xPropSet!=null) { try { Object propsobj = xPropSet.getPropertyValue("Fields"); if (propsobj!=null && propsobj instanceof PropertyValue[]) { PropertyValue[] props = (PropertyValue[]) propsobj; for (PropertyValue prop : props) { if (prop.Value instanceof String) { System.out.println("String "+prop.Name+"=>"+(String)prop.Value); } else if (prop.Value instanceof Short) { System.out.println("Short "+prop.Name+"=>"+(Short)prop.Value); } else { System.out.println("Other "+prop.Name+"=>"+prop.Value.getClass().getName()); } } } else { System.out.println("Unexpected type of fields"); } } catch (UnknownPropertyException e) { System.out.println("Unknown property?"); } } else { System.out.println("No properties"); } } else { System.out.println("Found something unexpected"); } } else { System.out.println("Found nothing"); } } catch (NoSuchElementException e) { e.printStackTrace(); } catch (WrappedTargetException e) { e.printStackTrace(); } } } */