/[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 1335 by torben, Wed Apr 20 06:35:13 2011 UTC revision 1366 by torben, Wed Apr 20 20:04:05 2011 UTC
# Line 16  import dk.thoerup.android.traininfo.comm Line 16  import dk.thoerup.android.traininfo.comm
16  import dk.thoerup.android.traininfo.common.StationBean.StationEntry;  import dk.thoerup.android.traininfo.common.StationBean.StationEntry;
17  import dk.thoerup.circuitbreaker.CircuitBreaker;  import dk.thoerup.circuitbreaker.CircuitBreaker;
18  import dk.thoerup.circuitbreaker.CircuitBreakerManager;  import dk.thoerup.circuitbreaker.CircuitBreakerManager;
19    import dk.thoerup.genericjavautils.HttpUtil;
20    import dk.thoerup.genericjavautils.TimeoutMap;
21  import dk.thoerup.traininfoservice.Statistics;  import dk.thoerup.traininfoservice.Statistics;
22  import dk.thoerup.traininfoservice.TraininfoSettings;  import dk.thoerup.traininfoservice.TraininfoSettings;
23  import dk.thoerup.traininfoservice.db.StationDAO;  import dk.thoerup.traininfoservice.db.StationDAO;
# Line 262  public class DepartureFetcher { Line 264  public class DepartureFetcher {
264                          }                          }
265                                                    
266                                                    
267                          Element link = currentRow.child(0);                              String link = currentRow.child(0).attr("href");
268                            
269                                  logger.fine( currentRow.text() );                                  logger.fine( currentRow.text() );
270                                    logger.fine("Href: " + link);
271                                                    
272    
273                          String parts[] = currentRow.text().split(",");                          String parts[] = currentRow.text().split(",");
274                                    
275    
276                          DepartureEntry departure = new DepartureEntry();                          DepartureEntry departure = new DepartureEntry();
277                            
278                            //if we do these things upfront, then we are allowed to use continue statement when row contains no more data
279                            departure.setType(typeString);
280                            departureBean.entries.add( departure );
281    
282  /*  /*
283  http://mobil.bane.dk/mobilStation.asp?artikelID=5332&tognummer=111&webprofil=FJRN&mode=rute&strBemaerkning=Afg%E5r+fra+%C5rhus+H+kl%2E07%3A21++&strRefURL=%2FmobilStation%2Easp%3FartikelID%3D5332%26stat%5Fkode%3DAR%26webprofil%3DFJRN%26beskrivelse%3D%25C5rhus%2BH%26mode%3Dankomstafgang%26ankomstafgang%3Dafgang%26gemstation%3D  http://mobil.bane.dk/mobilStation.asp?artikelID=5332&tognummer=111&webprofil=FJRN&mode=rute&strBemaerkning=Afg%E5r+fra+%C5rhus+H+kl%2E07%3A21++&strRefURL=%2FmobilStation%2Easp%3FartikelID%3D5332%26stat%5Fkode%3DAR%26webprofil%3DFJRN%26beskrivelse%3D%25C5rhus%2BH%26mode%3Dankomstafgang%26ankomstafgang%3Dafgang%26gemstation%3D
# Line 284  http://mobil.bane.dk/mobilStation.asp?ar Line 292  http://mobil.bane.dk/mobilStation.asp?ar
292                          int updated = 4; //does not exist on mobile                          int updated = 4; //does not exist on mobile
293                          departure.setUpdated(updated);                          departure.setUpdated(updated);
294    
295                          String trainNumber = "-"; //extractTrainNumberAzure(fields.get(2));                          String trainNumber = extractTrainNumberMobile(link);
296                          /*if (traintype == TrainType.STOG) //If it is S-train we need to extract the trainNumber                          /*if (traintype == TrainType.STOG) //If it is S-train we need to extract the trainNumber
297                                  trainNumber = trainNumber + " " + extractTrainNumberAzure(fields.get(2));*/                                  trainNumber = trainNumber + " " + extractTrainNumberAzure(fields.get(2));*/
298                          departure.setTrainNumber(trainNumber);                          departure.setTrainNumber(trainNumber);
299    
300                                  if (traintype == TrainType.STOG) { //if it is stog the next vield is the "Line" code - this should be used somewhere, but skippint ahead for now                                  if (traintype == TrainType.STOG) { //if it is stog the next vield is the "Line" code - this should be used somewhere, but skippint ahead for now
301                                          offset++;                                          String stogLine = parts[offset++].trim();
302                                            departure.setTrainNumber(stogLine + " " + trainNumber);
303                                  }                                  }
304    
305                          String destination = parts[offset++];                          String destination = parts[offset++].trim();;
306                          departure.setDestination(destination);                          departure.setDestination(destination);
307    
308                          String origin = "-"; // fields.get(4).text(); does not exist on mobile                          String origin = "-"; // fields.get(4).text(); does not exist on mobile
# Line 301  http://mobil.bane.dk/mobilStation.asp?ar Line 310  http://mobil.bane.dk/mobilStation.asp?ar
310    
311                          String location = ""; // fields.get(5).text(); does not exist on mobile                          String location = ""; // fields.get(5).text(); does not exist on mobile
312                          departure.setLocation(location);                          departure.setLocation(location);
313                            
314                            if (offset == parts.length) {
315                                    continue;
316                            }
317                            
318                            if (parts[offset].trim().equalsIgnoreCase("NB!")) {
319                                    offset++;
320                            }
321                            
322                            if (offset == parts.length) {
323                                    continue;
324                            }
325    
326                          String status = ""; //fields.get(6).text().trim(); - extract from url                          String status = parts[offset++].trim();; //fields.get(6).text().trim(); - extract from url
327                          departure.setStatus(status);                          departure.setStatus(status);
328    
329                          String note = ""; //extractNote( fields.get(7) ); - extract from url                          String note = ""; //extractNote( fields.get(7) ); - extract from url
330                          departure.setNote(note);                          departure.setNote(note);
331    
                         departure.setType(typeString);  
   
                         departureBean.entries.add( departure );  
   
332                      }                      }
333              } else {              } else {
334                  logger.warning("No departures found for station=" + stationcode + ", type=" + traintype);                  logger.warning("No departures found for station=" + stationcode + ", type=" + traintype);
# Line 461  http://mobil.bane.dk/mobilStation.asp?ar Line 478  http://mobil.bane.dk/mobilStation.asp?ar
478                  return number;                  return number;
479          }          }
480                    
481            private String extractTrainNumberMobile(String link) {
482                    Map<String,String> elements = HttpUtil.decodeParams(link);
483                    
484                    return elements.get("tognummer");
485            }
486            
487          private String extractTrainNumberWww(Element trainTd) {          private String extractTrainNumberWww(Element trainTd) {
488                  String number = "";                  String number = "";
489                  Element anchorElement = trainTd.getElementsByTag("a").get(0);                  Element anchorElement = trainTd.getElementsByTag("a").get(0);
490                  String href = anchorElement.attr("href");                  String href = anchorElement.attr("href");
491                  String argstring = href.substring( href.indexOf('?') + 1);  
492                    String argstring = href.split("?")[1];
493                    Map<String,String> elements = HttpUtil.decodeParams(argstring);
494                    number = elements.get("TogNr");        
495                    
496                                    
497                    /*String argstring = href.substring( href.indexOf('?') + 1);
498                  String args[] = argstring.split("&");                  String args[] = argstring.split("&");
499                  for (String arg : args) {                  for (String arg : args) {
500                          String pair[] = arg.split("="); // Key=pair[0], Value=pair[1]                          String pair[] = arg.split("="); // Key=pair[0], Value=pair[1]
501                                                    
502                          if (pair[0].equalsIgnoreCase("TogNr"))                          if (pair[0].equalsIgnoreCase("TogNr"))
503                                  number = pair[1];                                  number = pair[1];
504                  }                  }*/
505                                                                    
506                                    
507                  return number;                  return number;
508          }          }

Legend:
Removed from v.1335  
changed lines
  Added in v.1366

  ViewVC Help
Powered by ViewVC 1.1.20