package dk.thoerup.traininfoservice.banedk; import java.sql.Connection; import java.sql.ResultSet; import java.sql.Statement; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Map; import java.util.logging.Logger; import com.gargoylesoftware.htmlunit.WebClient; import com.gargoylesoftware.htmlunit.html.DomNodeList; import com.gargoylesoftware.htmlunit.html.HtmlElement; import com.gargoylesoftware.htmlunit.html.HtmlPage; import dk.thoerup.curcuitbreaker.CircuitBreaker; import dk.thoerup.curcuitbreaker.CircuitBreakerManager; import dk.thoerup.traininfoservice.DBConnection; public class DepartureFetcher { Logger logger = Logger.getLogger(DepartureFetcher.class.getName()); Map> cache = new TimeoutMap>(120 * 1000); public List cachedLookupDepartures(int stationID) throws Exception { List list = cache.get(stationID); if (list == null) { list = lookupDepartures(stationID); cache.put(stationID, list); } else { logger.info("Departure: Cache hit " + stationID); //remove before production } return list; } public List lookupDepartures(int stationID) throws Exception { List departureList = new ArrayList(); Connection conn = null; try { conn = DBConnection.getConnection(); String SQL = "SELECT stationcode_fjrn, stationcode_stog FROM trainstations WHERE id=" + stationID; Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery(SQL); if (rs.next()) { String code = rs.getString( 1 ); if (! rs.wasNull() ) { List list = lookupDepartures(code, "FJRN"); departureList.addAll(list); } code = rs.getString(2); if (! rs.wasNull() ) { List list = lookupDepartures(code, "S2"); departureList.addAll(list); } Collections.sort( departureList ); } } finally { if (conn != null && !conn.isClosed() ) { conn.close(); } } return departureList; } public List lookupDepartures(String stationcode, String type) throws Exception { List departureList = new ArrayList(); final WebClient webClient = new WebClient(); webClient.setTimeout(2500); webClient.setJavaScriptEnabled(false); String uri = "http://www.bane.dk/visStation.asp?ArtikelID=4275&W=" + type + "&S=" + stationcode; BanedkInvocation wrapper = new BanedkInvocation(webClient, uri); CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk"); HtmlPage page = (HtmlPage) breaker.invoke(wrapper); HtmlElement table = page.getElementById("afgangtabel"); if (table != null) { DomNodeList tableRows = table.getElementsByTagName("tr"); for (HtmlElement currentRow : tableRows) { String rowClass = currentRow.getAttribute("class"); if (rowClass != null && rowClass.toLowerCase().contains("station") ) { DomNodeList fields = currentRow.getElementsByTagName("td"); DepartureBean departure = new DepartureBean(); String time = fields.get(0).asText(); if (time.equals("")) time = "0:00"; //Bane.dk bug work-around departure.setTime(time); int updated = extractUpdated( fields.get(1) ); departure.setUpdated(updated); String trainNumber = fields.get(2).asText(); if (type.equalsIgnoreCase("S2")) //If it is S-train we need to extract the trainNumber trainNumber = trainNumber + " " + extractTrainNumber(fields.get(2)); departure.setTrainNumber(trainNumber); String destination = fields.get(3).asText(); departure.setDestination(destination); String origin = fields.get(4).asText(); departure.setOrigin(origin); String location = fields.get(5).asText(); departure.setLocation(location); String status = fields.get(6).asText(); departure.setStatus(status); String note = extractNote( fields.get(7) ); departure.setNote(note); departureList.add(departure); } } } else { logger.warning("No departures found for station=" + stationcode + ", type=" + type); } return departureList; } private int extractUpdated(HtmlElement updatedTd) { //extract the digit (in this case: 4) from "media/trafikinfo/opdater4.gif" int updated = -1; DomNodeList updatedImgs = updatedTd.getElementsByTagName("img"); String updatedStr = updatedImgs.get(0).getAttribute("src"); if (updatedStr != null) { for (int i=0; i elems = noteTd.getElementsByAttribute("span", "class", "bemtype"); if (elems.size() > 0 && note.charAt(note.length()-1) == 'i') note = note.substring(0,note.length() -1 ); return note; } private String extractTrainNumber(HtmlElement trainTd) { String number = ""; HtmlElement anchorElement = trainTd.getElementsByTagName("a").get(0); String href = anchorElement.getAttribute("href"); String argstring = href.substring( href.indexOf('?') + 1); String args[] = argstring.split("&"); for (String arg : args) { String pair[] = arg.split("="); // Key=pair[0], Value=pair[1] if (pair[0].equalsIgnoreCase("TogNr")) number = pair[1]; } return number; } //test public static void main(String args[]) throws Exception { DepartureFetcher f = new DepartureFetcher(); List deps = f.lookupDepartures("AR", "FJRN"); for(DepartureBean d : deps) { System.out.println( d.getTime() + ";" + d.getUpdated() + ";" + d.getTrainNumber() + ";" + d.getDestination() + ";" + d.getOrigin() + ";" + d.getLocation() + ";" + d.getStatus() + ";" + d.getNote() ); } System.out.println("--------------------------"); } }