/[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 1038 by torben, Sun Sep 12 18:41:17 2010 UTC revision 1048 by torben, Tue Sep 14 06:10:30 2010 UTC
# Line 131  public class DepartureFetcher { Line 131  public class DepartureFetcher {
131    
132              String uri = "http://trafikinfo.bane.dk/Trafikinformation/AfgangAnkomst/" + arrivalDeparture + "/" + stationcode + "/" + typeString + "/UdvidetVisning";                      String uri = "http://trafikinfo.bane.dk/Trafikinformation/AfgangAnkomst/" + arrivalDeparture + "/" + stationcode + "/" + typeString + "/UdvidetVisning";        
133                            
134              //logger.info("URI: " + uri);                        logger.fine("URI: " + uri);    
135              JsoupInvocation wrapper = new JsoupInvocation( new URL(uri), replyTimeout);              JsoupInvocation wrapper = new JsoupInvocation( new URL(uri), replyTimeout);
136              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");
137                            
# Line 173  public class DepartureFetcher { Line 173  public class DepartureFetcher {
173                                                                    
174                                  String trainNumber = fields.get(2).text();                                  String trainNumber = fields.get(2).text();
175                                  if (type == TrainType.STOG) //If it is S-train we need to extract the trainNumber                                  if (type == TrainType.STOG) //If it is S-train we need to extract the trainNumber
176                                          trainNumber = trainNumber + " " + extractTrainNumber(fields.get(2));                                          trainNumber = trainNumber + " " + extractTrainNumberAzure(fields.get(2));
177                                  departure.setTrainNumber(trainNumber);                                  departure.setTrainNumber(trainNumber);
178                                                                    
179                                  String destination = fields.get(3).text();                                  String destination = fields.get(3).text();
# Line 220  public class DepartureFetcher { Line 220  public class DepartureFetcher {
220                    
221                    
222                    
223          String cleanText(String input) {          public static String cleanText(String input) {
224                  //apparently JSoup interprets some of space characters on www.bane.dk as 0xA0                  //apparently JSoup translates   characters on www.bane.dk to 0xA0
225                  return input.replace((char) 0xA0, (char)0x20).trim();                  return input.replace((char) 0xA0, (char)0x20).trim();
226          }          }
227                    
# Line 231  public class DepartureFetcher { Line 231  public class DepartureFetcher {
231                                    
232                  String type = getTypeStringWww(trainType);                  String type = getTypeStringWww(trainType);
233                                    
234                    stationcode = URLEncoder.encode(stationcode, "ISO-8859-1");
235                    
236                                                                                            
237              String uri = "http://www.bane.dk/visStation.asp?ArtikelID=4275&W=" + type + "&S=" + stationcode;              String uri = "http://www.bane.dk/visStation.asp?ArtikelID=4275&W=" + type + "&S=" + stationcode;
238                logger.fine("URI:" + uri);
239                
240    
241              JsoupInvocation wrapper = new JsoupInvocation( new URL(uri), replyTimeout);              JsoupInvocation wrapper = new JsoupInvocation( new URL(uri), replyTimeout);
242              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");              CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("banedk");
243                            
# Line 241  public class DepartureFetcher { Line 246  public class DepartureFetcher {
246              String tableName = arrival == false ? "afgangtabel" : "ankomsttabel";              String tableName = arrival == false ? "afgangtabel" : "ankomsttabel";
247              Element table = page.getElementById(tableName);              Element table = page.getElementById(tableName);
248                            
249    
250                
251              if (table != null) {              if (table != null) {
252                      Elements tableRows =  table.getElementsByTag("tr");                      Elements tableRows =  table.getElementsByTag("tr");
253                                            
254                        boolean passedTidsstreg = false;
255                        boolean tidsstregExists = (table.getElementsByAttributeValue("class", "Tidsstreg").size() > 0);
256                        
257                      for (Element currentRow : tableRows) {                      for (Element currentRow : tableRows) {
258                          String rowClass = currentRow.attr("class");                          String rowClass = currentRow.attr("class");
259                            
260                            if (tidsstregExists == true && passedTidsstreg == false) {
261                                    if (currentRow.getElementsByAttributeValue("class", "Tidsstreg").size() > 0) {
262                                            passedTidsstreg = true;
263                                    } else {
264                                            continue;
265                                    }
266                            }
267                            
268                            
269                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {                          if (rowClass != null && rowClass.toLowerCase().contains("station") ) {
270                                  Elements fields = currentRow.getElementsByTag("td");                                  Elements fields = currentRow.getElementsByTag("td");
271                    
# Line 263  public class DepartureFetcher { Line 283  public class DepartureFetcher {
283                                                                    
284                                  String trainNumber = cleanText( fields.get(2).text() );                                  String trainNumber = cleanText( fields.get(2).text() );
285                                  if (type.equalsIgnoreCase("S2")) //If it is S-train we need to extract the trainNumber                                  if (type.equalsIgnoreCase("S2")) //If it is S-train we need to extract the trainNumber
286                                          trainNumber = trainNumber + " " + extractTrainNumber(fields.get(2));                                          trainNumber = trainNumber + " " + extractTrainNumberWww(fields.get(2));
287                                  departure.setTrainNumber(trainNumber);                                  departure.setTrainNumber(trainNumber);
288                                                                    
289                                  String destination = cleanText( fields.get(3).text() );                                  String destination = cleanText( fields.get(3).text() );
# Line 326  public class DepartureFetcher { Line 346  public class DepartureFetcher {
346                  return note.trim();                  return note.trim();
347          }          }
348                    
349          private String extractTrainNumber(Element trainTd) {          private String extractTrainNumberAzure(Element trainTd) {
350                  Element anchorElement = trainTd.getElementsByTag("a").get(0);                  Element anchorElement = trainTd.getElementsByTag("a").get(0);
351                  String href = anchorElement.attr("href");                  String href = anchorElement.attr("href");
352                                    
# Line 336  public class DepartureFetcher { Line 356  public class DepartureFetcher {
356                  return number;                  return number;
357          }          }
358                    
359            private String extractTrainNumberWww(Element trainTd) {
360                    String number = "";
361                    Element anchorElement = trainTd.getElementsByTag("a").get(0);
362                    String href = anchorElement.attr("href");
363                    String argstring = href.substring( href.indexOf('?') + 1);
364                    
365                    String args[] = argstring.split("&");
366                    for (String arg : args) {
367                            String pair[] = arg.split("="); // Key=pair[0], Value=pair[1]
368                            
369                            if (pair[0].equalsIgnoreCase("TogNr"))
370                                    number = pair[1];
371                    }
372                    
373                    
374                    return number;
375            }
376    
377            
378          //test          //test
379          /*          /*
380          public static void main(String args[]) throws Exception {          public static void main(String args[]) throws Exception {

Legend:
Removed from v.1038  
changed lines
  Added in v.1048

  ViewVC Help
Powered by ViewVC 1.1.20