2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.bin.Cache;
24 import jalview.datamodel.AlignmentI;
25 import jalview.datamodel.PDBEntry;
26 import jalview.datamodel.SequenceI;
27 import jalview.gui.ImageExporter.ImageWriterI;
28 import jalview.gui.StructureViewer.ViewerType;
29 import jalview.structures.models.AAStructureBindingModel;
30 import jalview.util.BrowserLauncher;
31 import jalview.util.ImageMaker;
32 import jalview.util.MessageManager;
33 import jalview.util.Platform;
34 import jalview.ws.dbsources.Pdb;
36 import java.awt.BorderLayout;
37 import java.awt.Color;
38 import java.awt.Dimension;
40 import java.awt.Graphics;
41 import java.awt.Rectangle;
42 import java.awt.event.ActionEvent;
44 import java.util.ArrayList;
45 import java.util.List;
46 import java.util.Vector;
48 import javax.swing.JCheckBoxMenuItem;
49 import javax.swing.JPanel;
50 import javax.swing.JSplitPane;
51 import javax.swing.SwingUtilities;
52 import javax.swing.event.InternalFrameAdapter;
53 import javax.swing.event.InternalFrameEvent;
55 public class AppJmol extends StructureViewerBase
57 // ms to wait for Jmol to load files
58 private static final int JMOL_LOAD_TIMEOUT = 20000;
60 private static final String SPACE = " ";
62 private static final String QUOTE = "\"";
70 RenderPanel renderPanel;
79 * - add the alignment panel to the list used for colouring these
82 * - add the alignment panel to the list used for aligning these
84 * @param leaveColouringToJmol
85 * - do not update the colours from any other source. Jmol is
91 public AppJmol(String[] files, String[] ids, SequenceI[][] seqs,
92 AlignmentPanel ap, boolean usetoColour, boolean useToAlign,
93 boolean leaveColouringToJmol, String loadStatus, Rectangle bounds,
96 PDBEntry[] pdbentrys = new PDBEntry[files.length];
97 for (int i = 0; i < pdbentrys.length; i++)
99 // PDBEntry pdbentry = new PDBEntry(files[i], ids[i]);
100 PDBEntry pdbentry = new PDBEntry(ids[i], null, PDBEntry.Type.PDB,
102 pdbentrys[i] = pdbentry;
104 // / TODO: check if protocol is needed to be set, and if chains are
106 jmb = new AppJmolBinding(this, ap.getStructureSelectionManager(),
107 pdbentrys, seqs, null);
109 jmb.setLoadingFromArchive(true);
110 addAlignmentPanel(ap);
113 useAlignmentPanelForSuperposition(ap);
116 if (leaveColouringToJmol || !usetoColour)
118 jmb.setColourBySequence(false);
119 seqColour.setSelected(false);
120 viewerColour.setSelected(true);
122 else if (usetoColour)
124 useAlignmentPanelForColourbyseq(ap);
125 jmb.setColourBySequence(true);
126 seqColour.setSelected(true);
127 viewerColour.setSelected(false);
129 this.setBounds(bounds);
131 // jalview.gui.Desktop.addInternalFrame(this, "Loading File",
132 // bounds.width,bounds.height);
134 this.addInternalFrameListener(new InternalFrameAdapter()
137 public void internalFrameClosing(
138 InternalFrameEvent internalFrameEvent)
143 initJmol(loadStatus, null); // pdbentry, seq, JBPCHECK!
147 protected void initMenus()
151 viewerActionMenu.setText(MessageManager.getString("label.jmol"));
154 .setText(MessageManager.getString("label.colour_with_jmol"));
155 viewerColour.setToolTipText(MessageManager
156 .getString("label.let_jmol_manage_structure_colours"));
159 IProgressIndicator progressBar = null;
162 protected IProgressIndicator getIProgressIndicator()
168 * display a single PDB structure in a new Jmol view
175 public AppJmol(PDBEntry pdbentry, SequenceI[] seq, String[] chains,
176 final AlignmentPanel ap)
178 progressBar = ap.alignFrame;
180 openNewJmol(ap, alignAddedStructures, new PDBEntry[] { pdbentry },
185 private void openNewJmol(AlignmentPanel ap, boolean alignAdded,
186 PDBEntry[] pdbentrys,
189 progressBar = ap.alignFrame;
190 jmb = new AppJmolBinding(this, ap.getStructureSelectionManager(),
191 pdbentrys, seqs, null);
192 addAlignmentPanel(ap);
193 useAlignmentPanelForColourbyseq(ap);
195 alignAddedStructures = alignAdded;
196 useAlignmentPanelForSuperposition(ap);
198 jmb.setColourBySequence(true);
199 setSize(400, 400); // probably should be a configurable/dynamic default here
201 addingStructures = false;
203 this.addInternalFrameListener(new InternalFrameAdapter()
206 public void internalFrameClosing(
207 InternalFrameEvent internalFrameEvent)
213 worker = new Thread(this);
218 * create a new Jmol containing several structures optionally superimposed
219 * using the given alignPanel.
223 * - true to superimpose
227 public AppJmol(AlignmentPanel ap, boolean alignAdded, PDBEntry[] pe,
230 openNewJmol(ap, alignAdded, pe, seqs);
234 private void initJmol(String command, List<File> files)
236 jmb.setFinishedInit(false);
237 renderPanel = new RenderPanel();
238 // TODO: consider waiting until the structure/view is fully loaded before
240 this.getContentPane().add(renderPanel, java.awt.BorderLayout.CENTER);
241 jalview.gui.Desktop.addInternalFrame(this, jmb.getViewerTitle(),
242 getBounds().width, getBounds().height);
243 if (scriptWindow == null)
245 BorderLayout bl = new BorderLayout();
248 scriptWindow = new JPanel(bl);
249 scriptWindow.setVisible(false);
252 jmb.allocateViewer(renderPanel, true, "", null, null, "", scriptWindow,
254 // jmb.newJmolPopup("Jmol");
258 } else if (files != null) {
259 jmb.cacheFiles(files);
261 jmb.evalStateCommand(command);
262 jmb.evalStateCommand("set hoverDelay=0.1");
263 jmb.setFinishedInit(true);
267 void showSelectedChains()
269 Vector<String> toshow = new Vector<>();
270 for (int i = 0; i < chainMenu.getItemCount(); i++)
272 if (chainMenu.getItem(i) instanceof JCheckBoxMenuItem)
274 JCheckBoxMenuItem item = (JCheckBoxMenuItem) chainMenu.getItem(i);
275 if (item.isSelected())
277 toshow.addElement(item.getText());
281 jmb.centerViewer(toshow);
285 public void closeViewer(boolean closeExternalViewer)
287 // Jmol does not use an external viewer
292 setAlignmentPanel(null);
296 // TODO: check for memory leaks where instance isn't finalised because jmb
297 // holds a reference to the window
307 List<File> files = fetchPdbFiles();
308 if (files.size() > 0)
310 showFilesInViewer(files);
320 * Either adds the given files to a structure viewer or opens a new viewer to
324 * list of absolute paths to structure files
326 void showFilesInViewer(List<File> files)
328 long lastnotify = jmb.getLoadNotifiesHandled();
329 StringBuilder fileList = new StringBuilder();
332 String s = f.getAbsolutePath();
333 fileList.append(SPACE).append(QUOTE)
334 .append(Platform.escapeString(s)).append(QUOTE);
336 String filesString = fileList.toString();
338 if (!addingStructures)
342 initJmol("load FILES " + filesString, files);
343 } catch (OutOfMemoryError oomerror)
345 new OOMWarning("When trying to open the Jmol viewer!", oomerror);
346 Cache.log.debug("File locations are " + filesString);
347 } catch (Exception ex)
349 Cache.log.error("Couldn't open Jmol viewer!", ex);
350 ex.printStackTrace();
356 StringBuilder cmd = new StringBuilder();
357 cmd.append("loadingJalviewdata=true\nload APPEND ");
358 cmd.append(filesString);
359 cmd.append("\nloadingJalviewdata=null");
360 final String command = cmd.toString();
361 lastnotify = jmb.getLoadNotifiesHandled();
365 jmb.cacheFiles(files);
366 jmb.evalStateCommand(command);
367 } catch (OutOfMemoryError oomerror)
369 new OOMWarning("When trying to add structures to the Jmol viewer!",
371 Cache.log.debug("File locations are " + filesString);
373 } catch (Exception ex)
375 Cache.log.error("Couldn't add files to Jmol viewer!", ex);
376 ex.printStackTrace();
381 // need to wait around until script has finished
382 int waitMax = JMOL_LOAD_TIMEOUT;
385 while (addingStructures ? lastnotify >= jmb.getLoadNotifiesHandled()
386 : !(jmb.isFinishedInit() && jmb.getStructureFiles() != null
387 && jmb.getStructureFiles().length == files.size()))
391 Cache.log.debug("Waiting around for jmb notify.");
392 Thread.sleep(waitFor);
393 waitTotal += waitFor;
394 } catch (Exception e)
397 if (waitTotal > waitMax)
399 System.err.println("Timed out waiting for Jmol to load files after "
401 // System.err.println("finished: " + jmb.isFinishedInit()
402 // + "; loaded: " + Arrays.toString(jmb.getPdbFile())
403 // + "; files: " + files.toString());
404 jmb.getStructureFiles();
409 // refresh the sequence colours for the new structure(s)
410 for (AlignmentPanel ap : _colourwith)
412 jmb.updateColours(ap);
414 // do superposition if asked to
415 if (alignAddedStructures)
417 alignAddedStructures();
419 addingStructures = false;
423 * Queues a thread to align structures with Jalview alignments
425 void alignAddedStructures()
427 javax.swing.SwingUtilities.invokeLater(new Runnable()
432 if (jmb.viewer.isScriptExecuting())
434 SwingUtilities.invokeLater(this);
438 } catch (InterruptedException q)
445 alignStructs_withAllAlignPanels();
453 * Retrieves and saves as file any modelled PDB entries for which we do not
454 * already have a file saved. Returns a list of absolute paths to structure
455 * files which were either retrieved, or already stored but not modelled in
456 * the structure viewer (i.e. files to add to the viewer display).
460 List<File> fetchPdbFiles()
462 // todo - record which pdbids were successfully imported.
463 StringBuilder errormsgs = new StringBuilder();
465 List<File> files = new ArrayList<>();
469 String[] filesInViewer = jmb.getStructureFiles();
470 // TODO: replace with reference fetching/transfer code (validate PDBentry
472 Pdb pdbclient = new Pdb();
473 for (int pi = 0; pi < jmb.getPdbCount(); pi++)
475 File file = jmb.getPdbEntry(pi).getFileF();
478 // todo: extract block as method and pull up (also ChimeraViewFrame)
479 // retrieve the pdb and store it locally
480 AlignmentI pdbseq = null;
481 pdbid = jmb.getPdbEntry(pi).getId();
482 long hdl = pdbid.hashCode() - System.currentTimeMillis();
483 if (progressBar != null)
485 progressBar.setProgressBar(MessageManager
486 .formatMessage("status.fetching_pdb", new String[]
491 pdbseq = pdbclient.getSequenceRecords(pdbid);
492 } catch (OutOfMemoryError oomerror)
494 new OOMWarning("Retrieving PDB id " + pdbid, oomerror);
495 } catch (Exception ex)
497 ex.printStackTrace();
498 errormsgs.append("'").append(pdbid).append("'");
501 if (progressBar != null)
503 progressBar.setProgressBar(
504 MessageManager.getString("label.state_completed"),
510 // just transfer the file name from the first sequence's first
512 file = new File(pdbseq.getSequenceAt(0).getAllPDBEntries()
513 .elementAt(0).getFile());
514 jmb.getPdbEntry(pi).setFile(file);
519 errormsgs.append("'").append(pdbid).append("' ");
524 if (filesInViewer != null && filesInViewer.length > 0)
526 addingStructures = true; // already files loaded.
527 String filename = file.getAbsolutePath();
528 for (int c = 0; c < filesInViewer.length; c++)
530 if (filesInViewer[c].equals(filename))
543 } catch (OutOfMemoryError oomerror)
545 new OOMWarning("Retrieving PDB files: " + pdbid, oomerror);
546 } catch (Exception ex)
548 ex.printStackTrace();
549 errormsgs.append("When retrieving pdbfiles : current was: '")
550 .append(pdbid).append("'");
552 if (errormsgs.length() > 0)
554 JvOptionPane.showInternalMessageDialog(Desktop.desktop,
555 MessageManager.formatMessage(
556 "label.pdb_entries_couldnt_be_retrieved", new String[]
557 { errormsgs.toString() }),
558 MessageManager.getString("label.couldnt_load_file"),
559 JvOptionPane.ERROR_MESSAGE);
565 * Outputs the Jmol viewer image as an image file, after prompting the user to
566 * choose a file and (for EPS) choice of Text or Lineart character rendering
567 * (unless a preference for this is set)
571 public void makePDBImage(ImageMaker.TYPE type)
573 int width = getWidth();
574 int height = getHeight();
575 ImageWriterI writer = new ImageWriterI()
578 public void exportImage(Graphics g) throws Exception
580 jmb.viewer.renderScreenImage(g, width, height);
583 String view = MessageManager.getString("action.view").toLowerCase();
584 ImageExporter exporter = new ImageExporter(writer,
585 jmb.getIProgressIndicator(), type, getTitle());
586 exporter.doExport(null, this, width, height, view);
590 public void showHelp_actionPerformed(ActionEvent actionEvent)
594 BrowserLauncher // BH 2018
595 .openURL("http://wiki.jmol.org");//http://jmol.sourceforge.net/docs/JmolUserGuide/");
596 } catch (Exception ex)
601 public void showConsole(boolean showConsole)
606 if (splitPane == null)
608 splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
609 splitPane.setTopComponent(renderPanel);
610 splitPane.setBottomComponent(scriptWindow);
611 this.getContentPane().add(splitPane, BorderLayout.CENTER);
612 splitPane.setDividerLocation(getHeight() - 200);
613 scriptWindow.setVisible(true);
614 scriptWindow.validate();
615 splitPane.validate();
621 if (splitPane != null)
623 splitPane.setVisible(false);
628 this.getContentPane().add(renderPanel, BorderLayout.CENTER);
634 class RenderPanel extends JPanel
636 final Dimension currentSize = new Dimension();
639 public void paintComponent(Graphics g)
641 getSize(currentSize);
643 if (jmb != null && jmb.hasFileLoadingError())
645 g.setColor(Color.black);
646 g.fillRect(0, 0, currentSize.width, currentSize.height);
647 g.setColor(Color.white);
648 g.setFont(new Font("Verdana", Font.BOLD, 14));
649 g.drawString(MessageManager.getString("label.error_loading_file")
650 + "...", 20, currentSize.height / 2);
651 StringBuffer sb = new StringBuffer();
653 for (int e = 0; e < jmb.getPdbCount(); e++)
655 sb.append(jmb.getPdbEntry(e).getId());
656 if (e < jmb.getPdbCount() - 1)
661 if (e == jmb.getPdbCount() - 1 || sb.length() > 20)
664 g.drawString(sb.toString(), 20, currentSize.height / 2
665 - lines * g.getFontMetrics().getHeight());
669 else if (jmb == null || jmb.viewer == null || !jmb.isFinishedInit())
671 g.setColor(Color.black);
672 g.fillRect(0, 0, currentSize.width, currentSize.height);
673 g.setColor(Color.white);
674 g.setFont(new Font("Verdana", Font.BOLD, 14));
675 g.drawString(MessageManager.getString("label.retrieving_pdb_data"),
676 20, currentSize.height / 2);
680 jmb.viewer.renderScreenImage(g, currentSize.width,
687 public AAStructureBindingModel getBinding()
693 public String getStateInfo()
695 return jmb == null ? null : jmb.viewer.getStateInfo();
699 public ViewerType getViewerType()
701 return ViewerType.JMOL;
705 protected String getViewerName()