/[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 829 by torben, Thu Jun 10 22:26:09 2010 UTC revision 978 by torben, Sat Jul 10 10:53:44 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 20  import dk.thoerup.traininfoservice.Stati Line 20  import dk.thoerup.traininfoservice.Stati
20    
21  public class DepartureFetcher {  public class DepartureFetcher {
22                    
23            enum TrainType{
24                    STOG,
25                    REGIONAL
26            }
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 30  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                    return lookupDepartures(stationID,arrival);
60          }          }
61                                    
62    
63          public List<DepartureBean> lookupDepartures(int stationID, boolean arrival) throws Exception {          public DepartureBean lookupDepartures(int stationID, boolean arrival) throws Exception {
64                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  
65                    DepartureBean departureBean = new DepartureBean();
66                                    
67                  StationBean station = stationDao.getById(stationID);                  StationBean station = stationDao.getById(stationID);
68                                    
69                  if (station.getRegional() != null) {                  if (station.getRegional() != null) {
70                          List<DepartureBean> list = lookupDepartures(station.getRegional(), "FJRN", arrival);                          DepartureBean tempBean = lookupDepartures(station.getRegional(), TrainType.REGIONAL, arrival);
71                          departureList.addAll(list);                                              departureBean.departureEntries.addAll( tempBean.departureEntries );
72                            departureBean.notifications.addAll(tempBean.notifications);
73                  }                  }
74                                    
75                  if (station.getStrain() != null) {                  if (station.getStrain() != null) {
76                          List<DepartureBean> list = lookupDepartures(station.getStrain(), "S2", arrival);                          DepartureBean tempBean = lookupDepartures(station.getStrain(), TrainType.STOG, arrival);
77                          departureList.addAll(list);                              departureBean.departureEntries.addAll( tempBean.departureEntries );
78                            departureBean.notifications.addAll(tempBean.notifications);
79                  }                                }              
80                                    
81                  Collections.sort( departureList );                  Collections.sort( departureBean.departureEntries );
82    
83                                    
84                  return departureList;                  return departureBean;
85          }          }
86                    
87          public List<DepartureBean> lookupDepartures(String stationcode, String type, boolean arrival) throws Exception {          public DepartureBean lookupDepartures(String stationcode, TrainType type, boolean arrival) throws Exception {
88                  if (useTempSite == false) {                  if (useTempSite == false) {
89                          return lookupDeparturesNormalSite(stationcode, type, arrival);                          return lookupDeparturesNormalSite(stationcode, type, arrival);
90                  } else {                  } else {
91                          return lookupDeparturesFromTemporarySite(stationcode, type);                          //return lookupDeparturesFromTemporarySite(stationcode, type);
92                            //TODO: find out what to to if they ever put a temp site up on trafikinfo.bane.dk
93                            return null;
94                  }                  }
95          }          }
96                    
97          public List<DepartureBean> lookupDeparturesNormalSite(String stationcode, String type, boolean arrival) throws Exception {          private String getTypeString(TrainType type) {
98                    switch (type) {
99                    case STOG:
100                            return "S-Tog";
101                    case REGIONAL:
102                            return "Fjerntog";
103                    default:
104                            return ""; //Can not happen
105                    }
106            }
107            
108            public DepartureBean lookupDeparturesNormalSite(String stationcode, TrainType type, boolean arrival) throws Exception {
109                                    
110                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  DepartureBean departureBean = new DepartureBean();
111                                    
112              final WebClient webClient = new WebClient( BrowserVersion.FIREFOX_3 );              final WebClient webClient = new WebClient( BrowserVersion.FIREFOX_3 );
113              webClient.setTimeout(2500);              webClient.setTimeout(2500);
114              webClient.setJavaScriptEnabled(false);              webClient.setJavaScriptEnabled(false);
115                
116                
117                String typeString = getTypeString(type);
118                String arrivalDeparture = (arrival==false) ? "Afgang" : "Ankomst";
119                                                            
120              String uri = "http://www.bane.dk/visStation.asp?ArtikelID=4275&W=" + type + "&S=" + stationcode;              //String uri = "http://www.bane.dk/visStation.asp?ArtikelID=4275&W=" + type + "&S=" + stationcode;
121              BanedkInvocation wrapper = new BanedkInvocation(webClient, uri);              String uri = "http://trafikinfo.bane.dk/Trafikinformation/AfgangAnkomst/" + arrivalDeparture + "/" + stationcode + "/" + typeString + "/UdvidetVisning";
122    
123                //logger.info("URI: " + uri);
124                HtmlunitInvocation wrapper = new HtmlunitInvocation(webClient, uri);
125              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");
126                            
127              HtmlPage page = (HtmlPage) breaker.invoke(wrapper);              HtmlPage page = (HtmlPage) breaker.invoke(wrapper);
128                            
129              String tableName = arrival == false ? "afgangtabel" : "ankomsttabel";              String tableName = arrival == false ? "afgangtabel" : "ankomsttabel";
               
             System.out.println(uri);  
             System.out.println(tableName);  
               
130              HtmlElement table = page.getElementById(tableName);              HtmlElement table = page.getElementById(tableName);
131                            
132              if (table != null) {              if (table != null) {
# Line 111  public class DepartureFetcher { Line 137  public class DepartureFetcher {
137                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {
138                                  DomNodeList<HtmlElement> fields = currentRow.getElementsByTagName("td");                                  DomNodeList<HtmlElement> fields = currentRow.getElementsByTagName("td");
139                    
140                                  DepartureBean departure = new DepartureBean();                                  DepartureEntry departure = new DepartureEntry();
141                                                                    
142                                  String time = fields.get(0).asText();                                  String time = fields.get(0).asText();
143                                  if (time.equals(""))                                  if (time.equals(""))
# Line 122  public class DepartureFetcher { Line 148  public class DepartureFetcher {
148                                  departure.setUpdated(updated);                                  departure.setUpdated(updated);
149                                                                    
150                                  String trainNumber = fields.get(2).asText();                                  String trainNumber = fields.get(2).asText();
151                                  if (type.equalsIgnoreCase("S2")) //If it is S-train we need to extract the trainNumber                                  if (type == TrainType.STOG) //If it is S-train we need to extract the trainNumber
152                                          trainNumber = trainNumber + " " + extractTrainNumber(fields.get(2));                                          trainNumber = trainNumber + " " + extractTrainNumber(fields.get(2));
153                                  departure.setTrainNumber(trainNumber);                                  departure.setTrainNumber(trainNumber);
154                                                                    
# Line 135  public class DepartureFetcher { Line 161  public class DepartureFetcher {
161                                  String location = fields.get(5).asText();                                  String location = fields.get(5).asText();
162                                  departure.setLocation(location);                                  departure.setLocation(location);
163                                                                    
164                                  String status = fields.get(6).asText();                                  String status = fields.get(6).asText().trim();
165                                  departure.setStatus(status);                                  departure.setStatus(status);
166                                                                    
167                                  String note = extractNote( fields.get(7) );                                  String note = extractNote( fields.get(7) );
168                                  departure.setNote(note);                                  departure.setNote(note);
169                                                                    
170                                  departure.setType(type);                                  departure.setType(typeString);
171                                                                    
172                                  departureList.add(departure);                                  departureBean.departureEntries.add( departure );
173                          }                          }
174                      }                      }
175              } else {              } else {
176                  logger.warning("No departures found for station=" + stationcode + ", type=" + type);                  logger.warning("No departures found for station=" + stationcode + ", type=" + type);
177              }              }
178                
179                HtmlElement notifDiv = page.getElementById("station_planlagte_text");
180                if (notifDiv != null) {
181    
182                    DomNodeList<HtmlElement> tables = notifDiv.getElementsByTagName("table");
183                    for (HtmlElement tab : tables) {
184    
185                            DomNodeList<HtmlElement> anchors = tab.getElementsByTagName("a");              
186                            if (anchors.size() == 2) {
187                                    departureBean.notifications.add(  anchors.get(1).getTextContent() );
188                            }
189                    }
190                    
191                }
192                
193                
194              webClient.closeAllWindows();              webClient.closeAllWindows();
195                            
196              return departureList;              return departureBean;
197          }          }
198                    
199            /*
200            @Deprecated
201          public List<DepartureBean> lookupDeparturesFromTemporarySite(String stationcode, String type) throws Exception {          public List<DepartureBean> lookupDeparturesFromTemporarySite(String stationcode, String type) throws Exception {
202                                    
203                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();
# Line 165  public class DepartureFetcher { Line 209  public class DepartureFetcher {
209    
210              String uri = "http://bane.dk/lite/station.asp?w=" + type + "&s=" + stationcode;              String uri = "http://bane.dk/lite/station.asp?w=" + type + "&s=" + stationcode;
211                            
212              BanedkInvocation wrapper = new BanedkInvocation(webClient, uri);              HtmlunitInvocation wrapper = new HtmlunitInvocation(webClient, uri);
213              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");
214                            
215              HtmlPage page = (HtmlPage) breaker.invoke(wrapper);              HtmlPage page = (HtmlPage) breaker.invoke(wrapper);
# Line 218  public class DepartureFetcher { Line 262  public class DepartureFetcher {
262                            
263                            
264              return departureList;              return departureList;
265          }          }*/
266    
267                    
268          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"
# Line 250  public class DepartureFetcher { Line 294  public class DepartureFetcher {
294          }          }
295                    
296          private String extractTrainNumber(HtmlElement trainTd) {          private String extractTrainNumber(HtmlElement trainTd) {
                 String number = "";  
297                  HtmlElement anchorElement = trainTd.getElementsByTagName("a").get(0);                  HtmlElement anchorElement = trainTd.getElementsByTagName("a").get(0);
298                  String href = anchorElement.getAttribute("href");                  String href = anchorElement.getAttribute("href");
                 String argstring = href.substring( href.indexOf('?') + 1);  
                   
                 String args[] = argstring.split("&");  
                 for (String arg : args) {  
                         String pair[] = arg.split("="); // Key=pair[0], Value=pair[1]  
                           
                         if (pair[0].equalsIgnoreCase("TogNr"))  
                                 number = pair[1];  
                 }  
299                                    
300                    int pos = href.lastIndexOf('/');
301                    String number = href.substring(pos+1);
302                                    
303                  return number;                  return number;
304          }          }

Legend:
Removed from v.829  
changed lines
  Added in v.978

  ViewVC Help
Powered by ViewVC 1.1.20