/* Copyright (C) 2003-2011 JabRef contributors. 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package net.sf.jabref.external; import java.io.IOException; import java.io.InputStream; import javax.swing.*; import net.sf.jabref.*; import com.jgoodies.forms.builder.DefaultFormBuilder; import com.jgoodies.forms.layout.FormLayout; /** * Created by IntelliJ IDEA. * User: alver * Date: Jan 14, 2006 * Time: 4:55:23 PM */ public class PushToEmacs implements PushToApplication { private JPanel settings = null; private JTextField citeCommand = new JTextField(30); private JTextField emacsPath = new JTextField(30); private JTextField additionalParams = new JTextField(30); private JCheckBox useEmacs23 = new JCheckBox(); private boolean couldNotConnect=false, couldNotRunClient=false; public String getName() { return Globals.menuTitle("Insert selected citations into Emacs") ; } public String getApplicationName() { return "Emacs"; } public String getTooltip() { return Globals.lang("Push selection to Emacs"); } public Icon getIcon() { return GUIGlobals.getImage("emacs"); } public String getKeyStrokeName() { return "Push to Emacs"; } public JPanel getSettingsPanel() { if (settings == null) initSettingsPanel(); citeCommand.setText(Globals.prefs.get("citeCommandEmacs")); emacsPath.setText(Globals.prefs.get(JabRefPreferences.EMACS_PATH)); additionalParams.setText(Globals.prefs.get(JabRefPreferences.EMACS_ADDITIONAL_PARAMETERS)); useEmacs23.setSelected(Globals.prefs.getBoolean(JabRefPreferences.EMACS_23)); return settings; } public void storeSettings() { Globals.prefs.put("citeCommandEmacs", citeCommand.getText()); Globals.prefs.put(JabRefPreferences.EMACS_PATH, emacsPath.getText()); Globals.prefs.put(JabRefPreferences.EMACS_ADDITIONAL_PARAMETERS, additionalParams.getText()); Globals.prefs.putBoolean(JabRefPreferences.EMACS_23, useEmacs23.isSelected()); } private void initSettingsPanel() { DefaultFormBuilder builder = new DefaultFormBuilder( new FormLayout("left:pref, 4dlu, fill:pref, 4dlu, fill:pref", "")); builder.append(new JLabel(Globals.lang("Path to gnuclient or emacsclient").concat(":"))); builder.append(emacsPath); BrowseAction action = new BrowseAction(null, emacsPath, false); JButton browse = new JButton(Globals.lang("Browse")); browse.addActionListener(action); builder.append(browse); builder.nextLine(); builder.append(Globals.lang("Additional parameters").concat(":")); builder.append(additionalParams); builder.nextLine(); builder.append(Globals.lang("Use EMACS 23 insertion string").concat(":")); builder.append(useEmacs23); builder.nextLine(); builder.append(Globals.lang("Cite command") + ":"); builder.append(citeCommand); settings = builder.getPanel(); } public void pushEntries(BibtexDatabase database, BibtexEntry[] entries, String keys, MetaData metaData) { couldNotConnect=false; couldNotRunClient=false; String command = Globals.prefs.get(JabRefPreferences.EMACS_PATH); String addParams[] = Globals.prefs.get(JabRefPreferences.EMACS_ADDITIONAL_PARAMETERS).split(" "); try { String[] com = new String[addParams.length+2]; com[0] = command; for (int i=0; i<addParams.length; i++) { com[i+1] = addParams[i]; } String prefix; String suffix; if (Globals.prefs.getBoolean(JabRefPreferences.EMACS_23)) { prefix = "(with-current-buffer (window-buffer) (insert "; suffix = "))"; } else { prefix = "(insert "; suffix = ")"; } com[com.length-1] = Globals.ON_WIN ? // Windows gnuclient escaping: // java string: "(insert \\\"\\\\cite{Blah2001}\\\")"; // so cmd receives: (insert \"\\cite{Blah2001}\") // so emacs receives: (insert "\cite{Blah2001}") prefix.concat("\\\"\\" + Globals.prefs.get("citeCommandEmacs").replaceAll("\\\\", "\\\\\\\\") + "{" + keys + "}\\\"").concat(suffix) : // Linux gnuclient escaping: // java string: "(insert \"\\\\cite{Blah2001}\")" // so sh receives: (insert "\\cite{Blah2001}") // so emacs receives: (insert "\cite{Blah2001}") prefix.concat("\"" + Globals.prefs.get("citeCommandEmacs").replaceAll("\\\\", "\\\\\\\\") + "{" + keys + "}\"").concat(suffix); final Process p = Runtime.getRuntime().exec(com); Runnable errorListener = new Runnable() { public void run() { InputStream out = p.getErrorStream(); // try { // if (out.available() <= 0) // out = p.getInputStream(); // } catch (Exception e) { // } int c; StringBuffer sb = new StringBuffer(); try { while ((c = out.read()) != -1) sb.append((char) c); } catch (IOException e) { e.printStackTrace(); } // Error stream has been closed. See if there were any errors: if (sb.toString().trim().length() > 0) { System.out.println(sb.toString()); couldNotConnect = true; return; } } }; Thread t = new Thread(errorListener); t.start(); t.join(); } catch (IOException excep) { couldNotRunClient = true; return; } catch (InterruptedException e) { e.printStackTrace(); } } public void operationCompleted(BasePanel panel) { if (couldNotConnect) JOptionPane.showMessageDialog( panel.frame(), "<HTML>"+ Globals.lang("Could not connect to a running gnuserv process. Make sure that " +"Emacs or XEmacs is running,<BR>and that the server has been started " +"(by running the command 'server-start'/'gnuserv-start').") +"</HTML>", Globals.lang("Error"), JOptionPane.ERROR_MESSAGE); else if (couldNotRunClient) JOptionPane.showMessageDialog( panel.frame(), Globals.lang("Could not run the gnuclient/emacsclient program. Make sure you have " +"the emacsclient/gnuclient program installed and available in the PATH."), Globals.lang("Error"), JOptionPane.ERROR_MESSAGE); else { panel.output(Globals.lang("Pushed citations to Emacs")); } } public boolean requiresBibtexKeys() { return true; } }