JAL-1760 JAL-1641 Serialisation of Hidden Seqs and Cols in JSON output. Added ability...
[jalview.git] / src / jalview / io / HtmlFile.java
index aadf246..3dd937d 100644 (file)
@@ -1,21 +1,47 @@
-package jalview.io;
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
+ * 
+ * This file is part of Jalview.
+ * 
+ * Jalview is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License 
+ * as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *  
+ * Jalview is distributed in the hope that it will be useful, but 
+ * WITHOUT ANY WARRANTY; without even the implied warranty 
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
+ * PURPOSE.  See the GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
+ */
 
-import jalview.gui.AlignFrame;
-import jalview.schemes.ColourSchemeI;
+package jalview.io;
 
 import java.io.IOException;
+import java.util.List;
 
 import org.jsoup.Jsoup;
 import org.jsoup.nodes.Document;
 import org.jsoup.nodes.Element;
 
+import jalview.api.AlignViewControllerGuiI;
+import jalview.schemes.ColourSchemeI;
+
 public class HtmlFile extends AlignFile
 {
-  // public static final String FILE_EXT = "html";
-  //
-  // public static final String FILE_DESC = "HTML";
+  public static final String FILE_EXT = "html";
+
+  public static final String FILE_DESC = "HTML";
 
-  private ColourSchemeI cs;
+  private ColourSchemeI colourScheme;
+
+  private boolean showSeqFeatures;
+
+  private List<int[]> hiddenColumns;
 
   public HtmlFile()
   {
@@ -32,7 +58,6 @@ public class HtmlFile extends AlignFile
     super(inFile, type);
   }
 
-  @SuppressWarnings("unchecked")
   @Override
   public void parse() throws IOException
   {
@@ -47,104 +72,55 @@ public class HtmlFile extends AlignFile
 
       Document doc = Jsoup.parse(htmlData.toString());
       Element content = doc.getElementById("seqData");
-
       String alignmentJsonString = content.val();
 
-      new JSONFile().parse(alignmentJsonString);
-
-      // JSONParser jsonParser = new JSONParser();
-      // JSONObject alignmentJsonObj = (JSONObject) jsonParser
-      // .parse(alignmentJsonString);
-      // JSONArray seqJsonArray = (JSONArray) alignmentJsonObj.get("seqs");
-      // String bioJsColourScheme = (String) alignmentJsonObj
-      // .get("globalColorScheme");
-      // cs = getJalviewColorScheme(bioJsColourScheme);
-      //
-      // for (Iterator<JSONObject> sequenceIter = seqJsonArray.iterator();
-      // sequenceIter
-      // .hasNext();)
-      // {
-      // JSONObject sequence = sequenceIter.next();
-      // String sequcenceString = sequence.get("seq").toString();
-      // Sequence seq = new Sequence(sequence.get("name").toString(),
-      // sequcenceString, Integer.valueOf(sequence.get("start")
-      // .toString()), Integer.valueOf(sequence.get("end")
-      // .toString()));
-      //
-      // JSONArray jsonSeqArray = (JSONArray) sequence.get("features");
-      // SequenceFeature[] retrievedSeqFeatures = getJalviewSequenceFeatures(
-      // jsonSeqArray, seq);
-      // if (retrievedSeqFeatures != null)
-      // {
-      // seq.setSequenceFeatures(retrievedSeqFeatures);
-      // }
-      // seqs.add(seq);
-      //
-      // }
+      JSONFile jsonFile = new JSONFile().parse(alignmentJsonString);
+      this.seqs = jsonFile.getSeqs();
+      this.seqGroups = jsonFile.getSeqGroups();
+      this.annotations = jsonFile.getAnnotations();
+      this.showSeqFeatures = jsonFile.isShowSeqFeatures();
+      this.colourScheme = jsonFile.getColourScheme();
+      this.hiddenColumns = jsonFile.getHiddenColumns();
     } catch (Exception e)
     {
       e.printStackTrace();
     }
   }
 
-  // public SequenceFeature[] getJalviewSequenceFeatures(
-  // JSONArray jsonSeqFeatures, Sequence seq)
-  // {
-  // SequenceFeature[] seqFeatures = null;
-  // int count = 0;
-  // if (jsonSeqFeatures != null)
-  // {
-  // seqFeatures = new SequenceFeature[jsonSeqFeatures.size()];
-  // for (@SuppressWarnings("unchecked")
-  // Iterator<JSONObject> seqFeatureItr = jsonSeqFeatures.iterator();
-  // seqFeatureItr
-  // .hasNext();)
-  // {
-  //
-  // SequenceFeature sequenceFeature = new SequenceFeature();
-  // JSONObject jsonFeature = seqFeatureItr.next();
-  // Long begin = (Long) jsonFeature.get("xStart");
-  // Long end = (Long) jsonFeature.get("xEnd");
-  // String type = (String) jsonFeature.get("text");
-  // // String color = (String) jsonFeature.get("fillColor");
-  //
-  // sequenceFeature.setBegin(seq.findPosition(begin.intValue()));
-  // sequenceFeature.setEnd(seq.findPosition(end.intValue()) - 1);
-  // sequenceFeature.setType(type);
-  // seqFeatures[count++] = sequenceFeature;
-  // }
-  // }
-  // return seqFeatures;
-  // }
-
-  public void LoadAlignmentFeatures(AlignFrame af)
+  public void applySettingsToAlignmentView(AlignViewControllerGuiI avc)
   {
-
-    af.setShowSeqFeatures(true);
-    af.changeColour(cs);
-    af.setMenusForViewport();
+    avc.setShowSeqFeatures(isShowSeqFeatures());
+    avc.changeColour(getColourScheme());
+    avc.setMenusForViewport();
+    avc.hideColumns(hiddenColumns);
+    avc.syncHiddenSequences();
   }
 
-  // private ColourSchemeI getJalviewColorScheme(String bioJsColourSchemeName)
-  // {
-  // ColourSchemeI jalviewColor = null;
-  // for (JalviewBioJsColorSchemeMapper cs : JalviewBioJsColorSchemeMapper
-  // .values())
-  // {
-  // if (cs.getBioJsName().equals(bioJsColourSchemeName))
-  // {
-  // jalviewColor = cs.getJvColourScheme();
-  // break;
-  // }
-  // }
-  // return jalviewColor;
-  // }
-
   @Override
   public String print()
   {
     throw new UnsupportedOperationException(
-            "Print method of HtmlFile not yet supported!");
+            "Print method of HtmlFile is not supported!");
+  }
+
+  public boolean isShowSeqFeatures()
+  {
+    return showSeqFeatures;
+  }
+
+  public void setShowSeqFeatures(boolean showSeqFeatures)
+  {
+    this.showSeqFeatures = showSeqFeatures;
+  }
+
+  public ColourSchemeI getColourScheme()
+  {
+    return colourScheme;
+  }
+
+  public void setColourScheme(ColourSchemeI colourScheme)
+  {
+    this.colourScheme = colourScheme;
   }
 
 }