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

Contents of /android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/DepartureFetcher.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 348 - (show annotations) (download)
Sun Sep 27 19:14:39 2009 UTC (14 years, 7 months ago) by torben
File size: 5051 byte(s)
Improve on error handling and logging
1 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;
7 import java.util.Collections;
8 import java.util.List;
9 import java.util.logging.Logger;
10
11 import com.gargoylesoftware.htmlunit.ProxyConfig;
12 import com.gargoylesoftware.htmlunit.WebClient;
13 import com.gargoylesoftware.htmlunit.html.DomNodeList;
14 import com.gargoylesoftware.htmlunit.html.HtmlElement;
15 import com.gargoylesoftware.htmlunit.html.HtmlPage;
16
17 import dk.thoerup.traininfoservice.DBConnection;
18
19 public class DepartureFetcher {
20
21 Logger logger = Logger.getLogger(DepartureFetcher.class.getName());
22
23
24 public List<DepartureBean> lookupDepartures(int stationID) throws Exception {
25 List<DepartureBean> departureList = new ArrayList<DepartureBean>();
26
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(String stationcode, String type) throws Exception {
62
63 List<DepartureBean> departureList = new ArrayList<DepartureBean>();
64
65 final WebClient webClient = new WebClient();
66 webClient.setTimeout(1000);
67 webClient.setJavaScriptEnabled(false);
68
69
70 final HtmlPage page = webClient.getPage("http://www.bane.dk/visStation.asp?ArtikelID=4275&W=" + type + "&S=" + stationcode);
71
72 HtmlElement table = page.getElementById("afgangtabel");
73
74 if (table != null) {
75 DomNodeList<HtmlElement> tableRows = table.getElementsByTagName("tr");
76
77 for (HtmlElement currentRow : tableRows) {
78 String rowClass = currentRow.getAttribute("class");
79 if (rowClass != null && rowClass.toLowerCase().contains("station") ) {
80 DomNodeList<HtmlElement> fields = currentRow.getElementsByTagName("td");
81
82 DepartureBean departure = new DepartureBean();
83
84 String time = fields.get(0).asText();
85 departure.setTime(time);
86
87 int updated = extractUpdated( fields.get(1) );
88 departure.setUpdated(updated);
89
90 String trainNumber = fields.get(2).asText();
91 departure.setTrainNumber(trainNumber);
92
93 String destination = fields.get(3).asText();
94 departure.setDestination(destination);
95
96 String origin = fields.get(4).asText();
97 departure.setOrigin(origin);
98
99 String location = fields.get(5).asText();
100 departure.setLocation(location);
101
102 String status = fields.get(6).asText();
103 departure.setStatus(status);
104
105 String note = extractNote( fields.get(7) );
106 departure.setNote(note);
107
108 departureList.add(departure);
109 }
110 }
111 } else {
112 logger.warning("No departures found for station=" + stationcode + ", type=" + type);
113 }
114
115 return departureList;
116 }
117
118 private int extractUpdated(HtmlElement updatedTd) { //extract the digit (in this case: 4) from "media/trafikinfo/opdater4.gif"
119 int updated = -1;
120
121 DomNodeList<HtmlElement> updatedImgs = updatedTd.getElementsByTagName("img");
122 String updatedStr = updatedImgs.get(0).getAttribute("src");
123
124 if (updatedStr != null) {
125 for (int i=0; i<updatedStr.length(); i++) {
126 char c = updatedStr.charAt(i);
127 if ( Character.isDigit(c)) {
128 updated = Character.digit(c, 10);
129 break;
130 }
131 }
132 }
133 return updated;
134 }
135
136 private String extractNote(HtmlElement noteTd) {
137 String note = noteTd.asText().trim();
138
139 List<HtmlElement> elems = noteTd.getElementsByAttribute("span", "class", "bemtype");
140 if (elems.size() > 0 && note.charAt(note.length()-1) == 'i')
141 note = note.substring(0,note.length() -1 );
142
143 return note;
144 }
145
146 //test
147 public static void main(String args[]) throws Exception{
148 DepartureFetcher f = new DepartureFetcher();
149 List<DepartureBean> deps = f.lookupDepartures("AR", "FJRN");
150 for(DepartureBean d : deps) {
151 System.out.println( d.getTime() + ";" + d.getUpdated() + ";" + d.getTrainNumber() + ";" +
152 d.getDestination() + ";" + d.getOrigin() + ";" + d.getLocation() + ";" + d.getStatus() + ";" + d.getNote() );
153 }
154
155 System.out.println("--------------------------");
156 }
157 }

  ViewVC Help
Powered by ViewVC 1.1.20