JAL-1432 updated copyright notices
[jalview.git] / src / jalview / ws / dbsources / EbiFileRetrievedProxy.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1)
3  * Copyright (C) 2014 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 of the License, or (at your option) any later version.
10  *  
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  * The Jalview Authors are detailed in the 'AUTHORS' file.
18  */
19 package jalview.ws.dbsources;
20
21 import java.io.BufferedReader;
22 import java.io.File;
23 import java.io.FileReader;
24 import jalview.ws.seqfetcher.DbSourceProxyImpl;
25
26 public abstract class EbiFileRetrievedProxy extends DbSourceProxyImpl
27 {
28
29   /**
30    * temp path to retrieved file
31    */
32   protected String file = null;
33
34   public StringBuffer getRawRecords()
35   {
36     if (file == null)
37       return null;
38     StringBuffer bf = null;
39     try
40     {
41       File f = new File(file);
42       if (f.exists())
43       {
44         bf = new StringBuffer();
45         BufferedReader breader = new BufferedReader(new FileReader(f));
46         String line = null;
47         while (breader.ready() && (line = breader.readLine()) != null)
48         {
49           bf.append(line);
50         }
51         breader.close();
52       }
53     } catch (Exception e)
54     {
55       System.err.println("Warning: problems reading temp file " + file);
56       return null;
57     }
58     return bf;
59   }
60
61 }