/[projects]/android/TrainInfoServiceGoogle/src/dk/thoerup/traininfoservice/banedk/TimetableFetcher.java
ViewVC logotype

Diff of /android/TrainInfoServiceGoogle/src/dk/thoerup/traininfoservice/banedk/TimetableFetcher.java

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

android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/TimetableFetcher.java revision 1048 by torben, Tue Sep 14 06:10:30 2010 UTC android/TrainInfoServiceGoogle/src/dk/thoerup/traininfoservice/banedk/TimetableFetcher.java revision 1080 by torben, Mon Sep 20 20:11:55 2010 UTC
# Line 4  package dk.thoerup.traininfoservice.bane Line 4  package dk.thoerup.traininfoservice.bane
4    
5  import java.net.URL;  import java.net.URL;
6  import java.sql.SQLException;  import java.sql.SQLException;
 import java.util.ArrayList;  
 import java.util.List;  
7  import java.util.Map;  import java.util.Map;
8  import java.util.logging.Level;  import java.util.logging.Level;
9  import java.util.logging.Logger;  import java.util.logging.Logger;
# Line 14  import org.jsoup.nodes.Document; Line 12  import org.jsoup.nodes.Document;
12  import org.jsoup.nodes.Element;  import org.jsoup.nodes.Element;
13  import org.jsoup.select.Elements;  import org.jsoup.select.Elements;
14    
15    import dk.thoerup.android.traininfo.common.TimetableBean;
16    import dk.thoerup.android.traininfo.common.TimetableEntry;
17  import dk.thoerup.circuitbreaker.CircuitBreaker;  import dk.thoerup.circuitbreaker.CircuitBreaker;
18  import dk.thoerup.circuitbreaker.CircuitBreakerManager;  import dk.thoerup.circuitbreaker.CircuitBreakerManager;
19  import dk.thoerup.traininfoservice.StationDAO;  import dk.thoerup.traininfoservice.StationDAO;
# Line 22  import dk.thoerup.traininfoservice.Stati Line 22  import dk.thoerup.traininfoservice.Stati
22  public class TimetableFetcher {  public class TimetableFetcher {
23    
24                                    
25          Map<String, List<TimetableBean>> cache;          Map<String, TimetableBean> cache;
26          Map<String, Integer> stationCache;          Map<String, Integer> stationCache;
27    
28          StationDAO stationDao = new StationDAO();          StationDAO stationDao = new StationDAO();
# Line 37  public class TimetableFetcher { Line 37  public class TimetableFetcher {
37                  useAzureSite = azureSite;                  useAzureSite = azureSite;
38                  this.replyTimeout = replyTimeout;                  this.replyTimeout = replyTimeout;
39                                    
40                  cache = new TimeoutMap<String,List<TimetableBean>>(cacheTimeout);                  cache = new TimeoutMap<String,TimetableBean>(cacheTimeout);
41                  stationCache = new TimeoutMap<String,Integer>( 3*60*60*1000 );                  stationCache = new TimeoutMap<String,Integer>( 3*60*60*1000 );
42          }          }
43                    
44                    
45          List<TimetableBean> cachedLookupTimetable(String trainID, String type) throws Exception {          TimetableBean cachedLookupTimetable(String trainID, String type) throws Exception {
46                  String key = trainID+type;                  String key = trainID+type;
47                  List<TimetableBean> list = cache.get(key);                  TimetableBean list = cache.get(key);
48                                    
49                  if (list == null) {                  if (list == null) {
50                          list = lookupTimetable(trainID,type);                          list = lookupTimetable(trainID,type);
# Line 56  public class TimetableFetcher { Line 56  public class TimetableFetcher {
56                  return list;                  return list;
57          }          }
58                    
59          List<TimetableBean> lookupTimetable(String trainID, String type) throws Exception {          TimetableBean lookupTimetable(String trainID, String type) throws Exception {
60                  if (useAzureSite == true ){                  if (useAzureSite == true ){
61                          return lookupTimetableAzureSite(trainID, type);                          return lookupTimetableAzureSite(trainID, type);
62                                                    
# Line 81  public class TimetableFetcher { Line 81  public class TimetableFetcher {
81                  return id;                  return id;
82          }          }
83    
84          List<TimetableBean> lookupTimetableAzureSite(String trainID, String type) throws Exception {                      TimetableBean lookupTimetableAzureSite(String trainID, String type) throws Exception {          
85                  List<TimetableBean> timetableList = new ArrayList<TimetableBean>();                  TimetableBean timetableBean = new TimetableBean();
86                                    
87    
88                  String url = "http://trafikinfo.bane.dk/TrafikInformation/Ruteplan/" + trainID;                                  String url = "http://trafikinfo.bane.dk/TrafikInformation/Ruteplan/" + trainID;                
# Line 117  public class TimetableFetcher { Line 117  public class TimetableFetcher {
117                                  continue;                                  continue;
118                          }                          }
119                                                    
120                          TimetableBean bean = new TimetableBean();                          TimetableEntry entry = new TimetableEntry();
121                                                    
122                          String station = fields.get(0).text() ;                          String station = fields.get(0).text() ;
123                          if (station.equals("København"))                          if (station.equals("København"))
124                                  station = "København H"; //correct inconsistency in naming                                  station = "København H"; //correct inconsistency in naming
125                                                    
126                          bean.setStation( station );                          entry.setStation( station );
127                          bean.setArrival( fields.get(1).text() );                          entry.setArrival( fields.get(1).text() );
128                          bean.setDeparture( fields.get(2).text() );                          entry.setDeparture( fields.get(2).text() );
129                                                    
130                          boolean cancelled = fields.get(3).text().equalsIgnoreCase("aflyst");                          boolean cancelled = fields.get(3).text().equalsIgnoreCase("aflyst");
131                          bean.setCancelled(cancelled);                          entry.setCancelled(cancelled);
132                                                    
133                          if (currentStation == true && currentStationSaved == false ) {                          if (currentStation == true && currentStationSaved == false ) {
134                                  bean.setCurrent(currentStation);                                  entry.setCurrent(currentStation);
135                                  currentStationSaved = true;                                  currentStationSaved = true;
136                          }                          }
137                                                    
138                          bean.setStationId( getStationId( station ));                          entry.setStationId( getStationId( station ));
139                                                    
140                          timetableList.add(bean);                          timetableBean.entries.add(entry);
141                  }                  }
142                                    
143                  //TODO: There is an off-by-one error in this cancelled parser thingie                  //TODO: There is an off-by-one error in this cancelled parser thingie
144                  final String cancelledString = "Aflyst";                  final String cancelledString = "Aflyst";
145                  for (int i=0;i<timetableList.size(); i++) { //handle cancelled labels                  for (int i=0;i<timetableBean.entries.size(); i++) { //handle cancelled labels
146                          final int lastIdx = (timetableList.size() - 1);                          final int lastIdx = (timetableBean.entries.size() - 1);
147                                                    
148                          TimetableBean current = timetableList.get(i);                          TimetableEntry current = timetableBean.entries.get(i);
149                          if (current.isCancelled()) {                          if (current.isCancelled()) {
150                                  if (i == 0) {                                  if (i == 0) {
151                                          current.setDeparture(cancelledString);                                          current.setDeparture(cancelledString);
152                                  } else if (i == lastIdx) {                                  } else if (i == lastIdx) {
153                                          current.setArrival(cancelledString);                                          current.setArrival(cancelledString);
154                                  } else if (i>0 && i<lastIdx) {                                  } else if (i>0 && i<lastIdx) {
155                                          TimetableBean next = timetableList.get(i+1);                                          TimetableEntry next = timetableBean.entries.get(i+1);
156                                          TimetableBean prev = timetableList.get(i-1);                                          TimetableEntry prev = timetableBean.entries.get(i-1);
157                                                                                    
158                                          if (next.isCancelled())                                          if (next.isCancelled())
159                                                  current.setDeparture(cancelledString);                                                  current.setDeparture(cancelledString);
# Line 168  public class TimetableFetcher { Line 168  public class TimetableFetcher {
168              }              }
169                            
170                                    
171                  return timetableList;                  return timetableBean;
172          }          }
173    
174          List<TimetableBean> lookupTimetableWwwSite(String trainID, String type) throws Exception {                        TimetableBean lookupTimetableWwwSite(String trainID, String type) throws Exception {            
175                  List<TimetableBean> timetableList = new ArrayList<TimetableBean>();                  TimetableBean timetableBean = new TimetableBean();
176                                    
177                  String url = "http://www.bane.dk/visRute.asp?W=" + type + "&TogNr=" + trainID + "&artikelId=4276";                  String url = "http://www.bane.dk/visRute.asp?W=" + type + "&TogNr=" + trainID + "&artikelId=4276";
178                  logger.fine("URL:" + url);                  logger.fine("URL:" + url);
# Line 207  public class TimetableFetcher { Line 207  public class TimetableFetcher {
207                                  continue;                                  continue;
208                          }                          }
209                                                    
210                          TimetableBean bean = new TimetableBean();                          TimetableEntry entry = new TimetableEntry();
211                                                    
212                          String station = DepartureFetcher.cleanText( fields.get(0).text() ) ;                          String station = DepartureFetcher.cleanText( fields.get(0).text() ) ;
213                          if (station.equals("København"))                          if (station.equals("København"))
# Line 216  public class TimetableFetcher { Line 216  public class TimetableFetcher {
216                          String arrival = DepartureFetcher.cleanText( fields.get(1).text() );                          String arrival = DepartureFetcher.cleanText( fields.get(1).text() );
217                          String departure = DepartureFetcher.cleanText( fields.get(2).text() );                          String departure = DepartureFetcher.cleanText( fields.get(2).text() );
218                                                    
219                          bean.setStation( station );                          entry.setStation( station );
220                          bean.setArrival( arrival );                          entry.setArrival( arrival );
221                          bean.setDeparture( departure );                          entry.setDeparture( departure );
222                                    
223                                                    
224                          if (currentStation == true && currentStationSaved == false ) {                          if (currentStation == true && currentStationSaved == false ) {
225                                  bean.setCurrent(currentStation);                                  entry.setCurrent(currentStation);
226                                  currentStationSaved = true;                                  currentStationSaved = true;
227                          }                          }
228                                                    
229                          bean.setStationId( getStationId( station ));                          entry.setStationId( getStationId( station ));
230                                                    
231                          timetableList.add(bean);                          timetableBean.entries.add(entry);
232                  }                                }              
233                                    
234              } else {              } else {
# Line 236  public class TimetableFetcher { Line 236  public class TimetableFetcher {
236              }              }
237                            
238                                    
239                  return timetableList;                  return timetableBean;
240          }                }      
241                    
242  }  }

Legend:
Removed from v.1048  
changed lines
  Added in v.1080

  ViewVC Help
Powered by ViewVC 1.1.20