/[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 1553 by torben, Fri Jul 8 11:56:58 2011 UTC revision 1572 by torben, Sat Jul 9 09:45:40 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;
6    import java.io.IOException;
7  import java.io.ObjectInputStream;  import java.io.ObjectInputStream;
8  import java.io.ObjectOutputStream;  import java.io.ObjectOutputStream;
9    import java.net.URLEncoder;
10  import java.util.Collections;  import java.util.Collections;
11  import java.util.Comparator;  import java.util.Comparator;
12  import java.util.LinkedList;  import java.util.LinkedList;
# Line 19  import android.util.Log; Line 20  import android.util.Log;
20  import dk.thoerup.android.traininfo.common.StationBean;  import dk.thoerup.android.traininfo.common.StationBean;
21  import dk.thoerup.android.traininfo.common.StationEntry;  import dk.thoerup.android.traininfo.common.StationEntry;
22  import dk.thoerup.genericjavautils.HttpUtil;  import dk.thoerup.genericjavautils.HttpUtil;
23    import dk.thoerup.traininfo.util.DownloadUtil;
24  import dk.thoerup.traininfo.util.IntSet;  import dk.thoerup.traininfo.util.IntSet;
25  import dk.thoerup.traininfo.util.XmlUtil;  import dk.thoerup.traininfo.util.XmlUtil;
26    
# Line 26  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();
# Line 48  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                                  e.updateSearch();                          StationEntry entry = (StationEntry) in.readObject();
64                                  stations.entries.add( e );                          updateSearchStrings(entry);
65                          }                          stations.entries.add( entry );
                         in.close();  
                 } catch (EOFException e) {  
                         //do nothing;  
66                  }                  }
67                                    
68                    in.close();
69    
70                    
71                  Log.e("OFFLINE", "loaded" + stations.entries.size());                  Log.e("OFFLINE", "loaded" + stations.entries.size());
72                  logElapsedTime(start, "loadStations");                  logElapsedTime(start, "loadStations");
73                                    
74                  return true;                  return true;
75          }                }
76            
77            public void updateSearchStrings(StationEntry entry) {          
78                    entry.nameLower = entry.getName().toLowerCase();
79                    entry.nameInternational = entry.nameLower.replace("æ", "ae").replace("ø", "oe").replace("å", "aa");
80            }
81                    
82          public void downloadStations(Context context) throws Exception {          public void downloadStations(Context context) throws Exception {
83                  File parent = context.getFilesDir();                  File parent = context.getFilesDir();
# Line 81  public class OfflineStationProvider impl Line 92  public class OfflineStationProvider impl
92                  ObjectOutputStream out = new ObjectOutputStream( new FileOutputStream(stationsFile) );                  ObjectOutputStream out = new ObjectOutputStream( new FileOutputStream(stationsFile) );
93                  Log.e("OFFLINE", "data size" + data.length);                  Log.e("OFFLINE", "data size" + data.length);
94                                    
95                    out.writeInt( stations.entries.size() ); //start with writing the length of the dataset
96                    
97                  for (StationEntry entry : stations.entries) {                  for (StationEntry entry : stations.entries) {
98                            updateSearchStrings( entry ); //prepare name fields for byName search
99                          out.writeObject(entry);                          out.writeObject(entry);
100                  }                  }
101                                    
# Line 110  public class OfflineStationProvider impl Line 124  public class OfflineStationProvider impl
124          @Override          @Override
125          public StationBean lookupStationsByLocation(Location location) {          public StationBean lookupStationsByLocation(Location location) {
126                                    
127                    statsByLocation(location);
128                    
129                  long start = System.currentTimeMillis();                  long start = System.currentTimeMillis();
130                  Location tmpLoc = new Location("GPS");                  Location tmpLoc = new Location("GPS");
131                                    
# Line 170  public class OfflineStationProvider impl Line 186  public class OfflineStationProvider impl
186    
187          @Override          @Override
188          public StationBean lookupStationsByIds(String ids) {          public StationBean lookupStationsByIds(String ids) {
189                    statsByIds(ids);
190                    
191                  IntSet idset = new IntSet();                  IntSet idset = new IntSet();
192                  idset.fromString(ids);                  idset.fromString(ids);
193                                    
# Line 182  public class OfflineStationProvider impl Line 200  public class OfflineStationProvider impl
200                                    
201                  return tmpStations;                  return tmpStations;
202          }          }
203            
204    
205            private void statsByLocation(Location location) {
206                    double lat = XmlStationProvider.roundToPlaces(location.getLatitude(), 4);
207                    double lng = XmlStationProvider.roundToPlaces(location.getLongitude(), 4);
208                    
209                    final String url = XmlUtil.SERVICE_BASE + "/LocateStations?latitude=" + lat + "&longitude=" + lng + "&dummy=1";
210                    Log.i("url", url);
211                    urlSender(url);
212            }
213            
214            private void statsByName(String name) {
215                    
216                    try {
217                            name = URLEncoder.encode(name, "ISO8859-1");    
218                    } catch (Exception e) {
219                            Log.e("lookupStations", "Encoding failed", e);//if encoding fails use original and hope for the best
220                    }
221                    
222                    String url = XmlUtil.SERVICE_BASE + "/LocateStations?name=" + name + "&dummy=1";
223                    Log.i("url", url);
224                    urlSender(url);
225            }
226            
227            private void statsByIds(String ids) {  
228                    final String url = XmlUtil.SERVICE_BASE + "/LocateStations?list=" + ids + "&dummy=1";
229                    Log.i("url", url);
230                    urlSender(url);
231            }
232            
233            private void urlSender(final String url) {
234                    Thread t = new Thread(new Runnable() {
235    
236                            @Override
237                            public void run() {
238                                    try {
239                                            DownloadUtil.getContentString(url, 15000, "ISO-8859-1");
240                                    } catch (IOException e) {
241                                            Log.e("TrainInfo", "stats failed");
242                                    }                              
243                            }                      
244                    });
245                    t.start();
246            }
247            
248    
249  }  }

Legend:
Removed from v.1553  
changed lines
  Added in v.1572

  ViewVC Help
Powered by ViewVC 1.1.20