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