/[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 992 by torben, Wed Jul 14 08:05:31 2010 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;  import java.net.URL;
 import java.sql.Statement;  
 import java.util.ArrayList;  
5  import java.util.Collections;  import java.util.Collections;
6  import java.util.List;  import java.util.Map;
7    import java.util.logging.Logger;
8    
9  import com.gargoylesoftware.htmlunit.WebClient;  import org.jsoup.nodes.Document;
10  import com.gargoylesoftware.htmlunit.html.DomNodeList;  import org.jsoup.nodes.Element;
11  import com.gargoylesoftware.htmlunit.html.HtmlElement;  import org.jsoup.select.Elements;
 import com.gargoylesoftware.htmlunit.html.HtmlPage;  
12    
13  import dk.thoerup.traininfoservice.DBConnection;  import dk.thoerup.circuitbreaker.CircuitBreaker;
14    import dk.thoerup.circuitbreaker.CircuitBreakerManager;
15    import dk.thoerup.traininfoservice.StationBean;
16    import dk.thoerup.traininfoservice.StationDAO;
17    import dk.thoerup.traininfoservice.Statistics;
18    
19  public class DepartureFetcher {  public class DepartureFetcher {
20            
21            enum TrainType{
22                    STOG,
23                    REGIONAL
24            }
25            
26            Logger logger = Logger.getLogger(DepartureFetcher.class.getName());
27            
28            Map<String, DepartureBean> cache;
29            
30            StationDAO stationDao = new StationDAO();
31            
32            private boolean useTempSite;
33            
34            public DepartureFetcher(boolean tempSite, int cacheTimeout) {
35                    useTempSite = tempSite;
36                    cache = new TimeoutMap<String,DepartureBean>(cacheTimeout);
37            }
38            
39            
40                                    
41          @SuppressWarnings("unchecked")          
42          public List<DepartureBean> lookupDepartures(int stationID) throws Exception {          public DepartureBean cachedLookupDepartures(int stationID, boolean arrival) throws Exception {
43                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  final String key = "" + stationID + ":" + arrival;
44                                    
45                  Connection conn = null;                  DepartureBean departureBean = cache.get(key);
46                  try  
47                  {                  
48                          conn = DBConnection.getConnection();                  if (departureBean == null) {
49                                            departureBean = lookupDepartures(stationID,arrival);
50                          String SQL = "SELECT stationcode_fjrn, stationcode_stog FROM trainstations WHERE id=" + stationID;                          cache.put(key, departureBean);
51                          Statement stmt = conn.createStatement();                  } else {
52                          ResultSet rs = stmt.executeQuery(SQL);                          Statistics.getInstance().incrementDepartureCacheHits();
53                                                    logger.info("Departure: Cache hit " + key); //remove before production
54                          if (rs.next()) {                  }
55                                  String code = rs.getString( 1 );                  return departureBean;
56                                  if (! rs.wasNull() ) {          }
57                                          List<DepartureBean> list = lookupDepartures(code, "FJRN");                  
58                                          departureList.addAll(list);  
59                                  }          public DepartureBean lookupDepartures(int stationID, boolean arrival) throws Exception {
60                                                    
61                                  code = rs.getString(2);                  DepartureBean departureBean = new DepartureBean();
62                                  if (! rs.wasNull() ) {                  
63                                          List<DepartureBean> list = lookupDepartures(code, "S2");                  StationBean station = stationDao.getById(stationID);
64                                          departureList.addAll(list);                      
65                                  }                  if (station.getRegional() != null) {
66                                  Collections.sort( departureList );                          DepartureBean tempBean = lookupDepartures(station.getRegional(), TrainType.REGIONAL, arrival);
67                                                    departureBean.departureEntries.addAll( tempBean.departureEntries );
68                          }                          departureBean.notifications.addAll(tempBean.notifications);
                           
                 } finally {  
                         if (conn != null && !conn.isClosed() ) {  
                                 conn.close();  
                         }  
69                  }                  }
70                                    
71                  return departureList;                  if (station.getStrain() != null) {
72                            DepartureBean tempBean = lookupDepartures(station.getStrain(), TrainType.STOG, arrival);
73                            departureBean.departureEntries.addAll( tempBean.departureEntries );
74                            departureBean.notifications.addAll(tempBean.notifications);
75                    }              
76                    
77                    Collections.sort( departureBean.departureEntries );
78    
79                    
80                    return departureBean;
81          }          }
82                    
83          public List<DepartureBean> lookupDepartures(String stationcode, String type) throws Exception {          public DepartureBean lookupDepartures(String stationcode, TrainType type, boolean arrival) throws Exception {
84                    if (useTempSite == false) {
85                            return lookupDeparturesNormalSite(stationcode, type, arrival);
86                    } else {
87                            //return lookupDeparturesFromTemporarySite(stationcode, type);
88                            //TODO: find out what to to if they ever put a temp site up on trafikinfo.bane.dk
89                            return null;
90                    }
91            }
92            
93            private String getTypeString(TrainType type) {
94                    switch (type) {
95                    case STOG:
96                            return "S-Tog";
97                    case REGIONAL:
98                            return "Fjerntog";
99                    default:
100                            return ""; //Can not happen
101                    }
102            }
103            
104            public DepartureBean lookupDeparturesNormalSite(String stationcode, TrainType type, boolean arrival) throws Exception {
105                    
106                    DepartureBean departureBean = new DepartureBean();
107                    
108                
109                String typeString = getTypeString(type);
110                String arrivalDeparture = (arrival==false) ? "Afgang" : "Ankomst";
111                                
112                //String uri = "http://www.bane.dk/visStation.asp?ArtikelID=4275&W=" + type + "&S=" + stationcode;
113                String uri = "http://trafikinfo.bane.dk/Trafikinformation/AfgangAnkomst/" + arrivalDeparture + "/" + stationcode + "/" + typeString + "/UdvidetVisning";
114    
115                //logger.info("URI: " + uri);          
116                JsoupInvocation wrapper = new JsoupInvocation( new URL(uri), 2500);
117                CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");
118                
119                Document page = (Document) breaker.invoke(wrapper);
120                
121                String tableName = arrival == false ? "afgangtabel" : "ankomsttabel";
122                Element table = page.getElementById(tableName);
123                
124                if (table != null) {
125                        Elements tableRows =  table.getElementsByTag("tr");
126                        
127                        for (Element currentRow : tableRows) {
128                            String rowClass = currentRow.attr("class");
129                            if (rowClass != null && rowClass.toLowerCase().contains("station") ) {
130                                    Elements fields = currentRow.getElementsByTag("td");
131            
132                                    DepartureEntry departure = new DepartureEntry();
133                                    
134                                    String time = fields.get(0).text();
135                                    if (time.equals(""))
136                                            time = "0:00"; //Bane.dk bug work-around
137                                    departure.setTime(time);
138                                    
139                                    int updated = extractUpdated( fields.get(1) );
140                                    departure.setUpdated(updated);
141                                    
142                                    String trainNumber = fields.get(2).text();
143                                    if (type == TrainType.STOG) //If it is S-train we need to extract the trainNumber
144                                            trainNumber = trainNumber + " " + extractTrainNumber(fields.get(2));
145                                    departure.setTrainNumber(trainNumber);
146                                    
147                                    String destination = fields.get(3).text();
148                                    departure.setDestination(destination);
149                                    
150                                    String origin = fields.get(4).text();
151                                    departure.setOrigin(origin);
152                                    
153                                    String location = fields.get(5).text();
154                                    departure.setLocation(location);
155                                    
156                                    String status = fields.get(6).text().trim();
157                                    departure.setStatus(status);
158                                    
159                                    String note = extractNote( fields.get(7) );
160                                    departure.setNote(note);
161                                    
162                                    departure.setType(typeString);
163                                    
164                                    departureBean.departureEntries.add( departure );
165                            }
166                        }
167                } else {
168                    logger.warning("No departures found for station=" + stationcode + ", type=" + type);
169                }
170                
171                Element notifDiv = page.getElementById("station_planlagte_text");
172                if (notifDiv != null) {
173    
174                    Elements tables = notifDiv.getElementsByTag("table");
175                    for (Element tab : tables) {
176    
177                            Elements anchors = tab.getElementsByTag("a");          
178                            if (anchors.size() == 2) {
179                                    departureBean.notifications.add(  anchors.get(1).text() );
180                            }
181                    }
182                    
183                }
184                
185                
186                return departureBean;
187            }
188            
189            /*
190            @Deprecated
191            public List<DepartureBean> lookupDeparturesFromTemporarySite(String stationcode, String type) throws Exception {
192                                    
193                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();
194                                    
195              final WebClient webClient = new WebClient();              final WebClient webClient = new WebClient(BrowserVersion.FIREFOX_3);
196              webClient.setTimeout(1000);              webClient.setTimeout(2500);
197              webClient.setJavaScriptEnabled(false);              webClient.setJavaScriptEnabled(false);
198                            
199              final HtmlPage page = webClient.getPage("http://www.bane.dk/visStation.asp?ArtikelID=4275&W=" + type + "&S=" + stationcode);  
200                            String uri = "http://bane.dk/lite/station.asp?w=" + type + "&s=" + stationcode;
201              HtmlElement table = page.getElementById("afgangtabel");              
202              DomNodeList<HtmlElement> tableRows =  table.getElementsByTagName("tr");              HtmlunitInvocation wrapper = new HtmlunitInvocation(webClient, uri);
203                            CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");
204              for (HtmlElement currentRow : tableRows) {              
205                  String rowClass = currentRow.getAttribute("class");              HtmlPage page = (HtmlPage) breaker.invoke(wrapper);
206                  if (rowClass != null && rowClass.toLowerCase().contains("station") ) {              
207                          DomNodeList<HtmlElement> fields = currentRow.getElementsByTagName("td");              HtmlElement table = page.getElementById("traf_afgang");
208                
209                          DepartureBean departure = new DepartureBean();              if (table != null) {                        
210                                                DomNodeList<HtmlElement> tableRows =  table.getElementsByTagName("tr");
211                          String time = fields.get(0).asText();                      
212                          departure.setTime(time);                      boolean isFirst = true;
213                                                
214                          int updated = extractUpdated( fields.get(1) );                      for (HtmlElement currentRow : tableRows) {
215                          departure.setUpdated(updated);                          if (isFirst == true) { //skip table headers
216                                                            isFirst = false;
217                          String trainNumber = fields.get(2).asText();                                  continue;
218                          departure.setTrainNumber(trainNumber);                          }
219                                                    
220                          String destination = fields.get(3).asText();                          DomNodeList<HtmlElement> fields = currentRow.getElementsByTagName("td");
221                          departure.setDestination(destination);  
222                                                    DepartureBean departure = new DepartureBean();
223                          String origin = fields.get(4).asText();  
224                          departure.setOrigin(origin);                          String time = fields.get(0).asText().trim();
225                            
226                          String location = fields.get(5).asText();                          if (time.equals(""))
227                          departure.setLocation(location);                                  time = "0:00"; //Bane.dk bug work-around
228                                                    departure.setTime(time);
229                          String status = fields.get(6).asText();  
230                          departure.setStatus(status);  
231                                                    String trainNumber = fields.get(1).asText();
232                          String note = fields.get(7).asText();                          departure.setTrainNumber(trainNumber);
233                          departure.setNote(note);  
234                                                    String destination = fields.get(2).asText();
235                          departureList.add(departure);                          departure.setDestination(destination);
236                  }  
237                            String origin = fields.get(3).asText();
238                            departure.setOrigin(origin);
239    
240                            String status = fields.get(4).asText();
241                            departure.setStatus(status);
242    
243                            String note = fields.get(5).asText();
244                            departure.setNote(note);
245    
246                            departureList.add(departure);
247                        }
248                } else {
249                    logger.warning("No departures found for station=" + stationcode + ", type=" + type);
250              }              }
251                webClient.closeAllWindows();
252                
253                            
254              return departureList;              return departureList;
255          }          }*/
256    
257                    
258          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"
259                  int updated = -1;                  int updated = -1;
260                                    
261                  DomNodeList<HtmlElement> updatedImgs = updatedTd.getElementsByTagName("img");                  Elements updatedImgs = updatedTd.getElementsByTag("img");
262                  String updatedStr = updatedImgs.get(0).getAttribute("src");                  String updatedStr = updatedImgs.get(0).attr("src");
263                                    
264                  if (updatedStr != null) {                  if (updatedStr != null) {
265                          for (int i=0; i<updatedStr.length(); i++) {                          for (int i=0; i<updatedStr.length(); i++) {
# Line 123  public class DepartureFetcher { Line 273  public class DepartureFetcher {
273                  return updated;                  return updated;
274          }          }
275                    
276            private String extractNote(Element noteTd) {
277                    String note = noteTd.text().trim();
278                    
279                    
280                    Elements elems = noteTd.getElementsByClass("bemtype");
281                    if (elems.size() > 0 && note.charAt(note.length()-1) == 'i')
282                            note = note.substring(0,note.length() -1 );
283    
284                    return note;
285            }
286            
287            private String extractTrainNumber(Element trainTd) {
288                    Element anchorElement = trainTd.getElementsByTag("a").get(0);
289                    String href = anchorElement.attr("href");
290                    
291                    int pos = href.lastIndexOf('/');
292                    String number = href.substring(pos+1);
293                    
294                    return number;
295            }
296            
297          //test          //test
298          public static void main(String args[]) throws Exception{          /*
299            public static void main(String args[]) throws Exception {
300                  DepartureFetcher f = new DepartureFetcher();                  DepartureFetcher f = new DepartureFetcher();
301                  List<DepartureBean> deps = f.lookupDepartures("AR", "FJRN");                  List<DepartureBean> deps = f.lookupDepartures("AR", "FJRN");
302                  for(DepartureBean d : deps) {                  for(DepartureBean d : deps) {
# Line 133  public class DepartureFetcher { Line 305  public class DepartureFetcher {
305                  }                  }
306                                    
307                  System.out.println("--------------------------");                  System.out.println("--------------------------");
308          }          }*/
309  }  }

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

  ViewVC Help
Powered by ViewVC 1.1.20