/[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

revision 980 by torben, Sat Jul 10 11:01:07 2010 UTC revision 1020 by torben, Mon Aug 30 11:53:34 2010 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfoservice.banedk;  package dk.thoerup.traininfoservice.banedk;
2    
3    
4    import java.net.URL;
5    import java.net.URLEncoder;
6  import java.util.Collections;  import java.util.Collections;
 import java.util.List;  
7  import java.util.Map;  import java.util.Map;
8  import java.util.logging.Logger;  import java.util.logging.Logger;
9    
10  import com.gargoylesoftware.htmlunit.BrowserVersion;  import org.jsoup.nodes.Document;
11  import com.gargoylesoftware.htmlunit.WebClient;  import org.jsoup.nodes.Element;
12  import com.gargoylesoftware.htmlunit.html.DomNodeList;  import org.jsoup.select.Elements;
 import com.gargoylesoftware.htmlunit.html.HtmlElement;  
 import com.gargoylesoftware.htmlunit.html.HtmlPage;  
13    
14  import dk.thoerup.circuitbreaker.CircuitBreaker;  import dk.thoerup.circuitbreaker.CircuitBreaker;
15  import dk.thoerup.circuitbreaker.CircuitBreakerManager;  import dk.thoerup.circuitbreaker.CircuitBreakerManager;
# Line 106  public class DepartureFetcher { Line 105  public class DepartureFetcher {
105          public DepartureBean lookupDeparturesNormalSite(String stationcode, TrainType type, boolean arrival) throws Exception {          public DepartureBean lookupDeparturesNormalSite(String stationcode, TrainType type, boolean arrival) throws Exception {
106                                    
107                  DepartureBean departureBean = new DepartureBean();                  DepartureBean departureBean = new DepartureBean();
108                                    
             final WebClient webClient = new WebClient( BrowserVersion.FIREFOX_3 );  
             webClient.setTimeout(2500);  
             webClient.setJavaScriptEnabled(false);  
               
109                            
110              String typeString = getTypeString(type);              String typeString = getTypeString(type);
111              String arrivalDeparture = (arrival==false) ? "Afgang" : "Ankomst";              String arrivalDeparture = (arrival==false) ? "Afgang" : "Ankomst";
112                                            
113                stationcode = URLEncoder.encode(stationcode,"ISO-8859-1");
114              //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;
115              String uri = "http://trafikinfo.bane.dk/Trafikinformation/AfgangAnkomst/" + arrivalDeparture + "/" + stationcode + "/" + typeString + "/UdvidetVisning";              String uri = "http://trafikinfo.bane.dk/Trafikinformation/AfgangAnkomst/" + arrivalDeparture + "/" + stationcode + "/" + typeString + "/UdvidetVisning";
116    
117              //logger.info("URI: " + uri);              
118              HtmlunitInvocation wrapper = new HtmlunitInvocation(webClient, uri);              
119                //logger.info("URI: " + uri);          
120                JsoupInvocation wrapper = new JsoupInvocation( new URL(uri), 2500);
121              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");
122                            
123              HtmlPage page = (HtmlPage) breaker.invoke(wrapper);              Document page = (Document) breaker.invoke(wrapper);
124                            
125              String tableName = arrival == false ? "afgangtabel" : "ankomsttabel";              String tableName = arrival == false ? "afgangtabel" : "ankomsttabel";
126              HtmlElement table = page.getElementById(tableName);              Element table = page.getElementById(tableName);
127                            
128              if (table != null) {              if (table != null) {
129                      DomNodeList<HtmlElement> tableRows =  table.getElementsByTagName("tr");                      Elements tableRows =  table.getElementsByTag("tr");
130                                            
131                      for (HtmlElement currentRow : tableRows) {                      boolean tidsstregExists = (table.getElementsByAttributeValue("class", "Tidsstreg").size() > 0);
132                          String rowClass = currentRow.getAttribute("class");                      boolean passedTidsstreg = false;
133                        
134                        for (Element currentRow : tableRows) {
135                            String rowClass = currentRow.attr("class");
136                            
137                            if (tidsstregExists == true && passedTidsstreg == false) {
138                                    if (currentRow.getElementsByAttributeValue("class", "Tidsstreg").size() > 0) {
139                                            passedTidsstreg = true;
140                                    } else {
141                                            continue;
142                                    }
143                            }
144                            
145                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {
146                                  DomNodeList<HtmlElement> fields = currentRow.getElementsByTagName("td");                                  
147                                    Elements fields = currentRow.getElementsByTag("td");
148                    
149                                  DepartureEntry departure = new DepartureEntry();                                  DepartureEntry departure = new DepartureEntry();
150                                                                    
151                                  String time = fields.get(0).asText();                                  String time = fields.get(0).text();
152                                  if (time.equals(""))                                  if (time.equals(""))
153                                          time = "0:00"; //Bane.dk bug work-around                                          time = "0:00"; //Bane.dk bug work-around
154                                  departure.setTime(time);                                  departure.setTime(time);
# Line 145  public class DepartureFetcher { Line 156  public class DepartureFetcher {
156                                  int updated = extractUpdated( fields.get(1) );                                  int updated = extractUpdated( fields.get(1) );
157                                  departure.setUpdated(updated);                                  departure.setUpdated(updated);
158                                                                    
159                                  String trainNumber = fields.get(2).asText();                                  String trainNumber = fields.get(2).text();
160                                  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
161                                          trainNumber = trainNumber + " " + extractTrainNumber(fields.get(2));                                          trainNumber = trainNumber + " " + extractTrainNumber(fields.get(2));
162                                  departure.setTrainNumber(trainNumber);                                  departure.setTrainNumber(trainNumber);
163                                                                    
164                                  String destination = fields.get(3).asText();                                  String destination = fields.get(3).text();
165                                  departure.setDestination(destination);                                  departure.setDestination(destination);
166                                                                    
167                                  String origin = fields.get(4).asText();                                  String origin = fields.get(4).text();
168                                  departure.setOrigin(origin);                                  departure.setOrigin(origin);
169                                                                    
170                                  String location = fields.get(5).asText();                                  String location = fields.get(5).text();
171                                  departure.setLocation(location);                                  departure.setLocation(location);
172                                                                    
173                                  String status = fields.get(6).asText().trim();                                  String status = fields.get(6).text().trim();
174                                  departure.setStatus(status);                                  departure.setStatus(status);
175                                                                    
176                                  String note = extractNote( fields.get(7) );                                  String note = extractNote( fields.get(7) );
# Line 174  public class DepartureFetcher { Line 185  public class DepartureFetcher {
185                  logger.warning("No departures found for station=" + stationcode + ", type=" + type);                  logger.warning("No departures found for station=" + stationcode + ", type=" + type);
186              }              }
187                            
188              HtmlElement notifDiv = page.getElementById("station_planlagte_text");              Element notifDiv = page.getElementById("station_planlagte_text");
189              if (notifDiv != null) {              if (notifDiv != null) {
190    
191                  DomNodeList<HtmlElement> tables = notifDiv.getElementsByTagName("table");                  Elements tables = notifDiv.getElementsByTag("table");
192                  for (HtmlElement tab : tables) {                  for (Element tab : tables) {
193    
194                          DomNodeList<HtmlElement> anchors = tab.getElementsByTagName("a");                                        Elements anchors = tab.getElementsByTag("a");          
195                          if (anchors.size() == 2) {                          if (anchors.size() == 2) {
196                                  departureBean.notifications.add(  anchors.get(1).getTextContent() );                                  departureBean.notifications.add(  anchors.get(1).text() );
197                          }                          }
198                  }                  }
199                                    
200              }              }
201                            
202                            
             webClient.closeAllWindows();  
               
203              return departureBean;              return departureBean;
204          }          }
205                    
# Line 263  public class DepartureFetcher { Line 272  public class DepartureFetcher {
272          }*/          }*/
273    
274                    
275          private int extractUpdated(HtmlElement 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"
276                  int updated = -1;                  int updated = -1;
277                                    
278                  DomNodeList<HtmlElement> updatedImgs = updatedTd.getElementsByTagName("img");                  Elements updatedImgs = updatedTd.getElementsByTag("img");
279                  String updatedStr = updatedImgs.get(0).getAttribute("src");                  String updatedStr = updatedImgs.get(0).attr("src");
280                                    
281                  if (updatedStr != null) {                  if (updatedStr != null) {
282                          for (int i=0; i<updatedStr.length(); i++) {                          for (int i=0; i<updatedStr.length(); i++) {
# Line 281  public class DepartureFetcher { Line 290  public class DepartureFetcher {
290                  return updated;                  return updated;
291          }          }
292                    
293          private String extractNote(HtmlElement noteTd) {          private String extractNote(Element noteTd) {
294                  String note = noteTd.asText().trim();                  String note = noteTd.text().trim();
295                    
296                                    
297                  List<HtmlElement> elems = noteTd.getElementsByAttribute("span", "class", "bemtype");                  Elements elems = noteTd.getElementsByClass("bemtype");
298                  if (elems.size() > 0 && note.charAt(note.length()-1) == 'i')                  if (elems.size() > 0 && note.charAt(note.length()-1) == 'i')
299                          note = note.substring(0,note.length() -1 );                          note = note.substring(0,note.length() -1 );
300    
301                  return note;                  return note;
302          }          }
303                    
304          private String extractTrainNumber(HtmlElement trainTd) {          private String extractTrainNumber(Element trainTd) {
305                  HtmlElement anchorElement = trainTd.getElementsByTagName("a").get(0);                  Element anchorElement = trainTd.getElementsByTag("a").get(0);
306                  String href = anchorElement.getAttribute("href");                  String href = anchorElement.attr("href");
307                                    
308                  int pos = href.lastIndexOf('/');                  int pos = href.lastIndexOf('/');
309                  String number = href.substring(pos+1);                  String number = href.substring(pos+1);

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

  ViewVC Help
Powered by ViewVC 1.1.20