bf80831a32e4d19a5e01d93578d8333d0bc075e7
[jalview.git] / src / jalview / ext / jmol / JalviewJmolBinding.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.ext.jmol;
22
23 import jalview.api.FeatureRenderer;
24 import jalview.api.SequenceRenderer;
25 import jalview.datamodel.AlignmentI;
26 import jalview.datamodel.ColumnSelection;
27 import jalview.datamodel.PDBEntry;
28 import jalview.datamodel.SequenceI;
29 import jalview.io.DataSourceType;
30 import jalview.io.StructureFile;
31 import jalview.schemes.ColourSchemeI;
32 import jalview.schemes.ResidueProperties;
33 import jalview.structure.AtomSpec;
34 import jalview.structure.StructureMappingcommandSet;
35 import jalview.structure.StructureSelectionManager;
36 import jalview.structures.models.AAStructureBindingModel;
37
38 import java.awt.Color;
39 import java.awt.Container;
40 import java.awt.event.ComponentEvent;
41 import java.awt.event.ComponentListener;
42 import java.io.File;
43 import java.net.URL;
44 import java.security.AccessControlException;
45 import java.util.ArrayList;
46 import java.util.Hashtable;
47 import java.util.List;
48 import java.util.Map;
49 import java.util.Vector;
50
51 import org.jmol.adapter.smarter.SmarterJmolAdapter;
52 import org.jmol.api.JmolAppConsoleInterface;
53 import org.jmol.api.JmolSelectionListener;
54 import org.jmol.api.JmolStatusListener;
55 import org.jmol.api.JmolViewer;
56 import org.jmol.c.CBK;
57 import org.jmol.script.T;
58 import org.jmol.viewer.Viewer;
59
60 public abstract class JalviewJmolBinding extends AAStructureBindingModel
61         implements JmolStatusListener, JmolSelectionListener,
62         ComponentListener
63 {
64   boolean allChainsSelected = false;
65
66   /*
67    * when true, try to search the associated datamodel for sequences that are
68    * associated with any unknown structures in the Jmol view.
69    */
70   private boolean associateNewStructs = false;
71
72   Vector<String> atomsPicked = new Vector<String>();
73
74   private List<String> chainNames;
75
76   Hashtable<String, String> chainFile;
77
78   /*
79    * the default or current model displayed if the model cannot be identified
80    * from the selection message
81    */
82   int frameNo = 0;
83
84   // protected JmolGenericPopup jmolpopup; // not used - remove?
85
86   String lastCommand;
87
88   String lastMessage;
89
90   boolean loadedInline;
91
92   StringBuffer resetLastRes = new StringBuffer();
93
94   public Viewer viewer;
95
96   public JalviewJmolBinding(StructureSelectionManager ssm,
97           PDBEntry[] pdbentry, SequenceI[][] sequenceIs,
98           DataSourceType protocol)
99   {
100     super(ssm, pdbentry, sequenceIs, protocol);
101     /*
102      * viewer = JmolViewer.allocateViewer(renderPanel, new SmarterJmolAdapter(),
103      * "jalviewJmol", ap.av.applet .getDocumentBase(),
104      * ap.av.applet.getCodeBase(), "", this);
105      * 
106      * jmolpopup = JmolPopup.newJmolPopup(viewer, true, "Jmol", true);
107      */
108   }
109
110   public JalviewJmolBinding(StructureSelectionManager ssm,
111           SequenceI[][] seqs, Viewer theViewer)
112   {
113     super(ssm, seqs);
114
115     viewer = theViewer;
116     viewer.setJmolStatusListener(this);
117     viewer.addSelectionListener(this);
118   }
119
120   /**
121    * construct a title string for the viewer window based on the data jalview
122    * knows about
123    * 
124    * @return
125    */
126   public String getViewerTitle()
127   {
128     return getViewerTitle("Jmol", true);
129   }
130
131   /**
132    * prepare the view for a given set of models/chains. chainList contains
133    * strings of the form 'pdbfilename:Chaincode'
134    * 
135    * @param chainList
136    *          list of chains to make visible
137    */
138   public void centerViewer(Vector<String> chainList)
139   {
140     StringBuilder cmd = new StringBuilder(128);
141     int mlength, p;
142     for (String lbl : chainList)
143     {
144       mlength = 0;
145       do
146       {
147         p = mlength;
148         mlength = lbl.indexOf(":", p);
149       } while (p < mlength && mlength < (lbl.length() - 2));
150       // TODO: lookup each pdb id and recover proper model number for it.
151       cmd.append(":" + lbl.substring(mlength + 1) + " /"
152               + (1 + getModelNum(chainFile.get(lbl))) + " or ");
153     }
154     if (cmd.length() > 0)
155     {
156       cmd.setLength(cmd.length() - 4);
157     }
158     evalStateCommand("select *;restrict " + cmd + ";cartoon;center " + cmd);
159   }
160
161   public void closeViewer()
162   {
163     // remove listeners for all structures in viewer
164     getSsm().removeStructureViewerListener(this, this.getPdbFile());
165     viewer.dispose();
166     lastCommand = null;
167     viewer = null;
168     releaseUIResources();
169   }
170
171   @Override
172   public void colourByChain()
173   {
174     colourBySequence = false;
175     // TODO: colour by chain should colour each chain distinctly across all
176     // visible models
177     // TODO: http://issues.jalview.org/browse/JAL-628
178     evalStateCommand("select *;color chain");
179   }
180
181   @Override
182   public void colourByCharge()
183   {
184     colourBySequence = false;
185     evalStateCommand("select *;color white;select ASP,GLU;color red;"
186             + "select LYS,ARG;color blue;select CYS;color yellow");
187   }
188
189   /**
190    * superpose the structures associated with sequences in the alignment
191    * according to their corresponding positions.
192    */
193   public void superposeStructures(AlignmentI alignment)
194   {
195     superposeStructures(alignment, -1, null);
196   }
197
198   /**
199    * superpose the structures associated with sequences in the alignment
200    * according to their corresponding positions. ded)
201    * 
202    * @param refStructure
203    *          - select which pdb file to use as reference (default is -1 - the
204    *          first structure in the alignment)
205    */
206   public void superposeStructures(AlignmentI alignment, int refStructure)
207   {
208     superposeStructures(alignment, refStructure, null);
209   }
210
211   /**
212    * superpose the structures associated with sequences in the alignment
213    * according to their corresponding positions. ded)
214    * 
215    * @param refStructure
216    *          - select which pdb file to use as reference (default is -1 - the
217    *          first structure in the alignment)
218    * @param hiddenCols
219    *          TODO
220    */
221   public void superposeStructures(AlignmentI alignment, int refStructure,
222           ColumnSelection hiddenCols)
223   {
224     superposeStructures(new AlignmentI[] { alignment },
225             new int[] { refStructure },
226             new ColumnSelection[] { hiddenCols });
227   }
228
229   /**
230    * Construct and send a command to align structures against a reference
231    * structure, based on one or more sequence alignments
232    * 
233    * @param _alignment
234    *          an array of alignments to process
235    * @param _refStructure
236    *          an array of corresponding reference structures (index into pdb
237    *          file array); if a negative value is passed, the first PDB file
238    *          mapped to an alignment sequence is used as the reference for
239    *          superposition
240    * @param _hiddenCols
241    *          an array of corresponding hidden columns for each alignment
242    */
243   @Override
244   public void superposeStructures(AlignmentI[] _alignment,
245           int[] _refStructure, ColumnSelection[] _hiddenCols)
246   {
247     while (viewer.isScriptExecuting())
248     {
249       try
250       {
251         Thread.sleep(10);
252       } catch (InterruptedException i)
253       {
254       }
255     }
256
257     /*
258      * get the distinct structure files modelled
259      * (a file with multiple chains may map to multiple sequences)
260      */
261     String[] files = getPdbFile();
262     if (!waitForFileLoad(files))
263     {
264       return;
265     }
266
267     StringBuilder selectioncom = new StringBuilder(256);
268     // In principle - nSeconds specifies the speed of animation for each
269     // superposition - but is seems to behave weirdly, so we don't specify it.
270     String nSeconds = " ";
271     if (files.length > 10)
272     {
273       nSeconds = " 0.005 ";
274     }
275     else
276     {
277       nSeconds = " " + (2.0 / files.length) + " ";
278       // if (nSeconds).substring(0,5)+" ";
279     }
280     // see JAL-1345 - should really automatically turn off the animation for
281     // large numbers of structures, but Jmol doesn't seem to allow that.
282     // nSeconds = " ";
283     // union of all aligned positions are collected together.
284     for (int a = 0; a < _alignment.length; a++)
285     {
286       int refStructure = _refStructure[a];
287       AlignmentI alignment = _alignment[a];
288       ColumnSelection hiddenCols = _hiddenCols[a];
289       if (a > 0
290               && selectioncom.length() > 0
291               && !selectioncom.substring(selectioncom.length() - 1).equals(
292                       "|"))
293       {
294         selectioncom.append("|");
295       }
296       // process this alignment
297       if (refStructure >= files.length)
298       {
299         System.err.println("Invalid reference structure value "
300                 + refStructure);
301         refStructure = -1;
302       }
303
304       /*
305        * 'matched' array will hold 'true' for visible alignment columns where
306        * all sequences have a residue with a mapping to the PDB structure
307        */
308       // TODO could use a BitSet for matched
309       boolean matched[] = new boolean[alignment.getWidth()];
310       for (int m = 0; m < matched.length; m++)
311       {
312         matched[m] = (hiddenCols != null) ? hiddenCols.isVisible(m) : true;
313       }
314
315       SuperposeData[] structures = new SuperposeData[files.length];
316       for (int f = 0; f < files.length; f++)
317       {
318         structures[f] = new SuperposeData(alignment.getWidth());
319       }
320
321       /*
322        * Calculate the superposable alignment columns ('matched'), and the
323        * corresponding structure residue positions (structures.pdbResNo)
324        */
325       int candidateRefStructure = findSuperposableResidues(alignment,
326               matched, structures);
327       if (refStructure < 0)
328       {
329         /*
330          * If no reference structure was specified, pick the first one that has
331          * a mapping in the alignment
332          */
333         refStructure = candidateRefStructure;
334       }
335
336       String[] selcom = new String[files.length];
337       int nmatched = 0;
338       for (boolean b : matched)
339       {
340         if (b)
341         {
342           nmatched++;
343         }
344       }
345       if (nmatched < 4)
346       {
347         // TODO: bail out here because superposition illdefined?
348       }
349
350       /*
351        * generate select statements to select regions to superimpose structures
352        */
353       {
354         // TODO extract method to construct selection statements
355         for (int pdbfnum = 0; pdbfnum < files.length; pdbfnum++)
356         {
357           String chainCd = ":" + structures[pdbfnum].chain;
358           int lpos = -1;
359           boolean run = false;
360           StringBuilder molsel = new StringBuilder();
361           molsel.append("{");
362           for (int r = 0; r < matched.length; r++)
363           {
364             if (matched[r])
365             {
366               int pdbResNo = structures[pdbfnum].pdbResNo[r];
367               if (lpos != pdbResNo - 1)
368               {
369                 // discontinuity
370                 if (lpos != -1)
371                 {
372                   molsel.append(lpos);
373                   molsel.append(chainCd);
374                   molsel.append("|");
375                 }
376                 run = false;
377               }
378               else
379               {
380                 // continuous run - and lpos >-1
381                 if (!run)
382                 {
383                   // at the beginning, so add dash
384                   molsel.append(lpos);
385                   molsel.append("-");
386                 }
387                 run = true;
388               }
389               lpos = pdbResNo;
390             }
391           }
392           /*
393            * add final selection phrase
394            */
395           if (lpos != -1)
396           {
397             molsel.append(lpos);
398             molsel.append(chainCd);
399             molsel.append("}");
400           }
401           if (molsel.length() > 1)
402           {
403             selcom[pdbfnum] = molsel.toString();
404             selectioncom.append("((");
405             selectioncom.append(selcom[pdbfnum].substring(1,
406                     selcom[pdbfnum].length() - 1));
407             selectioncom.append(" )& ");
408             selectioncom.append(pdbfnum + 1);
409             selectioncom.append(".1)");
410             if (pdbfnum < files.length - 1)
411             {
412               selectioncom.append("|");
413             }
414           }
415           else
416           {
417             selcom[pdbfnum] = null;
418           }
419         }
420       }
421       StringBuilder command = new StringBuilder(256);
422       // command.append("set spinFps 10;\n");
423
424       for (int pdbfnum = 0; pdbfnum < files.length; pdbfnum++)
425       {
426         if (pdbfnum == refStructure || selcom[pdbfnum] == null
427                 || selcom[refStructure] == null)
428         {
429           continue;
430         }
431         command.append("echo ");
432         command.append("\"Superposing (");
433         command.append(structures[pdbfnum].pdbId);
434         command.append(") against reference (");
435         command.append(structures[refStructure].pdbId);
436         command.append(")\";\ncompare " + nSeconds);
437         command.append("{");
438         command.append(Integer.toString(1 + pdbfnum));
439         command.append(".1} {");
440         command.append(Integer.toString(1 + refStructure));
441         // conformation=1 excludes alternate locations for CA (JAL-1757)
442         command.append(".1} SUBSET {(*.CA | *.P) and conformation=1} ATOMS ");
443
444         // for (int s = 0; s < 2; s++)
445         // {
446         // command.append(selcom[(s == 0 ? pdbfnum : refStructure)]);
447         // }
448         command.append(selcom[pdbfnum]);
449         command.append(selcom[refStructure]);
450         command.append(" ROTATE TRANSLATE;\n");
451       }
452       if (selectioncom.length() > 0)
453       {
454         // TODO is performing selectioncom redundant here? is done later on
455         // System.out.println("Select regions:\n" + selectioncom.toString());
456         evalStateCommand("select *; cartoons off; backbone; select ("
457                 + selectioncom.toString() + "); cartoons; ");
458         // selcom.append("; ribbons; ");
459         String cmdString = command.toString();
460         // System.out.println("Superimpose command(s):\n" + cmdString);
461
462         evalStateCommand(cmdString);
463       }
464     }
465     if (selectioncom.length() > 0)
466     {// finally, mark all regions that were superposed.
467       if (selectioncom.substring(selectioncom.length() - 1).equals("|"))
468       {
469         selectioncom.setLength(selectioncom.length() - 1);
470       }
471       // System.out.println("Select regions:\n" + selectioncom.toString());
472       evalStateCommand("select *; cartoons off; backbone; select ("
473               + selectioncom.toString() + "); cartoons; ");
474       // evalStateCommand("select *; backbone; select "+selcom.toString()+"; cartoons; center "+selcom.toString());
475     }
476   }
477
478   public void evalStateCommand(String command)
479   {
480     jmolHistory(false);
481     if (lastCommand == null || !lastCommand.equals(command))
482     {
483       viewer.evalStringQuiet(command + "\n");
484     }
485     jmolHistory(true);
486     lastCommand = command;
487   }
488
489   /**
490    * Sends a set of colour commands to the structure viewer
491    * 
492    * @param colourBySequenceCommands
493    */
494   @Override
495   protected void colourBySequence(
496           StructureMappingcommandSet[] colourBySequenceCommands)
497   {
498     for (StructureMappingcommandSet cpdbbyseq : colourBySequenceCommands)
499     {
500       for (String cbyseq : cpdbbyseq.commands)
501       {
502         executeWhenReady(cbyseq);
503       }
504     }
505   }
506
507   /**
508    * @param files
509    * @param sr
510    * @param fr
511    * @param alignment
512    * @return
513    */
514   @Override
515   protected StructureMappingcommandSet[] getColourBySequenceCommands(
516           String[] files, SequenceRenderer sr, FeatureRenderer fr,
517           AlignmentI alignment)
518   {
519     return JmolCommands.getColourBySequenceCommand(getSsm(), files,
520             getSequence(), sr, fr, alignment);
521   }
522
523   /**
524    * @param command
525    */
526   protected void executeWhenReady(String command)
527   {
528     evalStateCommand(command);
529   }
530
531   public void createImage(String file, String type, int quality)
532   {
533     System.out.println("JMOL CREATE IMAGE");
534   }
535
536   @Override
537   public String createImage(String fileName, String type,
538           Object textOrBytes, int quality)
539   {
540     System.out.println("JMOL CREATE IMAGE");
541     return null;
542   }
543
544   @Override
545   public String eval(String strEval)
546   {
547     // System.out.println(strEval);
548     // "# 'eval' is implemented only for the applet.";
549     return null;
550   }
551
552   // End StructureListener
553   // //////////////////////////
554
555   @Override
556   public float[][] functionXY(String functionName, int x, int y)
557   {
558     return null;
559   }
560
561   @Override
562   public float[][][] functionXYZ(String functionName, int nx, int ny, int nz)
563   {
564     // TODO Auto-generated method stub
565     return null;
566   }
567
568   public Color getColour(int atomIndex, int pdbResNum, String chain,
569           String pdbfile)
570   {
571     if (getModelNum(pdbfile) < 0)
572     {
573       return null;
574     }
575     // TODO: verify atomIndex is selecting correct model.
576     // return new Color(viewer.getAtomArgb(atomIndex)); Jmol 12.2.4
577     int colour = viewer.ms.at[atomIndex].atomPropertyInt(T.color);
578     return new Color(colour);
579   }
580
581   /**
582    * instruct the Jalview binding to update the pdbentries vector if necessary
583    * prior to matching the jmol view's contents to the list of structure files
584    * Jalview knows about.
585    */
586   public abstract void refreshPdbEntries();
587
588   private int getModelNum(String modelFileName)
589   {
590     String[] mfn = getPdbFile();
591     if (mfn == null)
592     {
593       return -1;
594     }
595     for (int i = 0; i < mfn.length; i++)
596     {
597       if (mfn[i].equalsIgnoreCase(modelFileName))
598       {
599         return i;
600       }
601     }
602     return -1;
603   }
604
605   /**
606    * map between index of model filename returned from getPdbFile and the first
607    * index of models from this file in the viewer. Note - this is not trimmed -
608    * use getPdbFile to get number of unique models.
609    */
610   private int _modelFileNameMap[];
611
612   // ////////////////////////////////
613   // /StructureListener
614   @Override
615   public synchronized String[] getPdbFile()
616   {
617     if (viewer == null)
618     {
619       return new String[0];
620     }
621     if (modelFileNames == null)
622     {
623       List<String> mset = new ArrayList<String>();
624       _modelFileNameMap = new int[viewer.ms.mc];
625       String m = viewer.ms.getModelFileName(0);
626       if (m != null)
627       {
628         String filePath = m;
629         try
630         {
631           filePath = new File(m).getAbsolutePath();
632         } catch (AccessControlException x)
633         {
634           // usually not allowed to do this in applet
635           System.err
636                   .println("jmolBinding: Using local file string from Jmol: "
637                           + m);
638         }
639         if (filePath.indexOf("/file:") != -1)
640         {
641           // applet path with docroot - discard as format won't match pdbfile
642           filePath = m;
643         }
644         mset.add(filePath);
645         _modelFileNameMap[0] = 0; // filename index for first model is always 0.
646       }
647       int j = 1;
648       for (int i = 1; i < viewer.ms.mc; i++)
649       {
650         m = viewer.ms.getModelFileName(i);
651         String filePath = m;
652         if (m != null)
653         {
654           try
655           {
656             filePath = new File(m).getAbsolutePath();
657           } catch (AccessControlException x)
658           {
659             // usually not allowed to do this in applet, so keep raw handle
660             // System.err.println("jmolBinding: Using local file string from Jmol: "+m);
661           }
662         }
663
664         /*
665          * add this model unless it is read from a structure file we have
666          * already seen (example: 2MJW is an NMR structure with 10 models)
667          */
668         if (!mset.contains(filePath))
669         {
670           mset.add(filePath);
671           _modelFileNameMap[j] = i; // record the model index for the filename
672           j++;
673         }
674       }
675       modelFileNames = mset.toArray(new String[mset.size()]);
676     }
677     return modelFileNames;
678   }
679
680   /**
681    * map from string to applet
682    */
683   @Override
684   public Map<String, Object> getRegistryInfo()
685   {
686     // TODO Auto-generated method stub
687     return null;
688   }
689
690   
691
692   // ///////////////////////////////
693   // JmolStatusListener
694
695   public void handlePopupMenu(int x, int y)
696   {
697     // jmolpopup.show(x, y);
698     // jmolpopup.jpiShow(x, y);
699   }
700
701   /**
702    * Highlight zero, one or more atoms on the structure
703    */
704   @Override
705   public void highlightAtoms(List<AtomSpec> atoms)
706   {
707     if (atoms != null)
708     {
709       if (resetLastRes.length() > 0)
710       {
711         viewer.evalStringQuiet(resetLastRes.toString());
712         resetLastRes.setLength(0);
713       }
714       for (AtomSpec atom : atoms)
715       {
716         highlightAtom(atom.getAtomIndex(), atom.getPdbResNum(),
717                 atom.getChain(), atom.getPdbFile());
718       }
719     }
720   }
721
722   // jmol/ssm only
723   public void highlightAtom(int atomIndex, int pdbResNum, String chain,
724           String pdbfile)
725   {
726     if (modelFileNames == null)
727     {
728       return;
729     }
730
731     // look up file model number for this pdbfile
732     int mdlNum = 0;
733     // may need to adjust for URLencoding here - we don't worry about that yet.
734     while (mdlNum < modelFileNames.length
735             && !pdbfile.equals(modelFileNames[mdlNum]))
736     {
737       mdlNum++;
738     }
739     if (mdlNum == modelFileNames.length)
740     {
741       return;
742     }
743
744     jmolHistory(false);
745
746     StringBuilder cmd = new StringBuilder(64);
747     cmd.append("select " + pdbResNum); // +modelNum
748
749     resetLastRes.append("select " + pdbResNum); // +modelNum
750
751     cmd.append(":");
752     resetLastRes.append(":");
753     if (!chain.equals(" "))
754     {
755       cmd.append(chain);
756       resetLastRes.append(chain);
757     }
758     {
759       cmd.append(" /" + (mdlNum + 1));
760       resetLastRes.append("/" + (mdlNum + 1));
761     }
762     cmd.append(";wireframe 100;" + cmd.toString() + " and not hetero;");
763
764     resetLastRes.append(";wireframe 0;" + resetLastRes.toString()
765             + " and not hetero; spacefill 0;");
766
767     cmd.append("spacefill 200;select none");
768
769     viewer.evalStringQuiet(cmd.toString());
770     jmolHistory(true);
771
772   }
773
774   boolean debug = true;
775
776   private void jmolHistory(boolean enable)
777   {
778     viewer.evalStringQuiet("History " + ((debug || enable) ? "on" : "off"));
779   }
780
781   public void loadInline(String string)
782   {
783     loadedInline = true;
784     // TODO: re JAL-623
785     // viewer.loadInline(strModel, isAppend);
786     // could do this:
787     // construct fake fullPathName and fileName so we can identify the file
788     // later.
789     // Then, construct pass a reader for the string to Jmol.
790     // ((org.jmol.Viewer.Viewer) viewer).loadModelFromFile(fullPathName,
791     // fileName, null, reader, false, null, null, 0);
792     viewer.openStringInline(string);
793   }
794
795   public void mouseOverStructure(int atomIndex, String strInfo)
796   {
797     int pdbResNum;
798     int alocsep = strInfo.indexOf("^");
799     int mdlSep = strInfo.indexOf("/");
800     int chainSeparator = strInfo.indexOf(":"), chainSeparator1 = -1;
801
802     if (chainSeparator == -1)
803     {
804       chainSeparator = strInfo.indexOf(".");
805       if (mdlSep > -1 && mdlSep < chainSeparator)
806       {
807         chainSeparator1 = chainSeparator;
808         chainSeparator = mdlSep;
809       }
810     }
811     // handle insertion codes
812     if (alocsep != -1)
813     {
814       pdbResNum = Integer.parseInt(strInfo.substring(
815               strInfo.indexOf("]") + 1, alocsep));
816
817     }
818     else
819     {
820       pdbResNum = Integer.parseInt(strInfo.substring(
821               strInfo.indexOf("]") + 1, chainSeparator));
822     }
823     String chainId;
824
825     if (strInfo.indexOf(":") > -1)
826     {
827       chainId = strInfo.substring(strInfo.indexOf(":") + 1,
828               strInfo.indexOf("."));
829     }
830     else
831     {
832       chainId = " ";
833     }
834
835     String pdbfilename = modelFileNames[frameNo]; // default is first or current
836     // model
837     if (mdlSep > -1)
838     {
839       if (chainSeparator1 == -1)
840       {
841         chainSeparator1 = strInfo.indexOf(".", mdlSep);
842       }
843       String mdlId = (chainSeparator1 > -1) ? strInfo.substring(mdlSep + 1,
844               chainSeparator1) : strInfo.substring(mdlSep + 1);
845       try
846       {
847         // recover PDB filename for the model hovered over.
848         int _mp = _modelFileNameMap.length - 1, mnumber = new Integer(mdlId)
849                 .intValue() - 1;
850         while (mnumber < _modelFileNameMap[_mp])
851         {
852           _mp--;
853         }
854         pdbfilename = modelFileNames[_mp];
855         if (pdbfilename == null)
856         {
857           pdbfilename = new File(viewer.ms.getModelFileName(mnumber))
858                   .getAbsolutePath();
859         }
860
861       } catch (Exception e)
862       {
863       }
864       ;
865     }
866     if (lastMessage == null || !lastMessage.equals(strInfo))
867     {
868       getSsm().mouseOverStructure(pdbResNum, chainId, pdbfilename);
869     }
870
871     lastMessage = strInfo;
872   }
873
874   public void notifyAtomHovered(int atomIndex, String strInfo, String data)
875   {
876     if (data != null)
877     {
878       System.err.println("Ignoring additional hover info: " + data
879               + " (other info: '" + strInfo + "' pos " + atomIndex + ")");
880     }
881     mouseOverStructure(atomIndex, strInfo);
882   }
883
884   /*
885    * { if (history != null && strStatus != null &&
886    * !strStatus.equals("Script completed")) { history.append("\n" + strStatus);
887    * } }
888    */
889
890   public void notifyAtomPicked(int atomIndex, String strInfo, String strData)
891   {
892     /**
893      * this implements the toggle label behaviour copied from the original
894      * structure viewer, MCView
895      */
896     if (strData != null)
897     {
898       System.err.println("Ignoring additional pick data string " + strData);
899     }
900     int chainSeparator = strInfo.indexOf(":");
901     int p = 0;
902     if (chainSeparator == -1)
903     {
904       chainSeparator = strInfo.indexOf(".");
905     }
906
907     String picked = strInfo.substring(strInfo.indexOf("]") + 1,
908             chainSeparator);
909     String mdlString = "";
910     if ((p = strInfo.indexOf(":")) > -1)
911     {
912       picked += strInfo.substring(p, strInfo.indexOf("."));
913     }
914
915     if ((p = strInfo.indexOf("/")) > -1)
916     {
917       mdlString += strInfo.substring(p, strInfo.indexOf(" #"));
918     }
919     picked = "((" + picked + ".CA" + mdlString + ")|(" + picked + ".P"
920             + mdlString + "))";
921     jmolHistory(false);
922
923     if (!atomsPicked.contains(picked))
924     {
925       viewer.evalStringQuiet("select " + picked + ";label %n %r:%c");
926       atomsPicked.addElement(picked);
927     }
928     else
929     {
930       viewer.evalString("select " + picked + ";label off");
931       atomsPicked.removeElement(picked);
932     }
933     jmolHistory(true);
934     // TODO: in application this happens
935     //
936     // if (scriptWindow != null)
937     // {
938     // scriptWindow.sendConsoleMessage(strInfo);
939     // scriptWindow.sendConsoleMessage("\n");
940     // }
941
942   }
943
944   @Override
945   public void notifyCallback(CBK type, Object[] data)
946   {
947     try
948     {
949       switch (type)
950       {
951       case LOADSTRUCT:
952         notifyFileLoaded((String) data[1], (String) data[2],
953                 (String) data[3], (String) data[4],
954                 ((Integer) data[5]).intValue());
955
956         break;
957       case PICK:
958         notifyAtomPicked(((Integer) data[2]).intValue(), (String) data[1],
959                 (String) data[0]);
960         // also highlight in alignment
961       case HOVER:
962         notifyAtomHovered(((Integer) data[2]).intValue(), (String) data[1],
963                 (String) data[0]);
964         break;
965       case SCRIPT:
966         notifyScriptTermination((String) data[2],
967                 ((Integer) data[3]).intValue());
968         break;
969       case ECHO:
970         sendConsoleEcho((String) data[1]);
971         break;
972       case MESSAGE:
973         sendConsoleMessage((data == null) ? ((String) null)
974                 : (String) data[1]);
975         break;
976       case ERROR:
977         // System.err.println("Ignoring error callback.");
978         break;
979       case SYNC:
980       case RESIZE:
981         refreshGUI();
982         break;
983       case MEASURE:
984
985       case CLICK:
986       default:
987         System.err.println("Unhandled callback " + type + " "
988                 + data[1].toString());
989         break;
990       }
991     } catch (Exception e)
992     {
993       System.err.println("Squashed Jmol callback handler error:");
994       e.printStackTrace();
995     }
996   }
997
998   @Override
999   public boolean notifyEnabled(CBK callbackPick)
1000   {
1001     switch (callbackPick)
1002     {
1003     case ECHO:
1004     case LOADSTRUCT:
1005     case MEASURE:
1006     case MESSAGE:
1007     case PICK:
1008     case SCRIPT:
1009     case HOVER:
1010     case ERROR:
1011       return true;
1012     default:
1013       return false;
1014     }
1015   }
1016
1017   // incremented every time a load notification is successfully handled -
1018   // lightweight mechanism for other threads to detect when they can start
1019   // referrring to new structures.
1020   private long loadNotifiesHandled = 0;
1021
1022   public long getLoadNotifiesHandled()
1023   {
1024     return loadNotifiesHandled;
1025   }
1026
1027   public void notifyFileLoaded(String fullPathName, String fileName2,
1028           String modelName, String errorMsg, int modelParts)
1029   {
1030     if (errorMsg != null)
1031     {
1032       fileLoadingError = errorMsg;
1033       refreshGUI();
1034       return;
1035     }
1036     // TODO: deal sensibly with models loaded inLine:
1037     // modelName will be null, as will fullPathName.
1038
1039     // the rest of this routine ignores the arguments, and simply interrogates
1040     // the Jmol view to find out what structures it contains, and adds them to
1041     // the structure selection manager.
1042     fileLoadingError = null;
1043     String[] oldmodels = modelFileNames;
1044     modelFileNames = null;
1045     chainNames = new ArrayList<String>();
1046     chainFile = new Hashtable<String, String>();
1047     boolean notifyLoaded = false;
1048     String[] modelfilenames = getPdbFile();
1049     // first check if we've lost any structures
1050     if (oldmodels != null && oldmodels.length > 0)
1051     {
1052       int oldm = 0;
1053       for (int i = 0; i < oldmodels.length; i++)
1054       {
1055         for (int n = 0; n < modelfilenames.length; n++)
1056         {
1057           if (modelfilenames[n] == oldmodels[i])
1058           {
1059             oldmodels[i] = null;
1060             break;
1061           }
1062         }
1063         if (oldmodels[i] != null)
1064         {
1065           oldm++;
1066         }
1067       }
1068       if (oldm > 0)
1069       {
1070         String[] oldmfn = new String[oldm];
1071         oldm = 0;
1072         for (int i = 0; i < oldmodels.length; i++)
1073         {
1074           if (oldmodels[i] != null)
1075           {
1076             oldmfn[oldm++] = oldmodels[i];
1077           }
1078         }
1079         // deregister the Jmol instance for these structures - we'll add
1080         // ourselves again at the end for the current structure set.
1081         getSsm().removeStructureViewerListener(this, oldmfn);
1082       }
1083     }
1084     refreshPdbEntries();
1085     for (int modelnum = 0; modelnum < modelfilenames.length; modelnum++)
1086     {
1087       String fileName = modelfilenames[modelnum];
1088       boolean foundEntry = false;
1089       StructureFile pdb = null;
1090       String pdbfile = null;
1091       // model was probably loaded inline - so check the pdb file hashcode
1092       if (loadedInline)
1093       {
1094         // calculate essential attributes for the pdb data imported inline.
1095         // prolly need to resolve modelnumber properly - for now just use our
1096         // 'best guess'
1097         pdbfile = viewer.getData("" + (1 + _modelFileNameMap[modelnum])
1098                 + ".0", "PDB");
1099       }
1100       // search pdbentries and sequences to find correct pdbentry for this
1101       // model
1102       for (int pe = 0; pe < getPdbCount(); pe++)
1103       {
1104         boolean matches = false;
1105         addSequence(pe, getSequence()[pe]);
1106         if (fileName == null)
1107         {
1108           if (false)
1109           // see JAL-623 - need method of matching pasted data up
1110           {
1111             pdb = getSsm().setMapping(getSequence()[pe], getChains()[pe],
1112                     pdbfile, DataSourceType.PASTE);
1113             getPdbEntry(modelnum).setFile("INLINE" + pdb.getId());
1114             matches = true;
1115             foundEntry = true;
1116           }
1117         }
1118         else
1119         {
1120           File fl = new File(getPdbEntry(pe).getFile());
1121           matches = fl.equals(new File(fileName));
1122           if (matches)
1123           {
1124             foundEntry = true;
1125             // TODO: Jmol can in principle retrieve from CLASSLOADER but
1126             // this
1127             // needs
1128             // to be tested. See mantis bug
1129             // https://mantis.lifesci.dundee.ac.uk/view.php?id=36605
1130             DataSourceType protocol = DataSourceType.URL;
1131             try
1132             {
1133               if (fl.exists())
1134               {
1135                 protocol = DataSourceType.FILE;
1136               }
1137             } catch (Exception e)
1138             {
1139             } catch (Error e)
1140             {
1141             }
1142             // Explicitly map to the filename used by Jmol ;
1143             pdb = getSsm().setMapping(getSequence()[pe], getChains()[pe],
1144                     fileName, protocol);
1145             // pdbentry[pe].getFile(), protocol);
1146
1147           }
1148         }
1149         if (matches)
1150         {
1151           // add an entry for every chain in the model
1152           for (int i = 0; i < pdb.getChains().size(); i++)
1153           {
1154             String chid = new String(pdb.getId() + ":"
1155                     + pdb.getChains().elementAt(i).id);
1156             chainFile.put(chid, fileName);
1157             chainNames.add(chid);
1158           }
1159           notifyLoaded = true;
1160         }
1161       }
1162
1163       if (!foundEntry && associateNewStructs)
1164       {
1165         // this is a foreign pdb file that jalview doesn't know about - add
1166         // it to the dataset and try to find a home - either on a matching
1167         // sequence or as a new sequence.
1168         String pdbcontent = viewer.getData("/" + (modelnum + 1) + ".1",
1169                 "PDB");
1170         // parse pdb file into a chain, etc.
1171         // locate best match for pdb in associated views and add mapping to
1172         // ssm
1173         // if properly registered then
1174         notifyLoaded = true;
1175
1176       }
1177     }
1178     // FILE LOADED OK
1179     // so finally, update the jmol bits and pieces
1180     // if (jmolpopup != null)
1181     // {
1182     // // potential for deadlock here:
1183     // // jmolpopup.updateComputedMenus();
1184     // }
1185     if (!isLoadingFromArchive())
1186     {
1187       viewer.evalStringQuiet("model *; select backbone;restrict;cartoon;wireframe off;spacefill off");
1188     }
1189     // register ourselves as a listener and notify the gui that it needs to
1190     // update itself.
1191     getSsm().addStructureViewerListener(this);
1192     if (notifyLoaded)
1193     {
1194       FeatureRenderer fr = getFeatureRenderer(null);
1195       if (fr != null)
1196       {
1197         fr.featuresAdded();
1198       }
1199       refreshGUI();
1200       loadNotifiesHandled++;
1201     }
1202     setLoadingFromArchive(false);
1203   }
1204
1205   @Override
1206   public List<String> getChainNames()
1207   {
1208     return chainNames;
1209   }
1210
1211   public void notifyNewPickingModeMeasurement(int iatom, String strMeasure)
1212   {
1213     notifyAtomPicked(iatom, strMeasure, null);
1214   }
1215
1216   public abstract void notifyScriptTermination(String strStatus,
1217           int msWalltime);
1218
1219   /**
1220    * display a message echoed from the jmol viewer
1221    * 
1222    * @param strEcho
1223    */
1224   public abstract void sendConsoleEcho(String strEcho); /*
1225                                                          * { showConsole(true);
1226                                                          * 
1227                                                          * history.append("\n" +
1228                                                          * strEcho); }
1229                                                          */
1230
1231   // /End JmolStatusListener
1232   // /////////////////////////////
1233
1234   /**
1235    * @param strStatus
1236    *          status message - usually the response received after a script
1237    *          executed
1238    */
1239   public abstract void sendConsoleMessage(String strStatus);
1240
1241   @Override
1242   public void setCallbackFunction(String callbackType,
1243           String callbackFunction)
1244   {
1245     System.err.println("Ignoring set-callback request to associate "
1246             + callbackType + " with function " + callbackFunction);
1247
1248   }
1249
1250   @Override
1251   public void setJalviewColourScheme(ColourSchemeI cs)
1252   {
1253     colourBySequence = false;
1254
1255     if (cs == null)
1256     {
1257       return;
1258     }
1259
1260     jmolHistory(false);
1261     StringBuilder command = new StringBuilder(128);
1262     command.append("select *;color white;");
1263     List<String> residueSet = ResidueProperties.getResidues(isNucleotide(),
1264             false);
1265     for (String resName : residueSet)
1266     {
1267       char res = resName.length() == 3 ? ResidueProperties
1268               .getSingleCharacterCode(resName) : resName.charAt(0);
1269       Color col = cs.findColour(res, 0, null, null, 0f);
1270       command.append("select " + resName + ";color[" + col.getRed() + ","
1271               + col.getGreen() + "," + col.getBlue() + "];");
1272     }
1273
1274     evalStateCommand(command.toString());
1275     jmolHistory(true);
1276   }
1277
1278   public void showHelp()
1279   {
1280     showUrl("http://jmol.sourceforge.net/docs/JmolUserGuide/", "jmolHelp");
1281   }
1282
1283   /**
1284    * open the URL somehow
1285    * 
1286    * @param target
1287    */
1288   public abstract void showUrl(String url, String target);
1289
1290   /**
1291    * called when the binding thinks the UI needs to be refreshed after a Jmol
1292    * state change. this could be because structures were loaded, or because an
1293    * error has occured.
1294    */
1295   public abstract void refreshGUI();
1296
1297   /**
1298    * called to show or hide the associated console window container.
1299    * 
1300    * @param show
1301    */
1302   public abstract void showConsole(boolean show);
1303
1304   /**
1305    * @param renderPanel
1306    * @param jmolfileio
1307    *          - when true will initialise jmol's file IO system (should be false
1308    *          in applet context)
1309    * @param htmlName
1310    * @param documentBase
1311    * @param codeBase
1312    * @param commandOptions
1313    */
1314   public void allocateViewer(Container renderPanel, boolean jmolfileio,
1315           String htmlName, URL documentBase, URL codeBase,
1316           String commandOptions)
1317   {
1318     allocateViewer(renderPanel, jmolfileio, htmlName, documentBase,
1319             codeBase, commandOptions, null, null);
1320   }
1321
1322   /**
1323    * 
1324    * @param renderPanel
1325    * @param jmolfileio
1326    *          - when true will initialise jmol's file IO system (should be false
1327    *          in applet context)
1328    * @param htmlName
1329    * @param documentBase
1330    * @param codeBase
1331    * @param commandOptions
1332    * @param consolePanel
1333    *          - panel to contain Jmol console
1334    * @param buttonsToShow
1335    *          - buttons to show on the console, in ordr
1336    */
1337   public void allocateViewer(Container renderPanel, boolean jmolfileio,
1338           String htmlName, URL documentBase, URL codeBase,
1339           String commandOptions, final Container consolePanel,
1340           String buttonsToShow)
1341   {
1342     if (commandOptions == null)
1343     {
1344       commandOptions = "";
1345     }
1346     viewer = (Viewer) JmolViewer.allocateViewer(renderPanel,
1347             (jmolfileio ? new SmarterJmolAdapter() : null), htmlName
1348                     + ((Object) this).toString(), documentBase, codeBase,
1349             commandOptions, this);
1350
1351     viewer.setJmolStatusListener(this); // extends JmolCallbackListener
1352
1353     console = createJmolConsole(consolePanel, buttonsToShow);
1354     if (consolePanel != null)
1355     {
1356       consolePanel.addComponentListener(this);
1357
1358     }
1359
1360   }
1361
1362   protected abstract JmolAppConsoleInterface createJmolConsole(
1363           Container consolePanel, String buttonsToShow);
1364
1365   protected org.jmol.api.JmolAppConsoleInterface console = null;
1366
1367   @Override
1368   public void setBackgroundColour(java.awt.Color col)
1369   {
1370     jmolHistory(false);
1371     viewer.evalStringQuiet("background [" + col.getRed() + ","
1372             + col.getGreen() + "," + col.getBlue() + "];");
1373     jmolHistory(true);
1374   }
1375
1376   @Override
1377   public int[] resizeInnerPanel(String data)
1378   {
1379     // Jalview doesn't honour resize panel requests
1380     return null;
1381   }
1382
1383   /**
1384    * 
1385    */
1386   protected void closeConsole()
1387   {
1388     if (console != null)
1389     {
1390       try
1391       {
1392         console.setVisible(false);
1393       } catch (Error e)
1394       {
1395       } catch (Exception x)
1396       {
1397       }
1398       ;
1399       console = null;
1400     }
1401   }
1402
1403   /**
1404    * ComponentListener method
1405    */
1406   @Override
1407   public void componentMoved(ComponentEvent e)
1408   {
1409   }
1410
1411   /**
1412    * ComponentListener method
1413    */
1414   @Override
1415   public void componentResized(ComponentEvent e)
1416   {
1417   }
1418
1419   /**
1420    * ComponentListener method
1421    */
1422   @Override
1423   public void componentShown(ComponentEvent e)
1424   {
1425     showConsole(true);
1426   }
1427
1428   /**
1429    * ComponentListener method
1430    */
1431   @Override
1432   public void componentHidden(ComponentEvent e)
1433   {
1434     showConsole(false);
1435   }
1436 }