import jalview.util.MessageManager;
import java.io.File;
+import java.io.IOException;
import java.io.InputStream;
import java.util.List;
ex.printStackTrace();
}
}
-
+ if (format.equalsIgnoreCase("HTML"))
+ {
+ throw new IOException(e.getMessage());
+ }
// If we get to this stage, the format was not supported
throw new java.io.IOException(SUPPORTED_FORMATS);
}
@Override
public void parse() throws IOException
{
+ Element content = null;
+ Document doc = null;
try
{
- Element content = null;
- Document doc = null;
- try {
- StringBuilder htmlData = new StringBuilder();
- String currentLine;
- while ((currentLine = nextLine()) != null)
- {
- htmlData.append(currentLine);
- }
-
- doc = Jsoup.parse(htmlData.toString());
- } catch (OutOfMemoryError oom) {
- errormessage = "Not enough memory to process HTML document";
- throw new IOException(errormessage);
+ StringBuilder htmlData = new StringBuilder();
+ String currentLine;
+ while ((currentLine = nextLine()) != null)
+ {
+ htmlData.append(currentLine);
}
+ doc = Jsoup.parse(htmlData.toString());
+ } catch (OutOfMemoryError oom)
+ {
+ errormessage = "Not enough memory to process HTML document";
+ throw new IOException(errormessage);
+ }
+
+ try
+ {
content = doc.getElementById("seqData");
-
- JSONFile jsonFile = new JSONFile().parse(new StringReader(content.val()));
+ if (content == null)
+ {
+ errormessage = "The html document is not embedded with BioJSON data";
+ throw new IOException(errormessage);
+ }
+ JSONFile jsonFile = new JSONFile().parse(new StringReader(content
+ .val()));
this.seqs = jsonFile.getSeqs();
this.seqGroups = jsonFile.getSeqGroups();
this.annotations = jsonFile.getAnnotations();
this.displayedFeatures = jsonFile.getDisplayedFeatures();
} catch (Exception e)
{
- errormessage = "Failed to extract data from HTML document.";
- throw new IOException("Unexpected exception whilst extracting JSon from HTML.",e);
+ throw e;
}
}
String titleSvgData = g1.getSVGDocument();
String alignSvgData = g2.getSVGDocument();
-
+ String jsonData = null;
+ boolean isEmbbedBioJSON = Boolean.valueOf(jalview.bin.Cache
+ .getDefault("EXPORT_EMBBED_BIOJSON", "true"));
+ if (isEmbbedBioJSON)
+ {
AlignmentExportData exportData = ap.alignFrame.getAlignmentForExport(
JSONFile.FILE_DESC, av);
if (exportData.getSettings().isCancelled())
{
return;
}
- String jsonData = new FormatAdapter(ap, exportData.getSettings())
+ jsonData = new FormatAdapter(ap, exportData.getSettings())
.formatSequences(JSONFile.FILE_DESC, exportData
.getAlignment(), exportData.getOmitHidden(),
exportData.getStartEndPostions(), ap
.getAlignViewport().getColumnSelection());
-
- // String jsonData = JSONFile.getJSONData(ap);
+ }
String htmlData = getHtml(titleSvgData, alignSvgData, jsonData);
-
FileOutputStream out = new FileOutputStream(file);
out.write(htmlData.getBytes());
out.flush();