/[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 305 by torben, Thu Sep 10 09:40:27 2009 UTC revision 349 by torben, Mon Sep 28 19:14:18 2009 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfoservice.banedk;  package dk.thoerup.traininfoservice.banedk;
2    
3    import java.sql.Connection;
4    import java.sql.ResultSet;
5    import java.sql.Statement;
6  import java.util.ArrayList;  import java.util.ArrayList;
7    import java.util.Collections;
8  import java.util.List;  import java.util.List;
9    import java.util.logging.Logger;
10    
11  import com.gargoylesoftware.htmlunit.ProxyConfig;  import com.gargoylesoftware.htmlunit.ProxyConfig;
12  import com.gargoylesoftware.htmlunit.WebClient;  import com.gargoylesoftware.htmlunit.WebClient;
# Line 9  import com.gargoylesoftware.htmlunit.htm Line 14  import com.gargoylesoftware.htmlunit.htm
14  import com.gargoylesoftware.htmlunit.html.HtmlElement;  import com.gargoylesoftware.htmlunit.html.HtmlElement;
15  import com.gargoylesoftware.htmlunit.html.HtmlPage;  import com.gargoylesoftware.htmlunit.html.HtmlPage;
16    
17    import dk.thoerup.traininfoservice.DBConnection;
18    
19  public class DepartureFetcher {  public class DepartureFetcher {
20                    
21                    Logger logger = Logger.getLogger(DepartureFetcher.class.getName());
22          static ProxyConfig proxyConfig;                  
23          static {  
24                  proxyConfig = new ProxyConfig();          public List<DepartureBean> lookupDepartures(int stationID) throws Exception {
25                  proxyConfig.setProxyHost("rafiki.t-hoerup.dk");                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();
26                  proxyConfig.setProxyPort(3128);                  
27                    Connection conn = null;
28                    try
29                    {
30                            conn = DBConnection.getConnection();
31                    
32                            String SQL = "SELECT stationcode_fjrn, stationcode_stog FROM trainstations WHERE id=" + stationID;
33                            Statement stmt = conn.createStatement();
34                            ResultSet rs = stmt.executeQuery(SQL);
35                            
36                            if (rs.next()) {
37                                    String code = rs.getString( 1 );
38                                    if (! rs.wasNull() ) {
39                                            List<DepartureBean> list = lookupDepartures(code, "FJRN");
40                                            departureList.addAll(list);
41                                    }
42                                    
43                                    code = rs.getString(2);
44                                    if (! rs.wasNull() ) {
45                                            List<DepartureBean> list = lookupDepartures(code, "S2");
46                                            departureList.addAll(list);    
47                                    }
48                                    Collections.sort( departureList );
49                            
50                            }
51                            
52                    } finally {
53                            if (conn != null && !conn.isClosed() ) {
54                                    conn.close();
55                            }
56                    }
57                    
58                    return departureList;
59          }          }
60                    
61          public List<DepartureBean> lookupDepartures() throws Exception {          public List<DepartureBean> lookupDepartures(String stationcode, String type) throws Exception {
62                                    
63                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();
64                                    
65              final WebClient webClient = new WebClient();              final WebClient webClient = new WebClient();
66              webClient.setTimeout(1000);              webClient.setTimeout(1000);
67              webClient.setProxyConfig(proxyConfig);              webClient.setJavaScriptEnabled(false);
68              webClient.setJavaScriptEnabled(false);                              
69                            
70              final HtmlPage page = webClient.getPage("http://www.bane.dk/visStation.asp?ArtikelID=4275&W=FJRN&S=BJ");              final HtmlPage page = webClient.getPage("http://www.bane.dk/visStation.asp?ArtikelID=4275&W=" + type + "&S=" + stationcode);
71                            
72              HtmlElement table = page.getElementById("afgangtabel");              HtmlElement table = page.getElementById("afgangtabel");
             DomNodeList<HtmlElement> tableRows =  table.getElementsByTagName("tr");  
73                            
74              for (HtmlElement currentRow : tableRows) {              if (table != null) {
75                  String rowClass = currentRow.getAttribute("class");                      DomNodeList<HtmlElement> tableRows =  table.getElementsByTagName("tr");
76                  if (rowClass != null && rowClass.toLowerCase().contains("station") ) {                      
77                          DomNodeList<HtmlElement> fields = currentRow.getElementsByTagName("td");                      for (HtmlElement currentRow : tableRows) {
78                            String rowClass = currentRow.getAttribute("class");
79                          DepartureBean departure = new DepartureBean();                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {
80                                                            DomNodeList<HtmlElement> fields = currentRow.getElementsByTagName("td");
81                          String time = fields.get(0).asText();          
82                          departure.setTime(time);                                  DepartureBean departure = new DepartureBean();
83                                                            
84                          int updated = extractUpdated( fields.get(1) );                                  String time = fields.get(0).asText();
85                          departure.setUpdated(updated);                                  departure.setTime(time);
86                                                            
87                          String trainNumber = fields.get(2).asText();                                  int updated = extractUpdated( fields.get(1) );
88                          departure.setTrainNumber(trainNumber);                                  departure.setUpdated(updated);
89                                                            
90                          String destination = fields.get(3).asText();                                  String trainNumber = fields.get(2).asText();
91                          departure.setDestination(destination);                                  if (trainNumber.trim().length() == 1)
92                                                                    trainNumber = trainNumber + " " + extractTrainNumber(fields.get(2));
93                          String origin = fields.get(4).asText();                                  departure.setTrainNumber(trainNumber);
94                          departure.setOrigin(origin);                                  
95                                                            String destination = fields.get(3).asText();
96                          String location = fields.get(5).asText();                                  departure.setDestination(destination);
97                          departure.setLocation(location);                                  
98                                                            String origin = fields.get(4).asText();
99                          String status = fields.get(6).asText();                                  departure.setOrigin(origin);
100                          departure.setStatus(status);                                  
101                                                            String location = fields.get(5).asText();
102                          String note = fields.get(7).asText();                                  departure.setLocation(location);
103                          departure.setNote(note);                                  
104                                                            String status = fields.get(6).asText();
105                          departureList.add(departure);                                  departure.setStatus(status);
106                  }                                  
107                                    String note = extractNote( fields.get(7) );
108                                    departure.setNote(note);
109                                    
110                                    departureList.add(departure);
111                            }
112                        }
113                } else {
114                    logger.warning("No departures found for station=" + stationcode + ", type=" + type);
115              }              }
116                            
117              return departureList;              return departureList;
# Line 89  public class DepartureFetcher { Line 135  public class DepartureFetcher {
135                  return updated;                  return updated;
136          }          }
137                    
138            private String extractNote(HtmlElement noteTd) {
139                    String note = noteTd.asText().trim();
140                    
141                    List<HtmlElement> elems = noteTd.getElementsByAttribute("span", "class", "bemtype");
142                    if (elems.size() > 0 && note.charAt(note.length()-1) == 'i')
143                            note = note.substring(0,note.length() -1 );
144    
145                    return note;
146            }
147            
148            private String extractTrainNumber(HtmlElement trainTd) {
149                    String number = "";
150                    HtmlElement anchorElement = trainTd.getElementsByTagName("a").get(0);
151                    String href = anchorElement.getAttribute("href");
152                    String argstring = href.substring( href.indexOf('?') + 1);
153                    
154                    String args[] = argstring.split("&");
155                    for (String arg : args) {
156                            String pair[] = arg.split("="); // Key=pair[0], Value=pair[1]
157                            
158                            if (pair[0].equalsIgnoreCase("TogNr"))
159                                    number = pair[1];
160                    }
161                    
162                    
163                    
164                    return number;
165            }
166            
167          //test          //test
168          public static void main(String args[]) throws Exception{          public static void main(String args[]) throws Exception{
169                  DepartureFetcher f = new DepartureFetcher();                  DepartureFetcher f = new DepartureFetcher();
170                  List<DepartureBean> deps = f.lookupDepartures();                  List<DepartureBean> deps = f.lookupDepartures("AR", "FJRN");
171                  for(DepartureBean d : deps) {                  for(DepartureBean d : deps) {
172                          System.out.println( d.getTime() + ";" + d.getUpdated() + ";" + d.getTrainNumber() + ";" +                          System.out.println( d.getTime() + ";" + d.getUpdated() + ";" + d.getTrainNumber() + ";" +
173                                                  d.getDestination() + ";" + d.getOrigin() + ";" + d.getLocation() + ";" + d.getStatus() + ";" + d.getNote()   );                                                  d.getDestination() + ";" + d.getOrigin() + ";" + d.getLocation() + ";" + d.getStatus() + ";" + d.getNote()   );

Legend:
Removed from v.305  
changed lines
  Added in v.349

  ViewVC Help
Powered by ViewVC 1.1.20