/[projects]/android/TrainInfo/src/dk/thoerup/traininfo/provider/OfflineStationProvider.java
ViewVC logotype

Diff of /android/TrainInfo/src/dk/thoerup/traininfo/provider/OfflineStationProvider.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1562 by torben, Fri Jul 8 16:26:09 2011 UTC revision 1638 by torben, Sun Nov 27 19:44:28 2011 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfo.provider;  package dk.thoerup.traininfo.provider;
2    
 import java.io.EOFException;  
3  import java.io.File;  import java.io.File;
4  import java.io.FileInputStream;  import java.io.FileInputStream;
5  import java.io.FileOutputStream;  import java.io.FileOutputStream;
# Line 29  public class OfflineStationProvider impl Line 28  public class OfflineStationProvider impl
28                    
29          StationBean stations = new StationBean();          StationBean stations = new StationBean();
30    
31            public boolean hasStations() {
32                    return (stations != null && stations.entries.size() > 0);
33            }
34            
35    
36          public boolean loadStations(Context context) throws Exception {          public boolean loadStations(Context context) throws Exception {
37                  long start = System.currentTimeMillis();                  long start = System.currentTimeMillis();
38                                    
39                  stations.entries.clear(); //TODO: remove                  StationBean tmpStations = new StationBean();
40                                    
41                  File parent = context.getFilesDir();                  File parent = context.getFilesDir();
42                  File stationsFile = new File(parent, "stations.bin");                  File stationsFile = new File(parent, "stations.bin");
# Line 51  public class OfflineStationProvider impl Line 54  public class OfflineStationProvider impl
54                  stations = serializer.read(StationBean.class,  new String(data, "ISO-8859-1") );*/                  stations = serializer.read(StationBean.class,  new String(data, "ISO-8859-1") );*/
55                                    
56                                    
57                  try {  
58                          ObjectInputStream in = new ObjectInputStream( new FileInputStream(stationsFile) );                  ObjectInputStream in = new ObjectInputStream( new FileInputStream(stationsFile) );
59                          Object o;  
60                          StationEntry e = null;                  int length = in.readInt(); // first field is the length
61                          while ( (o=in.readObject()) != null ) {                  
62                                  e = (StationEntry) o;                  for (int i=0; i<length; i++) {                          
63                                  updateSearchStrings(e);                          StationEntry entry = (StationEntry) in.readObject();
64                                  stations.entries.add( e );                          updateSearchStrings(entry);
65                          }                          tmpStations.entries.add( entry );
                         in.close();  
                 } catch (EOFException e) {  
                         //do nothing;  
66                  }                  }
67                                    
68                  Log.e("OFFLINE", "loaded" + stations.entries.size());                  in.close();
69    
70                    stations = tmpStations; // når indlæsningen er ok skifter vi over
71                    
72                    Log.e("OFFLINE", "loaded" + tmpStations.entries.size());
73                  logElapsedTime(start, "loadStations");                  logElapsedTime(start, "loadStations");
74                                    
75                  return true;                  return true;
# Line 80  public class OfflineStationProvider impl Line 84  public class OfflineStationProvider impl
84                  File parent = context.getFilesDir();                  File parent = context.getFilesDir();
85                  File stationsFile = new File(parent, "stations.bin");                  File stationsFile = new File(parent, "stations.bin");
86    
87                                    long start = System.currentTimeMillis();
88                  byte data[] = HttpUtil.getContent(XmlUtil.SERVICE_BASE + "/LocateStations?dump=1", 5000);                  byte data[] = HttpUtil.getContent(XmlUtil.SERVICE_BASE + "/LocateStations?dump=1", 5000);
89                  Serializer serializer = new Persister();                  logElapsedTime(start, "download XML");
90                  stations = serializer.read(StationBean.class,  new String(data, "ISO-8859-1") );                  
91                    
92                    Serializer serializer = new Persister();                
93                    
94                    start = System.currentTimeMillis();
95                    StationBean tmpStations = serializer.read(StationBean.class,  new String(data, "ISO-8859-1") );
96                    logElapsedTime(start, "parse XML");
97                                    
98                                    
99                  ObjectOutputStream out = new ObjectOutputStream( new FileOutputStream(stationsFile) );                  ObjectOutputStream out = new ObjectOutputStream( new FileOutputStream(stationsFile) );
100                  Log.e("OFFLINE", "data size" + data.length);                  Log.e("OFFLINE", "data size" + data.length);
101                                    
102                  for (StationEntry entry : stations.entries) {                  out.writeInt( tmpStations.entries.size() ); //start with writing the length of the dataset
103                    
104                    for (StationEntry entry : tmpStations.entries) {
105                          updateSearchStrings( entry ); //prepare name fields for byName search                          updateSearchStrings( entry ); //prepare name fields for byName search
106                          out.writeObject(entry);                          out.writeObject(entry);
107                  }                  }
108                                    
109                  out.close();                              out.close();
110                    
111                    stations = tmpStations; // når alt er ok skifter vi over til ny udgave
112          }          }
113                    
114                    
# Line 149  public class OfflineStationProvider impl Line 163  public class OfflineStationProvider impl
163                  Collections.sort( entries, distanceComparator);                  Collections.sort( entries, distanceComparator);
164                                    
165                  StationBean tmpStations = new StationBean();                  StationBean tmpStations = new StationBean();
166                  for (int i = 0; i<8; i++) {                  for (int i = 0; i<8 && i<entries.size(); i++) {
167                          tmpStations.entries.add( entries.get(i) );                          tmpStations.entries.add( entries.get(i) );
168                  }                  }
169                                    

Legend:
Removed from v.1562  
changed lines
  Added in v.1638

  ViewVC Help
Powered by ViewVC 1.1.20