JAL-2154 patch the hack (Jalview2XML tests pass)
[jalview.git] / src / jalview / gui / Jalview2XML.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 jalview.api.FeatureColourI;
24 import jalview.api.ViewStyleI;
25 import jalview.api.structures.JalviewStructureDisplayI;
26 import jalview.bin.Cache;
27 import jalview.datamodel.AlignedCodonFrame;
28 import jalview.datamodel.Alignment;
29 import jalview.datamodel.AlignmentAnnotation;
30 import jalview.datamodel.AlignmentI;
31 import jalview.datamodel.PDBEntry;
32 import jalview.datamodel.RnaViewerModel;
33 import jalview.datamodel.SequenceGroup;
34 import jalview.datamodel.SequenceI;
35 import jalview.datamodel.StructureViewerModel;
36 import jalview.datamodel.StructureViewerModel.StructureData;
37 import jalview.ext.varna.RnaModel;
38 import jalview.gui.StructureViewer.ViewerType;
39 import jalview.schemabinding.version2.AlcodMap;
40 import jalview.schemabinding.version2.AlcodonFrame;
41 import jalview.schemabinding.version2.Annotation;
42 import jalview.schemabinding.version2.AnnotationColours;
43 import jalview.schemabinding.version2.AnnotationElement;
44 import jalview.schemabinding.version2.CalcIdParam;
45 import jalview.schemabinding.version2.DBRef;
46 import jalview.schemabinding.version2.Features;
47 import jalview.schemabinding.version2.Group;
48 import jalview.schemabinding.version2.HiddenColumns;
49 import jalview.schemabinding.version2.JGroup;
50 import jalview.schemabinding.version2.JSeq;
51 import jalview.schemabinding.version2.JalviewModel;
52 import jalview.schemabinding.version2.JalviewModelSequence;
53 import jalview.schemabinding.version2.MapListFrom;
54 import jalview.schemabinding.version2.MapListTo;
55 import jalview.schemabinding.version2.Mapping;
56 import jalview.schemabinding.version2.MappingChoice;
57 import jalview.schemabinding.version2.OtherData;
58 import jalview.schemabinding.version2.PdbentryItem;
59 import jalview.schemabinding.version2.Pdbids;
60 import jalview.schemabinding.version2.Property;
61 import jalview.schemabinding.version2.RnaViewer;
62 import jalview.schemabinding.version2.SecondaryStructure;
63 import jalview.schemabinding.version2.Sequence;
64 import jalview.schemabinding.version2.SequenceSet;
65 import jalview.schemabinding.version2.SequenceSetProperties;
66 import jalview.schemabinding.version2.Setting;
67 import jalview.schemabinding.version2.StructureState;
68 import jalview.schemabinding.version2.ThresholdLine;
69 import jalview.schemabinding.version2.Tree;
70 import jalview.schemabinding.version2.UserColours;
71 import jalview.schemabinding.version2.Viewport;
72 import jalview.schemes.AnnotationColourGradient;
73 import jalview.schemes.ColourSchemeI;
74 import jalview.schemes.ColourSchemeProperty;
75 import jalview.schemes.FeatureColour;
76 import jalview.schemes.ResidueColourScheme;
77 import jalview.schemes.ResidueProperties;
78 import jalview.schemes.UserColourScheme;
79 import jalview.structure.StructureSelectionManager;
80 import jalview.structures.models.AAStructureBindingModel;
81 import jalview.util.MessageManager;
82 import jalview.util.Platform;
83 import jalview.util.StringUtils;
84 import jalview.util.jarInputStreamProvider;
85 import jalview.viewmodel.AlignmentViewport;
86 import jalview.viewmodel.seqfeatures.FeatureRendererSettings;
87 import jalview.viewmodel.seqfeatures.FeaturesDisplayed;
88 import jalview.ws.jws2.Jws2Discoverer;
89 import jalview.ws.jws2.dm.AAConSettings;
90 import jalview.ws.jws2.jabaws2.Jws2Instance;
91 import jalview.ws.params.ArgumentI;
92 import jalview.ws.params.AutoCalcSetting;
93 import jalview.ws.params.WsParamSetI;
94
95 import java.awt.Color;
96 import java.awt.Rectangle;
97 import java.io.BufferedReader;
98 import java.io.DataInputStream;
99 import java.io.DataOutputStream;
100 import java.io.File;
101 import java.io.FileInputStream;
102 import java.io.FileOutputStream;
103 import java.io.IOException;
104 import java.io.InputStreamReader;
105 import java.io.OutputStreamWriter;
106 import java.io.PrintWriter;
107 import java.lang.reflect.InvocationTargetException;
108 import java.net.MalformedURLException;
109 import java.net.URL;
110 import java.util.ArrayList;
111 import java.util.Enumeration;
112 import java.util.HashMap;
113 import java.util.HashSet;
114 import java.util.Hashtable;
115 import java.util.IdentityHashMap;
116 import java.util.Iterator;
117 import java.util.LinkedHashMap;
118 import java.util.List;
119 import java.util.Map;
120 import java.util.Map.Entry;
121 import java.util.Set;
122 import java.util.Vector;
123 import java.util.jar.JarEntry;
124 import java.util.jar.JarInputStream;
125 import java.util.jar.JarOutputStream;
126
127 import javax.swing.JInternalFrame;
128 import javax.swing.JOptionPane;
129 import javax.swing.SwingUtilities;
130
131 import org.exolab.castor.xml.Marshaller;
132 import org.exolab.castor.xml.Unmarshaller;
133
134 /**
135  * Write out the current jalview desktop state as a Jalview XML stream.
136  * 
137  * Note: the vamsas objects referred to here are primitive versions of the
138  * VAMSAS project schema elements - they are not the same and most likely never
139  * will be :)
140  * 
141  * @author $author$
142  * @version $Revision: 1.134 $
143  */
144 public class Jalview2XML
145 {
146   private static final String VIEWER_PREFIX = "viewer_";
147
148   private static final String RNA_PREFIX = "rna_";
149
150   private static final String UTF_8 = "UTF-8";
151
152   // use this with nextCounter() to make unique names for entities
153   private int counter = 0;
154
155   /*
156    * SequenceI reference -> XML ID string in jalview XML. Populated as XML reps
157    * of sequence objects are created.
158    */
159   IdentityHashMap<SequenceI, String> seqsToIds = null;
160
161   /**
162    * jalview XML Sequence ID to jalview sequence object reference (both dataset
163    * and alignment sequences. Populated as XML reps of sequence objects are
164    * created.)
165    */
166   Map<String, SequenceI> seqRefIds = null;
167
168   Vector<Object[]> frefedSequence = null;
169
170   boolean raiseGUI = true; // whether errors are raised in dialog boxes or not
171
172   /*
173    * Map of reconstructed AlignFrame objects that appear to have come from
174    * SplitFrame objects (have a dna/protein complement view).
175    */
176   private Map<Viewport, AlignFrame> splitFrameCandidates = new HashMap<Viewport, AlignFrame>();
177
178   /*
179    * Map from displayed rna structure models to their saved session state jar
180    * entry names
181    */
182   private Map<RnaModel, String> rnaSessions = new HashMap<RnaModel, String>();
183
184   /**
185    * create/return unique hash string for sq
186    * 
187    * @param sq
188    * @return new or existing unique string for sq
189    */
190   String seqHash(SequenceI sq)
191   {
192     if (seqsToIds == null)
193     {
194       initSeqRefs();
195     }
196     if (seqsToIds.containsKey(sq))
197     {
198       return seqsToIds.get(sq);
199     }
200     else
201     {
202       // create sequential key
203       String key = "sq" + (seqsToIds.size() + 1);
204       key = makeHashCode(sq, key); // check we don't have an external reference
205       // for it already.
206       seqsToIds.put(sq, key);
207       return key;
208     }
209   }
210
211   void clearSeqRefs()
212   {
213     if (_cleartables)
214     {
215       if (seqRefIds != null)
216       {
217         seqRefIds.clear();
218       }
219       if (seqsToIds != null)
220       {
221         seqsToIds.clear();
222       }
223       // seqRefIds = null;
224       // seqsToIds = null;
225     }
226     else
227     {
228       // do nothing
229       warn("clearSeqRefs called when _cleartables was not set. Doing nothing.");
230       // seqRefIds = new Hashtable();
231       // seqsToIds = new IdentityHashMap();
232     }
233   }
234
235   void initSeqRefs()
236   {
237     if (seqsToIds == null)
238     {
239       seqsToIds = new IdentityHashMap<SequenceI, String>();
240     }
241     if (seqRefIds == null)
242     {
243       seqRefIds = new HashMap<String, SequenceI>();
244     }
245   }
246
247   public Jalview2XML()
248   {
249   }
250
251   public Jalview2XML(boolean raiseGUI)
252   {
253     this.raiseGUI = raiseGUI;
254   }
255
256   public void resolveFrefedSequences()
257   {
258     if (frefedSequence.size() > 0)
259     {
260       int r = 0, rSize = frefedSequence.size();
261       while (r < rSize)
262       {
263         Object[] ref = frefedSequence.elementAt(r);
264         if (ref != null)
265         {
266           String sref = (String) ref[0];
267           if (seqRefIds.containsKey(sref))
268           {
269             if (ref[1] instanceof jalview.datamodel.Mapping)
270             {
271               SequenceI seq = seqRefIds.get(sref);
272               while (seq.getDatasetSequence() != null)
273               {
274                 seq = seq.getDatasetSequence();
275               }
276               ((jalview.datamodel.Mapping) ref[1]).setTo(seq);
277             }
278             else
279             {
280               if (ref[1] instanceof jalview.datamodel.AlignedCodonFrame)
281               {
282                 SequenceI seq = seqRefIds.get(sref);
283                 while (seq.getDatasetSequence() != null)
284                 {
285                   seq = seq.getDatasetSequence();
286                 }
287                 if (ref[2] != null
288                         && ref[2] instanceof jalview.datamodel.Mapping)
289                 {
290                   jalview.datamodel.Mapping mp = (jalview.datamodel.Mapping) ref[2];
291                   ((jalview.datamodel.AlignedCodonFrame) ref[1]).addMap(
292                           seq, mp.getTo(), mp.getMap());
293                 }
294                 else
295                 {
296                   System.err
297                           .println("IMPLEMENTATION ERROR: Unimplemented forward sequence references for AlcodonFrames involving "
298                                   + ref[2].getClass() + " type objects.");
299                 }
300               }
301               else
302               {
303                 System.err
304                         .println("IMPLEMENTATION ERROR: Unimplemented forward sequence references for "
305                                 + ref[1].getClass() + " type objects.");
306               }
307             }
308             frefedSequence.remove(r);
309             rSize--;
310           }
311           else
312           {
313             System.err
314                     .println("IMPLEMENTATION WARNING: Unresolved forward reference for hash string "
315                             + ref[0]
316                             + " with objecttype "
317                             + ref[1].getClass());
318             r++;
319           }
320         }
321         else
322         {
323           // empty reference
324           frefedSequence.remove(r);
325           rSize--;
326         }
327       }
328     }
329   }
330
331   /**
332    * This maintains a map of viewports, the key being the seqSetId. Important to
333    * set historyItem and redoList for multiple views
334    */
335   Map<String, AlignViewport> viewportsAdded = new HashMap<String, AlignViewport>();
336
337   Map<String, AlignmentAnnotation> annotationIds = new HashMap<String, AlignmentAnnotation>();
338
339   String uniqueSetSuffix = "";
340
341   /**
342    * List of pdbfiles added to Jar
343    */
344   List<String> pdbfiles = null;
345
346   // SAVES SEVERAL ALIGNMENT WINDOWS TO SAME JARFILE
347   public void saveState(File statefile)
348   {
349     FileOutputStream fos = null;
350     try
351     {
352       fos = new FileOutputStream(statefile);
353       JarOutputStream jout = new JarOutputStream(fos);
354       saveState(jout);
355
356     } catch (Exception e)
357     {
358       // TODO: inform user of the problem - they need to know if their data was
359       // not saved !
360       if (errorMessage == null)
361       {
362         errorMessage = "Couldn't write Jalview Archive to output file '"
363                 + statefile + "' - See console error log for details";
364       }
365       else
366       {
367         errorMessage += "(output file was '" + statefile + "')";
368       }
369       e.printStackTrace();
370     } finally
371     {
372       if (fos != null)
373       {
374         try
375         {
376           fos.close();
377         } catch (IOException e)
378         {
379           // ignore
380         }
381       }
382     }
383     reportErrors();
384   }
385
386   /**
387    * Writes a jalview project archive to the given Jar output stream.
388    * 
389    * @param jout
390    */
391   public void saveState(JarOutputStream jout)
392   {
393     AlignFrame[] frames = Desktop.getAlignFrames();
394
395     if (frames == null)
396     {
397       return;
398     }
399
400     Hashtable<String, AlignFrame> dsses = new Hashtable<String, AlignFrame>();
401
402     /*
403      * ensure cached data is clear before starting
404      */
405     // todo tidy up seqRefIds, seqsToIds initialisation / reset
406     rnaSessions.clear();
407     splitFrameCandidates.clear();
408
409     try
410     {
411
412       // NOTE UTF-8 MUST BE USED FOR WRITING UNICODE CHARS
413       // //////////////////////////////////////////////////
414
415       List<String> shortNames = new ArrayList<String>();
416       List<String> viewIds = new ArrayList<String>();
417
418       // REVERSE ORDER
419       for (int i = frames.length - 1; i > -1; i--)
420       {
421         AlignFrame af = frames[i];
422         // skip ?
423         if (skipList != null
424                 && skipList
425                         .containsKey(af.getViewport().getSequenceSetId()))
426         {
427           continue;
428         }
429
430         String shortName = makeFilename(af, shortNames);
431
432         int ap, apSize = af.alignPanels.size();
433
434         for (ap = 0; ap < apSize; ap++)
435         {
436           AlignmentPanel apanel = af.alignPanels.get(ap);
437           String fileName = apSize == 1 ? shortName : ap + shortName;
438           if (!fileName.endsWith(".xml"))
439           {
440             fileName = fileName + ".xml";
441           }
442
443           saveState(apanel, fileName, jout, viewIds);
444
445           String dssid = getDatasetIdRef(af.getViewport().getAlignment()
446                   .getDataset());
447           if (!dsses.containsKey(dssid))
448           {
449             dsses.put(dssid, af);
450           }
451         }
452       }
453
454       writeDatasetFor(dsses, "" + jout.hashCode() + " " + uniqueSetSuffix,
455               jout);
456
457       try
458       {
459         jout.flush();
460       } catch (Exception foo)
461       {
462       }
463       ;
464       jout.close();
465     } catch (Exception ex)
466     {
467       // TODO: inform user of the problem - they need to know if their data was
468       // not saved !
469       if (errorMessage == null)
470       {
471         errorMessage = "Couldn't write Jalview Archive - see error output for details";
472       }
473       ex.printStackTrace();
474     }
475   }
476
477   /**
478    * Generates a distinct file name, based on the title of the AlignFrame, by
479    * appending _n for increasing n until an unused name is generated. The new
480    * name (without its extension) is added to the list.
481    * 
482    * @param af
483    * @param namesUsed
484    * @return the generated name, with .xml extension
485    */
486   protected String makeFilename(AlignFrame af, List<String> namesUsed)
487   {
488     String shortName = af.getTitle();
489
490     if (shortName.indexOf(File.separatorChar) > -1)
491     {
492       shortName = shortName.substring(shortName
493               .lastIndexOf(File.separatorChar) + 1);
494     }
495
496     int count = 1;
497
498     while (namesUsed.contains(shortName))
499     {
500       if (shortName.endsWith("_" + (count - 1)))
501       {
502         shortName = shortName.substring(0, shortName.lastIndexOf("_"));
503       }
504
505       shortName = shortName.concat("_" + count);
506       count++;
507     }
508
509     namesUsed.add(shortName);
510
511     if (!shortName.endsWith(".xml"))
512     {
513       shortName = shortName + ".xml";
514     }
515     return shortName;
516   }
517
518   // USE THIS METHOD TO SAVE A SINGLE ALIGNMENT WINDOW
519   public boolean saveAlignment(AlignFrame af, String jarFile,
520           String fileName)
521   {
522     try
523     {
524       int ap = 0;
525       int apSize = af.alignPanels.size();
526       FileOutputStream fos = new FileOutputStream(jarFile);
527       JarOutputStream jout = new JarOutputStream(fos);
528       Hashtable<String, AlignFrame> dsses = new Hashtable<String, AlignFrame>();
529       List<String> viewIds = new ArrayList<String>();
530
531       for (AlignmentPanel apanel : af.alignPanels)
532       {
533         String jfileName = apSize == 1 ? fileName : fileName + ap;
534         ap++;
535         if (!jfileName.endsWith(".xml"))
536         {
537           jfileName = jfileName + ".xml";
538         }
539         saveState(apanel, jfileName, jout, viewIds);
540         String dssid = getDatasetIdRef(af.getViewport().getAlignment()
541                 .getDataset());
542         if (!dsses.containsKey(dssid))
543         {
544           dsses.put(dssid, af);
545         }
546       }
547       writeDatasetFor(dsses, fileName, jout);
548       try
549       {
550         jout.flush();
551       } catch (Exception foo)
552       {
553       }
554       ;
555       jout.close();
556       return true;
557     } catch (Exception ex)
558     {
559       errorMessage = "Couldn't Write alignment view to Jalview Archive - see error output for details";
560       ex.printStackTrace();
561       return false;
562     }
563   }
564
565   private void writeDatasetFor(Hashtable<String, AlignFrame> dsses,
566           String fileName, JarOutputStream jout)
567   {
568
569     for (String dssids : dsses.keySet())
570     {
571       AlignFrame _af = dsses.get(dssids);
572       String jfileName = fileName + " Dataset for " + _af.getTitle();
573       if (!jfileName.endsWith(".xml"))
574       {
575         jfileName = jfileName + ".xml";
576       }
577       saveState(_af.alignPanel, jfileName, true, jout, null);
578     }
579   }
580
581   /**
582    * create a JalviewModel from an alignment view and marshall it to a
583    * JarOutputStream
584    * 
585    * @param ap
586    *          panel to create jalview model for
587    * @param fileName
588    *          name of alignment panel written to output stream
589    * @param jout
590    *          jar output stream
591    * @param viewIds
592    * @param out
593    *          jar entry name
594    */
595   public JalviewModel saveState(AlignmentPanel ap, String fileName,
596           JarOutputStream jout, List<String> viewIds)
597   {
598     return saveState(ap, fileName, false, jout, viewIds);
599   }
600
601   /**
602    * create a JalviewModel from an alignment view and marshall it to a
603    * JarOutputStream
604    * 
605    * @param ap
606    *          panel to create jalview model for
607    * @param fileName
608    *          name of alignment panel written to output stream
609    * @param storeDS
610    *          when true, only write the dataset for the alignment, not the data
611    *          associated with the view.
612    * @param jout
613    *          jar output stream
614    * @param out
615    *          jar entry name
616    */
617   public JalviewModel saveState(AlignmentPanel ap, String fileName,
618           boolean storeDS, JarOutputStream jout, List<String> viewIds)
619   {
620     if (viewIds == null)
621     {
622       viewIds = new ArrayList<String>();
623     }
624
625     initSeqRefs();
626
627     List<UserColourScheme> userColours = new ArrayList<UserColourScheme>();
628
629     AlignViewport av = ap.av;
630
631     JalviewModel object = new JalviewModel();
632     object.setVamsasModel(new jalview.schemabinding.version2.VamsasModel());
633
634     object.setCreationDate(new java.util.Date(System.currentTimeMillis()));
635     object.setVersion(jalview.bin.Cache.getDefault("VERSION",
636             "Development Build"));
637
638     /**
639      * rjal is full height alignment, jal is actual alignment with full metadata
640      * but excludes hidden sequences.
641      */
642     jalview.datamodel.AlignmentI rjal = av.getAlignment(), jal = rjal;
643
644     if (av.hasHiddenRows())
645     {
646       rjal = jal.getHiddenSequences().getFullAlignment();
647     }
648
649     SequenceSet vamsasSet = new SequenceSet();
650     Sequence vamsasSeq;
651     JalviewModelSequence jms = new JalviewModelSequence();
652
653     vamsasSet.setGapChar(jal.getGapCharacter() + "");
654
655     if (jal.getDataset() != null)
656     {
657       // dataset id is the dataset's hashcode
658       vamsasSet.setDatasetId(getDatasetIdRef(jal.getDataset()));
659       if (storeDS)
660       {
661         // switch jal and the dataset
662         jal = jal.getDataset();
663         rjal = jal;
664       }
665     }
666     if (jal.getProperties() != null)
667     {
668       Enumeration en = jal.getProperties().keys();
669       while (en.hasMoreElements())
670       {
671         String key = en.nextElement().toString();
672         SequenceSetProperties ssp = new SequenceSetProperties();
673         ssp.setKey(key);
674         ssp.setValue(jal.getProperties().get(key).toString());
675         vamsasSet.addSequenceSetProperties(ssp);
676       }
677     }
678
679     JSeq jseq;
680     Set<String> calcIdSet = new HashSet<String>();
681
682     // SAVE SEQUENCES
683     for (final SequenceI jds : rjal.getSequences())
684     {
685       final SequenceI jdatasq = jds.getDatasetSequence() == null ? jds
686               : jds.getDatasetSequence();
687       String id = seqHash(jds);
688
689       if (seqRefIds.get(id) != null)
690       {
691         // This happens for two reasons: 1. multiple views are being serialised.
692         // 2. the hashCode has collided with another sequence's code. This DOES
693         // HAPPEN! (PF00072.15.stk does this)
694         // JBPNote: Uncomment to debug writing out of files that do not read
695         // back in due to ArrayOutOfBoundExceptions.
696         // System.err.println("vamsasSeq backref: "+id+"");
697         // System.err.println(jds.getName()+"
698         // "+jds.getStart()+"-"+jds.getEnd()+" "+jds.getSequenceAsString());
699         // System.err.println("Hashcode: "+seqHash(jds));
700         // SequenceI rsq = (SequenceI) seqRefIds.get(id + "");
701         // System.err.println(rsq.getName()+"
702         // "+rsq.getStart()+"-"+rsq.getEnd()+" "+rsq.getSequenceAsString());
703         // System.err.println("Hashcode: "+seqHash(rsq));
704       }
705       else
706       {
707         vamsasSeq = createVamsasSequence(id, jds);
708         vamsasSet.addSequence(vamsasSeq);
709         seqRefIds.put(id, jds);
710       }
711
712       jseq = new JSeq();
713       jseq.setStart(jds.getStart());
714       jseq.setEnd(jds.getEnd());
715       jseq.setColour(av.getSequenceColour(jds).getRGB());
716
717       jseq.setId(id); // jseq id should be a string not a number
718       if (!storeDS)
719       {
720         // Store any sequences this sequence represents
721         if (av.hasHiddenRows())
722         {
723           // use rjal, contains the full height alignment
724           jseq.setHidden(av.getAlignment().getHiddenSequences()
725                   .isHidden(jds));
726
727           if (av.isHiddenRepSequence(jds))
728           {
729             jalview.datamodel.SequenceI[] reps = av
730                     .getRepresentedSequences(jds)
731                     .getSequencesInOrder(rjal);
732
733             for (int h = 0; h < reps.length; h++)
734             {
735               if (reps[h] != jds)
736               {
737                 jseq.addHiddenSequences(rjal.findIndex(reps[h]));
738               }
739             }
740           }
741         }
742         // mark sequence as reference - if it is the reference for this view
743         if (jal.hasSeqrep())
744         {
745           jseq.setViewreference(jds == jal.getSeqrep());
746         }
747       }
748
749       // TODO: omit sequence features from each alignment view's XML dump if we
750       // are storing dataset
751       if (jds.getSequenceFeatures() != null)
752       {
753         jalview.datamodel.SequenceFeature[] sf = jds.getSequenceFeatures();
754         int index = 0;
755         while (index < sf.length)
756         {
757           Features features = new Features();
758
759           features.setBegin(sf[index].getBegin());
760           features.setEnd(sf[index].getEnd());
761           features.setDescription(sf[index].getDescription());
762           features.setType(sf[index].getType());
763           features.setFeatureGroup(sf[index].getFeatureGroup());
764           features.setScore(sf[index].getScore());
765           if (sf[index].links != null)
766           {
767             for (int l = 0; l < sf[index].links.size(); l++)
768             {
769               OtherData keyValue = new OtherData();
770               keyValue.setKey("LINK_" + l);
771               keyValue.setValue(sf[index].links.elementAt(l).toString());
772               features.addOtherData(keyValue);
773             }
774           }
775           if (sf[index].otherDetails != null)
776           {
777             String key;
778             Iterator<String> keys = sf[index].otherDetails.keySet()
779                     .iterator();
780             while (keys.hasNext())
781             {
782               key = keys.next();
783               OtherData keyValue = new OtherData();
784               keyValue.setKey(key);
785               keyValue.setValue(sf[index].otherDetails.get(key).toString());
786               features.addOtherData(keyValue);
787             }
788           }
789
790           jseq.addFeatures(features);
791           index++;
792         }
793       }
794
795       if (jdatasq.getAllPDBEntries() != null)
796       {
797         Enumeration en = jdatasq.getAllPDBEntries().elements();
798         while (en.hasMoreElements())
799         {
800           Pdbids pdb = new Pdbids();
801           jalview.datamodel.PDBEntry entry = (jalview.datamodel.PDBEntry) en
802                   .nextElement();
803
804           String pdbId = entry.getId();
805           pdb.setId(pdbId);
806           pdb.setType(entry.getType());
807
808           /*
809            * Store any structure views associated with this sequence. This
810            * section copes with duplicate entries in the project, so a dataset
811            * only view *should* be coped with sensibly.
812            */
813           // This must have been loaded, is it still visible?
814           JInternalFrame[] frames = Desktop.desktop.getAllFrames();
815           String matchedFile = null;
816           for (int f = frames.length - 1; f > -1; f--)
817           {
818             if (frames[f] instanceof StructureViewerBase)
819             {
820               StructureViewerBase viewFrame = (StructureViewerBase) frames[f];
821               matchedFile = saveStructureState(ap, jds, pdb, entry,
822                       viewIds, matchedFile, viewFrame);
823               /*
824                * Only store each structure viewer's state once in the project
825                * jar. First time through only (storeDS==false)
826                */
827               String viewId = viewFrame.getViewId();
828               if (!storeDS && !viewIds.contains(viewId))
829               {
830                 viewIds.add(viewId);
831                 try
832                 {
833                   String viewerState = viewFrame.getStateInfo();
834                   writeJarEntry(jout, getViewerJarEntryName(viewId),
835                           viewerState.getBytes());
836                 } catch (IOException e)
837                 {
838                   System.err.println("Error saving viewer state: "
839                           + e.getMessage());
840                 }
841               }
842             }
843           }
844
845           if (matchedFile != null || entry.getFile() != null)
846           {
847             if (entry.getFile() != null)
848             {
849               // use entry's file
850               matchedFile = entry.getFile();
851             }
852             pdb.setFile(matchedFile); // entry.getFile());
853             if (pdbfiles == null)
854             {
855               pdbfiles = new ArrayList<String>();
856             }
857
858             if (!pdbfiles.contains(pdbId))
859             {
860               pdbfiles.add(pdbId);
861               copyFileToJar(jout, matchedFile, pdbId);
862             }
863           }
864
865           if (entry.getProperty() != null && !entry.getProperty().isEmpty())
866           {
867             PdbentryItem item = new PdbentryItem();
868             Hashtable properties = entry.getProperty();
869             Enumeration en2 = properties.keys();
870             while (en2.hasMoreElements())
871             {
872               Property prop = new Property();
873               String key = en2.nextElement().toString();
874               prop.setName(key);
875               prop.setValue(properties.get(key).toString());
876               item.addProperty(prop);
877             }
878             pdb.addPdbentryItem(item);
879           }
880
881           jseq.addPdbids(pdb);
882         }
883       }
884
885       saveRnaViewers(jout, jseq, jds, viewIds, ap, storeDS);
886
887       jms.addJSeq(jseq);
888     }
889
890     if (!storeDS && av.hasHiddenRows())
891     {
892       jal = av.getAlignment();
893     }
894     // SAVE MAPPINGS
895     if (jal.getCodonFrames() != null)
896     {
897       List<AlignedCodonFrame> jac = jal.getCodonFrames();
898       for (AlignedCodonFrame acf : jac)
899       {
900         AlcodonFrame alc = new AlcodonFrame();
901         if (acf.getProtMappings() != null
902                 && acf.getProtMappings().length > 0)
903         {
904           boolean hasMap = false;
905           SequenceI[] dnas = acf.getdnaSeqs();
906           jalview.datamodel.Mapping[] pmaps = acf.getProtMappings();
907           for (int m = 0; m < pmaps.length; m++)
908           {
909             AlcodMap alcmap = new AlcodMap();
910             alcmap.setDnasq(seqHash(dnas[m]));
911             alcmap.setMapping(createVamsasMapping(pmaps[m], dnas[m], null,
912                     false));
913             alc.addAlcodMap(alcmap);
914             hasMap = true;
915           }
916           if (hasMap)
917           {
918             vamsasSet.addAlcodonFrame(alc);
919           }
920         }
921         // TODO: delete this ? dead code from 2.8.3->2.9 ?
922         // {
923         // AlcodonFrame alc = new AlcodonFrame();
924         // vamsasSet.addAlcodonFrame(alc);
925         // for (int p = 0; p < acf.aaWidth; p++)
926         // {
927         // Alcodon cmap = new Alcodon();
928         // if (acf.codons[p] != null)
929         // {
930         // // Null codons indicate a gapped column in the translated peptide
931         // // alignment.
932         // cmap.setPos1(acf.codons[p][0]);
933         // cmap.setPos2(acf.codons[p][1]);
934         // cmap.setPos3(acf.codons[p][2]);
935         // }
936         // alc.addAlcodon(cmap);
937         // }
938         // if (acf.getProtMappings() != null
939         // && acf.getProtMappings().length > 0)
940         // {
941         // SequenceI[] dnas = acf.getdnaSeqs();
942         // jalview.datamodel.Mapping[] pmaps = acf.getProtMappings();
943         // for (int m = 0; m < pmaps.length; m++)
944         // {
945         // AlcodMap alcmap = new AlcodMap();
946         // alcmap.setDnasq(seqHash(dnas[m]));
947         // alcmap.setMapping(createVamsasMapping(pmaps[m], dnas[m], null,
948         // false));
949         // alc.addAlcodMap(alcmap);
950         // }
951         // }
952       }
953     }
954
955     // SAVE TREES
956     // /////////////////////////////////
957     if (!storeDS && av.currentTree != null)
958     {
959       // FIND ANY ASSOCIATED TREES
960       // NOT IMPLEMENTED FOR HEADLESS STATE AT PRESENT
961       if (Desktop.desktop != null)
962       {
963         JInternalFrame[] frames = Desktop.desktop.getAllFrames();
964
965         for (int t = 0; t < frames.length; t++)
966         {
967           if (frames[t] instanceof TreePanel)
968           {
969             TreePanel tp = (TreePanel) frames[t];
970
971             if (tp.treeCanvas.av.getAlignment() == jal)
972             {
973               Tree tree = new Tree();
974               tree.setTitle(tp.getTitle());
975               tree.setCurrentTree((av.currentTree == tp.getTree()));
976               tree.setNewick(tp.getTree().toString());
977               tree.setThreshold(tp.treeCanvas.threshold);
978
979               tree.setFitToWindow(tp.fitToWindow.getState());
980               tree.setFontName(tp.getTreeFont().getName());
981               tree.setFontSize(tp.getTreeFont().getSize());
982               tree.setFontStyle(tp.getTreeFont().getStyle());
983               tree.setMarkUnlinked(tp.placeholdersMenu.getState());
984
985               tree.setShowBootstrap(tp.bootstrapMenu.getState());
986               tree.setShowDistances(tp.distanceMenu.getState());
987
988               tree.setHeight(tp.getHeight());
989               tree.setWidth(tp.getWidth());
990               tree.setXpos(tp.getX());
991               tree.setYpos(tp.getY());
992               tree.setId(makeHashCode(tp, null));
993               jms.addTree(tree);
994             }
995           }
996         }
997       }
998     }
999
1000     // SAVE ANNOTATIONS
1001     /**
1002      * store forward refs from an annotationRow to any groups
1003      */
1004     IdentityHashMap<SequenceGroup, String> groupRefs = new IdentityHashMap<SequenceGroup, String>();
1005     if (storeDS)
1006     {
1007       for (SequenceI sq : jal.getSequences())
1008       {
1009         // Store annotation on dataset sequences only
1010         AlignmentAnnotation[] aa = sq.getAnnotation();
1011         if (aa != null && aa.length > 0)
1012         {
1013           storeAlignmentAnnotation(aa, groupRefs, av, calcIdSet, storeDS,
1014                   vamsasSet);
1015         }
1016       }
1017     }
1018     else
1019     {
1020       if (jal.getAlignmentAnnotation() != null)
1021       {
1022         // Store the annotation shown on the alignment.
1023         AlignmentAnnotation[] aa = jal.getAlignmentAnnotation();
1024         storeAlignmentAnnotation(aa, groupRefs, av, calcIdSet, storeDS,
1025                 vamsasSet);
1026       }
1027     }
1028     // SAVE GROUPS
1029     if (jal.getGroups() != null)
1030     {
1031       JGroup[] groups = new JGroup[jal.getGroups().size()];
1032       int i = -1;
1033       for (jalview.datamodel.SequenceGroup sg : jal.getGroups())
1034       {
1035         JGroup jGroup = new JGroup();
1036         groups[++i] = jGroup;
1037
1038         jGroup.setStart(sg.getStartRes());
1039         jGroup.setEnd(sg.getEndRes());
1040         jGroup.setName(sg.getName());
1041         if (groupRefs.containsKey(sg))
1042         {
1043           // group has references so set its ID field
1044           jGroup.setId(groupRefs.get(sg));
1045         }
1046         if (sg.cs != null)
1047         {
1048           if (sg.cs.conservationApplied())
1049           {
1050             jGroup.setConsThreshold(sg.cs.getConservationInc());
1051
1052             if (sg.cs instanceof jalview.schemes.UserColourScheme)
1053             {
1054               jGroup.setColour(setUserColourScheme(sg.cs, userColours, jms));
1055             }
1056             else
1057             {
1058               jGroup.setColour(ColourSchemeProperty.getColourName(sg.cs));
1059             }
1060           }
1061           else if (sg.cs instanceof jalview.schemes.AnnotationColourGradient)
1062           {
1063             jGroup.setColour("AnnotationColourGradient");
1064             jGroup.setAnnotationColours(constructAnnotationColours(
1065                     (jalview.schemes.AnnotationColourGradient) sg.cs,
1066                     userColours, jms));
1067           }
1068           else if (sg.cs instanceof jalview.schemes.UserColourScheme)
1069           {
1070             jGroup.setColour(setUserColourScheme(sg.cs, userColours, jms));
1071           }
1072           else
1073           {
1074             jGroup.setColour(ColourSchemeProperty.getColourName(sg.cs));
1075           }
1076
1077           jGroup.setPidThreshold(sg.cs.getThreshold());
1078         }
1079
1080         jGroup.setOutlineColour(sg.getOutlineColour().getRGB());
1081         jGroup.setDisplayBoxes(sg.getDisplayBoxes());
1082         jGroup.setDisplayText(sg.getDisplayText());
1083         jGroup.setColourText(sg.getColourText());
1084         jGroup.setTextCol1(sg.textColour.getRGB());
1085         jGroup.setTextCol2(sg.textColour2.getRGB());
1086         jGroup.setTextColThreshold(sg.thresholdTextColour);
1087         jGroup.setShowUnconserved(sg.getShowNonconserved());
1088         jGroup.setIgnoreGapsinConsensus(sg.getIgnoreGapsConsensus());
1089         jGroup.setShowConsensusHistogram(sg.isShowConsensusHistogram());
1090         jGroup.setShowSequenceLogo(sg.isShowSequenceLogo());
1091         jGroup.setNormaliseSequenceLogo(sg.isNormaliseSequenceLogo());
1092         for (SequenceI seq : sg.getSequences())
1093         {
1094           jGroup.addSeq(seqHash(seq));
1095         }
1096       }
1097
1098       jms.setJGroup(groups);
1099     }
1100     if (!storeDS)
1101     {
1102       // /////////SAVE VIEWPORT
1103       Viewport view = new Viewport();
1104       view.setTitle(ap.alignFrame.getTitle());
1105       view.setSequenceSetId(makeHashCode(av.getSequenceSetId(),
1106               av.getSequenceSetId()));
1107       view.setId(av.getViewId());
1108       if (av.getCodingComplement() != null)
1109       {
1110         view.setComplementId(av.getCodingComplement().getViewId());
1111       }
1112       view.setViewName(av.viewName);
1113       view.setGatheredViews(av.isGatherViewsHere());
1114
1115       Rectangle size = ap.av.getExplodedGeometry();
1116       Rectangle position = size;
1117       if (size == null)
1118       {
1119         size = ap.alignFrame.getBounds();
1120         if (av.getCodingComplement() != null)
1121         {
1122           position = ((SplitFrame) ap.alignFrame.getSplitViewContainer())
1123                   .getBounds();
1124         }
1125         else
1126         {
1127           position = size;
1128         }
1129       }
1130       view.setXpos(position.x);
1131       view.setYpos(position.y);
1132
1133       view.setWidth(size.width);
1134       view.setHeight(size.height);
1135
1136       view.setStartRes(av.startRes);
1137       view.setStartSeq(av.startSeq);
1138
1139       if (av.getGlobalColourScheme() instanceof jalview.schemes.UserColourScheme)
1140       {
1141         view.setBgColour(setUserColourScheme(av.getGlobalColourScheme(),
1142                 userColours, jms));
1143       }
1144       else if (av.getGlobalColourScheme() instanceof jalview.schemes.AnnotationColourGradient)
1145       {
1146         AnnotationColours ac = constructAnnotationColours(
1147                 (jalview.schemes.AnnotationColourGradient) av
1148                         .getGlobalColourScheme(),
1149                 userColours, jms);
1150
1151         view.setAnnotationColours(ac);
1152         view.setBgColour("AnnotationColourGradient");
1153       }
1154       else
1155       {
1156         view.setBgColour(ColourSchemeProperty.getColourName(av
1157                 .getGlobalColourScheme()));
1158       }
1159
1160       ColourSchemeI cs = av.getGlobalColourScheme();
1161
1162       if (cs != null)
1163       {
1164         if (cs.conservationApplied())
1165         {
1166           view.setConsThreshold(cs.getConservationInc());
1167           if (cs instanceof jalview.schemes.UserColourScheme)
1168           {
1169             view.setBgColour(setUserColourScheme(cs, userColours, jms));
1170           }
1171         }
1172
1173         if (cs instanceof ResidueColourScheme)
1174         {
1175           view.setPidThreshold(cs.getThreshold());
1176         }
1177       }
1178
1179       view.setConservationSelected(av.getConservationSelected());
1180       view.setPidSelected(av.getAbovePIDThreshold());
1181       view.setFontName(av.font.getName());
1182       view.setFontSize(av.font.getSize());
1183       view.setFontStyle(av.font.getStyle());
1184       view.setScaleProteinAsCdna(av.getViewStyle().isScaleProteinAsCdna());
1185       view.setRenderGaps(av.isRenderGaps());
1186       view.setShowAnnotation(av.isShowAnnotation());
1187       view.setShowBoxes(av.getShowBoxes());
1188       view.setShowColourText(av.getColourText());
1189       view.setShowFullId(av.getShowJVSuffix());
1190       view.setRightAlignIds(av.isRightAlignIds());
1191       view.setShowSequenceFeatures(av.isShowSequenceFeatures());
1192       view.setShowText(av.getShowText());
1193       view.setShowUnconserved(av.getShowUnconserved());
1194       view.setWrapAlignment(av.getWrapAlignment());
1195       view.setTextCol1(av.getTextColour().getRGB());
1196       view.setTextCol2(av.getTextColour2().getRGB());
1197       view.setTextColThreshold(av.getThresholdTextColour());
1198       view.setShowConsensusHistogram(av.isShowConsensusHistogram());
1199       view.setShowSequenceLogo(av.isShowSequenceLogo());
1200       view.setNormaliseSequenceLogo(av.isNormaliseSequenceLogo());
1201       view.setShowGroupConsensus(av.isShowGroupConsensus());
1202       view.setShowGroupConservation(av.isShowGroupConservation());
1203       view.setShowNPfeatureTooltip(av.isShowNPFeats());
1204       view.setShowDbRefTooltip(av.isShowDBRefs());
1205       view.setFollowHighlight(av.isFollowHighlight());
1206       view.setFollowSelection(av.followSelection);
1207       view.setIgnoreGapsinConsensus(av.isIgnoreGapsConsensus());
1208       if (av.getFeaturesDisplayed() != null)
1209       {
1210         jalview.schemabinding.version2.FeatureSettings fs = new jalview.schemabinding.version2.FeatureSettings();
1211
1212         String[] renderOrder = ap.getSeqPanel().seqCanvas
1213                 .getFeatureRenderer().getRenderOrder()
1214                 .toArray(new String[0]);
1215
1216         Vector<String> settingsAdded = new Vector<String>();
1217         if (renderOrder != null)
1218         {
1219           for (String featureType : renderOrder)
1220           {
1221             FeatureColourI fcol = ap.getSeqPanel().seqCanvas
1222                     .getFeatureRenderer()
1223                     .getFeatureStyle(featureType);
1224             Setting setting = new Setting();
1225             setting.setType(featureType);
1226             if (!fcol.isSimpleColour())
1227             {
1228               setting.setColour(fcol.getMaxColour().getRGB());
1229               setting.setMincolour(fcol.getMinColour().getRGB());
1230               setting.setMin(fcol.getMin());
1231               setting.setMax(fcol.getMax());
1232               setting.setColourByLabel(fcol.isColourByLabel());
1233               setting.setAutoScale(fcol.isAutoScaled());
1234               setting.setThreshold(fcol.getThreshold());
1235               // -1 = No threshold, 0 = Below, 1 = Above
1236               setting.setThreshstate(fcol.isAboveThreshold() ? 1
1237                       : (fcol.isBelowThreshold() ? 0 : -1));
1238             }
1239             else
1240             {
1241               setting.setColour(fcol.getColour().getRGB());
1242             }
1243
1244             setting.setDisplay(av.getFeaturesDisplayed().isVisible(
1245                     featureType));
1246             float rorder = ap.getSeqPanel().seqCanvas.getFeatureRenderer()
1247                     .getOrder(featureType);
1248             if (rorder > -1)
1249             {
1250               setting.setOrder(rorder);
1251             }
1252             fs.addSetting(setting);
1253             settingsAdded.addElement(featureType);
1254           }
1255         }
1256
1257         // is groups actually supposed to be a map here ?
1258         Iterator<String> en = ap.getSeqPanel().seqCanvas
1259                 .getFeatureRenderer()
1260                 .getFeatureGroups().iterator();
1261         Vector<String> groupsAdded = new Vector<String>();
1262         while (en.hasNext())
1263         {
1264           String grp = en.next();
1265           if (groupsAdded.contains(grp))
1266           {
1267             continue;
1268           }
1269           Group g = new Group();
1270           g.setName(grp);
1271           g.setDisplay(((Boolean) ap.getSeqPanel().seqCanvas
1272                   .getFeatureRenderer().checkGroupVisibility(grp, false))
1273                   .booleanValue());
1274           fs.addGroup(g);
1275           groupsAdded.addElement(grp);
1276         }
1277         jms.setFeatureSettings(fs);
1278       }
1279
1280       if (av.hasHiddenColumns())
1281       {
1282         if (av.getColumnSelection() == null
1283                 || av.getColumnSelection().getHiddenColumns() == null)
1284         {
1285           warn("REPORT BUG: avoided null columnselection bug (DMAM reported). Please contact Jim about this.");
1286         }
1287         else
1288         {
1289           for (int c = 0; c < av.getColumnSelection().getHiddenColumns()
1290                   .size(); c++)
1291           {
1292             int[] region = av.getColumnSelection().getHiddenColumns()
1293                     .get(c);
1294             HiddenColumns hc = new HiddenColumns();
1295             hc.setStart(region[0]);
1296             hc.setEnd(region[1]);
1297             view.addHiddenColumns(hc);
1298           }
1299         }
1300       }
1301       if (calcIdSet.size() > 0)
1302       {
1303         for (String calcId : calcIdSet)
1304         {
1305           if (calcId.trim().length() > 0)
1306           {
1307             CalcIdParam cidp = createCalcIdParam(calcId, av);
1308             // Some calcIds have no parameters.
1309             if (cidp != null)
1310             {
1311               view.addCalcIdParam(cidp);
1312             }
1313           }
1314         }
1315       }
1316
1317       jms.addViewport(view);
1318     }
1319     object.setJalviewModelSequence(jms);
1320     object.getVamsasModel().addSequenceSet(vamsasSet);
1321
1322     if (jout != null && fileName != null)
1323     {
1324       // We may not want to write the object to disk,
1325       // eg we can copy the alignViewport to a new view object
1326       // using save and then load
1327       try
1328       {
1329         System.out.println("Writing jar entry " + fileName);
1330         JarEntry entry = new JarEntry(fileName);
1331         jout.putNextEntry(entry);
1332         PrintWriter pout = new PrintWriter(new OutputStreamWriter(jout,
1333                 UTF_8));
1334         Marshaller marshaller = new Marshaller(pout);
1335         marshaller.marshal(object);
1336         pout.flush();
1337         jout.closeEntry();
1338       } catch (Exception ex)
1339       {
1340         // TODO: raise error in GUI if marshalling failed.
1341         ex.printStackTrace();
1342       }
1343     }
1344     return object;
1345   }
1346
1347   /**
1348    * Save any Varna viewers linked to this sequence. Writes an rnaViewer element
1349    * for each viewer, with
1350    * <ul>
1351    * <li>viewer geometry (position, size, split pane divider location)</li>
1352    * <li>index of the selected structure in the viewer (currently shows gapped
1353    * or ungapped)</li>
1354    * <li>the id of the annotation holding RNA secondary structure</li>
1355    * <li>(currently only one SS is shown per viewer, may be more in future)</li>
1356    * </ul>
1357    * Varna viewer state is also written out (in native Varna XML) to separate
1358    * project jar entries. A separate entry is written for each RNA structure
1359    * displayed, with the naming convention
1360    * <ul>
1361    * <li>rna_viewId_sequenceId_annotationId_[gapped|trimmed]</li>
1362    * </ul>
1363    * 
1364    * @param jout
1365    * @param jseq
1366    * @param jds
1367    * @param viewIds
1368    * @param ap
1369    * @param storeDataset
1370    */
1371   protected void saveRnaViewers(JarOutputStream jout, JSeq jseq,
1372           final SequenceI jds, List<String> viewIds, AlignmentPanel ap,
1373           boolean storeDataset)
1374   {
1375     if (Desktop.desktop == null)
1376     {
1377       return;
1378     }
1379     JInternalFrame[] frames = Desktop.desktop.getAllFrames();
1380     for (int f = frames.length - 1; f > -1; f--)
1381     {
1382       if (frames[f] instanceof AppVarna)
1383       {
1384         AppVarna varna = (AppVarna) frames[f];
1385         /*
1386          * link the sequence to every viewer that is showing it and is linked to
1387          * its alignment panel
1388          */
1389         if (varna.isListeningFor(jds) && ap == varna.getAlignmentPanel())
1390         {
1391           String viewId = varna.getViewId();
1392           RnaViewer rna = new RnaViewer();
1393           rna.setViewId(viewId);
1394           rna.setTitle(varna.getTitle());
1395           rna.setXpos(varna.getX());
1396           rna.setYpos(varna.getY());
1397           rna.setWidth(varna.getWidth());
1398           rna.setHeight(varna.getHeight());
1399           rna.setDividerLocation(varna.getDividerLocation());
1400           rna.setSelectedRna(varna.getSelectedIndex());
1401           jseq.addRnaViewer(rna);
1402
1403           /*
1404            * Store each Varna panel's state once in the project per sequence.
1405            * First time through only (storeDataset==false)
1406            */
1407           // boolean storeSessions = false;
1408           // String sequenceViewId = viewId + seqsToIds.get(jds);
1409           // if (!storeDataset && !viewIds.contains(sequenceViewId))
1410           // {
1411           // viewIds.add(sequenceViewId);
1412           // storeSessions = true;
1413           // }
1414           for (RnaModel model : varna.getModels())
1415           {
1416             if (model.seq == jds)
1417             {
1418               /*
1419                * VARNA saves each view (sequence or alignment secondary
1420                * structure, gapped or trimmed) as a separate XML file
1421                */
1422               String jarEntryName = rnaSessions.get(model);
1423               if (jarEntryName == null)
1424               {
1425
1426                 String varnaStateFile = varna.getStateInfo(model.rna);
1427                 jarEntryName = RNA_PREFIX + viewId + "_" + nextCounter();
1428                 copyFileToJar(jout, varnaStateFile, jarEntryName);
1429                 rnaSessions.put(model, jarEntryName);
1430               }
1431               SecondaryStructure ss = new SecondaryStructure();
1432               String annotationId = varna.getAnnotation(jds).annotationId;
1433               ss.setAnnotationId(annotationId);
1434               ss.setViewerState(jarEntryName);
1435               ss.setGapped(model.gapped);
1436               ss.setTitle(model.title);
1437               rna.addSecondaryStructure(ss);
1438             }
1439           }
1440         }
1441       }
1442     }
1443   }
1444
1445   /**
1446    * Copy the contents of a file to a new entry added to the output jar
1447    * 
1448    * @param jout
1449    * @param infilePath
1450    * @param jarEntryName
1451    */
1452   protected void copyFileToJar(JarOutputStream jout, String infilePath,
1453           String jarEntryName)
1454   {
1455     DataInputStream dis = null;
1456     try
1457     {
1458       File file = new File(infilePath);
1459       if (file.exists() && jout != null)
1460       {
1461         dis = new DataInputStream(new FileInputStream(file));
1462         byte[] data = new byte[(int) file.length()];
1463         dis.readFully(data);
1464         writeJarEntry(jout, jarEntryName, data);
1465       }
1466     } catch (Exception ex)
1467     {
1468       ex.printStackTrace();
1469     } finally
1470     {
1471       if (dis != null)
1472       {
1473         try
1474         {
1475           dis.close();
1476         } catch (IOException e)
1477         {
1478           // ignore
1479         }
1480       }
1481     }
1482   }
1483
1484   /**
1485    * Write the data to a new entry of given name in the output jar file
1486    * 
1487    * @param jout
1488    * @param jarEntryName
1489    * @param data
1490    * @throws IOException
1491    */
1492   protected void writeJarEntry(JarOutputStream jout, String jarEntryName,
1493           byte[] data) throws IOException
1494   {
1495     if (jout != null)
1496     {
1497       System.out.println("Writing jar entry " + jarEntryName);
1498       jout.putNextEntry(new JarEntry(jarEntryName));
1499       DataOutputStream dout = new DataOutputStream(jout);
1500       dout.write(data, 0, data.length);
1501       dout.flush();
1502       jout.closeEntry();
1503     }
1504   }
1505
1506   /**
1507    * Save the state of a structure viewer
1508    * 
1509    * @param ap
1510    * @param jds
1511    * @param pdb
1512    *          the archive XML element under which to save the state
1513    * @param entry
1514    * @param viewIds
1515    * @param matchedFile
1516    * @param viewFrame
1517    * @return
1518    */
1519   protected String saveStructureState(AlignmentPanel ap, SequenceI jds,
1520           Pdbids pdb, PDBEntry entry, List<String> viewIds,
1521           String matchedFile, StructureViewerBase viewFrame)
1522   {
1523     final AAStructureBindingModel bindingModel = viewFrame.getBinding();
1524
1525     /*
1526      * Look for any bindings for this viewer to the PDB file of interest
1527      * (including part matches excluding chain id)
1528      */
1529     for (int peid = 0; peid < bindingModel.getPdbCount(); peid++)
1530     {
1531       final PDBEntry pdbentry = bindingModel.getPdbEntry(peid);
1532       final String pdbId = pdbentry.getId();
1533       if (!pdbId.equals(entry.getId())
1534               && !(entry.getId().length() > 4 && entry.getId()
1535                       .toLowerCase().startsWith(pdbId.toLowerCase())))
1536       {
1537         /*
1538          * not interested in a binding to a different PDB entry here
1539          */
1540         continue;
1541       }
1542       if (matchedFile == null)
1543       {
1544         matchedFile = pdbentry.getFile();
1545       }
1546       else if (!matchedFile.equals(pdbentry.getFile()))
1547       {
1548         Cache.log
1549                 .warn("Probably lost some PDB-Sequence mappings for this structure file (which apparently has same PDB Entry code): "
1550                         + pdbentry.getFile());
1551       }
1552       // record the
1553       // file so we
1554       // can get at it if the ID
1555       // match is ambiguous (e.g.
1556       // 1QIP==1qipA)
1557
1558       for (int smap = 0; smap < viewFrame.getBinding().getSequence()[peid].length; smap++)
1559       {
1560         // if (jal.findIndex(jmol.jmb.sequence[peid][smap]) > -1)
1561         if (jds == viewFrame.getBinding().getSequence()[peid][smap])
1562         {
1563           StructureState state = new StructureState();
1564           state.setVisible(true);
1565           state.setXpos(viewFrame.getX());
1566           state.setYpos(viewFrame.getY());
1567           state.setWidth(viewFrame.getWidth());
1568           state.setHeight(viewFrame.getHeight());
1569           final String viewId = viewFrame.getViewId();
1570           state.setViewId(viewId);
1571           state.setAlignwithAlignPanel(viewFrame.isUsedforaligment(ap));
1572           state.setColourwithAlignPanel(viewFrame.isUsedforcolourby(ap));
1573           state.setColourByJmol(viewFrame.isColouredByViewer());
1574           state.setType(viewFrame.getViewerType().toString());
1575           pdb.addStructureState(state);
1576         }
1577       }
1578     }
1579     return matchedFile;
1580   }
1581
1582   private AnnotationColours constructAnnotationColours(
1583           AnnotationColourGradient acg, List<UserColourScheme> userColours,
1584           JalviewModelSequence jms)
1585   {
1586     AnnotationColours ac = new AnnotationColours();
1587     ac.setAboveThreshold(acg.getAboveThreshold());
1588     ac.setThreshold(acg.getAnnotationThreshold());
1589     ac.setAnnotation(acg.getAnnotation());
1590     if (acg.getBaseColour() instanceof jalview.schemes.UserColourScheme)
1591     {
1592       ac.setColourScheme(setUserColourScheme(acg.getBaseColour(),
1593               userColours, jms));
1594     }
1595     else
1596     {
1597       ac.setColourScheme(ColourSchemeProperty.getColourName(acg
1598               .getBaseColour()));
1599     }
1600
1601     ac.setMaxColour(acg.getMaxColour().getRGB());
1602     ac.setMinColour(acg.getMinColour().getRGB());
1603     ac.setPerSequence(acg.isSeqAssociated());
1604     ac.setPredefinedColours(acg.isPredefinedColours());
1605     return ac;
1606   }
1607
1608   private void storeAlignmentAnnotation(AlignmentAnnotation[] aa,
1609           IdentityHashMap<SequenceGroup, String> groupRefs,
1610           AlignmentViewport av, Set<String> calcIdSet, boolean storeDS,
1611           SequenceSet vamsasSet)
1612   {
1613
1614     for (int i = 0; i < aa.length; i++)
1615     {
1616       Annotation an = new Annotation();
1617
1618       AlignmentAnnotation annotation = aa[i];
1619       if (annotation.annotationId != null)
1620       {
1621         annotationIds.put(annotation.annotationId, annotation);
1622       }
1623
1624       an.setId(annotation.annotationId);
1625
1626       an.setVisible(annotation.visible);
1627
1628       an.setDescription(annotation.description);
1629
1630       if (annotation.sequenceRef != null)
1631       {
1632         // 2.9 JAL-1781 xref on sequence id rather than name
1633         an.setSequenceRef(seqsToIds.get(annotation.sequenceRef));
1634       }
1635       if (annotation.groupRef != null)
1636       {
1637         String groupIdr = groupRefs.get(annotation.groupRef);
1638         if (groupIdr == null)
1639         {
1640           // make a locally unique String
1641           groupRefs.put(
1642                   annotation.groupRef,
1643                   groupIdr = ("" + System.currentTimeMillis()
1644                           + annotation.groupRef.getName() + groupRefs
1645                           .size()));
1646         }
1647         an.setGroupRef(groupIdr.toString());
1648       }
1649
1650       // store all visualization attributes for annotation
1651       an.setGraphHeight(annotation.graphHeight);
1652       an.setCentreColLabels(annotation.centreColLabels);
1653       an.setScaleColLabels(annotation.scaleColLabel);
1654       an.setShowAllColLabels(annotation.showAllColLabels);
1655       an.setBelowAlignment(annotation.belowAlignment);
1656
1657       if (annotation.graph > 0)
1658       {
1659         an.setGraph(true);
1660         an.setGraphType(annotation.graph);
1661         an.setGraphGroup(annotation.graphGroup);
1662         if (annotation.getThreshold() != null)
1663         {
1664           ThresholdLine line = new ThresholdLine();
1665           line.setLabel(annotation.getThreshold().label);
1666           line.setValue(annotation.getThreshold().value);
1667           line.setColour(annotation.getThreshold().colour.getRGB());
1668           an.setThresholdLine(line);
1669         }
1670       }
1671       else
1672       {
1673         an.setGraph(false);
1674       }
1675
1676       an.setLabel(annotation.label);
1677
1678       if (annotation == av.getAlignmentQualityAnnot()
1679               || annotation == av.getAlignmentConservationAnnotation()
1680               || annotation == av.getAlignmentConsensusAnnotation()
1681               || annotation.autoCalculated)
1682       {
1683         // new way of indicating autocalculated annotation -
1684         an.setAutoCalculated(annotation.autoCalculated);
1685       }
1686       if (annotation.hasScore())
1687       {
1688         an.setScore(annotation.getScore());
1689       }
1690
1691       if (annotation.getCalcId() != null)
1692       {
1693         calcIdSet.add(annotation.getCalcId());
1694         an.setCalcId(annotation.getCalcId());
1695       }
1696       if (annotation.hasProperties())
1697       {
1698         for (String pr : annotation.getProperties())
1699         {
1700           Property prop = new Property();
1701           prop.setName(pr);
1702           prop.setValue(annotation.getProperty(pr));
1703           an.addProperty(prop);
1704         }
1705       }
1706
1707       AnnotationElement ae;
1708       if (annotation.annotations != null)
1709       {
1710         an.setScoreOnly(false);
1711         for (int a = 0; a < annotation.annotations.length; a++)
1712         {
1713           if ((annotation == null) || (annotation.annotations[a] == null))
1714           {
1715             continue;
1716           }
1717
1718           ae = new AnnotationElement();
1719           if (annotation.annotations[a].description != null)
1720           {
1721             ae.setDescription(annotation.annotations[a].description);
1722           }
1723           if (annotation.annotations[a].displayCharacter != null)
1724           {
1725             ae.setDisplayCharacter(annotation.annotations[a].displayCharacter);
1726           }
1727
1728           if (!Float.isNaN(annotation.annotations[a].value))
1729           {
1730             ae.setValue(annotation.annotations[a].value);
1731           }
1732
1733           ae.setPosition(a);
1734           if (annotation.annotations[a].secondaryStructure > ' ')
1735           {
1736             ae.setSecondaryStructure(annotation.annotations[a].secondaryStructure
1737                     + "");
1738           }
1739
1740           if (annotation.annotations[a].colour != null
1741                   && annotation.annotations[a].colour != java.awt.Color.black)
1742           {
1743             ae.setColour(annotation.annotations[a].colour.getRGB());
1744           }
1745
1746           an.addAnnotationElement(ae);
1747           if (annotation.autoCalculated)
1748           {
1749             // only write one non-null entry into the annotation row -
1750             // sufficient to get the visualization attributes necessary to
1751             // display data
1752             continue;
1753           }
1754         }
1755       }
1756       else
1757       {
1758         an.setScoreOnly(true);
1759       }
1760       if (!storeDS || (storeDS && !annotation.autoCalculated))
1761       {
1762         // skip autocalculated annotation - these are only provided for
1763         // alignments
1764         vamsasSet.addAnnotation(an);
1765       }
1766     }
1767
1768   }
1769
1770   private CalcIdParam createCalcIdParam(String calcId, AlignViewport av)
1771   {
1772     AutoCalcSetting settings = av.getCalcIdSettingsFor(calcId);
1773     if (settings != null)
1774     {
1775       CalcIdParam vCalcIdParam = new CalcIdParam();
1776       vCalcIdParam.setCalcId(calcId);
1777       vCalcIdParam.addServiceURL(settings.getServiceURI());
1778       // generic URI allowing a third party to resolve another instance of the
1779       // service used for this calculation
1780       for (String urls : settings.getServiceURLs())
1781       {
1782         vCalcIdParam.addServiceURL(urls);
1783       }
1784       vCalcIdParam.setVersion("1.0");
1785       if (settings.getPreset() != null)
1786       {
1787         WsParamSetI setting = settings.getPreset();
1788         vCalcIdParam.setName(setting.getName());
1789         vCalcIdParam.setDescription(setting.getDescription());
1790       }
1791       else
1792       {
1793         vCalcIdParam.setName("");
1794         vCalcIdParam.setDescription("Last used parameters");
1795       }
1796       // need to be able to recover 1) settings 2) user-defined presets or
1797       // recreate settings from preset 3) predefined settings provided by
1798       // service - or settings that can be transferred (or discarded)
1799       vCalcIdParam.setParameters(settings.getWsParamFile().replace("\n",
1800               "|\\n|"));
1801       vCalcIdParam.setAutoUpdate(settings.isAutoUpdate());
1802       // todo - decide if updateImmediately is needed for any projects.
1803
1804       return vCalcIdParam;
1805     }
1806     return null;
1807   }
1808
1809   private boolean recoverCalcIdParam(CalcIdParam calcIdParam,
1810           AlignViewport av)
1811   {
1812     if (calcIdParam.getVersion().equals("1.0"))
1813     {
1814       Jws2Instance service = Jws2Discoverer.getDiscoverer()
1815               .getPreferredServiceFor(calcIdParam.getServiceURL());
1816       if (service != null)
1817       {
1818         WsParamSetI parmSet = null;
1819         try
1820         {
1821           parmSet = service.getParamStore().parseServiceParameterFile(
1822                   calcIdParam.getName(), calcIdParam.getDescription(),
1823                   calcIdParam.getServiceURL(),
1824                   calcIdParam.getParameters().replace("|\\n|", "\n"));
1825         } catch (IOException x)
1826         {
1827           warn("Couldn't parse parameter data for "
1828                   + calcIdParam.getCalcId(), x);
1829           return false;
1830         }
1831         List<ArgumentI> argList = null;
1832         if (calcIdParam.getName().length() > 0)
1833         {
1834           parmSet = service.getParamStore()
1835                   .getPreset(calcIdParam.getName());
1836           if (parmSet != null)
1837           {
1838             // TODO : check we have a good match with settings in AACon -
1839             // otherwise we'll need to create a new preset
1840           }
1841         }
1842         else
1843         {
1844           argList = parmSet.getArguments();
1845           parmSet = null;
1846         }
1847         AAConSettings settings = new AAConSettings(
1848                 calcIdParam.isAutoUpdate(), service, parmSet, argList);
1849         av.setCalcIdSettingsFor(calcIdParam.getCalcId(), settings,
1850                 calcIdParam.isNeedsUpdate());
1851         return true;
1852       }
1853       else
1854       {
1855         warn("Cannot resolve a service for the parameters used in this project. Try configuring a JABAWS server.");
1856         return false;
1857       }
1858     }
1859     throw new Error(MessageManager.formatMessage(
1860             "error.unsupported_version_calcIdparam",
1861             new Object[] { calcIdParam.toString() }));
1862   }
1863
1864   /**
1865    * External mapping between jalview objects and objects yielding a valid and
1866    * unique object ID string. This is null for normal Jalview project IO, but
1867    * non-null when a jalview project is being read or written as part of a
1868    * vamsas session.
1869    */
1870   IdentityHashMap jv2vobj = null;
1871
1872   /**
1873    * Construct a unique ID for jvobj using either existing bindings or if none
1874    * exist, the result of the hashcode call for the object.
1875    * 
1876    * @param jvobj
1877    *          jalview data object
1878    * @return unique ID for referring to jvobj
1879    */
1880   private String makeHashCode(Object jvobj, String altCode)
1881   {
1882     if (jv2vobj != null)
1883     {
1884       Object id = jv2vobj.get(jvobj);
1885       if (id != null)
1886       {
1887         return id.toString();
1888       }
1889       // check string ID mappings
1890       if (jvids2vobj != null && jvobj instanceof String)
1891       {
1892         id = jvids2vobj.get(jvobj);
1893       }
1894       if (id != null)
1895       {
1896         return id.toString();
1897       }
1898       // give up and warn that something has gone wrong
1899       warn("Cannot find ID for object in external mapping : " + jvobj);
1900     }
1901     return altCode;
1902   }
1903
1904   /**
1905    * return local jalview object mapped to ID, if it exists
1906    * 
1907    * @param idcode
1908    *          (may be null)
1909    * @return null or object bound to idcode
1910    */
1911   private Object retrieveExistingObj(String idcode)
1912   {
1913     if (idcode != null && vobj2jv != null)
1914     {
1915       return vobj2jv.get(idcode);
1916     }
1917     return null;
1918   }
1919
1920   /**
1921    * binding from ID strings from external mapping table to jalview data model
1922    * objects.
1923    */
1924   private Hashtable vobj2jv;
1925
1926   private Sequence createVamsasSequence(String id, SequenceI jds)
1927   {
1928     return createVamsasSequence(true, id, jds, null);
1929   }
1930
1931   private Sequence createVamsasSequence(boolean recurse, String id,
1932           SequenceI jds, SequenceI parentseq)
1933   {
1934     Sequence vamsasSeq = new Sequence();
1935     vamsasSeq.setId(id);
1936     vamsasSeq.setName(jds.getName());
1937     vamsasSeq.setSequence(jds.getSequenceAsString());
1938     vamsasSeq.setDescription(jds.getDescription());
1939     jalview.datamodel.DBRefEntry[] dbrefs = null;
1940     if (jds.getDatasetSequence() != null)
1941     {
1942       vamsasSeq.setDsseqid(seqHash(jds.getDatasetSequence()));
1943       if (jds.getDatasetSequence().getDBRefs() != null)
1944       {
1945         dbrefs = jds.getDatasetSequence().getDBRefs();
1946       }
1947     }
1948     else
1949     {
1950       vamsasSeq.setDsseqid(id); // so we can tell which sequences really are
1951       // dataset sequences only
1952       dbrefs = jds.getDBRefs();
1953     }
1954     if (dbrefs != null)
1955     {
1956       for (int d = 0; d < dbrefs.length; d++)
1957       {
1958         DBRef dbref = new DBRef();
1959         dbref.setSource(dbrefs[d].getSource());
1960         dbref.setVersion(dbrefs[d].getVersion());
1961         dbref.setAccessionId(dbrefs[d].getAccessionId());
1962         if (dbrefs[d].hasMap())
1963         {
1964           Mapping mp = createVamsasMapping(dbrefs[d].getMap(), parentseq,
1965                   jds, recurse);
1966           dbref.setMapping(mp);
1967         }
1968         vamsasSeq.addDBRef(dbref);
1969       }
1970     }
1971     return vamsasSeq;
1972   }
1973
1974   private Mapping createVamsasMapping(jalview.datamodel.Mapping jmp,
1975           SequenceI parentseq, SequenceI jds, boolean recurse)
1976   {
1977     Mapping mp = null;
1978     if (jmp.getMap() != null)
1979     {
1980       mp = new Mapping();
1981
1982       jalview.util.MapList mlst = jmp.getMap();
1983       List<int[]> r = mlst.getFromRanges();
1984       for (int[] range : r)
1985       {
1986         MapListFrom mfrom = new MapListFrom();
1987         mfrom.setStart(range[0]);
1988         mfrom.setEnd(range[1]);
1989         mp.addMapListFrom(mfrom);
1990       }
1991       r = mlst.getToRanges();
1992       for (int[] range : r)
1993       {
1994         MapListTo mto = new MapListTo();
1995         mto.setStart(range[0]);
1996         mto.setEnd(range[1]);
1997         mp.addMapListTo(mto);
1998       }
1999       mp.setMapFromUnit(mlst.getFromRatio());
2000       mp.setMapToUnit(mlst.getToRatio());
2001       if (jmp.getTo() != null)
2002       {
2003         MappingChoice mpc = new MappingChoice();
2004         if (recurse
2005                 && (parentseq != jmp.getTo() || parentseq
2006                         .getDatasetSequence() != jmp.getTo()))
2007         {
2008           mpc.setSequence(createVamsasSequence(false, seqHash(jmp.getTo()),
2009                   jmp.getTo(), jds));
2010         }
2011         else
2012         {
2013           String jmpid = "";
2014           SequenceI ps = null;
2015           if (parentseq != jmp.getTo()
2016                   && parentseq.getDatasetSequence() != jmp.getTo())
2017           {
2018             // chaining dbref rather than a handshaking one
2019             jmpid = seqHash(ps = jmp.getTo());
2020           }
2021           else
2022           {
2023             jmpid = seqHash(ps = parentseq);
2024           }
2025           mpc.setDseqFor(jmpid);
2026           if (!seqRefIds.containsKey(mpc.getDseqFor()))
2027           {
2028             jalview.bin.Cache.log.debug("creatign new DseqFor ID");
2029             seqRefIds.put(mpc.getDseqFor(), ps);
2030           }
2031           else
2032           {
2033             jalview.bin.Cache.log.debug("reusing DseqFor ID");
2034           }
2035         }
2036         mp.setMappingChoice(mpc);
2037       }
2038     }
2039     return mp;
2040   }
2041
2042   String setUserColourScheme(jalview.schemes.ColourSchemeI cs,
2043           List<UserColourScheme> userColours, JalviewModelSequence jms)
2044   {
2045     String id = null;
2046     jalview.schemes.UserColourScheme ucs = (jalview.schemes.UserColourScheme) cs;
2047     boolean newucs = false;
2048     if (!userColours.contains(ucs))
2049     {
2050       userColours.add(ucs);
2051       newucs = true;
2052     }
2053     id = "ucs" + userColours.indexOf(ucs);
2054     if (newucs)
2055     {
2056       // actually create the scheme's entry in the XML model
2057       java.awt.Color[] colours = ucs.getColours();
2058       jalview.schemabinding.version2.UserColours uc = new jalview.schemabinding.version2.UserColours();
2059       jalview.schemabinding.version2.UserColourScheme jbucs = new jalview.schemabinding.version2.UserColourScheme();
2060
2061       for (int i = 0; i < colours.length; i++)
2062       {
2063         jalview.schemabinding.version2.Colour col = new jalview.schemabinding.version2.Colour();
2064         col.setName(ResidueProperties.aa[i]);
2065         col.setRGB(jalview.util.Format.getHexString(colours[i]));
2066         jbucs.addColour(col);
2067       }
2068       if (ucs.getLowerCaseColours() != null)
2069       {
2070         colours = ucs.getLowerCaseColours();
2071         for (int i = 0; i < colours.length; i++)
2072         {
2073           jalview.schemabinding.version2.Colour col = new jalview.schemabinding.version2.Colour();
2074           col.setName(ResidueProperties.aa[i].toLowerCase());
2075           col.setRGB(jalview.util.Format.getHexString(colours[i]));
2076           jbucs.addColour(col);
2077         }
2078       }
2079
2080       uc.setId(id);
2081       uc.setUserColourScheme(jbucs);
2082       jms.addUserColours(uc);
2083     }
2084
2085     return id;
2086   }
2087
2088   jalview.schemes.UserColourScheme getUserColourScheme(
2089           JalviewModelSequence jms, String id)
2090   {
2091     UserColours[] uc = jms.getUserColours();
2092     UserColours colours = null;
2093
2094     for (int i = 0; i < uc.length; i++)
2095     {
2096       if (uc[i].getId().equals(id))
2097       {
2098         colours = uc[i];
2099
2100         break;
2101       }
2102     }
2103
2104     java.awt.Color[] newColours = new java.awt.Color[24];
2105
2106     for (int i = 0; i < 24; i++)
2107     {
2108       newColours[i] = new java.awt.Color(Integer.parseInt(colours
2109               .getUserColourScheme().getColour(i).getRGB(), 16));
2110     }
2111
2112     jalview.schemes.UserColourScheme ucs = new jalview.schemes.UserColourScheme(
2113             newColours);
2114
2115     if (colours.getUserColourScheme().getColourCount() > 24)
2116     {
2117       newColours = new java.awt.Color[23];
2118       for (int i = 0; i < 23; i++)
2119       {
2120         newColours[i] = new java.awt.Color(Integer.parseInt(colours
2121                 .getUserColourScheme().getColour(i + 24).getRGB(), 16));
2122       }
2123       ucs.setLowerCaseColours(newColours);
2124     }
2125
2126     return ucs;
2127   }
2128
2129   /**
2130    * contains last error message (if any) encountered by XML loader.
2131    */
2132   String errorMessage = null;
2133
2134   /**
2135    * flag to control whether the Jalview2XML_V1 parser should be deferred to if
2136    * exceptions are raised during project XML parsing
2137    */
2138   public boolean attemptversion1parse = true;
2139
2140   /**
2141    * Load a jalview project archive from a jar file
2142    * 
2143    * @param file
2144    *          - HTTP URL or filename
2145    */
2146   public AlignFrame loadJalviewAlign(final String file)
2147   {
2148
2149     jalview.gui.AlignFrame af = null;
2150
2151     try
2152     {
2153       // create list to store references for any new Jmol viewers created
2154       newStructureViewers = new Vector<JalviewStructureDisplayI>();
2155       // UNMARSHALLER SEEMS TO CLOSE JARINPUTSTREAM, MOST ANNOYING
2156       // Workaround is to make sure caller implements the JarInputStreamProvider
2157       // interface
2158       // so we can re-open the jar input stream for each entry.
2159
2160       jarInputStreamProvider jprovider = createjarInputStreamProvider(file);
2161       af = loadJalviewAlign(jprovider);
2162
2163     } catch (MalformedURLException e)
2164     {
2165       errorMessage = "Invalid URL format for '" + file + "'";
2166       reportErrors();
2167     } finally
2168     {
2169       try
2170       {
2171         SwingUtilities.invokeAndWait(new Runnable()
2172         {
2173           @Override
2174           public void run()
2175           {
2176             setLoadingFinishedForNewStructureViewers();
2177           };
2178         });
2179       } catch (Exception x)
2180       {
2181         System.err.println("Error loading alignment: " + x.getMessage());
2182       }
2183     }
2184     return af;
2185   }
2186
2187   private jarInputStreamProvider createjarInputStreamProvider(
2188           final String file) throws MalformedURLException
2189   {
2190     URL url = null;
2191     errorMessage = null;
2192     uniqueSetSuffix = null;
2193     seqRefIds = null;
2194     viewportsAdded.clear();
2195     frefedSequence = null;
2196
2197     if (file.startsWith("http://"))
2198     {
2199       url = new URL(file);
2200     }
2201     final URL _url = url;
2202     return new jarInputStreamProvider()
2203     {
2204
2205       @Override
2206       public JarInputStream getJarInputStream() throws IOException
2207       {
2208         if (_url != null)
2209         {
2210           return new JarInputStream(_url.openStream());
2211         }
2212         else
2213         {
2214           return new JarInputStream(new FileInputStream(file));
2215         }
2216       }
2217
2218       @Override
2219       public String getFilename()
2220       {
2221         return file;
2222       }
2223     };
2224   }
2225
2226   /**
2227    * Recover jalview session from a jalview project archive. Caller may
2228    * initialise uniqueSetSuffix, seqRefIds, viewportsAdded and frefedSequence
2229    * themselves. Any null fields will be initialised with default values,
2230    * non-null fields are left alone.
2231    * 
2232    * @param jprovider
2233    * @return
2234    */
2235   public AlignFrame loadJalviewAlign(final jarInputStreamProvider jprovider)
2236   {
2237     errorMessage = null;
2238     if (uniqueSetSuffix == null)
2239     {
2240       uniqueSetSuffix = System.currentTimeMillis() % 100000 + "";
2241     }
2242     if (seqRefIds == null)
2243     {
2244       seqRefIds = new HashMap<String, SequenceI>();
2245     }
2246     if (frefedSequence == null)
2247     {
2248       frefedSequence = new Vector<Object[]>();
2249     }
2250
2251     AlignFrame af = null, _af = null;
2252     Map<String, AlignFrame> gatherToThisFrame = new HashMap<String, AlignFrame>();
2253     final String file = jprovider.getFilename();
2254     try
2255     {
2256       JarInputStream jin = null;
2257       JarEntry jarentry = null;
2258       int entryCount = 1;
2259
2260       do
2261       {
2262         jin = jprovider.getJarInputStream();
2263         for (int i = 0; i < entryCount; i++)
2264         {
2265           jarentry = jin.getNextJarEntry();
2266         }
2267
2268         if (jarentry != null && jarentry.getName().endsWith(".xml"))
2269         {
2270           InputStreamReader in = new InputStreamReader(jin, UTF_8);
2271           JalviewModel object = new JalviewModel();
2272
2273           Unmarshaller unmar = new Unmarshaller(object);
2274           unmar.setValidation(false);
2275           object = (JalviewModel) unmar.unmarshal(in);
2276           if (true) // !skipViewport(object))
2277           {
2278             _af = loadFromObject(object, file, true, jprovider);
2279             if (object.getJalviewModelSequence().getViewportCount() > 0)
2280             {
2281               af = _af;
2282               if (af.viewport.isGatherViewsHere())
2283               {
2284                 gatherToThisFrame.put(af.viewport.getSequenceSetId(), af);
2285               }
2286             }
2287           }
2288           entryCount++;
2289         }
2290         else if (jarentry != null)
2291         {
2292           // Some other file here.
2293           entryCount++;
2294         }
2295       } while (jarentry != null);
2296       resolveFrefedSequences();
2297     } catch (IOException ex)
2298     {
2299       ex.printStackTrace();
2300       errorMessage = "Couldn't locate Jalview XML file : " + file;
2301       System.err.println("Exception whilst loading jalview XML file : "
2302               + ex + "\n");
2303     } catch (Exception ex)
2304     {
2305       System.err.println("Parsing as Jalview Version 2 file failed.");
2306       ex.printStackTrace(System.err);
2307       if (attemptversion1parse)
2308       {
2309         // Is Version 1 Jar file?
2310         try
2311         {
2312           af = new Jalview2XML_V1(raiseGUI).LoadJalviewAlign(jprovider);
2313         } catch (Exception ex2)
2314         {
2315           System.err.println("Exception whilst loading as jalviewXMLV1:");
2316           ex2.printStackTrace();
2317           af = null;
2318         }
2319       }
2320       if (Desktop.instance != null)
2321       {
2322         Desktop.instance.stopLoading();
2323       }
2324       if (af != null)
2325       {
2326         System.out.println("Successfully loaded archive file");
2327         return af;
2328       }
2329       ex.printStackTrace();
2330
2331       System.err.println("Exception whilst loading jalview XML file : "
2332               + ex + "\n");
2333     } catch (OutOfMemoryError e)
2334     {
2335       // Don't use the OOM Window here
2336       errorMessage = "Out of memory loading jalview XML file";
2337       System.err.println("Out of memory whilst loading jalview XML file");
2338       e.printStackTrace();
2339     }
2340
2341     if (Desktop.instance != null)
2342     {
2343       Desktop.instance.stopLoading();
2344     }
2345
2346     /*
2347      * Regather multiple views (with the same sequence set id) to the frame (if
2348      * any) that is flagged as the one to gather to, i.e. convert them to tabbed
2349      * views instead of separate frames. Note this doesn't restore a state where
2350      * some expanded views in turn have tabbed views - the last "first tab" read
2351      * in will play the role of gatherer for all.
2352      */
2353     for (AlignFrame fr : gatherToThisFrame.values())
2354     {
2355       Desktop.instance.gatherViews(fr);
2356     }
2357
2358     restoreSplitFrames();
2359
2360     if (errorMessage != null)
2361     {
2362       reportErrors();
2363     }
2364     return af;
2365   }
2366
2367   /**
2368    * Try to reconstruct and display SplitFrame windows, where each contains
2369    * complementary dna and protein alignments. Done by pairing up AlignFrame
2370    * objects (created earlier) which have complementary viewport ids associated.
2371    */
2372   protected void restoreSplitFrames()
2373   {
2374     List<SplitFrame> gatherTo = new ArrayList<SplitFrame>();
2375     List<AlignFrame> addedToSplitFrames = new ArrayList<AlignFrame>();
2376     Map<String, AlignFrame> dna = new HashMap<String, AlignFrame>();
2377
2378     /*
2379      * Identify the DNA alignments
2380      */
2381     for (Entry<Viewport, AlignFrame> candidate : splitFrameCandidates
2382             .entrySet())
2383     {
2384       AlignFrame af = candidate.getValue();
2385       if (af.getViewport().getAlignment().isNucleotide())
2386       {
2387         dna.put(candidate.getKey().getId(), af);
2388       }
2389     }
2390
2391     /*
2392      * Try to match up the protein complements
2393      */
2394     for (Entry<Viewport, AlignFrame> candidate : splitFrameCandidates
2395             .entrySet())
2396     {
2397       AlignFrame af = candidate.getValue();
2398       if (!af.getViewport().getAlignment().isNucleotide())
2399       {
2400         String complementId = candidate.getKey().getComplementId();
2401         // only non-null complements should be in the Map
2402         if (complementId != null && dna.containsKey(complementId))
2403         {
2404           final AlignFrame dnaFrame = dna.get(complementId);
2405           SplitFrame sf = createSplitFrame(dnaFrame, af);
2406           addedToSplitFrames.add(dnaFrame);
2407           addedToSplitFrames.add(af);
2408           if (af.viewport.isGatherViewsHere())
2409           {
2410             gatherTo.add(sf);
2411           }
2412         }
2413       }
2414     }
2415
2416     /*
2417      * Open any that we failed to pair up (which shouldn't happen!) as
2418      * standalone AlignFrame's.
2419      */
2420     for (Entry<Viewport, AlignFrame> candidate : splitFrameCandidates
2421             .entrySet())
2422     {
2423       AlignFrame af = candidate.getValue();
2424       if (!addedToSplitFrames.contains(af))
2425       {
2426         Viewport view = candidate.getKey();
2427         Desktop.addInternalFrame(af, view.getTitle(), view.getWidth(),
2428                 view.getHeight());
2429         System.err.println("Failed to restore view " + view.getTitle()
2430                 + " to split frame");
2431       }
2432     }
2433
2434     /*
2435      * Gather back into tabbed views as flagged.
2436      */
2437     for (SplitFrame sf : gatherTo)
2438     {
2439       Desktop.instance.gatherViews(sf);
2440     }
2441
2442     splitFrameCandidates.clear();
2443   }
2444
2445   /**
2446    * Construct and display one SplitFrame holding DNA and protein alignments.
2447    * 
2448    * @param dnaFrame
2449    * @param proteinFrame
2450    * @return
2451    */
2452   protected SplitFrame createSplitFrame(AlignFrame dnaFrame,
2453           AlignFrame proteinFrame)
2454   {
2455     SplitFrame splitFrame = new SplitFrame(dnaFrame, proteinFrame);
2456     String title = MessageManager.getString("label.linked_view_title");
2457     int width = (int) dnaFrame.getBounds().getWidth();
2458     int height = (int) (dnaFrame.getBounds().getHeight()
2459             + proteinFrame.getBounds().getHeight() + 50);
2460
2461     /*
2462      * SplitFrame location is saved to both enclosed frames
2463      */
2464     splitFrame.setLocation(dnaFrame.getX(), dnaFrame.getY());
2465     Desktop.addInternalFrame(splitFrame, title, width, height);
2466
2467     /*
2468      * And compute cDNA consensus (couldn't do earlier with consensus as
2469      * mappings were not yet present)
2470      */
2471     proteinFrame.viewport.alignmentChanged(proteinFrame.alignPanel);
2472
2473     return splitFrame;
2474   }
2475
2476   /**
2477    * check errorMessage for a valid error message and raise an error box in the
2478    * GUI or write the current errorMessage to stderr and then clear the error
2479    * state.
2480    */
2481   protected void reportErrors()
2482   {
2483     reportErrors(false);
2484   }
2485
2486   protected void reportErrors(final boolean saving)
2487   {
2488     if (errorMessage != null)
2489     {
2490       final String finalErrorMessage = errorMessage;
2491       if (raiseGUI)
2492       {
2493         javax.swing.SwingUtilities.invokeLater(new Runnable()
2494         {
2495           @Override
2496           public void run()
2497           {
2498             JOptionPane.showInternalMessageDialog(Desktop.desktop,
2499                     finalErrorMessage, "Error "
2500                             + (saving ? "saving" : "loading")
2501                             + " Jalview file", JOptionPane.WARNING_MESSAGE);
2502           }
2503         });
2504       }
2505       else
2506       {
2507         System.err.println("Problem loading Jalview file: " + errorMessage);
2508       }
2509     }
2510     errorMessage = null;
2511   }
2512
2513   Map<String, String> alreadyLoadedPDB = new HashMap<String, String>();
2514
2515   /**
2516    * when set, local views will be updated from view stored in JalviewXML
2517    * Currently (28th Sep 2008) things will go horribly wrong in vamsas document
2518    * sync if this is set to true.
2519    */
2520   private final boolean updateLocalViews = false;
2521
2522   /**
2523    * Returns the path to a temporary file holding the PDB file for the given PDB
2524    * id. The first time of asking, searches for a file of that name in the
2525    * Jalview project jar, and copies it to a new temporary file. Any repeat
2526    * requests just return the path to the file previously created.
2527    * 
2528    * @param jprovider
2529    * @param pdbId
2530    * @return
2531    */
2532   String loadPDBFile(jarInputStreamProvider jprovider, String pdbId)
2533   {
2534     if (alreadyLoadedPDB.containsKey(pdbId))
2535     {
2536       return alreadyLoadedPDB.get(pdbId).toString();
2537     }
2538
2539     String tempFile = copyJarEntry(jprovider, pdbId, "jalview_pdb");
2540     if (tempFile != null)
2541     {
2542       alreadyLoadedPDB.put(pdbId, tempFile);
2543     }
2544     return tempFile;
2545   }
2546
2547   /**
2548    * Copies the jar entry of given name to a new temporary file and returns the
2549    * path to the file, or null if the entry is not found.
2550    * 
2551    * @param jprovider
2552    * @param jarEntryName
2553    * @param prefix
2554    *          a prefix for the temporary file name, must be at least three
2555    *          characters long
2556    * @return
2557    */
2558   protected String copyJarEntry(jarInputStreamProvider jprovider,
2559           String jarEntryName, String prefix)
2560   {
2561     BufferedReader in = null;
2562     PrintWriter out = null;
2563
2564     try
2565     {
2566       JarInputStream jin = jprovider.getJarInputStream();
2567       /*
2568        * if (jprovider.startsWith("http://")) { jin = new JarInputStream(new
2569        * URL(jprovider).openStream()); } else { jin = new JarInputStream(new
2570        * FileInputStream(jprovider)); }
2571        */
2572
2573       JarEntry entry = null;
2574       do
2575       {
2576         entry = jin.getNextJarEntry();
2577       } while (entry != null && !entry.getName().equals(jarEntryName));
2578       if (entry != null)
2579       {
2580         in = new BufferedReader(new InputStreamReader(jin, UTF_8));
2581         File outFile = File.createTempFile(prefix, ".tmp");
2582         outFile.deleteOnExit();
2583         out = new PrintWriter(new FileOutputStream(outFile));
2584         String data;
2585
2586         while ((data = in.readLine()) != null)
2587         {
2588           out.println(data);
2589         }
2590         out.flush();
2591         String t = outFile.getAbsolutePath();
2592         return t;
2593       }
2594       else
2595       {
2596         warn("Couldn't find entry in Jalview Jar for " + jarEntryName);
2597       }
2598     } catch (Exception ex)
2599     {
2600       ex.printStackTrace();
2601     } finally
2602     {
2603       if (in != null)
2604       {
2605         try
2606         {
2607           in.close();
2608         } catch (IOException e)
2609         {
2610           // ignore
2611         }
2612       }
2613       if (out != null)
2614       {
2615         out.close();
2616       }
2617     }
2618
2619     return null;
2620   }
2621
2622   private class JvAnnotRow
2623   {
2624     public JvAnnotRow(int i, AlignmentAnnotation jaa)
2625     {
2626       order = i;
2627       template = jaa;
2628     }
2629
2630     /**
2631      * persisted version of annotation row from which to take vis properties
2632      */
2633     public jalview.datamodel.AlignmentAnnotation template;
2634
2635     /**
2636      * original position of the annotation row in the alignment
2637      */
2638     public int order;
2639   }
2640
2641   /**
2642    * Load alignment frame from jalview XML DOM object
2643    * 
2644    * @param object
2645    *          DOM
2646    * @param file
2647    *          filename source string
2648    * @param loadTreesAndStructures
2649    *          when false only create Viewport
2650    * @param jprovider
2651    *          data source provider
2652    * @return alignment frame created from view stored in DOM
2653    */
2654   AlignFrame loadFromObject(JalviewModel object, String file,
2655           boolean loadTreesAndStructures, jarInputStreamProvider jprovider)
2656   {
2657     SequenceSet vamsasSet = object.getVamsasModel().getSequenceSet(0);
2658     Sequence[] vamsasSeq = vamsasSet.getSequence();
2659
2660     JalviewModelSequence jms = object.getJalviewModelSequence();
2661
2662     Viewport view = (jms.getViewportCount() > 0) ? jms.getViewport(0)
2663             : null;
2664
2665     // ////////////////////////////////
2666     // LOAD SEQUENCES
2667
2668     List<SequenceI> hiddenSeqs = null;
2669
2670
2671     List<SequenceI> tmpseqs = new ArrayList<SequenceI>();
2672
2673     boolean multipleView = false;
2674     SequenceI referenceseqForView = null;
2675     JSeq[] jseqs = object.getJalviewModelSequence().getJSeq();
2676     int vi = 0; // counter in vamsasSeq array
2677     for (int i = 0; i < jseqs.length; i++)
2678     {
2679       String seqId = jseqs[i].getId();
2680
2681       SequenceI tmpSeq = seqRefIds.get(seqId);
2682       if (tmpSeq != null)
2683       {
2684         tmpSeq.setStart(jseqs[i].getStart());
2685         tmpSeq.setEnd(jseqs[i].getEnd());
2686         tmpseqs.add(tmpSeq);
2687         multipleView = true;
2688       }
2689       else
2690       {
2691         tmpSeq = new jalview.datamodel.Sequence(vamsasSeq[vi].getName(),
2692                 vamsasSeq[vi].getSequence());
2693         tmpSeq.setDescription(vamsasSeq[vi].getDescription());
2694         tmpSeq.setStart(jseqs[i].getStart());
2695         tmpSeq.setEnd(jseqs[i].getEnd());
2696         tmpSeq.setVamsasId(uniqueSetSuffix + seqId);
2697         seqRefIds.put(vamsasSeq[vi].getId(), tmpSeq);
2698         tmpseqs.add(tmpSeq);
2699         vi++;
2700       }
2701
2702       if (jseqs[i].hasViewreference() && jseqs[i].getViewreference())
2703       {
2704         referenceseqForView = tmpseqs.get(tmpseqs.size() - 1);
2705       }
2706
2707       if (jseqs[i].getHidden())
2708       {
2709         if (hiddenSeqs == null)
2710         {
2711           hiddenSeqs = new ArrayList<SequenceI>();
2712         }
2713
2714         hiddenSeqs.add(tmpSeq);
2715       }
2716     }
2717
2718     // /
2719     // Create the alignment object from the sequence set
2720     // ///////////////////////////////
2721     SequenceI[] orderedSeqs = tmpseqs
2722             .toArray(new SequenceI[tmpseqs.size()]);
2723
2724     AlignmentI al = new Alignment(orderedSeqs);
2725
2726     if (referenceseqForView != null)
2727     {
2728       al.setSeqrep(referenceseqForView);
2729     }
2730     // / Add the alignment properties
2731     for (int i = 0; i < vamsasSet.getSequenceSetPropertiesCount(); i++)
2732     {
2733       SequenceSetProperties ssp = vamsasSet.getSequenceSetProperties(i);
2734       al.setProperty(ssp.getKey(), ssp.getValue());
2735     }
2736
2737     // /
2738     // SequenceFeatures are added to the DatasetSequence,
2739     // so we must create or recover the dataset before loading features
2740     // ///////////////////////////////
2741     if (vamsasSet.getDatasetId() == null || vamsasSet.getDatasetId() == "")
2742     {
2743       // older jalview projects do not have a dataset id.
2744       al.setDataset(null);
2745     }
2746     else
2747     {
2748       // recover dataset - passing on flag indicating if this a 'viewless'
2749       // sequence set (a.k.a. a stored dataset for the project)
2750       recoverDatasetFor(vamsasSet, al, object.getJalviewModelSequence()
2751               .getViewportCount() == 0);
2752     }
2753     // ///////////////////////////////
2754
2755     Hashtable pdbloaded = new Hashtable(); // TODO nothing writes to this??
2756     if (!multipleView)
2757     {
2758       // load sequence features, database references and any associated PDB
2759       // structures for the alignment
2760       for (int i = 0; i < vamsasSeq.length; i++)
2761       {
2762         if (jseqs[i].getFeaturesCount() > 0)
2763         {
2764           Features[] features = jseqs[i].getFeatures();
2765           for (int f = 0; f < features.length; f++)
2766           {
2767             jalview.datamodel.SequenceFeature sf = new jalview.datamodel.SequenceFeature(
2768                     features[f].getType(), features[f].getDescription(),
2769                     features[f].getStatus(), features[f].getBegin(),
2770                     features[f].getEnd(), features[f].getFeatureGroup());
2771
2772             sf.setScore(features[f].getScore());
2773             for (int od = 0; od < features[f].getOtherDataCount(); od++)
2774             {
2775               OtherData keyValue = features[f].getOtherData(od);
2776               if (keyValue.getKey().startsWith("LINK"))
2777               {
2778                 sf.addLink(keyValue.getValue());
2779               }
2780               else
2781               {
2782                 sf.setValue(keyValue.getKey(), keyValue.getValue());
2783               }
2784
2785             }
2786
2787             al.getSequenceAt(i).getDatasetSequence().addSequenceFeature(sf);
2788           }
2789         }
2790         if (vamsasSeq[i].getDBRefCount() > 0)
2791         {
2792           addDBRefs(al.getSequenceAt(i).getDatasetSequence(), vamsasSeq[i]);
2793         }
2794         if (jseqs[i].getPdbidsCount() > 0)
2795         {
2796           Pdbids[] ids = jseqs[i].getPdbids();
2797           for (int p = 0; p < ids.length; p++)
2798           {
2799             jalview.datamodel.PDBEntry entry = new jalview.datamodel.PDBEntry();
2800             entry.setId(ids[p].getId());
2801             if (ids[p].getType() != null)
2802             {
2803               if (ids[p].getType().equalsIgnoreCase("PDB"))
2804               {
2805                 entry.setType(PDBEntry.Type.PDB);
2806               }
2807               else
2808               {
2809                 entry.setType(PDBEntry.Type.FILE);
2810               }
2811             }
2812             if (ids[p].getFile() != null)
2813             {
2814               if (!pdbloaded.containsKey(ids[p].getFile()))
2815               {
2816                 entry.setFile(loadPDBFile(jprovider, ids[p].getId()));
2817               }
2818               else
2819               {
2820                 entry.setFile(pdbloaded.get(ids[p].getId()).toString());
2821               }
2822             }
2823             StructureSelectionManager.getStructureSelectionManager(
2824                     Desktop.instance).registerPDBEntry(entry);
2825             al.getSequenceAt(i).getDatasetSequence().addPDBId(entry);
2826           }
2827         }
2828       }
2829     } // end !multipleview
2830
2831     // ///////////////////////////////
2832     // LOAD SEQUENCE MAPPINGS
2833
2834     if (vamsasSet.getAlcodonFrameCount() > 0)
2835     {
2836       // TODO Potentially this should only be done once for all views of an
2837       // alignment
2838       AlcodonFrame[] alc = vamsasSet.getAlcodonFrame();
2839       for (int i = 0; i < alc.length; i++)
2840       {
2841         AlignedCodonFrame cf = new AlignedCodonFrame();
2842         if (alc[i].getAlcodMapCount() > 0)
2843         {
2844           AlcodMap[] maps = alc[i].getAlcodMap();
2845           for (int m = 0; m < maps.length; m++)
2846           {
2847             SequenceI dnaseq = seqRefIds.get(maps[m].getDnasq());
2848             // Load Mapping
2849             jalview.datamodel.Mapping mapping = null;
2850             // attach to dna sequence reference.
2851             if (maps[m].getMapping() != null)
2852             {
2853               mapping = addMapping(maps[m].getMapping());
2854             }
2855             if (dnaseq != null && mapping.getTo() != null)
2856             {
2857               cf.addMap(dnaseq, mapping.getTo(), mapping.getMap());
2858             }
2859             else
2860             {
2861               // defer to later
2862               frefedSequence.add(new Object[] { maps[m].getDnasq(), cf,
2863                   mapping });
2864             }
2865           }
2866           al.addCodonFrame(cf);
2867         }
2868       }
2869     }
2870
2871     // ////////////////////////////////
2872     // LOAD ANNOTATIONS
2873     List<JvAnnotRow> autoAlan = new ArrayList<JvAnnotRow>();
2874
2875     /*
2876      * store any annotations which forward reference a group's ID
2877      */
2878     Map<String, List<AlignmentAnnotation>> groupAnnotRefs = new Hashtable<String, List<AlignmentAnnotation>>();
2879
2880     if (vamsasSet.getAnnotationCount() > 0)
2881     {
2882       Annotation[] an = vamsasSet.getAnnotation();
2883
2884       for (int i = 0; i < an.length; i++)
2885       {
2886         Annotation annotation = an[i];
2887
2888         /**
2889          * test if annotation is automatically calculated for this view only
2890          */
2891         boolean autoForView = false;
2892         if (annotation.getLabel().equals("Quality")
2893                 || annotation.getLabel().equals("Conservation")
2894                 || annotation.getLabel().equals("Consensus"))
2895         {
2896           // Kludge for pre 2.5 projects which lacked the autocalculated flag
2897           autoForView = true;
2898           if (!annotation.hasAutoCalculated())
2899           {
2900             annotation.setAutoCalculated(true);
2901           }
2902         }
2903         if (autoForView
2904                 || (annotation.hasAutoCalculated() && annotation
2905                         .isAutoCalculated()))
2906         {
2907           // remove ID - we don't recover annotation from other views for
2908           // view-specific annotation
2909           annotation.setId(null);
2910         }
2911
2912         // set visiblity for other annotation in this view
2913         String annotationId = annotation.getId();
2914         if (annotationId != null && annotationIds.containsKey(annotationId))
2915         {
2916           AlignmentAnnotation jda = annotationIds.get(annotationId);
2917           // in principle Visible should always be true for annotation displayed
2918           // in multiple views
2919           if (annotation.hasVisible())
2920           {
2921             jda.visible = annotation.getVisible();
2922           }
2923
2924           al.addAnnotation(jda);
2925
2926           continue;
2927         }
2928         // Construct new annotation from model.
2929         AnnotationElement[] ae = annotation.getAnnotationElement();
2930         jalview.datamodel.Annotation[] anot = null;
2931         java.awt.Color firstColour = null;
2932         int anpos;
2933         if (!annotation.getScoreOnly())
2934         {
2935           anot = new jalview.datamodel.Annotation[al.getWidth()];
2936           for (int aa = 0; aa < ae.length && aa < anot.length; aa++)
2937           {
2938             anpos = ae[aa].getPosition();
2939
2940             if (anpos >= anot.length)
2941             {
2942               continue;
2943             }
2944
2945             anot[anpos] = new jalview.datamodel.Annotation(
2946
2947             ae[aa].getDisplayCharacter(), ae[aa].getDescription(),
2948                     (ae[aa].getSecondaryStructure() == null || ae[aa]
2949                             .getSecondaryStructure().length() == 0) ? ' '
2950                             : ae[aa].getSecondaryStructure().charAt(0),
2951                     ae[aa].getValue()
2952
2953             );
2954             // JBPNote: Consider verifying dataflow for IO of secondary
2955             // structure annotation read from Stockholm files
2956             // this was added to try to ensure that
2957             // if (anot[ae[aa].getPosition()].secondaryStructure>' ')
2958             // {
2959             // anot[ae[aa].getPosition()].displayCharacter = "";
2960             // }
2961             anot[anpos].colour = new java.awt.Color(ae[aa].getColour());
2962             if (firstColour == null)
2963             {
2964               firstColour = anot[anpos].colour;
2965             }
2966           }
2967         }
2968         jalview.datamodel.AlignmentAnnotation jaa = null;
2969
2970         if (annotation.getGraph())
2971         {
2972           float llim = 0, hlim = 0;
2973           // if (autoForView || an[i].isAutoCalculated()) {
2974           // hlim=11f;
2975           // }
2976           jaa = new jalview.datamodel.AlignmentAnnotation(
2977                   annotation.getLabel(), annotation.getDescription(), anot,
2978                   llim, hlim, annotation.getGraphType());
2979
2980           jaa.graphGroup = annotation.getGraphGroup();
2981           jaa._linecolour = firstColour;
2982           if (annotation.getThresholdLine() != null)
2983           {
2984             jaa.setThreshold(new jalview.datamodel.GraphLine(annotation
2985                     .getThresholdLine().getValue(), annotation
2986                     .getThresholdLine().getLabel(), new java.awt.Color(
2987                     annotation.getThresholdLine().getColour())));
2988
2989           }
2990           if (autoForView || annotation.isAutoCalculated())
2991           {
2992             // Hardwire the symbol display line to ensure that labels for
2993             // histograms are displayed
2994             jaa.hasText = true;
2995           }
2996         }
2997         else
2998         {
2999           jaa = new jalview.datamodel.AlignmentAnnotation(an[i].getLabel(),
3000                   an[i].getDescription(), anot);
3001           jaa._linecolour = firstColour;
3002         }
3003         // register new annotation
3004         if (an[i].getId() != null)
3005         {
3006           annotationIds.put(an[i].getId(), jaa);
3007           jaa.annotationId = an[i].getId();
3008         }
3009         // recover sequence association
3010         String sequenceRef = an[i].getSequenceRef();
3011         if (sequenceRef != null)
3012         {
3013           // from 2.9 sequenceRef is to sequence id (JAL-1781)
3014           SequenceI sequence = seqRefIds.get(sequenceRef);
3015           if (sequence == null)
3016           {
3017             // in pre-2.9 projects sequence ref is to sequence name
3018             sequence = al.findName(sequenceRef);
3019           }
3020           if (sequence != null)
3021           {
3022             jaa.createSequenceMapping(sequence, 1, true);
3023             sequence.addAlignmentAnnotation(jaa);
3024           }
3025         }
3026         // and make a note of any group association
3027         if (an[i].getGroupRef() != null && an[i].getGroupRef().length() > 0)
3028         {
3029           List<jalview.datamodel.AlignmentAnnotation> aal = groupAnnotRefs
3030                   .get(an[i].getGroupRef());
3031           if (aal == null)
3032           {
3033             aal = new ArrayList<jalview.datamodel.AlignmentAnnotation>();
3034             groupAnnotRefs.put(an[i].getGroupRef(), aal);
3035           }
3036           aal.add(jaa);
3037         }
3038
3039         if (an[i].hasScore())
3040         {
3041           jaa.setScore(an[i].getScore());
3042         }
3043         if (an[i].hasVisible())
3044         {
3045           jaa.visible = an[i].getVisible();
3046         }
3047
3048         if (an[i].hasCentreColLabels())
3049         {
3050           jaa.centreColLabels = an[i].getCentreColLabels();
3051         }
3052
3053         if (an[i].hasScaleColLabels())
3054         {
3055           jaa.scaleColLabel = an[i].getScaleColLabels();
3056         }
3057         if (an[i].hasAutoCalculated() && an[i].isAutoCalculated())
3058         {
3059           // newer files have an 'autoCalculated' flag and store calculation
3060           // state in viewport properties
3061           jaa.autoCalculated = true; // means annotation will be marked for
3062           // update at end of load.
3063         }
3064         if (an[i].hasGraphHeight())
3065         {
3066           jaa.graphHeight = an[i].getGraphHeight();
3067         }
3068         if (an[i].hasBelowAlignment())
3069         {
3070           jaa.belowAlignment = an[i].isBelowAlignment();
3071         }
3072         jaa.setCalcId(an[i].getCalcId());
3073         if (an[i].getPropertyCount() > 0)
3074         {
3075           for (jalview.schemabinding.version2.Property prop : an[i]
3076                   .getProperty())
3077           {
3078             jaa.setProperty(prop.getName(), prop.getValue());
3079           }
3080         }
3081         if (jaa.autoCalculated)
3082         {
3083           autoAlan.add(new JvAnnotRow(i, jaa));
3084         }
3085         else
3086         // if (!autoForView)
3087         {
3088           // add autocalculated group annotation and any user created annotation
3089           // for the view
3090           al.addAnnotation(jaa);
3091         }
3092       }
3093     }
3094     // ///////////////////////
3095     // LOAD GROUPS
3096     // Create alignment markup and styles for this view
3097     if (jms.getJGroupCount() > 0)
3098     {
3099       JGroup[] groups = jms.getJGroup();
3100       boolean addAnnotSchemeGroup = false;
3101       for (int i = 0; i < groups.length; i++)
3102       {
3103         JGroup jGroup = groups[i];
3104         ColourSchemeI cs = null;
3105         if (jGroup.getColour() != null)
3106         {
3107           if (jGroup.getColour().startsWith("ucs"))
3108           {
3109             cs = getUserColourScheme(jms, jGroup.getColour());
3110           }
3111           else if (jGroup.getColour().equals("AnnotationColourGradient")
3112                   && jGroup.getAnnotationColours() != null)
3113           {
3114             addAnnotSchemeGroup = true;
3115             cs = null;
3116           }
3117           else
3118           {
3119             cs = ColourSchemeProperty.getColour(al, jGroup.getColour());
3120           }
3121
3122           if (cs != null)
3123           {
3124             cs.setThreshold(jGroup.getPidThreshold(), true);
3125           }
3126         }
3127
3128         Vector<SequenceI> seqs = new Vector<SequenceI>();
3129
3130         for (int s = 0; s < jGroup.getSeqCount(); s++)
3131         {
3132           String seqId = jGroup.getSeq(s) + "";
3133           SequenceI ts = seqRefIds.get(seqId);
3134
3135           if (ts != null)
3136           {
3137             seqs.addElement(ts);
3138           }
3139         }
3140
3141         if (seqs.size() < 1)
3142         {
3143           continue;
3144         }
3145
3146         SequenceGroup sg = new SequenceGroup(seqs, jGroup.getName(), cs,
3147                 jGroup.getDisplayBoxes(), jGroup.getDisplayText(),
3148                 jGroup.getColourText(), jGroup.getStart(), jGroup.getEnd());
3149
3150         sg.setOutlineColour(new java.awt.Color(jGroup.getOutlineColour()));
3151
3152         sg.textColour = new java.awt.Color(jGroup.getTextCol1());
3153         sg.textColour2 = new java.awt.Color(jGroup.getTextCol2());
3154         sg.setShowNonconserved(jGroup.hasShowUnconserved() ? jGroup
3155                 .isShowUnconserved() : false);
3156         sg.thresholdTextColour = jGroup.getTextColThreshold();
3157         if (jGroup.hasShowConsensusHistogram())
3158         {
3159           sg.setShowConsensusHistogram(jGroup.isShowConsensusHistogram());
3160         }
3161         ;
3162         if (jGroup.hasShowSequenceLogo())
3163         {
3164           sg.setshowSequenceLogo(jGroup.isShowSequenceLogo());
3165         }
3166         if (jGroup.hasNormaliseSequenceLogo())
3167         {
3168           sg.setNormaliseSequenceLogo(jGroup.isNormaliseSequenceLogo());
3169         }
3170         if (jGroup.hasIgnoreGapsinConsensus())
3171         {
3172           sg.setIgnoreGapsConsensus(jGroup.getIgnoreGapsinConsensus());
3173         }
3174         if (jGroup.getConsThreshold() != 0)
3175         {
3176           jalview.analysis.Conservation c = new jalview.analysis.Conservation(
3177                   "All", ResidueProperties.propHash, 3,
3178                   sg.getSequences(null), 0, sg.getWidth() - 1);
3179           c.calculate();
3180           c.verdict(false, 25);
3181           sg.cs.setConservation(c);
3182         }
3183
3184         if (jGroup.getId() != null && groupAnnotRefs.size() > 0)
3185         {
3186           // re-instate unique group/annotation row reference
3187           List<AlignmentAnnotation> jaal = groupAnnotRefs.get(jGroup
3188                   .getId());
3189           if (jaal != null)
3190           {
3191             for (AlignmentAnnotation jaa : jaal)
3192             {
3193               jaa.groupRef = sg;
3194               if (jaa.autoCalculated)
3195               {
3196                 // match up and try to set group autocalc alignment row for this
3197                 // annotation
3198                 if (jaa.label.startsWith("Consensus for "))
3199                 {
3200                   sg.setConsensus(jaa);
3201                 }
3202                 // match up and try to set group autocalc alignment row for this
3203                 // annotation
3204                 if (jaa.label.startsWith("Conservation for "))
3205                 {
3206                   sg.setConservationRow(jaa);
3207                 }
3208               }
3209             }
3210           }
3211         }
3212         al.addGroup(sg);
3213         if (addAnnotSchemeGroup)
3214         {
3215           // reconstruct the annotation colourscheme
3216           sg.cs = constructAnnotationColour(jGroup.getAnnotationColours(),
3217                   null, al, jms, false);
3218         }
3219       }
3220     }
3221     if (view == null)
3222     {
3223       // only dataset in this model, so just return.
3224       return null;
3225     }
3226     // ///////////////////////////////
3227     // LOAD VIEWPORT
3228
3229     // If we just load in the same jar file again, the sequenceSetId
3230     // will be the same, and we end up with multiple references
3231     // to the same sequenceSet. We must modify this id on load
3232     // so that each load of the file gives a unique id
3233     String uniqueSeqSetId = view.getSequenceSetId() + uniqueSetSuffix;
3234     String viewId = (view.getId() == null ? null : view.getId()
3235             + uniqueSetSuffix);
3236     AlignFrame af = null;
3237     AlignViewport av = null;
3238     // now check to see if we really need to create a new viewport.
3239     if (multipleView && viewportsAdded.size() == 0)
3240     {
3241       // We recovered an alignment for which a viewport already exists.
3242       // TODO: fix up any settings necessary for overlaying stored state onto
3243       // state recovered from another document. (may not be necessary).
3244       // we may need a binding from a viewport in memory to one recovered from
3245       // XML.
3246       // and then recover its containing af to allow the settings to be applied.
3247       // TODO: fix for vamsas demo
3248       System.err
3249               .println("About to recover a viewport for existing alignment: Sequence set ID is "
3250                       + uniqueSeqSetId);
3251       Object seqsetobj = retrieveExistingObj(uniqueSeqSetId);
3252       if (seqsetobj != null)
3253       {
3254         if (seqsetobj instanceof String)
3255         {
3256           uniqueSeqSetId = (String) seqsetobj;
3257           System.err
3258                   .println("Recovered extant sequence set ID mapping for ID : New Sequence set ID is "
3259                           + uniqueSeqSetId);
3260         }
3261         else
3262         {
3263           System.err
3264                   .println("Warning : Collision between sequence set ID string and existing jalview object mapping.");
3265         }
3266
3267       }
3268     }
3269     /**
3270      * indicate that annotation colours are applied across all groups (pre
3271      * Jalview 2.8.1 behaviour)
3272      */
3273     boolean doGroupAnnColour = Jalview2XML.isVersionStringLaterThan(
3274             "2.8.1", object.getVersion());
3275
3276     AlignmentPanel ap = null;
3277     boolean isnewview = true;
3278     if (viewId != null)
3279     {
3280       // Check to see if this alignment already has a view id == viewId
3281       jalview.gui.AlignmentPanel views[] = Desktop
3282               .getAlignmentPanels(uniqueSeqSetId);
3283       if (views != null && views.length > 0)
3284       {
3285         for (int v = 0; v < views.length; v++)
3286         {
3287           if (views[v].av.getViewId().equalsIgnoreCase(viewId))
3288           {
3289             // recover the existing alignpanel, alignframe, viewport
3290             af = views[v].alignFrame;
3291             av = views[v].av;
3292             ap = views[v];
3293             // TODO: could even skip resetting view settings if we don't want to
3294             // change the local settings from other jalview processes
3295             isnewview = false;
3296           }
3297         }
3298       }
3299     }
3300
3301     if (isnewview)
3302     {
3303       af = loadViewport(file, jseqs, hiddenSeqs, al, jms, view,
3304               uniqueSeqSetId, viewId, autoAlan);
3305       av = af.viewport;
3306       ap = af.alignPanel;
3307     }
3308
3309     /*
3310      * Load any trees, PDB structures and viewers
3311      * 
3312      * Not done if flag is false (when this method is used for New View)
3313      */
3314     if (loadTreesAndStructures)
3315     {
3316       loadTrees(jms, view, af, av, ap);
3317       loadPDBStructures(jprovider, jseqs, af, ap);
3318       loadRnaViewers(jprovider, jseqs, ap);
3319     }
3320     // and finally return.
3321     return af;
3322   }
3323
3324   /**
3325    * Instantiate and link any saved RNA (Varna) viewers. The state of the Varna
3326    * panel is restored from separate jar entries, two (gapped and trimmed) per
3327    * sequence and secondary structure.
3328    * 
3329    * Currently each viewer shows just one sequence and structure (gapped and
3330    * trimmed), however this method is designed to support multiple sequences or
3331    * structures in viewers if wanted in future.
3332    * 
3333    * @param jprovider
3334    * @param jseqs
3335    * @param ap
3336    */
3337   private void loadRnaViewers(jarInputStreamProvider jprovider,
3338           JSeq[] jseqs, AlignmentPanel ap)
3339   {
3340     /*
3341      * scan the sequences for references to viewers; create each one the first
3342      * time it is referenced, add Rna models to existing viewers
3343      */
3344     for (JSeq jseq : jseqs)
3345     {
3346       for (int i = 0; i < jseq.getRnaViewerCount(); i++)
3347       {
3348         RnaViewer viewer = jseq.getRnaViewer(i);
3349         AppVarna appVarna = findOrCreateVarnaViewer(viewer,
3350                 uniqueSetSuffix, ap);
3351
3352         for (int j = 0; j < viewer.getSecondaryStructureCount(); j++)
3353         {
3354           SecondaryStructure ss = viewer.getSecondaryStructure(j);
3355           SequenceI seq = seqRefIds.get(jseq.getId());
3356           AlignmentAnnotation ann = this.annotationIds.get(ss
3357                   .getAnnotationId());
3358
3359           /*
3360            * add the structure to the Varna display (with session state copied
3361            * from the jar to a temporary file)
3362            */
3363           boolean gapped = ss.isGapped();
3364           String rnaTitle = ss.getTitle();
3365           String sessionState = ss.getViewerState();
3366           String tempStateFile = copyJarEntry(jprovider, sessionState,
3367                   "varna");
3368           RnaModel rna = new RnaModel(rnaTitle, ann, seq, null, gapped);
3369           appVarna.addModelSession(rna, rnaTitle, tempStateFile);
3370         }
3371         appVarna.setInitialSelection(viewer.getSelectedRna());
3372       }
3373     }
3374   }
3375
3376   /**
3377    * Locate and return an already instantiated matching AppVarna, or create one
3378    * if not found
3379    * 
3380    * @param viewer
3381    * @param viewIdSuffix
3382    * @param ap
3383    * @return
3384    */
3385   protected AppVarna findOrCreateVarnaViewer(RnaViewer viewer,
3386           String viewIdSuffix, AlignmentPanel ap)
3387   {
3388     /*
3389      * on each load a suffix is appended to the saved viewId, to avoid conflicts
3390      * if load is repeated
3391      */
3392     String postLoadId = viewer.getViewId() + viewIdSuffix;
3393     for (JInternalFrame frame : getAllFrames())
3394     {
3395       if (frame instanceof AppVarna)
3396       {
3397         AppVarna varna = (AppVarna) frame;
3398         if (postLoadId.equals(varna.getViewId()))
3399         {
3400           // this viewer is already instantiated
3401           // could in future here add ap as another 'parent' of the
3402           // AppVarna window; currently just 1-to-many
3403           return varna;
3404         }
3405       }
3406     }
3407
3408     /*
3409      * viewer not found - make it
3410      */
3411     RnaViewerModel model = new RnaViewerModel(postLoadId,
3412             viewer.getTitle(), viewer.getXpos(), viewer.getYpos(),
3413             viewer.getWidth(), viewer.getHeight(),
3414             viewer.getDividerLocation());
3415     AppVarna varna = new AppVarna(model, ap);
3416
3417     return varna;
3418   }
3419
3420   /**
3421    * Load any saved trees
3422    * 
3423    * @param jms
3424    * @param view
3425    * @param af
3426    * @param av
3427    * @param ap
3428    */
3429   protected void loadTrees(JalviewModelSequence jms, Viewport view,
3430           AlignFrame af, AlignViewport av, AlignmentPanel ap)
3431   {
3432     // TODO result of automated refactoring - are all these parameters needed?
3433     try
3434     {
3435       for (int t = 0; t < jms.getTreeCount(); t++)
3436       {
3437
3438         Tree tree = jms.getTree(t);
3439
3440         TreePanel tp = (TreePanel) retrieveExistingObj(tree.getId());
3441         if (tp == null)
3442         {
3443           tp = af.ShowNewickTree(
3444                   new jalview.io.NewickFile(tree.getNewick()),
3445                   tree.getTitle(), tree.getWidth(), tree.getHeight(),
3446                   tree.getXpos(), tree.getYpos());
3447           if (tree.getId() != null)
3448           {
3449             // perhaps bind the tree id to something ?
3450           }
3451         }
3452         else
3453         {
3454           // update local tree attributes ?
3455           // TODO: should check if tp has been manipulated by user - if so its
3456           // settings shouldn't be modified
3457           tp.setTitle(tree.getTitle());
3458           tp.setBounds(new Rectangle(tree.getXpos(), tree.getYpos(), tree
3459                   .getWidth(), tree.getHeight()));
3460           tp.av = av; // af.viewport; // TODO: verify 'associate with all
3461           // views'
3462           // works still
3463           tp.treeCanvas.av = av; // af.viewport;
3464           tp.treeCanvas.ap = ap; // af.alignPanel;
3465
3466         }
3467         if (tp == null)
3468         {
3469           warn("There was a problem recovering stored Newick tree: \n"
3470                   + tree.getNewick());
3471           continue;
3472         }
3473
3474         tp.fitToWindow.setState(tree.getFitToWindow());
3475         tp.fitToWindow_actionPerformed(null);
3476
3477         if (tree.getFontName() != null)
3478         {
3479           tp.setTreeFont(new java.awt.Font(tree.getFontName(), tree
3480                   .getFontStyle(), tree.getFontSize()));
3481         }
3482         else
3483         {
3484           tp.setTreeFont(new java.awt.Font(view.getFontName(), view
3485                   .getFontStyle(), tree.getFontSize()));
3486         }
3487
3488         tp.showPlaceholders(tree.getMarkUnlinked());
3489         tp.showBootstrap(tree.getShowBootstrap());
3490         tp.showDistances(tree.getShowDistances());
3491
3492         tp.treeCanvas.threshold = tree.getThreshold();
3493
3494         if (tree.getCurrentTree())
3495         {
3496           af.viewport.setCurrentTree(tp.getTree());
3497         }
3498       }
3499
3500     } catch (Exception ex)
3501     {
3502       ex.printStackTrace();
3503     }
3504   }
3505
3506   /**
3507    * Load and link any saved structure viewers.
3508    * 
3509    * @param jprovider
3510    * @param jseqs
3511    * @param af
3512    * @param ap
3513    */
3514   protected void loadPDBStructures(jarInputStreamProvider jprovider,
3515           JSeq[] jseqs, AlignFrame af, AlignmentPanel ap)
3516   {
3517     /*
3518      * Run through all PDB ids on the alignment, and collect mappings between
3519      * distinct view ids and all sequences referring to that view.
3520      */
3521     Map<String, StructureViewerModel> structureViewers = new LinkedHashMap<String, StructureViewerModel>();
3522
3523     for (int i = 0; i < jseqs.length; i++)
3524     {
3525       if (jseqs[i].getPdbidsCount() > 0)
3526       {
3527         Pdbids[] ids = jseqs[i].getPdbids();
3528         for (int p = 0; p < ids.length; p++)
3529         {
3530           final int structureStateCount = ids[p].getStructureStateCount();
3531           for (int s = 0; s < structureStateCount; s++)
3532           {
3533             // check to see if we haven't already created this structure view
3534             final StructureState structureState = ids[p]
3535                     .getStructureState(s);
3536             String sviewid = (structureState.getViewId() == null) ? null
3537                     : structureState.getViewId() + uniqueSetSuffix;
3538             jalview.datamodel.PDBEntry jpdb = new jalview.datamodel.PDBEntry();
3539             // Originally : ids[p].getFile()
3540             // : TODO: verify external PDB file recovery still works in normal
3541             // jalview project load
3542             jpdb.setFile(loadPDBFile(jprovider, ids[p].getId()));
3543             jpdb.setId(ids[p].getId());
3544
3545             int x = structureState.getXpos();
3546             int y = structureState.getYpos();
3547             int width = structureState.getWidth();
3548             int height = structureState.getHeight();
3549
3550             // Probably don't need to do this anymore...
3551             // Desktop.desktop.getComponentAt(x, y);
3552             // TODO: NOW: check that this recovers the PDB file correctly.
3553             String pdbFile = loadPDBFile(jprovider, ids[p].getId());
3554             jalview.datamodel.SequenceI seq = seqRefIds.get(jseqs[i]
3555                     .getId() + "");
3556             if (sviewid == null)
3557             {
3558               sviewid = "_jalview_pre2_4_" + x + "," + y + "," + width
3559                       + "," + height;
3560             }
3561             if (!structureViewers.containsKey(sviewid))
3562             {
3563               structureViewers.put(sviewid,
3564                       new StructureViewerModel(x, y, width, height, false,
3565                               false, true, structureState.getViewId(),
3566                               structureState.getType()));
3567               // Legacy pre-2.7 conversion JAL-823 :
3568               // do not assume any view has to be linked for colour by
3569               // sequence
3570             }
3571
3572             // assemble String[] { pdb files }, String[] { id for each
3573             // file }, orig_fileloc, SequenceI[][] {{ seqs_file 1 }, {
3574             // seqs_file 2}, boolean[] {
3575             // linkAlignPanel,superposeWithAlignpanel}} from hash
3576             StructureViewerModel jmoldat = structureViewers.get(sviewid);
3577             jmoldat.setAlignWithPanel(jmoldat.isAlignWithPanel()
3578                     | (structureState.hasAlignwithAlignPanel() ? structureState
3579                             .getAlignwithAlignPanel() : false));
3580
3581             /*
3582              * Default colour by linked panel to false if not specified (e.g.
3583              * for pre-2.7 projects)
3584              */
3585             boolean colourWithAlignPanel = jmoldat.isColourWithAlignPanel();
3586             colourWithAlignPanel |= (structureState
3587                     .hasColourwithAlignPanel() ? structureState
3588                     .getColourwithAlignPanel() : false);
3589             jmoldat.setColourWithAlignPanel(colourWithAlignPanel);
3590
3591             /*
3592              * Default colour by viewer to true if not specified (e.g. for
3593              * pre-2.7 projects)
3594              */
3595             boolean colourByViewer = jmoldat.isColourByViewer();
3596             colourByViewer &= structureState.hasColourByJmol() ? structureState
3597                     .getColourByJmol() : true;
3598             jmoldat.setColourByViewer(colourByViewer);
3599
3600             if (jmoldat.getStateData().length() < structureState
3601                     .getContent().length())
3602             {
3603               {
3604                 jmoldat.setStateData(structureState.getContent());
3605               }
3606             }
3607             if (ids[p].getFile() != null)
3608             {
3609               File mapkey = new File(ids[p].getFile());
3610               StructureData seqstrmaps = jmoldat.getFileData().get(mapkey);
3611               if (seqstrmaps == null)
3612               {
3613                 jmoldat.getFileData().put(
3614                         mapkey,
3615                         seqstrmaps = jmoldat.new StructureData(pdbFile,
3616                                 ids[p].getId()));
3617               }
3618               if (!seqstrmaps.getSeqList().contains(seq))
3619               {
3620                 seqstrmaps.getSeqList().add(seq);
3621                 // TODO and chains?
3622               }
3623             }
3624             else
3625             {
3626               errorMessage = ("The Jmol views in this project were imported\nfrom an older version of Jalview.\nPlease review the sequence colour associations\nin the Colour by section of the Jmol View menu.\n\nIn the case of problems, see note at\nhttp://issues.jalview.org/browse/JAL-747");
3627               warn(errorMessage);
3628             }
3629           }
3630         }
3631       }
3632     }
3633     // Instantiate the associated structure views
3634     for (Entry<String, StructureViewerModel> entry : structureViewers
3635             .entrySet())
3636     {
3637       try
3638       {
3639         createOrLinkStructureViewer(entry, af, ap, jprovider);
3640       } catch (Exception e)
3641       {
3642         System.err.println("Error loading structure viewer: "
3643                 + e.getMessage());
3644         // failed - try the next one
3645       }
3646     }
3647   }
3648
3649   /**
3650    * 
3651    * @param viewerData
3652    * @param af
3653    * @param ap
3654    * @param jprovider
3655    */
3656   protected void createOrLinkStructureViewer(
3657           Entry<String, StructureViewerModel> viewerData, AlignFrame af,
3658           AlignmentPanel ap, jarInputStreamProvider jprovider)
3659   {
3660     final StructureViewerModel stateData = viewerData.getValue();
3661
3662     /*
3663      * Search for any viewer windows already open from other alignment views
3664      * that exactly match the stored structure state
3665      */
3666     StructureViewerBase comp = findMatchingViewer(viewerData);
3667
3668     if (comp != null)
3669     {
3670       linkStructureViewer(ap, comp, stateData);
3671       return;
3672     }
3673
3674     /*
3675      * From 2.9: stateData.type contains JMOL or CHIMERA, data is in jar entry
3676      * "viewer_"+stateData.viewId
3677      */
3678     if (ViewerType.CHIMERA.toString().equals(stateData.getType()))
3679     {
3680       createChimeraViewer(viewerData, af, jprovider);
3681     }
3682     else
3683     {
3684       /*
3685        * else Jmol (if pre-2.9, stateData contains JMOL state string)
3686        */
3687       createJmolViewer(viewerData, af, jprovider);
3688     }
3689   }
3690
3691   /**
3692    * Create a new Chimera viewer.
3693    * 
3694    * @param data
3695    * @param af
3696    * @param jprovider
3697    */
3698   protected void createChimeraViewer(
3699           Entry<String, StructureViewerModel> viewerData, AlignFrame af,
3700           jarInputStreamProvider jprovider)
3701   {
3702     StructureViewerModel data = viewerData.getValue();
3703     String chimeraSessionFile = data.getStateData();
3704
3705     /*
3706      * Copy Chimera session from jar entry "viewer_"+viewId to a temporary file
3707      * 
3708      * NB this is the 'saved' viewId as in the project file XML, _not_ the
3709      * 'uniquified' sviewid used to reconstruct the viewer here
3710      */
3711     String viewerJarEntryName = getViewerJarEntryName(data.getViewId());
3712     chimeraSessionFile = copyJarEntry(jprovider, viewerJarEntryName,
3713             "chimera");
3714
3715     Set<Entry<File, StructureData>> fileData = data.getFileData()
3716             .entrySet();
3717     List<PDBEntry> pdbs = new ArrayList<PDBEntry>();
3718     List<SequenceI[]> allseqs = new ArrayList<SequenceI[]>();
3719     for (Entry<File, StructureData> pdb : fileData)
3720     {
3721       String filePath = pdb.getValue().getFilePath();
3722       String pdbId = pdb.getValue().getPdbId();
3723       // pdbs.add(new PDBEntry(filePath, pdbId));
3724       pdbs.add(new PDBEntry(pdbId, null, PDBEntry.Type.PDB, filePath));
3725       final List<SequenceI> seqList = pdb.getValue().getSeqList();
3726       SequenceI[] seqs = seqList.toArray(new SequenceI[seqList.size()]);
3727       allseqs.add(seqs);
3728     }
3729
3730     boolean colourByChimera = data.isColourByViewer();
3731     boolean colourBySequence = data.isColourWithAlignPanel();
3732
3733     // TODO use StructureViewer as a factory here, see JAL-1761
3734     final PDBEntry[] pdbArray = pdbs.toArray(new PDBEntry[pdbs.size()]);
3735     final SequenceI[][] seqsArray = allseqs.toArray(new SequenceI[allseqs
3736             .size()][]);
3737     String newViewId = viewerData.getKey();
3738
3739     ChimeraViewFrame cvf = new ChimeraViewFrame(chimeraSessionFile,
3740             af.alignPanel, pdbArray, seqsArray, colourByChimera,
3741             colourBySequence, newViewId);
3742     cvf.setSize(data.getWidth(), data.getHeight());
3743     cvf.setLocation(data.getX(), data.getY());
3744   }
3745
3746   /**
3747    * Create a new Jmol window. First parse the Jmol state to translate filenames
3748    * loaded into the view, and record the order in which files are shown in the
3749    * Jmol view, so we can add the sequence mappings in same order.
3750    * 
3751    * @param viewerData
3752    * @param af
3753    * @param jprovider
3754    */
3755   protected void createJmolViewer(
3756           final Entry<String, StructureViewerModel> viewerData,
3757           AlignFrame af, jarInputStreamProvider jprovider)
3758   {
3759     final StructureViewerModel svattrib = viewerData.getValue();
3760     String state = svattrib.getStateData();
3761
3762     /*
3763      * Pre-2.9: state element value is the Jmol state string
3764      * 
3765      * 2.9+: @type is "JMOL", state data is in a Jar file member named "viewer_"
3766      * + viewId
3767      */
3768     if (ViewerType.JMOL.toString().equals(svattrib.getType()))
3769     {
3770       state = readJarEntry(jprovider,
3771               getViewerJarEntryName(svattrib.getViewId()));
3772     }
3773
3774     List<String> pdbfilenames = new ArrayList<String>();
3775     List<SequenceI[]> seqmaps = new ArrayList<SequenceI[]>();
3776     List<String> pdbids = new ArrayList<String>();
3777     StringBuilder newFileLoc = new StringBuilder(64);
3778     int cp = 0, ncp, ecp;
3779     Map<File, StructureData> oldFiles = svattrib.getFileData();
3780     while ((ncp = state.indexOf("load ", cp)) > -1)
3781     {
3782       do
3783       {
3784         // look for next filename in load statement
3785         newFileLoc.append(state.substring(cp,
3786                 ncp = (state.indexOf("\"", ncp + 1) + 1)));
3787         String oldfilenam = state.substring(ncp,
3788                 ecp = state.indexOf("\"", ncp));
3789         // recover the new mapping data for this old filename
3790         // have to normalize filename - since Jmol and jalview do
3791         // filename
3792         // translation differently.
3793         StructureData filedat = oldFiles.get(new File(oldfilenam));
3794         newFileLoc.append(Platform.escapeString(filedat.getFilePath()));
3795         pdbfilenames.add(filedat.getFilePath());
3796         pdbids.add(filedat.getPdbId());
3797         seqmaps.add(filedat.getSeqList().toArray(new SequenceI[0]));
3798         newFileLoc.append("\"");
3799         cp = ecp + 1; // advance beyond last \" and set cursor so we can
3800                       // look for next file statement.
3801       } while ((ncp = state.indexOf("/*file*/", cp)) > -1);
3802     }
3803     if (cp > 0)
3804     {
3805       // just append rest of state
3806       newFileLoc.append(state.substring(cp));
3807     }
3808     else
3809     {
3810       System.err.print("Ignoring incomplete Jmol state for PDB ids: ");
3811       newFileLoc = new StringBuilder(state);
3812       newFileLoc.append("; load append ");
3813       for (File id : oldFiles.keySet())
3814       {
3815         // add this and any other pdb files that should be present in
3816         // the viewer
3817         StructureData filedat = oldFiles.get(id);
3818         newFileLoc.append(filedat.getFilePath());
3819         pdbfilenames.add(filedat.getFilePath());
3820         pdbids.add(filedat.getPdbId());
3821         seqmaps.add(filedat.getSeqList().toArray(new SequenceI[0]));
3822         newFileLoc.append(" \"");
3823         newFileLoc.append(filedat.getFilePath());
3824         newFileLoc.append("\"");
3825
3826       }
3827       newFileLoc.append(";");
3828     }
3829
3830     if (newFileLoc.length() == 0)
3831     {
3832       return;
3833     }
3834     int histbug = newFileLoc.indexOf("history = ");
3835     if (histbug > -1)
3836     {
3837       /*
3838        * change "history = [true|false];" to "history = [1|0];"
3839        */
3840       histbug += 10;
3841       int diff = histbug == -1 ? -1 : newFileLoc.indexOf(";", histbug);
3842       String val = (diff == -1) ? null : newFileLoc
3843               .substring(histbug, diff);
3844       if (val != null && val.length() >= 4)
3845       {
3846         if (val.contains("e")) // eh? what can it be?
3847         {
3848           if (val.trim().equals("true"))
3849           {
3850             val = "1";
3851           }
3852           else
3853           {
3854             val = "0";
3855           }
3856           newFileLoc.replace(histbug, diff, val);
3857         }
3858       }
3859     }
3860
3861     final String[] pdbf = pdbfilenames.toArray(new String[pdbfilenames
3862             .size()]);
3863     final String[] id = pdbids.toArray(new String[pdbids.size()]);
3864     final SequenceI[][] sq = seqmaps
3865             .toArray(new SequenceI[seqmaps.size()][]);
3866     final String fileloc = newFileLoc.toString();
3867     final String sviewid = viewerData.getKey();
3868     final AlignFrame alf = af;
3869     final Rectangle rect = new Rectangle(svattrib.getX(), svattrib.getY(),
3870             svattrib.getWidth(), svattrib.getHeight());
3871     try
3872     {
3873       javax.swing.SwingUtilities.invokeAndWait(new Runnable()
3874       {
3875         @Override
3876         public void run()
3877         {
3878           JalviewStructureDisplayI sview = null;
3879           try
3880           {
3881             sview = new StructureViewer(alf.alignPanel
3882                     .getStructureSelectionManager()).createView(
3883                     StructureViewer.ViewerType.JMOL, pdbf, id, sq,
3884                     alf.alignPanel, svattrib, fileloc, rect, sviewid);
3885             addNewStructureViewer(sview);
3886           } catch (OutOfMemoryError ex)
3887           {
3888             new OOMWarning("restoring structure view for PDB id " + id,
3889                     (OutOfMemoryError) ex.getCause());
3890             if (sview != null && sview.isVisible())
3891             {
3892               sview.closeViewer(false);
3893               sview.setVisible(false);
3894               sview.dispose();
3895             }
3896           }
3897         }
3898       });
3899     } catch (InvocationTargetException ex)
3900     {
3901       warn("Unexpected error when opening Jmol view.", ex);
3902
3903     } catch (InterruptedException e)
3904     {
3905       // e.printStackTrace();
3906     }
3907
3908   }
3909
3910   /**
3911    * Generates a name for the entry in the project jar file to hold state
3912    * information for a structure viewer
3913    * 
3914    * @param viewId
3915    * @return
3916    */
3917   protected String getViewerJarEntryName(String viewId)
3918   {
3919     return VIEWER_PREFIX + viewId;
3920   }
3921
3922   /**
3923    * Returns any open frame that matches given structure viewer data. The match
3924    * is based on the unique viewId, or (for older project versions) the frame's
3925    * geometry.
3926    * 
3927    * @param viewerData
3928    * @return
3929    */
3930   protected StructureViewerBase findMatchingViewer(
3931           Entry<String, StructureViewerModel> viewerData)
3932   {
3933     final String sviewid = viewerData.getKey();
3934     final StructureViewerModel svattrib = viewerData.getValue();
3935     StructureViewerBase comp = null;
3936     JInternalFrame[] frames = getAllFrames();
3937     for (JInternalFrame frame : frames)
3938     {
3939       if (frame instanceof StructureViewerBase)
3940       {
3941         /*
3942          * Post jalview 2.4 schema includes structure view id
3943          */
3944         if (sviewid != null
3945                 && ((StructureViewerBase) frame).getViewId()
3946                         .equals(sviewid))
3947         {
3948           comp = (StructureViewerBase) frame;
3949           break; // break added in 2.9
3950         }
3951         /*
3952          * Otherwise test for matching position and size of viewer frame
3953          */
3954         else if (frame.getX() == svattrib.getX()
3955                 && frame.getY() == svattrib.getY()
3956                 && frame.getHeight() == svattrib.getHeight()
3957                 && frame.getWidth() == svattrib.getWidth())
3958         {
3959           comp = (StructureViewerBase) frame;
3960           // no break in faint hope of an exact match on viewId
3961         }
3962       }
3963     }
3964     return comp;
3965   }
3966
3967   /**
3968    * Link an AlignmentPanel to an existing structure viewer.
3969    * 
3970    * @param ap
3971    * @param viewer
3972    * @param oldFiles
3973    * @param useinViewerSuperpos
3974    * @param usetoColourbyseq
3975    * @param viewerColouring
3976    */
3977   protected void linkStructureViewer(AlignmentPanel ap,
3978           StructureViewerBase viewer, StructureViewerModel stateData)
3979   {
3980     // NOTE: if the jalview project is part of a shared session then
3981     // view synchronization should/could be done here.
3982
3983     final boolean useinViewerSuperpos = stateData.isAlignWithPanel();
3984     final boolean usetoColourbyseq = stateData.isColourWithAlignPanel();
3985     final boolean viewerColouring = stateData.isColourByViewer();
3986     Map<File, StructureData> oldFiles = stateData.getFileData();
3987
3988     /*
3989      * Add mapping for sequences in this view to an already open viewer
3990      */
3991     final AAStructureBindingModel binding = viewer.getBinding();
3992     for (File id : oldFiles.keySet())
3993     {
3994       // add this and any other pdb files that should be present in the
3995       // viewer
3996       StructureData filedat = oldFiles.get(id);
3997       String pdbFile = filedat.getFilePath();
3998       SequenceI[] seq = filedat.getSeqList().toArray(new SequenceI[0]);
3999       binding.getSsm().setMapping(seq, null, pdbFile,
4000               jalview.io.AppletFormatAdapter.FILE);
4001       binding.addSequenceForStructFile(pdbFile, seq);
4002     }
4003     // and add the AlignmentPanel's reference to the view panel
4004     viewer.addAlignmentPanel(ap);
4005     if (useinViewerSuperpos)
4006     {
4007       viewer.useAlignmentPanelForSuperposition(ap);
4008     }
4009     else
4010     {
4011       viewer.excludeAlignmentPanelForSuperposition(ap);
4012     }
4013     if (usetoColourbyseq)
4014     {
4015       viewer.useAlignmentPanelForColourbyseq(ap, !viewerColouring);
4016     }
4017     else
4018     {
4019       viewer.excludeAlignmentPanelForColourbyseq(ap);
4020     }
4021   }
4022
4023   /**
4024    * Get all frames within the Desktop.
4025    * 
4026    * @return
4027    */
4028   protected JInternalFrame[] getAllFrames()
4029   {
4030     JInternalFrame[] frames = null;
4031     // TODO is this necessary - is it safe - risk of hanging?
4032     do
4033     {
4034       try
4035       {
4036         frames = Desktop.desktop.getAllFrames();
4037       } catch (ArrayIndexOutOfBoundsException e)
4038       {
4039         // occasional No such child exceptions are thrown here...
4040         try
4041         {
4042           Thread.sleep(10);
4043         } catch (InterruptedException f)
4044         {
4045         }
4046       }
4047     } while (frames == null);
4048     return frames;
4049   }
4050
4051   /**
4052    * Answers true if 'version' is equal to or later than 'supported', where each
4053    * is formatted as major/minor versions like "2.8.3" or "2.3.4b1" for bugfix
4054    * changes. Development and test values for 'version' are leniently treated
4055    * i.e. answer true.
4056    * 
4057    * @param supported
4058    *          - minimum version we are comparing against
4059    * @param version
4060    *          - version of data being processsed
4061    * @return
4062    */
4063   public static boolean isVersionStringLaterThan(String supported,
4064           String version)
4065   {
4066     if (supported == null || version == null
4067             || version.equalsIgnoreCase("DEVELOPMENT BUILD")
4068             || version.equalsIgnoreCase("Test")
4069             || version.equalsIgnoreCase("AUTOMATED BUILD"))
4070     {
4071       System.err.println("Assuming project file with "
4072               + (version == null ? "null" : version)
4073               + " is compatible with Jalview version " + supported);
4074       return true;
4075     }
4076     else
4077     {
4078       return StringUtils.compareVersions(version, supported, "b") >= 0;
4079     }
4080   }
4081
4082   Vector<JalviewStructureDisplayI> newStructureViewers = null;
4083
4084   protected void addNewStructureViewer(JalviewStructureDisplayI sview)
4085   {
4086     if (newStructureViewers != null)
4087     {
4088       sview.getBinding().setFinishedLoadingFromArchive(false);
4089       newStructureViewers.add(sview);
4090     }
4091   }
4092
4093   protected void setLoadingFinishedForNewStructureViewers()
4094   {
4095     if (newStructureViewers != null)
4096     {
4097       for (JalviewStructureDisplayI sview : newStructureViewers)
4098       {
4099         sview.getBinding().setFinishedLoadingFromArchive(true);
4100       }
4101       newStructureViewers.clear();
4102       newStructureViewers = null;
4103     }
4104   }
4105
4106   AlignFrame loadViewport(String file, JSeq[] JSEQ,
4107           List<SequenceI> hiddenSeqs, AlignmentI al,
4108           JalviewModelSequence jms, Viewport view, String uniqueSeqSetId,
4109           String viewId, List<JvAnnotRow> autoAlan)
4110   {
4111     AlignFrame af = null;
4112     af = new AlignFrame(al, view.getWidth(), view.getHeight(),
4113             uniqueSeqSetId, viewId);
4114
4115     af.setFileName(file, "Jalview");
4116
4117     for (int i = 0; i < JSEQ.length; i++)
4118     {
4119       af.viewport.setSequenceColour(af.viewport.getAlignment()
4120               .getSequenceAt(i), new java.awt.Color(JSEQ[i].getColour()));
4121     }
4122
4123     if (al.hasSeqrep())
4124     {
4125       af.getViewport().setColourByReferenceSeq(true);
4126       af.getViewport().setDisplayReferenceSeq(true);
4127     }
4128
4129     af.viewport.setGatherViewsHere(view.getGatheredViews());
4130
4131     if (view.getSequenceSetId() != null)
4132     {
4133       AlignmentViewport av = viewportsAdded.get(uniqueSeqSetId);
4134
4135       af.viewport.setSequenceSetId(uniqueSeqSetId);
4136       if (av != null)
4137       {
4138         // propagate shared settings to this new view
4139         af.viewport.setHistoryList(av.getHistoryList());
4140         af.viewport.setRedoList(av.getRedoList());
4141       }
4142       else
4143       {
4144         viewportsAdded.put(uniqueSeqSetId, af.viewport);
4145       }
4146       // TODO: check if this method can be called repeatedly without
4147       // side-effects if alignpanel already registered.
4148       PaintRefresher.Register(af.alignPanel, uniqueSeqSetId);
4149     }
4150     // apply Hidden regions to view.
4151     if (hiddenSeqs != null)
4152     {
4153       for (int s = 0; s < JSEQ.length; s++)
4154       {
4155         SequenceGroup hidden = new SequenceGroup();
4156         boolean isRepresentative = false;
4157         for (int r = 0; r < JSEQ[s].getHiddenSequencesCount(); r++)
4158         {
4159           isRepresentative = true;
4160           SequenceI sequenceToHide = al.getSequenceAt(JSEQ[s]
4161                   .getHiddenSequences(r));
4162           hidden.addSequence(sequenceToHide, false);
4163           // remove from hiddenSeqs list so we don't try to hide it twice
4164           hiddenSeqs.remove(sequenceToHide);
4165         }
4166         if (isRepresentative)
4167         {
4168           SequenceI representativeSequence = al.getSequenceAt(s);
4169           hidden.addSequence(representativeSequence, false);
4170           af.viewport.hideRepSequences(representativeSequence, hidden);
4171         }
4172       }
4173
4174       SequenceI[] hseqs = hiddenSeqs.toArray(new SequenceI[hiddenSeqs
4175               .size()]);
4176       af.viewport.hideSequence(hseqs);
4177
4178     }
4179     // recover view properties and display parameters
4180     if (view.getViewName() != null)
4181     {
4182       af.viewport.viewName = view.getViewName();
4183       af.setInitialTabVisible();
4184     }
4185     af.setBounds(view.getXpos(), view.getYpos(), view.getWidth(),
4186             view.getHeight());
4187
4188     af.viewport.setShowAnnotation(view.getShowAnnotation());
4189     af.viewport.setAbovePIDThreshold(view.getPidSelected());
4190
4191     af.viewport.setColourText(view.getShowColourText());
4192
4193     af.viewport.setConservationSelected(view.getConservationSelected());
4194     af.viewport.setShowJVSuffix(view.getShowFullId());
4195     af.viewport.setRightAlignIds(view.getRightAlignIds());
4196     af.viewport.setFont(
4197             new java.awt.Font(view.getFontName(), view.getFontStyle(), view
4198                     .getFontSize()), true);
4199     ViewStyleI vs = af.viewport.getViewStyle();
4200     vs.setScaleProteinAsCdna(view.isScaleProteinAsCdna());
4201     af.viewport.setViewStyle(vs);
4202     // TODO: allow custom charWidth/Heights to be restored by updating them
4203     // after setting font - which means set above to false
4204     af.viewport.setRenderGaps(view.getRenderGaps());
4205     af.viewport.setWrapAlignment(view.getWrapAlignment());
4206     af.viewport.setShowAnnotation(view.getShowAnnotation());
4207
4208     af.viewport.setShowBoxes(view.getShowBoxes());
4209
4210     af.viewport.setShowText(view.getShowText());
4211
4212     af.viewport.setTextColour(new java.awt.Color(view.getTextCol1()));
4213     af.viewport.setTextColour2(new java.awt.Color(view.getTextCol2()));
4214     af.viewport.setThresholdTextColour(view.getTextColThreshold());
4215     af.viewport.setShowUnconserved(view.hasShowUnconserved() ? view
4216             .isShowUnconserved() : false);
4217     af.viewport.setStartRes(view.getStartRes());
4218     af.viewport.setStartSeq(view.getStartSeq());
4219     af.alignPanel.updateLayout();
4220     ColourSchemeI cs = null;
4221     // apply colourschemes
4222     if (view.getBgColour() != null)
4223     {
4224       if (view.getBgColour().startsWith("ucs"))
4225       {
4226         cs = getUserColourScheme(jms, view.getBgColour());
4227       }
4228       else if (view.getBgColour().startsWith("Annotation"))
4229       {
4230         AnnotationColours viewAnnColour = view.getAnnotationColours();
4231         cs = constructAnnotationColour(viewAnnColour, af, al, jms, true);
4232
4233         // annpos
4234
4235       }
4236       else
4237       {
4238         cs = ColourSchemeProperty.getColour(al, view.getBgColour());
4239       }
4240
4241       if (cs != null)
4242       {
4243         cs.setThreshold(view.getPidThreshold(), true);
4244         cs.setConsensus(af.viewport.getSequenceConsensusHash());
4245       }
4246     }
4247
4248     af.viewport.setGlobalColourScheme(cs);
4249     af.viewport.setColourAppliesToAllGroups(false);
4250
4251     if (view.getConservationSelected() && cs != null)
4252     {
4253       cs.setConservationInc(view.getConsThreshold());
4254     }
4255
4256     af.changeColour(cs);
4257
4258     af.viewport.setColourAppliesToAllGroups(true);
4259
4260     af.viewport.setShowSequenceFeatures(view.getShowSequenceFeatures());
4261
4262     if (view.hasCentreColumnLabels())
4263     {
4264       af.viewport.setCentreColumnLabels(view.getCentreColumnLabels());
4265     }
4266     if (view.hasIgnoreGapsinConsensus())
4267     {
4268       af.viewport.setIgnoreGapsConsensus(view.getIgnoreGapsinConsensus(),
4269               null);
4270     }
4271     if (view.hasFollowHighlight())
4272     {
4273       af.viewport.setFollowHighlight(view.getFollowHighlight());
4274     }
4275     if (view.hasFollowSelection())
4276     {
4277       af.viewport.followSelection = view.getFollowSelection();
4278     }
4279     if (view.hasShowConsensusHistogram())
4280     {
4281       af.viewport.setShowConsensusHistogram(view
4282               .getShowConsensusHistogram());
4283     }
4284     else
4285     {
4286       af.viewport.setShowConsensusHistogram(true);
4287     }
4288     if (view.hasShowSequenceLogo())
4289     {
4290       af.viewport.setShowSequenceLogo(view.getShowSequenceLogo());
4291     }
4292     else
4293     {
4294       af.viewport.setShowSequenceLogo(false);
4295     }
4296     if (view.hasNormaliseSequenceLogo())
4297     {
4298       af.viewport.setNormaliseSequenceLogo(view.getNormaliseSequenceLogo());
4299     }
4300     if (view.hasShowDbRefTooltip())
4301     {
4302       af.viewport.setShowDBRefs(view.getShowDbRefTooltip());
4303     }
4304     if (view.hasShowNPfeatureTooltip())
4305     {
4306       af.viewport.setShowNPFeats(view.hasShowNPfeatureTooltip());
4307     }
4308     if (view.hasShowGroupConsensus())
4309     {
4310       af.viewport.setShowGroupConsensus(view.getShowGroupConsensus());
4311     }
4312     else
4313     {
4314       af.viewport.setShowGroupConsensus(false);
4315     }
4316     if (view.hasShowGroupConservation())
4317     {
4318       af.viewport.setShowGroupConservation(view.getShowGroupConservation());
4319     }
4320     else
4321     {
4322       af.viewport.setShowGroupConservation(false);
4323     }
4324
4325     // recover featre settings
4326     if (jms.getFeatureSettings() != null)
4327     {
4328       FeaturesDisplayed fdi;
4329       af.viewport.setFeaturesDisplayed(fdi = new FeaturesDisplayed());
4330       String[] renderOrder = new String[jms.getFeatureSettings()
4331               .getSettingCount()];
4332       Map<String, FeatureColourI> featureColours = new Hashtable<String, FeatureColourI>();
4333       Map<String, Float> featureOrder = new Hashtable<String, Float>();
4334
4335       for (int fs = 0; fs < jms.getFeatureSettings().getSettingCount(); fs++)
4336       {
4337         Setting setting = jms.getFeatureSettings().getSetting(fs);
4338         if (setting.hasMincolour())
4339         {
4340           FeatureColourI gc = setting.hasMin() ? new FeatureColour(
4341                   new Color(setting.getMincolour()), new Color(
4342                           setting.getColour()), setting.getMin(),
4343                   setting.getMax()) : new FeatureColour(new Color(
4344                   setting.getMincolour()), new Color(setting.getColour()),
4345                   0, 1);
4346           if (setting.hasThreshold())
4347           {
4348             gc.setThreshold(setting.getThreshold());
4349             int threshstate = setting.getThreshstate();
4350             // -1 = None, 0 = Below, 1 = Above threshold
4351             if (threshstate == 0)
4352             {
4353               gc.setBelowThreshold(true);
4354             }
4355             else if (threshstate == 1)
4356             {
4357               gc.setAboveThreshold(true);
4358             }
4359           }
4360           gc.setAutoScaled(true); // default
4361           if (setting.hasAutoScale())
4362           {
4363             gc.setAutoScaled(setting.getAutoScale());
4364           }
4365           if (setting.hasColourByLabel())
4366           {
4367             gc.setColourByLabel(setting.getColourByLabel());
4368           }
4369           // and put in the feature colour table.
4370           featureColours.put(setting.getType(), gc);
4371         }
4372         else
4373         {
4374           featureColours.put(setting.getType(), new FeatureColour(
4375                   new Color(setting.getColour())));
4376         }
4377         renderOrder[fs] = setting.getType();
4378         if (setting.hasOrder())
4379         {
4380           featureOrder.put(setting.getType(), setting.getOrder());
4381         }
4382         else
4383         {
4384           featureOrder.put(setting.getType(), new Float(fs
4385                   / jms.getFeatureSettings().getSettingCount()));
4386         }
4387         if (setting.getDisplay())
4388         {
4389           fdi.setVisible(setting.getType());
4390         }
4391       }
4392       Map<String, Boolean> fgtable = new Hashtable<String, Boolean>();
4393       for (int gs = 0; gs < jms.getFeatureSettings().getGroupCount(); gs++)
4394       {
4395         Group grp = jms.getFeatureSettings().getGroup(gs);
4396         fgtable.put(grp.getName(), new Boolean(grp.getDisplay()));
4397       }
4398       // FeatureRendererSettings frs = new FeatureRendererSettings(renderOrder,
4399       // fgtable, featureColours, jms.getFeatureSettings().hasTransparency() ?
4400       // jms.getFeatureSettings().getTransparency() : 0.0, featureOrder);
4401       FeatureRendererSettings frs = new FeatureRendererSettings(
4402               renderOrder, fgtable, featureColours, 1.0f, featureOrder);
4403       af.alignPanel.getSeqPanel().seqCanvas.getFeatureRenderer()
4404               .transferSettings(frs);
4405
4406     }
4407
4408     if (view.getHiddenColumnsCount() > 0)
4409     {
4410       for (int c = 0; c < view.getHiddenColumnsCount(); c++)
4411       {
4412         af.viewport.hideColumns(view.getHiddenColumns(c).getStart(), view
4413                 .getHiddenColumns(c).getEnd() // +1
4414                 );
4415       }
4416     }
4417     if (view.getCalcIdParam() != null)
4418     {
4419       for (CalcIdParam calcIdParam : view.getCalcIdParam())
4420       {
4421         if (calcIdParam != null)
4422         {
4423           if (recoverCalcIdParam(calcIdParam, af.viewport))
4424           {
4425           }
4426           else
4427           {
4428             warn("Couldn't recover parameters for "
4429                     + calcIdParam.getCalcId());
4430           }
4431         }
4432       }
4433     }
4434     af.setMenusFromViewport(af.viewport);
4435
4436     // TODO: we don't need to do this if the viewport is aready visible.
4437     /*
4438      * Add the AlignFrame to the desktop (it may be 'gathered' later), unless it
4439      * has a 'cdna/protein complement' view, in which case save it in order to
4440      * populate a SplitFrame once all views have been read in.
4441      */
4442     String complementaryViewId = view.getComplementId();
4443     if (complementaryViewId == null)
4444     {
4445       Desktop.addInternalFrame(af, view.getTitle(), view.getWidth(),
4446               view.getHeight());
4447       // recompute any autoannotation
4448       af.alignPanel.updateAnnotation(false, true);
4449       reorderAutoannotation(af, al, autoAlan);
4450       af.alignPanel.alignmentChanged();
4451     }
4452     else
4453     {
4454       splitFrameCandidates.put(view, af);
4455     }
4456     return af;
4457   }
4458
4459   private ColourSchemeI constructAnnotationColour(
4460           AnnotationColours viewAnnColour, AlignFrame af, AlignmentI al,
4461           JalviewModelSequence jms, boolean checkGroupAnnColour)
4462   {
4463     boolean propagateAnnColour = false;
4464     ColourSchemeI cs = null;
4465     AlignmentI annAlignment = af != null ? af.viewport.getAlignment() : al;
4466     if (checkGroupAnnColour && al.getGroups() != null
4467             && al.getGroups().size() > 0)
4468     {
4469       // pre 2.8.1 behaviour
4470       // check to see if we should transfer annotation colours
4471       propagateAnnColour = true;
4472       for (jalview.datamodel.SequenceGroup sg : al.getGroups())
4473       {
4474         if (sg.cs instanceof AnnotationColourGradient)
4475         {
4476           propagateAnnColour = false;
4477         }
4478       }
4479     }
4480     // int find annotation
4481     if (annAlignment.getAlignmentAnnotation() != null)
4482     {
4483       for (int i = 0; i < annAlignment.getAlignmentAnnotation().length; i++)
4484       {
4485         if (annAlignment.getAlignmentAnnotation()[i].label
4486                 .equals(viewAnnColour.getAnnotation()))
4487         {
4488           if (annAlignment.getAlignmentAnnotation()[i].getThreshold() == null)
4489           {
4490             annAlignment.getAlignmentAnnotation()[i]
4491                     .setThreshold(new jalview.datamodel.GraphLine(
4492                             viewAnnColour.getThreshold(), "Threshold",
4493                             java.awt.Color.black)
4494
4495                     );
4496           }
4497
4498           if (viewAnnColour.getColourScheme().equals("None"))
4499           {
4500             cs = new AnnotationColourGradient(
4501                     annAlignment.getAlignmentAnnotation()[i],
4502                     new java.awt.Color(viewAnnColour.getMinColour()),
4503                     new java.awt.Color(viewAnnColour.getMaxColour()),
4504                     viewAnnColour.getAboveThreshold());
4505           }
4506           else if (viewAnnColour.getColourScheme().startsWith("ucs"))
4507           {
4508             cs = new AnnotationColourGradient(
4509                     annAlignment.getAlignmentAnnotation()[i],
4510                     getUserColourScheme(jms,
4511                             viewAnnColour.getColourScheme()),
4512                     viewAnnColour.getAboveThreshold());
4513           }
4514           else
4515           {
4516             cs = new AnnotationColourGradient(
4517                     annAlignment.getAlignmentAnnotation()[i],
4518                     ColourSchemeProperty.getColour(al,
4519                             viewAnnColour.getColourScheme()),
4520                     viewAnnColour.getAboveThreshold());
4521           }
4522           if (viewAnnColour.hasPerSequence())
4523           {
4524             ((AnnotationColourGradient) cs).setSeqAssociated(viewAnnColour
4525                     .isPerSequence());
4526           }
4527           if (viewAnnColour.hasPredefinedColours())
4528           {
4529             ((AnnotationColourGradient) cs)
4530                     .setPredefinedColours(viewAnnColour
4531                             .isPredefinedColours());
4532           }
4533           if (propagateAnnColour && al.getGroups() != null)
4534           {
4535             // Also use these settings for all the groups
4536             for (int g = 0; g < al.getGroups().size(); g++)
4537             {
4538               jalview.datamodel.SequenceGroup sg = al.getGroups().get(g);
4539
4540               if (sg.cs == null)
4541               {
4542                 continue;
4543               }
4544
4545               /*
4546                * if (viewAnnColour.getColourScheme().equals("None" )) { sg.cs =
4547                * new AnnotationColourGradient(
4548                * annAlignment.getAlignmentAnnotation()[i], new
4549                * java.awt.Color(viewAnnColour. getMinColour()), new
4550                * java.awt.Color(viewAnnColour. getMaxColour()),
4551                * viewAnnColour.getAboveThreshold()); } else
4552                */
4553               {
4554                 sg.cs = new AnnotationColourGradient(
4555                         annAlignment.getAlignmentAnnotation()[i], sg.cs,
4556                         viewAnnColour.getAboveThreshold());
4557                 if (cs instanceof AnnotationColourGradient)
4558                 {
4559                   if (viewAnnColour.hasPerSequence())
4560                   {
4561                     ((AnnotationColourGradient) cs)
4562                             .setSeqAssociated(viewAnnColour.isPerSequence());
4563                   }
4564                   if (viewAnnColour.hasPredefinedColours())
4565                   {
4566                     ((AnnotationColourGradient) cs)
4567                             .setPredefinedColours(viewAnnColour
4568                                     .isPredefinedColours());
4569                   }
4570                 }
4571               }
4572
4573             }
4574           }
4575
4576           break;
4577         }
4578
4579       }
4580     }
4581     return cs;
4582   }
4583
4584   private void reorderAutoannotation(AlignFrame af, AlignmentI al,
4585           List<JvAnnotRow> autoAlan)
4586   {
4587     // copy over visualization settings for autocalculated annotation in the
4588     // view
4589     if (al.getAlignmentAnnotation() != null)
4590     {
4591       /**
4592        * Kludge for magic autoannotation names (see JAL-811)
4593        */
4594       String[] magicNames = new String[] { "Consensus", "Quality",
4595           "Conservation" };
4596       JvAnnotRow nullAnnot = new JvAnnotRow(-1, null);
4597       Hashtable<String, JvAnnotRow> visan = new Hashtable<String, JvAnnotRow>();
4598       for (String nm : magicNames)
4599       {
4600         visan.put(nm, nullAnnot);
4601       }
4602       for (JvAnnotRow auan : autoAlan)
4603       {
4604         visan.put(auan.template.label
4605                 + (auan.template.getCalcId() == null ? "" : "\t"
4606                         + auan.template.getCalcId()), auan);
4607       }
4608       int hSize = al.getAlignmentAnnotation().length;
4609       List<JvAnnotRow> reorder = new ArrayList<JvAnnotRow>();
4610       // work through any autoCalculated annotation already on the view
4611       // removing it if it should be placed in a different location on the
4612       // annotation panel.
4613       List<String> remains = new ArrayList<String>(visan.keySet());
4614       for (int h = 0; h < hSize; h++)
4615       {
4616         jalview.datamodel.AlignmentAnnotation jalan = al
4617                 .getAlignmentAnnotation()[h];
4618         if (jalan.autoCalculated)
4619         {
4620           String k;
4621           JvAnnotRow valan = visan.get(k = jalan.label);
4622           if (jalan.getCalcId() != null)
4623           {
4624             valan = visan.get(k = jalan.label + "\t" + jalan.getCalcId());
4625           }
4626
4627           if (valan != null)
4628           {
4629             // delete the auto calculated row from the alignment
4630             al.deleteAnnotation(jalan, false);
4631             remains.remove(k);
4632             hSize--;
4633             h--;
4634             if (valan != nullAnnot)
4635             {
4636               if (jalan != valan.template)
4637               {
4638                 // newly created autoannotation row instance
4639                 // so keep a reference to the visible annotation row
4640                 // and copy over all relevant attributes
4641                 if (valan.template.graphHeight >= 0)
4642
4643                 {
4644                   jalan.graphHeight = valan.template.graphHeight;
4645                 }
4646                 jalan.visible = valan.template.visible;
4647               }
4648               reorder.add(new JvAnnotRow(valan.order, jalan));
4649             }
4650           }
4651         }
4652       }
4653       // Add any (possibly stale) autocalculated rows that were not appended to
4654       // the view during construction
4655       for (String other : remains)
4656       {
4657         JvAnnotRow othera = visan.get(other);
4658         if (othera != nullAnnot && othera.template.getCalcId() != null
4659                 && othera.template.getCalcId().length() > 0)
4660         {
4661           reorder.add(othera);
4662         }
4663       }
4664       // now put the automatic annotation in its correct place
4665       int s = 0, srt[] = new int[reorder.size()];
4666       JvAnnotRow[] rws = new JvAnnotRow[reorder.size()];
4667       for (JvAnnotRow jvar : reorder)
4668       {
4669         rws[s] = jvar;
4670         srt[s++] = jvar.order;
4671       }
4672       reorder.clear();
4673       jalview.util.QuickSort.sort(srt, rws);
4674       // and re-insert the annotation at its correct position
4675       for (JvAnnotRow jvar : rws)
4676       {
4677         al.addAnnotation(jvar.template, jvar.order);
4678       }
4679       af.alignPanel.adjustAnnotationHeight();
4680     }
4681   }
4682
4683   Hashtable skipList = null;
4684
4685   /**
4686    * TODO remove this method
4687    * 
4688    * @param view
4689    * @return AlignFrame bound to sequenceSetId from view, if one exists. private
4690    *         AlignFrame getSkippedFrame(Viewport view) { if (skipList==null) {
4691    *         throw new Error("Implementation Error. No skipList defined for this
4692    *         Jalview2XML instance."); } return (AlignFrame)
4693    *         skipList.get(view.getSequenceSetId()); }
4694    */
4695
4696   /**
4697    * Check if the Jalview view contained in object should be skipped or not.
4698    * 
4699    * @param object
4700    * @return true if view's sequenceSetId is a key in skipList
4701    */
4702   private boolean skipViewport(JalviewModel object)
4703   {
4704     if (skipList == null)
4705     {
4706       return false;
4707     }
4708     String id;
4709     if (skipList.containsKey(id = object.getJalviewModelSequence()
4710             .getViewport()[0].getSequenceSetId()))
4711     {
4712       if (Cache.log != null && Cache.log.isDebugEnabled())
4713       {
4714         Cache.log.debug("Skipping seuqence set id " + id);
4715       }
4716       return true;
4717     }
4718     return false;
4719   }
4720
4721   public void addToSkipList(AlignFrame af)
4722   {
4723     if (skipList == null)
4724     {
4725       skipList = new Hashtable();
4726     }
4727     skipList.put(af.getViewport().getSequenceSetId(), af);
4728   }
4729
4730   public void clearSkipList()
4731   {
4732     if (skipList != null)
4733     {
4734       skipList.clear();
4735       skipList = null;
4736     }
4737   }
4738
4739   private void recoverDatasetFor(SequenceSet vamsasSet, AlignmentI al,
4740           boolean ignoreUnrefed)
4741   {
4742     jalview.datamodel.AlignmentI ds = getDatasetFor(vamsasSet
4743             .getDatasetId());
4744     Vector dseqs = null;
4745     if (ds == null)
4746     {
4747       // create a list of new dataset sequences
4748       dseqs = new Vector();
4749     }
4750     for (int i = 0, iSize = vamsasSet.getSequenceCount(); i < iSize; i++)
4751     {
4752       Sequence vamsasSeq = vamsasSet.getSequence(i);
4753       ensureJalviewDatasetSequence(vamsasSeq, ds, dseqs, ignoreUnrefed);
4754     }
4755     // create a new dataset
4756     if (ds == null)
4757     {
4758       SequenceI[] dsseqs = new SequenceI[dseqs.size()];
4759       dseqs.copyInto(dsseqs);
4760       ds = new jalview.datamodel.Alignment(dsseqs);
4761       debug("Created new dataset " + vamsasSet.getDatasetId()
4762               + " for alignment " + System.identityHashCode(al));
4763       addDatasetRef(vamsasSet.getDatasetId(), ds);
4764     }
4765     // set the dataset for the newly imported alignment.
4766     if (al.getDataset() == null && !ignoreUnrefed)
4767     {
4768       al.setDataset(ds);
4769     }
4770   }
4771
4772   /**
4773    * 
4774    * @param vamsasSeq
4775    *          sequence definition to create/merge dataset sequence for
4776    * @param ds
4777    *          dataset alignment
4778    * @param dseqs
4779    *          vector to add new dataset sequence to
4780    */
4781   private void ensureJalviewDatasetSequence(Sequence vamsasSeq,
4782           AlignmentI ds, Vector dseqs, boolean ignoreUnrefed)
4783   {
4784     // JBP TODO: Check this is called for AlCodonFrames to support recovery of
4785     // xRef Codon Maps
4786     SequenceI sq = seqRefIds.get(vamsasSeq.getId());
4787     SequenceI dsq = null;
4788     if (sq != null && sq.getDatasetSequence() != null)
4789     {
4790       dsq = sq.getDatasetSequence();
4791     }
4792     if (sq == null && ignoreUnrefed)
4793     {
4794       return;
4795     }
4796     String sqid = vamsasSeq.getDsseqid();
4797     if (dsq == null)
4798     {
4799       // need to create or add a new dataset sequence reference to this sequence
4800       if (sqid != null)
4801       {
4802         dsq = seqRefIds.get(sqid);
4803       }
4804       // check again
4805       if (dsq == null)
4806       {
4807         // make a new dataset sequence
4808         dsq = sq.createDatasetSequence();
4809         if (sqid == null)
4810         {
4811           // make up a new dataset reference for this sequence
4812           sqid = seqHash(dsq);
4813         }
4814         dsq.setVamsasId(uniqueSetSuffix + sqid);
4815         seqRefIds.put(sqid, dsq);
4816         if (ds == null)
4817         {
4818           if (dseqs != null)
4819           {
4820             dseqs.addElement(dsq);
4821           }
4822         }
4823         else
4824         {
4825           ds.addSequence(dsq);
4826         }
4827       }
4828       else
4829       {
4830         if (sq != dsq)
4831         { // make this dataset sequence sq's dataset sequence
4832           sq.setDatasetSequence(dsq);
4833           // and update the current dataset alignment
4834           if (ds == null)
4835           {
4836             if (dseqs != null)
4837             {
4838               if (!dseqs.contains(dsq))
4839               {
4840                 dseqs.add(dsq);
4841               }
4842             }
4843             else
4844             {
4845               if (ds.findIndex(dsq) < 0)
4846               {
4847                 ds.addSequence(dsq);
4848               }
4849             }
4850           }
4851         }
4852       }
4853     }
4854     // TODO: refactor this as a merge dataset sequence function
4855     // now check that sq (the dataset sequence) sequence really is the union of
4856     // all references to it
4857     // boolean pre = sq.getStart() < dsq.getStart();
4858     // boolean post = sq.getEnd() > dsq.getEnd();
4859     // if (pre || post)
4860     if (sq != dsq)
4861     {
4862       // StringBuffer sb = new StringBuffer();
4863       String newres = jalview.analysis.AlignSeq.extractGaps(
4864               jalview.util.Comparison.GapChars, sq.getSequenceAsString());
4865       if (!newres.equalsIgnoreCase(dsq.getSequenceAsString())
4866               && newres.length() > dsq.getLength())
4867       {
4868         // Update with the longer sequence.
4869         synchronized (dsq)
4870         {
4871           /*
4872            * if (pre) { sb.insert(0, newres .substring(0, dsq.getStart() -
4873            * sq.getStart())); dsq.setStart(sq.getStart()); } if (post) {
4874            * sb.append(newres.substring(newres.length() - sq.getEnd() -
4875            * dsq.getEnd())); dsq.setEnd(sq.getEnd()); }
4876            */
4877           dsq.setSequence(newres);
4878         }
4879         // TODO: merges will never happen if we 'know' we have the real dataset
4880         // sequence - this should be detected when id==dssid
4881         System.err
4882                 .println("DEBUG Notice:  Merged dataset sequence (if you see this often, post at http://issues.jalview.org/browse/JAL-1474)"); // ("
4883         // + (pre ? "prepended" : "") + " "
4884         // + (post ? "appended" : ""));
4885       }
4886     }
4887   }
4888
4889   /*
4890    * TODO use AlignmentI here and in related methods - needs
4891    * AlignmentI.getDataset() changed to return AlignmentI instead of Alignment
4892    */
4893   Hashtable<String, AlignmentI> datasetIds = null;
4894
4895   IdentityHashMap<AlignmentI, String> dataset2Ids = null;
4896
4897   private AlignmentI getDatasetFor(String datasetId)
4898   {
4899     if (datasetIds == null)
4900     {
4901       datasetIds = new Hashtable<String, AlignmentI>();
4902       return null;
4903     }
4904     if (datasetIds.containsKey(datasetId))
4905     {
4906       return datasetIds.get(datasetId);
4907     }
4908     return null;
4909   }
4910
4911   private void addDatasetRef(String datasetId, AlignmentI dataset)
4912   {
4913     if (datasetIds == null)
4914     {
4915       datasetIds = new Hashtable<String, AlignmentI>();
4916     }
4917     datasetIds.put(datasetId, dataset);
4918   }
4919
4920   /**
4921    * make a new dataset ID for this jalview dataset alignment
4922    * 
4923    * @param dataset
4924    * @return
4925    */
4926   private String getDatasetIdRef(AlignmentI dataset)
4927   {
4928     if (dataset.getDataset() != null)
4929     {
4930       warn("Serious issue!  Dataset Object passed to getDatasetIdRef is not a Jalview DATASET alignment...");
4931     }
4932     String datasetId = makeHashCode(dataset, null);
4933     if (datasetId == null)
4934     {
4935       // make a new datasetId and record it
4936       if (dataset2Ids == null)
4937       {
4938         dataset2Ids = new IdentityHashMap<AlignmentI, String>();
4939       }
4940       else
4941       {
4942         datasetId = dataset2Ids.get(dataset);
4943       }
4944       if (datasetId == null)
4945       {
4946         datasetId = "ds" + dataset2Ids.size() + 1;
4947         dataset2Ids.put(dataset, datasetId);
4948       }
4949     }
4950     return datasetId;
4951   }
4952
4953   private void addDBRefs(SequenceI datasetSequence, Sequence sequence)
4954   {
4955     for (int d = 0; d < sequence.getDBRefCount(); d++)
4956     {
4957       DBRef dr = sequence.getDBRef(d);
4958       jalview.datamodel.DBRefEntry entry = new jalview.datamodel.DBRefEntry(
4959               sequence.getDBRef(d).getSource(), sequence.getDBRef(d)
4960                       .getVersion(), sequence.getDBRef(d).getAccessionId());
4961       if (dr.getMapping() != null)
4962       {
4963         entry.setMap(addMapping(dr.getMapping()));
4964       }
4965       datasetSequence.addDBRef(entry);
4966     }
4967   }
4968
4969   private jalview.datamodel.Mapping addMapping(Mapping m)
4970   {
4971     SequenceI dsto = null;
4972     // Mapping m = dr.getMapping();
4973     int fr[] = new int[m.getMapListFromCount() * 2];
4974     Enumeration f = m.enumerateMapListFrom();
4975     for (int _i = 0; f.hasMoreElements(); _i += 2)
4976     {
4977       MapListFrom mf = (MapListFrom) f.nextElement();
4978       fr[_i] = mf.getStart();
4979       fr[_i + 1] = mf.getEnd();
4980     }
4981     int fto[] = new int[m.getMapListToCount() * 2];
4982     f = m.enumerateMapListTo();
4983     for (int _i = 0; f.hasMoreElements(); _i += 2)
4984     {
4985       MapListTo mf = (MapListTo) f.nextElement();
4986       fto[_i] = mf.getStart();
4987       fto[_i + 1] = mf.getEnd();
4988     }
4989     jalview.datamodel.Mapping jmap = new jalview.datamodel.Mapping(dsto,
4990             fr, fto, (int) m.getMapFromUnit(), (int) m.getMapToUnit());
4991     if (m.getMappingChoice() != null)
4992     {
4993       MappingChoice mc = m.getMappingChoice();
4994       if (mc.getDseqFor() != null)
4995       {
4996         String dsfor = "" + mc.getDseqFor();
4997         if (seqRefIds.containsKey(dsfor))
4998         {
4999           /**
5000            * recover from hash
5001            */
5002           jmap.setTo(seqRefIds.get(dsfor));
5003         }
5004         else
5005         {
5006           frefedSequence.add(new Object[] { dsfor, jmap });
5007         }
5008       }
5009       else
5010       {
5011         /**
5012          * local sequence definition
5013          */
5014         Sequence ms = mc.getSequence();
5015         SequenceI djs = null;
5016         String sqid = ms.getDsseqid();
5017         if (sqid != null && sqid.length() > 0)
5018         {
5019           /*
5020            * recover dataset sequence
5021            */
5022           djs = seqRefIds.get(sqid);
5023         }
5024         else
5025         {
5026           System.err
5027                   .println("Warning - making up dataset sequence id for DbRef sequence map reference");
5028           sqid = ((Object) ms).toString(); // make up a new hascode for
5029           // undefined dataset sequence hash
5030           // (unlikely to happen)
5031         }
5032
5033         if (djs == null)
5034         {
5035           /**
5036            * make a new dataset sequence and add it to refIds hash
5037            */
5038           djs = new jalview.datamodel.Sequence(ms.getName(),
5039                   ms.getSequence());
5040           djs.setStart(jmap.getMap().getToLowest());
5041           djs.setEnd(jmap.getMap().getToHighest());
5042           djs.setVamsasId(uniqueSetSuffix + sqid);
5043           jmap.setTo(djs);
5044           seqRefIds.put(sqid, djs);
5045
5046         }
5047         jalview.bin.Cache.log.debug("about to recurse on addDBRefs.");
5048         addDBRefs(djs, ms);
5049
5050       }
5051     }
5052     return (jmap);
5053
5054   }
5055
5056   public jalview.gui.AlignmentPanel copyAlignPanel(AlignmentPanel ap,
5057           boolean keepSeqRefs)
5058   {
5059     initSeqRefs();
5060     JalviewModel jm = saveState(ap, null, null, null);
5061
5062     if (!keepSeqRefs)
5063     {
5064       clearSeqRefs();
5065       jm.getJalviewModelSequence().getViewport(0).setSequenceSetId(null);
5066     }
5067     else
5068     {
5069       uniqueSetSuffix = "";
5070       jm.getJalviewModelSequence().getViewport(0).setId(null); // we don't
5071       // overwrite the
5072       // view we just
5073       // copied
5074     }
5075     if (this.frefedSequence == null)
5076     {
5077       frefedSequence = new Vector();
5078     }
5079
5080     viewportsAdded.clear();
5081
5082     AlignFrame af = loadFromObject(jm, null, false, null);
5083     af.alignPanels.clear();
5084     af.closeMenuItem_actionPerformed(true);
5085
5086     /*
5087      * if(ap.av.getAlignment().getAlignmentAnnotation()!=null) { for(int i=0;
5088      * i<ap.av.getAlignment().getAlignmentAnnotation().length; i++) {
5089      * if(!ap.av.getAlignment().getAlignmentAnnotation()[i].autoCalculated) {
5090      * af.alignPanel.av.getAlignment().getAlignmentAnnotation()[i] =
5091      * ap.av.getAlignment().getAlignmentAnnotation()[i]; } } }
5092      */
5093
5094     return af.alignPanel;
5095   }
5096
5097   /**
5098    * flag indicating if hashtables should be cleared on finalization TODO this
5099    * flag may not be necessary
5100    */
5101   private final boolean _cleartables = true;
5102
5103   private Hashtable jvids2vobj;
5104
5105   /*
5106    * (non-Javadoc)
5107    * 
5108    * @see java.lang.Object#finalize()
5109    */
5110   @Override
5111   protected void finalize() throws Throwable
5112   {
5113     // really make sure we have no buried refs left.
5114     if (_cleartables)
5115     {
5116       clearSeqRefs();
5117     }
5118     this.seqRefIds = null;
5119     this.seqsToIds = null;
5120     super.finalize();
5121   }
5122
5123   private void warn(String msg)
5124   {
5125     warn(msg, null);
5126   }
5127
5128   private void warn(String msg, Exception e)
5129   {
5130     if (Cache.log != null)
5131     {
5132       if (e != null)
5133       {
5134         Cache.log.warn(msg, e);
5135       }
5136       else
5137       {
5138         Cache.log.warn(msg);
5139       }
5140     }
5141     else
5142     {
5143       System.err.println("Warning: " + msg);
5144       if (e != null)
5145       {
5146         e.printStackTrace();
5147       }
5148     }
5149   }
5150
5151   private void debug(String string)
5152   {
5153     debug(string, null);
5154   }
5155
5156   private void debug(String msg, Exception e)
5157   {
5158     if (Cache.log != null)
5159     {
5160       if (e != null)
5161       {
5162         Cache.log.debug(msg, e);
5163       }
5164       else
5165       {
5166         Cache.log.debug(msg);
5167       }
5168     }
5169     else
5170     {
5171       System.err.println("Warning: " + msg);
5172       if (e != null)
5173       {
5174         e.printStackTrace();
5175       }
5176     }
5177   }
5178
5179   /**
5180    * set the object to ID mapping tables used to write/recover objects and XML
5181    * ID strings for the jalview project. If external tables are provided then
5182    * finalize and clearSeqRefs will not clear the tables when the Jalview2XML
5183    * object goes out of scope. - also populates the datasetIds hashtable with
5184    * alignment objects containing dataset sequences
5185    * 
5186    * @param vobj2jv
5187    *          Map from ID strings to jalview datamodel
5188    * @param jv2vobj
5189    *          Map from jalview datamodel to ID strings
5190    * 
5191    * 
5192    */
5193   public void setObjectMappingTables(Hashtable vobj2jv,
5194           IdentityHashMap jv2vobj)
5195   {
5196     this.jv2vobj = jv2vobj;
5197     this.vobj2jv = vobj2jv;
5198     Iterator ds = jv2vobj.keySet().iterator();
5199     String id;
5200     while (ds.hasNext())
5201     {
5202       Object jvobj = ds.next();
5203       id = jv2vobj.get(jvobj).toString();
5204       if (jvobj instanceof jalview.datamodel.Alignment)
5205       {
5206         if (((jalview.datamodel.Alignment) jvobj).getDataset() == null)
5207         {
5208           addDatasetRef(id, (jalview.datamodel.Alignment) jvobj);
5209         }
5210       }
5211       else if (jvobj instanceof jalview.datamodel.Sequence)
5212       {
5213         // register sequence object so the XML parser can recover it.
5214         if (seqRefIds == null)
5215         {
5216           seqRefIds = new HashMap<String, SequenceI>();
5217         }
5218         if (seqsToIds == null)
5219         {
5220           seqsToIds = new IdentityHashMap<SequenceI, String>();
5221         }
5222         seqRefIds.put(jv2vobj.get(jvobj).toString(), (SequenceI) jvobj);
5223         seqsToIds.put((SequenceI) jvobj, id);
5224       }
5225       else if (jvobj instanceof jalview.datamodel.AlignmentAnnotation)
5226       {
5227         String anid;
5228         AlignmentAnnotation jvann = (AlignmentAnnotation) jvobj;
5229         annotationIds.put(anid = jv2vobj.get(jvobj).toString(), jvann);
5230         if (jvann.annotationId == null)
5231         {
5232           jvann.annotationId = anid;
5233         }
5234         if (!jvann.annotationId.equals(anid))
5235         {
5236           // TODO verify that this is the correct behaviour
5237           this.warn("Overriding Annotation ID for " + anid
5238                   + " from different id : " + jvann.annotationId);
5239           jvann.annotationId = anid;
5240         }
5241       }
5242       else if (jvobj instanceof String)
5243       {
5244         if (jvids2vobj == null)
5245         {
5246           jvids2vobj = new Hashtable();
5247           jvids2vobj.put(jvobj, jv2vobj.get(jvobj).toString());
5248         }
5249       }
5250       else
5251       {
5252         Cache.log.debug("Ignoring " + jvobj.getClass() + " (ID = " + id);
5253       }
5254     }
5255   }
5256
5257   /**
5258    * set the uniqueSetSuffix used to prefix/suffix object IDs for jalview
5259    * objects created from the project archive. If string is null (default for
5260    * construction) then suffix will be set automatically.
5261    * 
5262    * @param string
5263    */
5264   public void setUniqueSetSuffix(String string)
5265   {
5266     uniqueSetSuffix = string;
5267
5268   }
5269
5270   /**
5271    * uses skipList2 as the skipList for skipping views on sequence sets
5272    * associated with keys in the skipList
5273    * 
5274    * @param skipList2
5275    */
5276   public void setSkipList(Hashtable skipList2)
5277   {
5278     skipList = skipList2;
5279   }
5280
5281   /**
5282    * Reads the jar entry of given name and returns its contents, or null if the
5283    * entry is not found.
5284    * 
5285    * @param jprovider
5286    * @param jarEntryName
5287    * @return
5288    */
5289   protected String readJarEntry(jarInputStreamProvider jprovider,
5290           String jarEntryName)
5291   {
5292     String result = null;
5293     BufferedReader in = null;
5294
5295     try
5296     {
5297       /*
5298        * Reopen the jar input stream and traverse its entries to find a matching
5299        * name
5300        */
5301       JarInputStream jin = jprovider.getJarInputStream();
5302       JarEntry entry = null;
5303       do
5304       {
5305         entry = jin.getNextJarEntry();
5306       } while (entry != null && !entry.getName().equals(jarEntryName));
5307
5308       if (entry != null)
5309       {
5310         StringBuilder out = new StringBuilder(256);
5311         in = new BufferedReader(new InputStreamReader(jin, UTF_8));
5312         String data;
5313
5314         while ((data = in.readLine()) != null)
5315         {
5316           out.append(data);
5317         }
5318         result = out.toString();
5319       }
5320       else
5321       {
5322         warn("Couldn't find entry in Jalview Jar for " + jarEntryName);
5323       }
5324     } catch (Exception ex)
5325     {
5326       ex.printStackTrace();
5327     } finally
5328     {
5329       if (in != null)
5330       {
5331         try
5332         {
5333           in.close();
5334         } catch (IOException e)
5335         {
5336           // ignore
5337         }
5338       }
5339     }
5340
5341     return result;
5342   }
5343
5344   /**
5345    * Returns an incrementing counter (0, 1, 2...)
5346    * 
5347    * @return
5348    */
5349   private synchronized int nextCounter()
5350   {
5351     return counter++;
5352   }
5353 }