/[projects]/android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/DepartureFetcher.java
ViewVC logotype

Diff of /android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/DepartureFetcher.java

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

revision 973 by torben, Fri Jul 9 22:28:07 2010 UTC revision 980 by torben, Sat Jul 10 11:01:07 2010 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfoservice.banedk;  package dk.thoerup.traininfoservice.banedk;
2    
3  import java.util.ArrayList;  
4  import java.util.Collections;  import java.util.Collections;
5  import java.util.List;  import java.util.List;
6  import java.util.Map;  import java.util.Map;
# Line 27  public class DepartureFetcher { Line 27  public class DepartureFetcher {
27                    
28          Logger logger = Logger.getLogger(DepartureFetcher.class.getName());          Logger logger = Logger.getLogger(DepartureFetcher.class.getName());
29                    
30          Map<String, List<DepartureBean>> cache;          Map<String, DepartureBean> cache;
31                    
32          StationDAO stationDao = new StationDAO();          StationDAO stationDao = new StationDAO();
33                    
# Line 35  public class DepartureFetcher { Line 35  public class DepartureFetcher {
35                    
36          public DepartureFetcher(boolean tempSite, int cacheTimeout) {          public DepartureFetcher(boolean tempSite, int cacheTimeout) {
37                  useTempSite = tempSite;                  useTempSite = tempSite;
38                  cache = new TimeoutMap<String,List<DepartureBean>>(cacheTimeout);                  cache = new TimeoutMap<String,DepartureBean>(cacheTimeout);
39          }          }
40                    
41                    
42                                    
43                    
44          public List<DepartureBean> cachedLookupDepartures(int stationID, boolean arrival) throws Exception {          public DepartureBean cachedLookupDepartures(int stationID, boolean arrival) throws Exception {
45                  final String key = "" + stationID + ":" + arrival;                  final String key = "" + stationID + ":" + arrival;
46                                    
47                  List<DepartureBean> list = cache.get(key);                  DepartureBean departureBean = cache.get(key);
48    
49                                    
50                  if (list == null) {                  if (departureBean == null) {
51                          list = lookupDepartures(stationID,arrival);                          departureBean = lookupDepartures(stationID,arrival);
52                          cache.put(key, list);                          cache.put(key, departureBean);
53                  } else {                  } else {
54                          Statistics.getInstance().incrementDepartureCacheHits();                          Statistics.getInstance().incrementDepartureCacheHits();
55                          logger.info("Departure: Cache hit " + key); //remove before production                          logger.info("Departure: Cache hit " + key); //remove before production
56                  }                  }
57                  return list;                  return departureBean;
58          }          }
59                                    
60    
61          public List<DepartureBean> lookupDepartures(int stationID, boolean arrival) throws Exception {          public DepartureBean lookupDepartures(int stationID, boolean arrival) throws Exception {
62                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  
63                    DepartureBean departureBean = new DepartureBean();
64                                    
65                  StationBean station = stationDao.getById(stationID);                  StationBean station = stationDao.getById(stationID);
66                                    
67                  if (station.getRegional() != null) {                  if (station.getRegional() != null) {
68                          List<DepartureBean> list = lookupDepartures(station.getRegional(), TrainType.REGIONAL, arrival);                          DepartureBean tempBean = lookupDepartures(station.getRegional(), TrainType.REGIONAL, arrival);
69                          departureList.addAll(list);                                              departureBean.departureEntries.addAll( tempBean.departureEntries );
70                            departureBean.notifications.addAll(tempBean.notifications);
71                  }                  }
72                                    
73                  if (station.getStrain() != null) {                  if (station.getStrain() != null) {
74                          List<DepartureBean> list = lookupDepartures(station.getStrain(), TrainType.STOG, arrival);                          DepartureBean tempBean = lookupDepartures(station.getStrain(), TrainType.STOG, arrival);
75                          departureList.addAll(list);                              departureBean.departureEntries.addAll( tempBean.departureEntries );
76                            departureBean.notifications.addAll(tempBean.notifications);
77                  }                                }              
78                                    
79                  Collections.sort( departureList );                  Collections.sort( departureBean.departureEntries );
80    
81                                    
82                  return departureList;                  return departureBean;
83          }          }
84                    
85          public List<DepartureBean> lookupDepartures(String stationcode, TrainType type, boolean arrival) throws Exception {          public DepartureBean lookupDepartures(String stationcode, TrainType type, boolean arrival) throws Exception {
86                  if (useTempSite == false) {                  if (useTempSite == false) {
87                          return lookupDeparturesNormalSite(stationcode, type, arrival);                          return lookupDeparturesNormalSite(stationcode, type, arrival);
88                  } else {                  } else {
# Line 100  public class DepartureFetcher { Line 103  public class DepartureFetcher {
103                  }                  }
104          }          }
105                    
106          public List<DepartureBean> lookupDeparturesNormalSite(String stationcode, TrainType type, boolean arrival) throws Exception {          public DepartureBean lookupDeparturesNormalSite(String stationcode, TrainType type, boolean arrival) throws Exception {
107                                    
108                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  DepartureBean departureBean = new DepartureBean();
109                                    
110              final WebClient webClient = new WebClient( BrowserVersion.FIREFOX_3 );              final WebClient webClient = new WebClient( BrowserVersion.FIREFOX_3 );
111              webClient.setTimeout(2500);              webClient.setTimeout(2500);
# Line 132  public class DepartureFetcher { Line 135  public class DepartureFetcher {
135                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {
136                                  DomNodeList<HtmlElement> fields = currentRow.getElementsByTagName("td");                                  DomNodeList<HtmlElement> fields = currentRow.getElementsByTagName("td");
137                    
138                                  DepartureBean departure = new DepartureBean();                                  DepartureEntry departure = new DepartureEntry();
139                                                                    
140                                  String time = fields.get(0).asText();                                  String time = fields.get(0).asText();
141                                  if (time.equals(""))                                  if (time.equals(""))
# Line 164  public class DepartureFetcher { Line 167  public class DepartureFetcher {
167                                                                    
168                                  departure.setType(typeString);                                  departure.setType(typeString);
169                                                                    
170                                  departureList.add(departure);                                  departureBean.departureEntries.add( departure );
171                          }                          }
172                      }                      }
173              } else {              } else {
174                  logger.warning("No departures found for station=" + stationcode + ", type=" + type);                  logger.warning("No departures found for station=" + stationcode + ", type=" + type);
175              }              }
176                
177                HtmlElement notifDiv = page.getElementById("station_planlagte_text");
178                if (notifDiv != null) {
179    
180                    DomNodeList<HtmlElement> tables = notifDiv.getElementsByTagName("table");
181                    for (HtmlElement tab : tables) {
182    
183                            DomNodeList<HtmlElement> anchors = tab.getElementsByTagName("a");              
184                            if (anchors.size() == 2) {
185                                    departureBean.notifications.add(  anchors.get(1).getTextContent() );
186                            }
187                    }
188                    
189                }
190                
191                
192              webClient.closeAllWindows();              webClient.closeAllWindows();
193                            
194              return departureList;              return departureBean;
195          }          }
196                    
197            /*
198            @Deprecated
199          public List<DepartureBean> lookupDeparturesFromTemporarySite(String stationcode, String type) throws Exception {          public List<DepartureBean> lookupDeparturesFromTemporarySite(String stationcode, String type) throws Exception {
200                                    
201                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();
# Line 239  public class DepartureFetcher { Line 260  public class DepartureFetcher {
260                            
261                            
262              return departureList;              return departureList;
263          }          }*/
264    
265                    
266          private int extractUpdated(HtmlElement updatedTd) { //extract the digit (in this case: 4) from "media/trafikinfo/opdater4.gif"          private int extractUpdated(HtmlElement updatedTd) { //extract the digit (in this case: 4) from "media/trafikinfo/opdater4.gif"

Legend:
Removed from v.973  
changed lines
  Added in v.980

  ViewVC Help
Powered by ViewVC 1.1.20