e27c6661b03ca2c46ac29b3e522b29d40f6c35a4
[jalview.git] / src / jalview / io / FileLoader.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.io;
22
23 import java.util.StringTokenizer;
24 import java.util.Vector;
25
26 import javax.swing.JOptionPane;
27 import javax.swing.SwingUtilities;
28
29 import jalview.api.ComplexAlignFile;
30 import jalview.datamodel.AlignmentI;
31 import jalview.datamodel.ColumnSelection;
32 import jalview.datamodel.PDBEntry;
33 import jalview.datamodel.SequenceI;
34 import jalview.gui.AlignFrame;
35 import jalview.gui.AlignViewport;
36 import jalview.gui.Desktop;
37 import jalview.gui.Jalview2XML;
38 import jalview.schemes.ColourSchemeI;
39 import jalview.structure.StructureSelectionManager;
40 import jalview.util.MessageManager;
41
42 public class FileLoader implements Runnable
43 {
44   String file;
45
46   String protocol;
47
48   String format;
49
50   FileParse source = null; // alternative specification of where data comes
51
52   // from
53
54   AlignViewport viewport;
55
56   AlignFrame alignFrame;
57
58   long loadtime;
59
60   long memused;
61
62   boolean raiseGUI = true;
63
64   /**
65    * default constructor always raised errors in GUI dialog boxes
66    */
67   public FileLoader()
68   {
69     this(true);
70   }
71
72   /**
73    * construct a Fileloader that may raise errors non-interactively
74    * 
75    * @param raiseGUI
76    *          true if errors are to be raised as GUI dialog boxes
77    */
78   public FileLoader(boolean raiseGUI)
79   {
80     this.raiseGUI = raiseGUI;
81   }
82
83   public void LoadFile(AlignViewport viewport, String file,
84           String protocol, String format)
85   {
86     this.viewport = viewport;
87     LoadFile(file, protocol, format);
88   }
89
90   public void LoadFile(String file, String protocol, String format)
91   {
92     this.file = file;
93     this.protocol = protocol;
94     this.format = format;
95
96     final Thread loader = new Thread(this);
97
98     SwingUtilities.invokeLater(new Runnable()
99     {
100       public void run()
101       {
102         loader.start();
103       }
104     });
105   }
106
107   /**
108    * Load a (file, protocol) source of unknown type
109    * 
110    * @param file
111    * @param protocol
112    */
113   public void LoadFile(String file, String protocol)
114   {
115     LoadFile(file, protocol, null);
116   }
117
118   /**
119    * Load alignment from (file, protocol) and wait till loaded
120    * 
121    * @param file
122    * @param protocol
123    * @return alignFrame constructed from file contents
124    */
125   public AlignFrame LoadFileWaitTillLoaded(String file, String protocol)
126   {
127     return LoadFileWaitTillLoaded(file, protocol, null);
128   }
129
130   /**
131    * Load alignment from (file, protocol) of type format and wait till loaded
132    * 
133    * @param file
134    * @param protocol
135    * @param format
136    * @return alignFrame constructed from file contents
137    */
138   public AlignFrame LoadFileWaitTillLoaded(String file, String protocol,
139           String format)
140   {
141     this.file = file;
142     this.protocol = protocol;
143     this.format = format;
144     return _LoadFileWaitTillLoaded();
145   }
146
147   /**
148    * Load alignment from FileParse source of type format and wait till loaded
149    * 
150    * @param source
151    * @param format
152    * @return alignFrame constructed from file contents
153    */
154   public AlignFrame LoadFileWaitTillLoaded(FileParse source, String format)
155   {
156     this.source = source;
157
158     file = source.getInFile();
159     protocol = source.type;
160     this.format = format;
161     return _LoadFileWaitTillLoaded();
162   }
163
164   /**
165    * start thread and wait until finished, then return the alignFrame that's
166    * (hopefully) been read.
167    * 
168    * @return
169    */
170   protected AlignFrame _LoadFileWaitTillLoaded()
171   {
172     Thread loader = new Thread(this);
173     loader.start();
174
175     while (loader.isAlive())
176     {
177       try
178       {
179         Thread.sleep(500);
180       } catch (Exception ex)
181       {
182       }
183     }
184
185     return alignFrame;
186   }
187
188   public void updateRecentlyOpened()
189   {
190     Vector recent = new Vector();
191     if (protocol.equals(FormatAdapter.PASTE))
192     {
193       // do nothing if the file was pasted in as text... there is no filename to
194       // refer to it as.
195       return;
196     }
197     String type = protocol.equals(FormatAdapter.FILE) ? "RECENT_FILE"
198             : "RECENT_URL";
199
200     String historyItems = jalview.bin.Cache.getProperty(type);
201
202     StringTokenizer st;
203
204     if (historyItems != null)
205     {
206       st = new StringTokenizer(historyItems, "\t");
207
208       while (st.hasMoreTokens())
209       {
210         recent.addElement(st.nextElement().toString().trim());
211       }
212     }
213
214     if (recent.contains(file))
215     {
216       recent.remove(file);
217     }
218
219     StringBuffer newHistory = new StringBuffer(file);
220     for (int i = 0; i < recent.size() && i < 10; i++)
221     {
222       newHistory.append("\t");
223       newHistory.append(recent.elementAt(i));
224     }
225
226     jalview.bin.Cache.setProperty(type, newHistory.toString());
227
228     if (protocol.equals(FormatAdapter.FILE))
229     {
230       jalview.bin.Cache.setProperty("DEFAULT_FILE_FORMAT", format);
231     }
232   }
233
234   public void run()
235   {
236     String title = protocol.equals(AppletFormatAdapter.PASTE) ? "Copied From Clipboard"
237             : file;
238     Runtime rt = Runtime.getRuntime();
239     try
240     {
241       if (Desktop.instance != null)
242       {
243         Desktop.instance.startLoading(file);
244       }
245       if (format == null)
246       {
247         // just in case the caller didn't identify the file for us
248         if (source != null)
249         {
250           format = new IdentifyFile().Identify(source, false); // identify
251           // stream and
252           // rewind rather
253           // than close
254         }
255         else
256         {
257           format = new IdentifyFile().Identify(file, protocol);
258         }
259       }
260       // TODO: cache any stream datasources as a temporary file (eg. PDBs
261       // retrieved via URL)
262       if (Desktop.desktop != null && Desktop.desktop.isShowMemoryUsage())
263       {
264         System.gc();
265         memused = (rt.maxMemory() - rt.totalMemory() + rt.freeMemory()); // free
266         // memory
267         // before
268         // load
269       }
270       loadtime = -System.currentTimeMillis();
271       AlignmentI al = null;
272
273       if (format.equalsIgnoreCase("Jalview"))
274       {
275         if (source != null)
276         {
277           // Tell the user (developer?) that this is going to cause a problem
278           System.err
279                   .println("IMPLEMENTATION ERROR: Cannot read consecutive Jalview XML projects from a stream.");
280           // We read the data anyway - it might make sense.
281         }
282         alignFrame = new Jalview2XML(raiseGUI).loadJalviewAlign(file);
283       }
284       else
285       {
286         String error = AppletFormatAdapter.SUPPORTED_FORMATS;
287         if (FormatAdapter.isValidFormat(format))
288         {
289           try
290           {
291             if (source != null)
292             {
293               // read from the provided source
294               al = new FormatAdapter().readFromFile(source, format);
295             }
296             else
297             {
298
299               // open a new source and read from it
300               FormatAdapter fa = new FormatAdapter();
301               al = fa.readFile(file, protocol, format);
302               source = fa.getAlignFile(); // keep reference for later if necessary.
303             }
304           } catch (java.io.IOException ex)
305           {
306             error = ex.getMessage();
307           }
308         }
309         else
310         {
311           if (format != null && format.length() > 7)
312           {
313             // ad hoc message in format.
314             error = format + "\n" + error;
315           }
316         }
317
318         if ((al != null) && (al.getHeight() > 0))
319         {
320           for (SequenceI sq : al.getSequences())
321           {
322             while (sq.getDatasetSequence() != null)
323             {
324               sq = sq.getDatasetSequence();
325             }
326             if (sq.getPDBId() != null)
327             {
328               for (PDBEntry pdbe : sq.getPDBId())
329               {
330                 StructureSelectionManager.getStructureSelectionManager(
331                         Desktop.instance).registerPDBEntry(pdbe);
332               }
333             }
334           }
335           if (viewport != null)
336           {
337             viewport.addAlignment(al, title);
338           }
339           else
340           {
341             if (!protocol.equals(AppletFormatAdapter.PASTE))
342             {
343               alignFrame.setFileName(file, format);
344             }
345             if (source instanceof ComplexAlignFile)
346             {
347               ColumnSelection colSel = ((ComplexAlignFile) source)
348                       .getColumnSelection();
349               SequenceI[] hiddenSeqs = ((ComplexAlignFile) source)
350                       .getHiddenSequences();
351               boolean showSeqFeatures = ((ComplexAlignFile) source)
352                       .isShowSeqFeatures();
353               ColourSchemeI cs = ((ComplexAlignFile) source)
354                       .getColourScheme();
355               alignFrame = new AlignFrame(al, hiddenSeqs, colSel,
356                       AlignFrame.DEFAULT_WIDTH,
357                       AlignFrame.DEFAULT_HEIGHT);
358
359               alignFrame.getViewport().setShowSequenceFeatures(
360                       showSeqFeatures);
361               alignFrame.changeColour(cs);
362             }
363             else
364             {
365               alignFrame = new AlignFrame(al, AlignFrame.DEFAULT_WIDTH,
366                       AlignFrame.DEFAULT_HEIGHT);
367             }
368
369             alignFrame.statusBar.setText(MessageManager.formatMessage(
370                     "label.successfully_loaded_file", new String[]
371                     { title }));
372
373             if (raiseGUI)
374             {
375               // add the window to the GUI
376               // note - this actually should happen regardless of raiseGUI
377               // status in Jalview 3
378               // TODO: define 'virtual desktop' for benefit of headless scripts
379               // that perform queries to find the 'current working alignment'
380               Desktop.addInternalFrame(alignFrame, title,
381                       AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
382             }
383
384             try
385             {
386               alignFrame.setMaximum(jalview.bin.Cache.getDefault(
387                       "SHOW_FULLSCREEN", false));
388             } catch (java.beans.PropertyVetoException ex)
389             {
390             }
391           }
392         }
393         else
394         {
395           if (Desktop.instance != null)
396           {
397             Desktop.instance.stopLoading();
398           }
399
400           final String errorMessage = "Couldn't load file " + title + "\n"
401                   + error;
402           if (raiseGUI)
403           {
404             javax.swing.SwingUtilities.invokeLater(new Runnable()
405             {
406               public void run()
407               {
408                 JOptionPane.showInternalMessageDialog(Desktop.desktop,
409                         errorMessage, MessageManager
410                                 .getString("label.error_loading_file"),
411                         JOptionPane.WARNING_MESSAGE);
412               }
413             });
414           }
415           else
416           {
417             System.err.println(errorMessage);
418           }
419         }
420       }
421
422       updateRecentlyOpened();
423
424     } catch (Exception er)
425     {
426       System.err.println("Exception whilst opening file '" + file);
427       er.printStackTrace();
428       if (raiseGUI)
429       {
430         javax.swing.SwingUtilities.invokeLater(new Runnable()
431         {
432           public void run()
433           {
434             javax.swing.JOptionPane.showInternalMessageDialog(
435                     Desktop.desktop, MessageManager.formatMessage(
436                             "label.problems_opening_file", new String[]
437                             { file }), MessageManager
438                             .getString("label.file_open_error"),
439                     javax.swing.JOptionPane.WARNING_MESSAGE);
440           }
441         });
442       }
443       alignFrame = null;
444     } catch (OutOfMemoryError er)
445     {
446
447       er.printStackTrace();
448       alignFrame = null;
449       if (raiseGUI)
450       {
451         javax.swing.SwingUtilities.invokeLater(new Runnable()
452         {
453           public void run()
454           {
455             javax.swing.JOptionPane
456                     .showInternalMessageDialog(
457                             Desktop.desktop,
458                             MessageManager.formatMessage("warn.out_of_memory_loading_file", new String[]{file}),
459                             MessageManager.getString("label.out_of_memory"),
460                             javax.swing.JOptionPane.WARNING_MESSAGE);
461           }
462         });
463       }
464       System.err.println("Out of memory loading file " + file + "!!");
465
466     }
467     loadtime += System.currentTimeMillis();
468     // TODO: Estimate percentage of memory used by a newly loaded alignment -
469     // warn if more memory will be needed to work with it
470     // System.gc();
471     memused = memused
472             - (rt.maxMemory() - rt.totalMemory() + rt.freeMemory()); // difference
473     // in free
474     // memory
475     // after
476     // load
477     if (Desktop.desktop != null && Desktop.desktop.isShowMemoryUsage())
478     {
479       if (alignFrame != null)
480       {
481         AlignmentI al = alignFrame.getViewport().getAlignment();
482
483         System.out.println("Loaded '" + title + "' in "
484                 + (loadtime / 1000.0) + "s, took an additional "
485                 + (1.0 * memused / (1024.0 * 1024.0)) + " MB ("
486                 + al.getHeight() + " seqs by " + al.getWidth() + " cols)");
487       }
488       else
489       {
490         // report that we didn't load anything probably due to an out of memory
491         // error
492         System.out.println("Failed to load '" + title + "' in "
493                 + (loadtime / 1000.0) + "s, took an additional "
494                 + (1.0 * memused / (1024.0 * 1024.0))
495                 + " MB (alignment is null)");
496       }
497     }
498     // remove the visual delay indicator
499     if (Desktop.instance != null)
500     {
501       Desktop.instance.stopLoading();
502     }
503
504   }
505
506   /*
507    * (non-Javadoc)
508    * 
509    * @see java.lang.Object#finalize()
510    */
511   protected void finalize() throws Throwable
512   {
513     source = null;
514     alignFrame = null;
515     viewport = null;
516     super.finalize();
517   }
518
519 }