/[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 307 by torben, Thu Sep 10 18:11:53 2009 UTC revision 410 by torben, Wed Oct 7 13:37:37 2009 UTC
# Line 6  import java.sql.Statement; Line 6  import java.sql.Statement;
6  import java.util.ArrayList;  import java.util.ArrayList;
7  import java.util.Collections;  import java.util.Collections;
8  import java.util.List;  import java.util.List;
9    import java.util.logging.Logger;
10    
11    
12  import com.gargoylesoftware.htmlunit.WebClient;  import com.gargoylesoftware.htmlunit.WebClient;
13  import com.gargoylesoftware.htmlunit.html.DomNodeList;  import com.gargoylesoftware.htmlunit.html.DomNodeList;
# Line 15  import com.gargoylesoftware.htmlunit.htm Line 17  import com.gargoylesoftware.htmlunit.htm
17  import dk.thoerup.traininfoservice.DBConnection;  import dk.thoerup.traininfoservice.DBConnection;
18    
19  public class DepartureFetcher {  public class DepartureFetcher {
20            
21            Logger logger = Logger.getLogger(DepartureFetcher.class.getName());
22            
23            TimeoutCache<Integer, List<DepartureBean>> cache = new TimeoutCache<Integer,List<DepartureBean>>(120 * 1000);
24            
25                    
26            
27            public List<DepartureBean> cachedLookupDepartures(int stationID) throws Exception {
28    
29                    List<DepartureBean> list = cache.get(stationID);
30                    
31                    if (list == null) {
32                            list = lookupDepartures(stationID);
33                            cache.put(stationID, list);
34                    } else {
35                            logger.info("Departure: Cache hit " + stationID); //remove before production
36                    }
37                    return list;
38            }
39                                    
40          @SuppressWarnings("unchecked")  
41          public List<DepartureBean> lookupDepartures(int stationID) throws Exception {          public List<DepartureBean> lookupDepartures(int stationID) throws Exception {
42                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();
43                                    
# Line 59  public class DepartureFetcher { Line 80  public class DepartureFetcher {
80                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();
81                                    
82              final WebClient webClient = new WebClient();              final WebClient webClient = new WebClient();
83              webClient.setTimeout(1000);              webClient.setTimeout(2500);
84              webClient.setJavaScriptEnabled(false);              webClient.setJavaScriptEnabled(false);
85                                
86                            
87              final HtmlPage page = webClient.getPage("http://www.bane.dk/visStation.asp?ArtikelID=4275&W=" + type + "&S=" + stationcode);              final HtmlPage page = webClient.getPage("http://www.bane.dk/visStation.asp?ArtikelID=4275&W=" + type + "&S=" + stationcode);
88                            
89              HtmlElement table = page.getElementById("afgangtabel");              HtmlElement table = page.getElementById("afgangtabel");
             DomNodeList<HtmlElement> tableRows =  table.getElementsByTagName("tr");  
90                            
91              for (HtmlElement currentRow : tableRows) {              if (table != null) {
92                  String rowClass = currentRow.getAttribute("class");                      DomNodeList<HtmlElement> tableRows =  table.getElementsByTagName("tr");
93                  if (rowClass != null && rowClass.toLowerCase().contains("station") ) {                      
94                          DomNodeList<HtmlElement> fields = currentRow.getElementsByTagName("td");                      for (HtmlElement currentRow : tableRows) {
95                            String rowClass = currentRow.getAttribute("class");
96                          DepartureBean departure = new DepartureBean();                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {
97                                                            DomNodeList<HtmlElement> fields = currentRow.getElementsByTagName("td");
98                          String time = fields.get(0).asText();          
99                          departure.setTime(time);                                  DepartureBean departure = new DepartureBean();
100                                                            
101                          int updated = extractUpdated( fields.get(1) );                                  String time = fields.get(0).asText();
102                          departure.setUpdated(updated);                                  if (time.equals(""))
103                                                                    time = "0:00"; //Bane.dk bug work-around
104                          String trainNumber = fields.get(2).asText();                                  departure.setTime(time);
105                          departure.setTrainNumber(trainNumber);                                  
106                                                            int updated = extractUpdated( fields.get(1) );
107                          String destination = fields.get(3).asText();                                  departure.setUpdated(updated);
108                          departure.setDestination(destination);                                  
109                                                            String trainNumber = fields.get(2).asText();
110                          String origin = fields.get(4).asText();                                  if (type.equalsIgnoreCase("S2")) //If it is S-train we need to extract the trainNumber
111                          departure.setOrigin(origin);                                          trainNumber = trainNumber + " " + extractTrainNumber(fields.get(2));
112                                                            departure.setTrainNumber(trainNumber);
113                          String location = fields.get(5).asText();                                  
114                          departure.setLocation(location);                                  String destination = fields.get(3).asText();
115                                                            departure.setDestination(destination);
116                          String status = fields.get(6).asText();                                  
117                          departure.setStatus(status);                                  String origin = fields.get(4).asText();
118                                                            departure.setOrigin(origin);
119                          String note = fields.get(7).asText();                                  
120                          departure.setNote(note);                                  String location = fields.get(5).asText();
121                                                            departure.setLocation(location);
122                          departureList.add(departure);                                  
123                  }                                  String status = fields.get(6).asText();
124                                    departure.setStatus(status);
125                                    
126                                    String note = extractNote( fields.get(7) );
127                                    departure.setNote(note);
128                                    
129                                    departureList.add(departure);
130                            }
131                        }
132                } else {
133                    logger.warning("No departures found for station=" + stationcode + ", type=" + type);
134              }              }
135                            
136              return departureList;              return departureList;
# Line 123  public class DepartureFetcher { Line 154  public class DepartureFetcher {
154                  return updated;                  return updated;
155          }          }
156                    
157            private String extractNote(HtmlElement noteTd) {
158                    String note = noteTd.asText().trim();
159                    
160                    List<HtmlElement> elems = noteTd.getElementsByAttribute("span", "class", "bemtype");
161                    if (elems.size() > 0 && note.charAt(note.length()-1) == 'i')
162                            note = note.substring(0,note.length() -1 );
163    
164                    return note;
165            }
166            
167            private String extractTrainNumber(HtmlElement trainTd) {
168                    String number = "";
169                    HtmlElement anchorElement = trainTd.getElementsByTagName("a").get(0);
170                    String href = anchorElement.getAttribute("href");
171                    String argstring = href.substring( href.indexOf('?') + 1);
172                    
173                    String args[] = argstring.split("&");
174                    for (String arg : args) {
175                            String pair[] = arg.split("="); // Key=pair[0], Value=pair[1]
176                            
177                            if (pair[0].equalsIgnoreCase("TogNr"))
178                                    number = pair[1];
179                    }
180                    
181                    
182                    
183                    return number;
184            }
185            
186          //test          //test
187          public static void main(String args[]) throws Exception{          public static void main(String args[]) throws Exception{
188                  DepartureFetcher f = new DepartureFetcher();                  DepartureFetcher f = new DepartureFetcher();

Legend:
Removed from v.307  
changed lines
  Added in v.410

  ViewVC Help
Powered by ViewVC 1.1.20