JAL-3746 release notes and what’s new for 2.11.2 - in progress
[jalview.git] / src / jalview / gui / AppJmol.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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.
11  *  
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.
16  * 
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.
20  */
21 package jalview.gui;
22
23 import java.awt.BorderLayout;
24 import java.awt.Color;
25 import java.awt.Dimension;
26 import java.awt.Font;
27 import java.awt.Graphics;
28 import java.io.File;
29 import java.util.List;
30 import java.util.Map;
31
32 import javax.swing.JPanel;
33 import javax.swing.JSplitPane;
34 import javax.swing.SwingUtilities;
35 import javax.swing.event.InternalFrameAdapter;
36 import javax.swing.event.InternalFrameEvent;
37
38 import jalview.api.AlignmentViewPanel;
39 import jalview.bin.Cache;
40 import jalview.datamodel.PDBEntry;
41 import jalview.datamodel.SequenceI;
42 import jalview.datamodel.StructureViewerModel;
43 import jalview.datamodel.StructureViewerModel.StructureData;
44 import jalview.fts.service.alphafold.AlphafoldRestClient;
45 import jalview.gui.ImageExporter.ImageWriterI;
46 import jalview.gui.StructureViewer.ViewerType;
47 import jalview.structure.StructureCommand;
48 import jalview.structures.models.AAStructureBindingModel;
49 import jalview.util.BrowserLauncher;
50 import jalview.util.ImageMaker;
51 import jalview.util.MessageManager;
52 import jalview.util.Platform;
53
54 public class AppJmol extends StructureViewerBase
55 {
56   // ms to wait for Jmol to load files
57   private static final int JMOL_LOAD_TIMEOUT = 20000;
58
59   private static final String SPACE = " ";
60
61   private static final String QUOTE = "\"";
62
63   AppJmolBinding jmb;
64
65   JPanel scriptWindow;
66
67   JSplitPane splitPane;
68
69   RenderPanel renderPanel;
70
71   /**
72    * 
73    * @param files
74    * @param ids
75    * @param seqs
76    * @param ap
77    * @param usetoColour
78    *          - add the alignment panel to the list used for colouring these
79    *          structures
80    * @param useToAlign
81    *          - add the alignment panel to the list used for aligning these
82    *          structures
83    * @param leaveColouringToJmol
84    *          - do not update the colours from any other source. Jmol is
85    *          handling them
86    * @param loadStatus
87    * @param bounds
88    * @param viewid
89    */
90   public AppJmol(StructureViewerModel viewerModel, AlignmentPanel ap,
91           String sessionFile, String viewid)
92   {
93     Map<File, StructureData> pdbData = viewerModel.getFileData();
94     PDBEntry[] pdbentrys = new PDBEntry[pdbData.size()];
95     SequenceI[][] seqs = new SequenceI[pdbData.size()][];
96     int i = 0;
97     for (StructureData data : pdbData.values())
98     {
99       PDBEntry pdbentry = new PDBEntry(data.getPdbId(), null,
100               PDBEntry.Type.PDB, data.getFilePath());
101       pdbentrys[i] = pdbentry;
102       List<SequenceI> sequencesForPdb = data.getSeqList();
103       seqs[i] = sequencesForPdb
104               .toArray(new SequenceI[sequencesForPdb.size()]);
105       i++;
106     }
107
108     // TODO: check if protocol is needed to be set, and if chains are
109     // autodiscovered.
110     jmb = new AppJmolBinding(this, ap.getStructureSelectionManager(),
111             pdbentrys, seqs, null);
112
113     jmb.setLoadingFromArchive(true);
114     addAlignmentPanel(ap);
115     if (viewerModel.isAlignWithPanel())
116     {
117       useAlignmentPanelForSuperposition(ap);
118     }
119     initMenus();
120     boolean useToColour = viewerModel.isColourWithAlignPanel();
121     boolean leaveColouringToJmol = viewerModel.isColourByViewer();
122     if (leaveColouringToJmol || !useToColour)
123     {
124       jmb.setColourBySequence(false);
125       seqColour.setSelected(false);
126       viewerColour.setSelected(true);
127     }
128     else if (useToColour)
129     {
130       useAlignmentPanelForColourbyseq(ap);
131       jmb.setColourBySequence(true);
132       seqColour.setSelected(true);
133       viewerColour.setSelected(false);
134     }
135
136     this.setBounds(viewerModel.getX(), viewerModel.getY(),
137             viewerModel.getWidth(), viewerModel.getHeight());
138     setViewId(viewid);
139
140     this.addInternalFrameListener(new InternalFrameAdapter()
141     {
142       @Override
143       public void internalFrameClosing(
144               InternalFrameEvent internalFrameEvent)
145       {
146         closeViewer(false);
147       }
148     });
149     StringBuilder cmd = new StringBuilder();
150     cmd.append("load FILES ").append(QUOTE)
151             .append(Platform.escapeBackslashes(sessionFile)).append(QUOTE);
152     initJmol(cmd.toString());
153   }
154
155   @Override
156   protected void initMenus()
157   {
158     super.initMenus();
159
160     viewerColour
161             .setText(MessageManager.getString("label.colour_with_jmol"));
162     viewerColour.setToolTipText(MessageManager
163             .getString("label.let_jmol_manage_structure_colours"));
164   }
165
166   /**
167    * display a single PDB structure in a new Jmol view
168    * 
169    * @param pdbentry
170    * @param seq
171    * @param chains
172    * @param ap
173    */
174   public AppJmol(PDBEntry pdbentry, SequenceI[] seq, String[] chains,
175           final AlignmentPanel ap)
176   {
177     setProgressIndicator(ap.alignFrame);
178
179     openNewJmol(ap, alignAddedStructures, new PDBEntry[] { pdbentry },
180             new SequenceI[][]
181             { seq });
182   }
183
184   private void openNewJmol(AlignmentPanel ap, boolean alignAdded,
185           PDBEntry[] pdbentrys,
186           SequenceI[][] seqs)
187   {
188     setProgressIndicator(ap.alignFrame);
189     jmb = new AppJmolBinding(this, ap.getStructureSelectionManager(),
190             pdbentrys, seqs, null);
191     addAlignmentPanel(ap);
192     useAlignmentPanelForColourbyseq(ap);
193
194     alignAddedStructures = alignAdded;
195     if (pdbentrys.length > 1)
196     {
197       useAlignmentPanelForSuperposition(ap);
198     }
199
200     jmb.setColourBySequence(true);
201     setSize(400, 400); // probably should be a configurable/dynamic default here
202     initMenus();
203     addingStructures = false;
204     worker = new Thread(this);
205     worker.start();
206
207     this.addInternalFrameListener(new InternalFrameAdapter()
208     {
209       @Override
210       public void internalFrameClosing(
211               InternalFrameEvent internalFrameEvent)
212       {
213         closeViewer(false);
214       }
215     });
216
217   }
218
219   /**
220    * create a new Jmol containing several structures optionally superimposed
221    * using the given alignPanel.
222    * 
223    * @param ap
224    * @param alignAdded
225    *          - true to superimpose
226    * @param pe
227    * @param seqs
228    */
229   public AppJmol(AlignmentPanel ap, boolean alignAdded, PDBEntry[] pe,
230           SequenceI[][] seqs)
231   {
232     openNewJmol(ap, alignAdded, pe, seqs);
233   }
234
235
236   void initJmol(String command)
237   {
238     jmb.setFinishedInit(false);
239     renderPanel = new RenderPanel();
240     // TODO: consider waiting until the structure/view is fully loaded before
241     // displaying
242     this.getContentPane().add(renderPanel, java.awt.BorderLayout.CENTER);
243     jalview.gui.Desktop.addInternalFrame(this, jmb.getViewerTitle(),
244             getBounds().width, getBounds().height);
245     if (scriptWindow == null)
246     {
247       BorderLayout bl = new BorderLayout();
248       bl.setHgap(0);
249       bl.setVgap(0);
250       scriptWindow = new JPanel(bl);
251       scriptWindow.setVisible(false);
252     }
253
254     jmb.allocateViewer(renderPanel, true, "", null, null, "", scriptWindow,
255             null);
256     // jmb.newJmolPopup("Jmol");
257     if (command == null)
258     {
259       command = "";
260     }
261     jmb.executeCommand(new StructureCommand(command), false);
262     jmb.executeCommand(new StructureCommand("set hoverDelay=0.1"), false);
263     jmb.setFinishedInit(true);
264   }
265
266   @Override
267   public void run()
268   {
269     _started = true;
270     try
271     {
272       List<String> files = jmb.fetchPdbFiles(this);
273       if (files.size() > 0)
274       {
275         showFilesInViewer(files);
276       }
277     } finally
278     {
279       _started = false;
280       worker = null;
281     }
282   }
283
284   /**
285    * Either adds the given files to a structure viewer or opens a new viewer to
286    * show them
287    * 
288    * @param files
289    *          list of absolute paths to structure files
290    */
291   void showFilesInViewer(List<String> files)
292   {
293     long lastnotify = jmb.getLoadNotifiesHandled();
294     StringBuilder fileList = new StringBuilder();
295     for (String s : files)
296     {
297       fileList.append(SPACE).append(QUOTE)
298               .append(Platform.escapeBackslashes(s)).append(QUOTE);
299     }
300     String filesString = fileList.toString();
301
302     if (!addingStructures)
303     {
304       try
305       {
306         initJmol("load FILES " + filesString);
307       } catch (OutOfMemoryError oomerror)
308       {
309         new OOMWarning("When trying to open the Jmol viewer!", oomerror);
310         Cache.log.debug("File locations are " + filesString);
311       } catch (Exception ex)
312       {
313         Cache.log.error("Couldn't open Jmol viewer!", ex);
314         ex.printStackTrace();
315         return;
316       }
317     }
318     else
319     {
320       StringBuilder cmd = new StringBuilder();
321       cmd.append("loadingJalviewdata=true\nload APPEND ");
322       cmd.append(filesString);
323       cmd.append("\nloadingJalviewdata=null");
324       final StructureCommand command = new StructureCommand(cmd.toString());
325       lastnotify = jmb.getLoadNotifiesHandled();
326
327       try
328       {
329         jmb.executeCommand(command, false);
330       } catch (OutOfMemoryError oomerror)
331       {
332         new OOMWarning("When trying to add structures to the Jmol viewer!",
333                 oomerror);
334         Cache.log.debug("File locations are " + filesString);
335         return;
336       } catch (Exception ex)
337       {
338         Cache.log.error("Couldn't add files to Jmol viewer!", ex);
339         ex.printStackTrace();
340         return;
341       }
342     }
343
344     // need to wait around until script has finished
345     int waitMax = JMOL_LOAD_TIMEOUT;
346     int waitFor = 35;
347     int waitTotal = 0;
348     while (addingStructures ? lastnotify >= jmb.getLoadNotifiesHandled()
349             : !(jmb.isFinishedInit() && jmb.getStructureFiles() != null
350                     && jmb.getStructureFiles().length == files.size()))
351     {
352       try
353       {
354         Cache.log.debug("Waiting around for jmb notify.");
355         waitTotal += waitFor;
356
357         // Thread.sleep() throws an exception in JS
358         Thread.sleep(waitFor);
359       } catch (Exception e)
360       {
361       }
362       if (waitTotal > waitMax)
363       {
364         System.err.println("Timed out waiting for Jmol to load files after "
365                 + waitTotal + "ms");
366         // System.err.println("finished: " + jmb.isFinishedInit()
367         // + "; loaded: " + Arrays.toString(jmb.getPdbFile())
368         // + "; files: " + files.toString());
369         jmb.getStructureFiles();
370         break;
371       }
372     }
373
374     // refresh the sequence colours for the new structure(s)
375     for (AlignmentViewPanel ap : _colourwith)
376     {
377       jmb.updateColours(ap);
378     }
379     // do superposition if asked to
380     if (alignAddedStructures)
381     {
382       alignAddedStructures();
383     }
384     addingStructures = false;
385   }
386
387   /**
388    * Queues a thread to align structures with Jalview alignments
389    */
390   void alignAddedStructures()
391   {
392     javax.swing.SwingUtilities.invokeLater(new Runnable()
393     {
394       @Override
395       public void run()
396       {
397         if (jmb.jmolViewer.isScriptExecuting())
398         {
399           SwingUtilities.invokeLater(this);
400           try
401           {
402             Thread.sleep(5);
403           } catch (InterruptedException q)
404           {
405           }
406           return;
407         }
408         else
409         {
410           alignStructsWithAllAlignPanels();
411         }
412       }
413     });
414
415   }
416
417   /**
418    * Outputs the Jmol viewer image as an image file, after prompting the user to
419    * choose a file and (for EPS) choice of Text or Lineart character rendering
420    * (unless a preference for this is set)
421    * 
422    * @param type
423    */
424   @Override
425   public void makePDBImage(ImageMaker.TYPE type)
426   {
427     int width = getWidth();
428     int height = getHeight();
429     ImageWriterI writer = new ImageWriterI()
430     {
431       @Override
432       public void exportImage(Graphics g) throws Exception
433       {
434         jmb.jmolViewer.renderScreenImage(g, width, height);
435       }
436     };
437     String view = MessageManager.getString("action.view").toLowerCase();
438     ImageExporter exporter = new ImageExporter(writer,
439             getProgressIndicator(), type, getTitle());
440     exporter.doExport(null, this, width, height, view);
441   }
442
443   @Override
444   public void showHelp_actionPerformed()
445   {
446     try
447     {
448       BrowserLauncher // BH 2018
449               .openURL("http://wiki.jmol.org");//http://jmol.sourceforge.net/docs/JmolUserGuide/");
450     } catch (Exception ex)
451     {
452       System.err.println("Show Jmol help failed with: " + ex.getMessage());
453     }
454   }
455
456   @Override
457   public void showConsole(boolean showConsole)
458   {
459     if (showConsole)
460     {
461       if (splitPane == null)
462       {
463         splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
464         splitPane.setTopComponent(renderPanel);
465         splitPane.setBottomComponent(scriptWindow);
466         this.getContentPane().add(splitPane, BorderLayout.CENTER);
467         splitPane.setDividerLocation(getHeight() - 200);
468         scriptWindow.setVisible(true);
469         scriptWindow.validate();
470         splitPane.validate();
471       }
472
473     }
474     else
475     {
476       if (splitPane != null)
477       {
478         splitPane.setVisible(false);
479       }
480
481       splitPane = null;
482
483       this.getContentPane().add(renderPanel, BorderLayout.CENTER);
484     }
485
486     validate();
487   }
488
489   class RenderPanel extends JPanel
490   {
491     final Dimension currentSize = new Dimension();
492
493     @Override
494     public void paintComponent(Graphics g)
495     {
496       getSize(currentSize);
497
498       if (jmb != null && jmb.hasFileLoadingError())
499       {
500         g.setColor(Color.black);
501         g.fillRect(0, 0, currentSize.width, currentSize.height);
502         g.setColor(Color.white);
503         g.setFont(new Font("Verdana", Font.BOLD, 14));
504         g.drawString(MessageManager.getString("label.error_loading_file")
505                 + "...", 20, currentSize.height / 2);
506         StringBuffer sb = new StringBuffer();
507         int lines = 0;
508         for (int e = 0; e < jmb.getPdbCount(); e++)
509         {
510           sb.append(jmb.getPdbEntry(e).getId());
511           if (e < jmb.getPdbCount() - 1)
512           {
513             sb.append(",");
514           }
515
516           if (e == jmb.getPdbCount() - 1 || sb.length() > 20)
517           {
518             lines++;
519             g.drawString(sb.toString(), 20, currentSize.height / 2
520                     - lines * g.getFontMetrics().getHeight());
521           }
522         }
523       }
524       else if (jmb == null || jmb.jmolViewer == null || !jmb.isFinishedInit())
525       {
526         g.setColor(Color.black);
527         g.fillRect(0, 0, currentSize.width, currentSize.height);
528         g.setColor(Color.white);
529         g.setFont(new Font("Verdana", Font.BOLD, 14));
530         g.drawString(MessageManager.getString("label.retrieving_pdb_data"),
531                 20, currentSize.height / 2);
532       }
533       else
534       {
535         jmb.jmolViewer.renderScreenImage(g, currentSize.width,
536                 currentSize.height);
537       }
538     }
539   }
540
541   @Override
542   public AAStructureBindingModel getBinding()
543   {
544     return this.jmb;
545   }
546
547   @Override
548   public ViewerType getViewerType()
549   {
550     return ViewerType.JMOL;
551   }
552
553   @Override
554   protected String getViewerName()
555   {
556     return "Jmol";
557   }
558 }