/[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 1020 by torben, Mon Aug 30 11:53:34 2010 UTC revision 1248 by torben, Thu Mar 31 17:13:19 2011 UTC
# Line 11  import org.jsoup.nodes.Document; Line 11  import org.jsoup.nodes.Document;
11  import org.jsoup.nodes.Element;  import org.jsoup.nodes.Element;
12  import org.jsoup.select.Elements;  import org.jsoup.select.Elements;
13    
14    import dk.thoerup.android.traininfo.common.DepartureBean;
15    import dk.thoerup.android.traininfo.common.DepartureEntry;
16    import dk.thoerup.android.traininfo.common.StationBean.StationEntry;
17  import dk.thoerup.circuitbreaker.CircuitBreaker;  import dk.thoerup.circuitbreaker.CircuitBreaker;
18  import dk.thoerup.circuitbreaker.CircuitBreakerManager;  import dk.thoerup.circuitbreaker.CircuitBreakerManager;
 import dk.thoerup.traininfoservice.StationBean;  
19  import dk.thoerup.traininfoservice.StationDAO;  import dk.thoerup.traininfoservice.StationDAO;
20  import dk.thoerup.traininfoservice.Statistics;  import dk.thoerup.traininfoservice.Statistics;
21    
# Line 24  public class DepartureFetcher { Line 26  public class DepartureFetcher {
26                  REGIONAL                  REGIONAL
27          }          }
28                    
29            enum FetchTrainType {
30                    STOG,
31                    REGIONAL,
32                    BOTH
33            }
34            
35          Logger logger = Logger.getLogger(DepartureFetcher.class.getName());          Logger logger = Logger.getLogger(DepartureFetcher.class.getName());
36                    
37          Map<String, DepartureBean> cache;          Map<String, DepartureBean> cache;
38                    
39          StationDAO stationDao = new StationDAO();          StationDAO stationDao = new StationDAO();
40                    
41          private boolean useTempSite;          private boolean useAzureSite;
42            private int replyTimeout;
43                    
44          public DepartureFetcher(boolean tempSite, int cacheTimeout) {          public DepartureFetcher(boolean azureSite, int cacheTimeout, int replyTimeout) {
45                  useTempSite = tempSite;                  this.replyTimeout = replyTimeout;
46                    useAzureSite = azureSite;
47                  cache = new TimeoutMap<String,DepartureBean>(cacheTimeout);                  cache = new TimeoutMap<String,DepartureBean>(cacheTimeout);
48          }          }
49                    
50                    
51                                    
52                    
53          public DepartureBean cachedLookupDepartures(int stationID, boolean arrival) throws Exception {          public DepartureBean cachedLookupDepartures(int stationID, boolean arrival, FetchTrainType type) throws Exception {
54                  final String key = "" + stationID + ":" + arrival;                  
55                    final String key = "" + stationID + ":" + arrival + ":" + type.toString();
56                                    
57                  DepartureBean departureBean = cache.get(key);                  DepartureBean departureBean = cache.get(key);
58    
59                                    
60                  if (departureBean == null) {                  if (departureBean == null) {
61                          departureBean = lookupDepartures(stationID,arrival);                          departureBean = lookupDepartures(stationID, arrival, type);
62                          cache.put(key, departureBean);                          cache.put(key, departureBean);
63                  } else {                  } else {
64                          Statistics.getInstance().incrementDepartureCacheHits();                          Statistics.getInstance().incrementDepartureCacheHits();
# Line 57  public class DepartureFetcher { Line 68  public class DepartureFetcher {
68          }          }
69                                    
70    
71          public DepartureBean lookupDepartures(int stationID, boolean arrival) throws Exception {          public DepartureBean lookupDepartures(int stationID, boolean arrival, FetchTrainType type) throws Exception {
72                                    
73                  DepartureBean departureBean = new DepartureBean();                  DepartureBean departureBean = new DepartureBean();
74                                    
75                  StationBean station = stationDao.getById(stationID);                  StationEntry station = stationDao.getById(stationID);
76                    
77                    departureBean.stationName = station.getName();
78                                    
79                  if (station.getRegional() != null) {                  if (station.getRegional() != null && (type == FetchTrainType.REGIONAL||type == FetchTrainType.BOTH) ) {
80                          DepartureBean tempBean = lookupDepartures(station.getRegional(), TrainType.REGIONAL, arrival);                          DepartureBean tempBean = lookupDepartures(station.getRegional(), TrainType.REGIONAL, arrival);
81                          departureBean.departureEntries.addAll( tempBean.departureEntries );                          departureBean.entries.addAll( tempBean.entries );
82                          departureBean.notifications.addAll(tempBean.notifications);                          departureBean.notifications.addAll(tempBean.notifications);
83                  }                  }
84                                    
85                  if (station.getStrain() != null) {                  if (station.getStrain() != null && (type == FetchTrainType.STOG||type == FetchTrainType.BOTH)) {
86                          DepartureBean tempBean = lookupDepartures(station.getStrain(), TrainType.STOG, arrival);                          DepartureBean tempBean = lookupDepartures(station.getStrain(), TrainType.STOG, arrival);
87                          departureBean.departureEntries.addAll( tempBean.departureEntries );                          departureBean.entries.addAll( tempBean.entries );
88                          departureBean.notifications.addAll(tempBean.notifications);                          departureBean.notifications.addAll(tempBean.notifications);
89                  }                                }              
90                                    
91                  Collections.sort( departureBean.departureEntries );                  if (departureBean.entries.size() == 0) {
92                            logger.info("No departures found for station " + stationID);
93                    }
94                    
95                    Collections.sort( departureBean.entries );
96    
97                                    
98                  return departureBean;                  return departureBean;
99          }          }
100                    
101          public DepartureBean lookupDepartures(String stationcode, TrainType type, boolean arrival) throws Exception {          public DepartureBean lookupDepartures(String stationcode, TrainType type, boolean arrival) throws Exception {
102                  if (useTempSite == false) {                  if (useAzureSite == true) {
103                          return lookupDeparturesNormalSite(stationcode, type, arrival);                          return lookupDeparturesAzureSite(stationcode, type, arrival);
104                  } else {                  } else {
105                          //return lookupDeparturesFromTemporarySite(stationcode, type);                          return lookupDeparturesWwwSite(stationcode, type, arrival);
                         //TODO: find out what to to if they ever put a temp site up on trafikinfo.bane.dk  
                         return null;  
106                  }                  }
107          }          }
108                    
109          private String getTypeString(TrainType type) {          private String getTypeStringAzure(TrainType type) {
110                  switch (type) {                  switch (type) {
111                  case STOG:                  case STOG:
112                          return "S-Tog";                          return "S-Tog";
# Line 102  public class DepartureFetcher { Line 117  public class DepartureFetcher {
117                  }                  }
118          }          }
119                    
120          public DepartureBean lookupDeparturesNormalSite(String stationcode, TrainType type, boolean arrival) throws Exception {          private String getTypeStringWww(TrainType type) {
121                    switch (type) {
122                    case STOG:
123                            return "S2";
124                    case REGIONAL:
125                            return "FJRN";
126                    default:
127                            return ""; //Can not happen
128                    }
129            }
130            
131            public DepartureBean lookupDeparturesAzureSite(String stationcode, TrainType type, boolean arrival) throws Exception {
132                                    
133                  DepartureBean departureBean = new DepartureBean();                  DepartureBean departureBean = new DepartureBean();
134                                    
135                            
136              String typeString = getTypeString(type);              String typeString = getTypeStringAzure(type);
137              String arrivalDeparture = (arrival==false) ? "Afgang" : "Ankomst";              String arrivalDeparture = (arrival==false) ? "Afgang" : "Ankomst";
138                            
139              stationcode = URLEncoder.encode(stationcode,"ISO-8859-1");              stationcode = URLEncoder.encode(stationcode,"ISO-8859-1");
             //String uri = "http://www.bane.dk/visStation.asp?ArtikelID=4275&W=" + type + "&S=" + stationcode;  
             String uri = "http://trafikinfo.bane.dk/Trafikinformation/AfgangAnkomst/" + arrivalDeparture + "/" + stationcode + "/" + typeString + "/UdvidetVisning";  
140    
141                String uri = "http://trafikinfo.bane.dk/Trafikinformation/AfgangAnkomst/" + arrivalDeparture + "/" + stationcode + "/" + typeString + "/UdvidetVisning";        
142                            
143                            logger.fine("URI: " + uri);    
144              //logger.info("URI: " + uri);                        JsoupInvocation wrapper = new JsoupInvocation( new URL(uri), replyTimeout);
             JsoupInvocation wrapper = new JsoupInvocation( new URL(uri), 2500);  
145              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");
146                            
147              Document page = (Document) breaker.invoke(wrapper);              Document page = (Document) breaker.invoke(wrapper);
# Line 128  public class DepartureFetcher { Line 152  public class DepartureFetcher {
152              if (table != null) {              if (table != null) {
153                      Elements tableRows =  table.getElementsByTag("tr");                      Elements tableRows =  table.getElementsByTag("tr");
154                                            
155                      boolean tidsstregExists = (table.getElementsByAttributeValue("class", "Tidsstreg").size() > 0);                      //boolean tidsstregExists = (table.getElementsByAttributeValue("class", "Tidsstreg").size() > 0);
156                      boolean passedTidsstreg = false;                      //boolean passedTidsstreg = false;
157                                            
158                      for (Element currentRow : tableRows) {                      for (Element currentRow : tableRows) {
159                          String rowClass = currentRow.attr("class");                          String rowClass = currentRow.attr("class");
160                                                    /*
161                          if (tidsstregExists == true && passedTidsstreg == false) {                          if (tidsstregExists == true && passedTidsstreg == false) {
162                                  if (currentRow.getElementsByAttributeValue("class", "Tidsstreg").size() > 0) {                                  if (currentRow.getElementsByAttributeValue("class", "Tidsstreg").size() > 0) {
163                                          passedTidsstreg = true;                                          passedTidsstreg = true;
164                                  } else {                                  } else {
165                                          continue;                                          continue;
166                                  }                                  }
167                          }                          }*/
168                                                    
169                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {
170                                                                    
# Line 158  public class DepartureFetcher { Line 182  public class DepartureFetcher {
182                                                                    
183                                  String trainNumber = fields.get(2).text();                                  String trainNumber = fields.get(2).text();
184                                  if (type == TrainType.STOG) //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
185                                          trainNumber = trainNumber + " " + extractTrainNumber(fields.get(2));                                          trainNumber = trainNumber + " " + extractTrainNumberAzure(fields.get(2));
186                                  departure.setTrainNumber(trainNumber);                                  departure.setTrainNumber(trainNumber);
187                                                                    
188                                  String destination = fields.get(3).text();                                  String destination = fields.get(3).text();
# Line 178  public class DepartureFetcher { Line 202  public class DepartureFetcher {
202                                                                    
203                                  departure.setType(typeString);                                  departure.setType(typeString);
204                                                                    
205                                  departureBean.departureEntries.add( departure );                                  departureBean.entries.add( departure );
206                          }                          }
207                      }                      }
208              } else {              } else {
# Line 203  public class DepartureFetcher { Line 227  public class DepartureFetcher {
227              return departureBean;              return departureBean;
228          }          }
229                    
230          /*          
231          @Deprecated          
232          public List<DepartureBean> lookupDeparturesFromTemporarySite(String stationcode, String type) throws Exception {          public static String cleanText(String input) {
233                    //apparently JSoup translates &nbsp; characters on www.bane.dk to 0xA0
234                    return input.replace((char) 0xA0, (char)0x20).trim();
235            }
236            
237            public DepartureBean lookupDeparturesWwwSite(String stationcode, TrainType trainType, boolean arrival) throws Exception {
238                                    
239                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  DepartureBean departureBean = new DepartureBean();
240                    
241                    String type = getTypeStringWww(trainType);
242                    
243                    stationcode = URLEncoder.encode(stationcode, "ISO-8859-1");
244                                    
245              final WebClient webClient = new WebClient(BrowserVersion.FIREFOX_3);                                              
246              webClient.setTimeout(2500);              String uri = "http://www.bane.dk/visStation.asp?ArtikelID=4275&W=" + type + "&S=" + stationcode;
247              webClient.setJavaScriptEnabled(false);              logger.fine("URI:" + uri);
248                            
249    
250              String uri = "http://bane.dk/lite/station.asp?w=" + type + "&s=" + stationcode;              JsoupInvocation wrapper = new JsoupInvocation( new URL(uri), replyTimeout);
               
             HtmlunitInvocation wrapper = new HtmlunitInvocation(webClient, uri);  
251              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");
252                            
253              HtmlPage page = (HtmlPage) breaker.invoke(wrapper);              Element page = (Element) breaker.invoke(wrapper);
254                
255                String tableName = arrival == false ? "afgangtabel" : "ankomsttabel";
256                Element table = page.getElementById(tableName);
257                            
258              HtmlElement table = page.getElementById("traf_afgang");  
259                            
260              if (table != null) {                                      if (table != null) {
261                      DomNodeList<HtmlElement> tableRows =  table.getElementsByTagName("tr");                      Elements tableRows =  table.getElementsByTag("tr");
262                                            
263                      boolean isFirst = true;                      //boolean passedTidsstreg = false;
264                        //boolean tidsstregExists = (table.getElementsByAttributeValue("class", "Tidsstreg").size() > 0);
265                                            
266                      for (HtmlElement currentRow : tableRows) {                      for (Element currentRow : tableRows) {
267                          if (isFirst == true) { //skip table headers                          String rowClass = currentRow.attr("class");
268                                  isFirst = false;                          /*
269                                  continue;                          if (tidsstregExists == true && passedTidsstreg == false) {
270                          }                                  if (currentRow.getElementsByAttributeValue("class", "Tidsstreg").size() > 0) {
271                                            passedTidsstreg = true;
272                                    } else {
273                                            continue;
274                                    }
275                            }*/
276                                                    
277                          DomNodeList<HtmlElement> fields = currentRow.getElementsByTagName("td");                          
278                            if (rowClass != null && rowClass.toLowerCase().contains("station") ) {
279                          DepartureBean departure = new DepartureBean();                                  Elements fields = currentRow.getElementsByTag("td");
280            
281                          String time = fields.get(0).asText().trim();                                  DepartureEntry departure = new DepartureEntry();
282                                    
                         if (time.equals(""))  
                                 time = "0:00"; //Bane.dk bug work-around  
                         departure.setTime(time);  
   
   
                         String trainNumber = fields.get(1).asText();  
                         departure.setTrainNumber(trainNumber);  
   
                         String destination = fields.get(2).asText();  
                         departure.setDestination(destination);  
   
                         String origin = fields.get(3).asText();  
                         departure.setOrigin(origin);  
   
                         String status = fields.get(4).asText();  
                         departure.setStatus(status);  
   
                         String note = fields.get(5).asText();  
                         departure.setNote(note);  
283    
284                          departureList.add(departure);                                  
285                                    String time = cleanText( fields.get(0).getAllElements().get(2).text() );
286                                    if (time.equals(""))
287                                            time = "0:00"; //Bane.dk bug work-around
288                                    departure.setTime(time);
289                                    
290                                    int updated = extractUpdated( fields.get(1) );
291                                    departure.setUpdated(updated);
292                                    
293                                    String trainNumber = cleanText( fields.get(2).text() );
294                                    if (type.equalsIgnoreCase("S2")) //If it is S-train we need to extract the trainNumber
295                                            trainNumber = trainNumber + " " + extractTrainNumberWww(fields.get(2));
296                                    departure.setTrainNumber(trainNumber);
297                                    
298                                    String destination = cleanText( fields.get(3).text() );
299                                    departure.setDestination(destination);
300                                    
301                                    String origin = cleanText( fields.get(4).text() );
302                                    departure.setOrigin(origin);
303                                    
304                                    String location = cleanText( fields.get(5).text() );
305                                    departure.setLocation(location);
306                                    
307                                    String status = cleanText( fields.get(6).text() );
308                                    departure.setStatus(status);
309                                    
310                                    String note = cleanText( extractNote( fields.get(7) ) );
311                                    departure.setNote(note);
312                                    
313                                    departure.setType(type);
314                                    
315                                    departureBean.entries.add(departure);
316                                    
317                                    
318                            }
319                      }                      }
320              } else {              } else {
321                  logger.warning("No departures found for station=" + stationcode + ", type=" + type);                  logger.warning("No departures found for station=" + stationcode + ", type=" + type);
322              }              }
             webClient.closeAllWindows();  
323                            
324                            
325              return departureList;              return departureBean;
326          }*/          }
327                    
328                    
329          private int extractUpdated(Element updatedTd) { //extract the digit (in this case: 4) from "media/trafikinfo/opdater4.gif"          private int extractUpdated(Element updatedTd) { //extract the digit (in this case: 4) from "media/trafikinfo/opdater4.gif"
330                  int updated = -1;                  int updated = -1;
# Line 298  public class DepartureFetcher { Line 352  public class DepartureFetcher {
352                  if (elems.size() > 0 && note.charAt(note.length()-1) == 'i')                  if (elems.size() > 0 && note.charAt(note.length()-1) == 'i')
353                          note = note.substring(0,note.length() -1 );                          note = note.substring(0,note.length() -1 );
354    
355                  return note;                  return note.trim();
356          }          }
357                    
358          private String extractTrainNumber(Element trainTd) {          private String extractTrainNumberAzure(Element trainTd) {
359                  Element anchorElement = trainTd.getElementsByTag("a").get(0);                  Element anchorElement = trainTd.getElementsByTag("a").get(0);
360                  String href = anchorElement.attr("href");                  String href = anchorElement.attr("href");
361                                    
# Line 311  public class DepartureFetcher { Line 365  public class DepartureFetcher {
365                  return number;                  return number;
366          }          }
367                    
368            private String extractTrainNumberWww(Element trainTd) {
369                    String number = "";
370                    Element anchorElement = trainTd.getElementsByTag("a").get(0);
371                    String href = anchorElement.attr("href");
372                    String argstring = href.substring( href.indexOf('?') + 1);
373                    
374                    String args[] = argstring.split("&");
375                    for (String arg : args) {
376                            String pair[] = arg.split("="); // Key=pair[0], Value=pair[1]
377                            
378                            if (pair[0].equalsIgnoreCase("TogNr"))
379                                    number = pair[1];
380                    }
381                    
382                    
383                    return number;
384            }
385    
386            
387          //test          //test
388          /*          /*
389          public static void main(String args[]) throws Exception {          public static void main(String args[]) throws Exception {

Legend:
Removed from v.1020  
changed lines
  Added in v.1248

  ViewVC Help
Powered by ViewVC 1.1.20