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

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

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

android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/DepartureFetcher.java revision 1039 by torben, Sun Sep 12 19:03:32 2010 UTC android/TrainInfoServiceGoogle/src/dk/thoerup/traininfoservice/banedk/DepartureFetcher.java revision 1080 by torben, Mon Sep 20 20:11:55 2010 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 63  public class DepartureFetcher { Line 65  public class DepartureFetcher {
65                                    
66                  DepartureBean departureBean = new DepartureBean();                  DepartureBean departureBean = new DepartureBean();
67                                    
68                  StationBean station = stationDao.getById(stationID);                  StationEntry station = new StationEntry(); // stationDao.getById(stationID);
69                    station.setId(82);
70                    station.setName("Test Station");
71                    station.setRegional("HS");
72                                    
73                  departureBean.stationName = station.getName();                  departureBean.stationName = station.getName();
74                                    
75                  if (station.getRegional() != null) {                  if (station.getRegional() != null) {
76                          DepartureBean tempBean = lookupDepartures(station.getRegional(), TrainType.REGIONAL, arrival);                          DepartureBean tempBean = lookupDepartures(station.getRegional(), TrainType.REGIONAL, arrival);
77                          departureBean.departureEntries.addAll( tempBean.departureEntries );                          departureBean.entries.addAll( tempBean.entries );
78                          departureBean.notifications.addAll(tempBean.notifications);                          departureBean.notifications.addAll(tempBean.notifications);
79                  }                  }
80                                    
81                  if (station.getStrain() != null) {                  if (station.getStrain() != null) {
82                          DepartureBean tempBean = lookupDepartures(station.getStrain(), TrainType.STOG, arrival);                          DepartureBean tempBean = lookupDepartures(station.getStrain(), TrainType.STOG, arrival);
83                          departureBean.departureEntries.addAll( tempBean.departureEntries );                          departureBean.entries.addAll( tempBean.entries );
84                          departureBean.notifications.addAll(tempBean.notifications);                          departureBean.notifications.addAll(tempBean.notifications);
85                  }                                }              
86                                    
87                  if (departureBean.departureEntries.size() == 0) {                  if (departureBean.entries.size() == 0) {
88                          logger.info("No departures found for station " + stationID);                          logger.info("No departures found for station " + stationID);
89                  }                  }
90                                    
91                  Collections.sort( departureBean.departureEntries );                  Collections.sort( departureBean.entries );
92    
93                                    
94                  return departureBean;                  return departureBean;
# Line 131  public class DepartureFetcher { Line 136  public class DepartureFetcher {
136    
137              String uri = "http://trafikinfo.bane.dk/Trafikinformation/AfgangAnkomst/" + arrivalDeparture + "/" + stationcode + "/" + typeString + "/UdvidetVisning";                      String uri = "http://trafikinfo.bane.dk/Trafikinformation/AfgangAnkomst/" + arrivalDeparture + "/" + stationcode + "/" + typeString + "/UdvidetVisning";        
138                            
139              //logger.info("URI: " + uri);                        logger.fine("URI: " + uri);    
140              JsoupInvocation wrapper = new JsoupInvocation( new URL(uri), replyTimeout);              JsoupInvocation wrapper = new JsoupInvocation( new URL(uri), replyTimeout);
141              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");
142                            
# Line 193  public class DepartureFetcher { Line 198  public class DepartureFetcher {
198                                                                    
199                                  departure.setType(typeString);                                  departure.setType(typeString);
200                                                                    
201                                  departureBean.departureEntries.add( departure );                                  departureBean.entries.add( departure );
202                          }                          }
203                      }                      }
204              } else {              } else {
# Line 220  public class DepartureFetcher { Line 225  public class DepartureFetcher {
225                    
226                    
227                    
228          String cleanText(String input) {          public static String cleanText(String input) {
229                  //apparently JSoup interprets some of space characters on www.bane.dk as 0xA0                  //apparently JSoup translates   characters on www.bane.dk to 0xA0
230                  return input.replace((char) 0xA0, (char)0x20).trim();                  return input.replace((char) 0xA0, (char)0x20).trim();
231          }          }
232                    
# Line 231  public class DepartureFetcher { Line 236  public class DepartureFetcher {
236                                    
237                  String type = getTypeStringWww(trainType);                  String type = getTypeStringWww(trainType);
238                                    
239                    stationcode = URLEncoder.encode(stationcode, "ISO-8859-1");
240                    
241                                                                                            
242              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;
243                logger.fine("URI:" + uri);
244                
245    
246              JsoupInvocation wrapper = new JsoupInvocation( new URL(uri), replyTimeout);              JsoupInvocation wrapper = new JsoupInvocation( new URL(uri), replyTimeout);
247              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");
248                            
# Line 241  public class DepartureFetcher { Line 251  public class DepartureFetcher {
251              String tableName = arrival == false ? "afgangtabel" : "ankomsttabel";              String tableName = arrival == false ? "afgangtabel" : "ankomsttabel";
252              Element table = page.getElementById(tableName);              Element table = page.getElementById(tableName);
253                            
254    
255                
256              if (table != null) {              if (table != null) {
257                      Elements tableRows =  table.getElementsByTag("tr");                      Elements tableRows =  table.getElementsByTag("tr");
258                                            
259                        boolean passedTidsstreg = false;
260                        boolean tidsstregExists = (table.getElementsByAttributeValue("class", "Tidsstreg").size() > 0);
261                        
262                      for (Element currentRow : tableRows) {                      for (Element currentRow : tableRows) {
263                          String rowClass = currentRow.attr("class");                          String rowClass = currentRow.attr("class");
264                            
265                            if (tidsstregExists == true && passedTidsstreg == false) {
266                                    if (currentRow.getElementsByAttributeValue("class", "Tidsstreg").size() > 0) {
267                                            passedTidsstreg = true;
268                                    } else {
269                                            continue;
270                                    }
271                            }
272                            
273                            
274                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {
275                                  Elements fields = currentRow.getElementsByTag("td");                                  Elements fields = currentRow.getElementsByTag("td");
276                    
# Line 283  public class DepartureFetcher { Line 308  public class DepartureFetcher {
308                                                                    
309                                  departure.setType(type);                                  departure.setType(type);
310                                                                    
311                                  departureBean.departureEntries.add(departure);                                  departureBean.entries.add(departure);
312                                                                    
313                                                                    
314                          }                          }

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

  ViewVC Help
Powered by ViewVC 1.1.20