/[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 971 by torben, Fri Jul 9 21:46:45 2010 UTC revision 972 by torben, Fri Jul 9 22:14:46 2010 UTC
# Line 20  import dk.thoerup.traininfoservice.Stati Line 20  import dk.thoerup.traininfoservice.Stati
20    
21  public class DepartureFetcher {  public class DepartureFetcher {
22                    
23            enum TrainType{
24                    STOG,
25                    REGIONAL
26            }
27            
28          Logger logger = Logger.getLogger(DepartureFetcher.class.getName());          Logger logger = Logger.getLogger(DepartureFetcher.class.getName());
29                    
30          Map<String, List<DepartureBean>> cache;          Map<String, List<DepartureBean>> cache;
# Line 59  public class DepartureFetcher { Line 64  public class DepartureFetcher {
64                  StationBean station = stationDao.getById(stationID);                  StationBean station = stationDao.getById(stationID);
65                                    
66                  if (station.getRegional() != null) {                  if (station.getRegional() != null) {
67                          List<DepartureBean> list = lookupDepartures(station.getRegional(), "Fjerntog", arrival);                          List<DepartureBean> list = lookupDepartures(station.getRegional(), TrainType.REGIONAL, arrival);
68                          departureList.addAll(list);                                              departureList.addAll(list);                    
69                  }                  }
70                                    
71                  if (station.getStrain() != null) {                  if (station.getStrain() != null) {
72                          List<DepartureBean> list = lookupDepartures(station.getStrain(), "S-Tog", arrival);                          List<DepartureBean> list = lookupDepartures(station.getStrain(), TrainType.STOG, arrival);
73                          departureList.addAll(list);                              departureList.addAll(list);    
74                  }                                }              
75                                    
# Line 74  public class DepartureFetcher { Line 79  public class DepartureFetcher {
79                  return departureList;                  return departureList;
80          }          }
81                    
82          public List<DepartureBean> lookupDepartures(String stationcode, String type, boolean arrival) throws Exception {          public List<DepartureBean> lookupDepartures(String stationcode, TrainType type, boolean arrival) throws Exception {
83                  if (useTempSite == false) {                  if (useTempSite == false) {
84                          return lookupDeparturesNormalSite(stationcode, type, arrival);                          return lookupDeparturesNormalSite(stationcode, type, arrival);
85                  } else {                  } else {
86                          return lookupDeparturesFromTemporarySite(stationcode, type);                          //return lookupDeparturesFromTemporarySite(stationcode, type);
87                            //TODO: find out what to to if they ever put a temp site up on trafikinfo.bane.dk
88                            return null;
89                    }
90            }
91            
92            private String getTypeString(TrainType type) {
93                    switch (type) {
94                    case STOG:
95                            return "S-Tog";
96                    case REGIONAL:
97                            return "Fjerntog";
98                    default:
99                            return ""; //Can not happen
100                  }                  }
101          }          }
102                    
103          public List<DepartureBean> lookupDeparturesNormalSite(String stationcode, String type, boolean arrival) throws Exception {          public List<DepartureBean> lookupDeparturesNormalSite(String stationcode, TrainType type, boolean arrival) throws Exception {
104                                    
105                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();
106                                    
# Line 90  public class DepartureFetcher { Line 108  public class DepartureFetcher {
108              webClient.setTimeout(2500);              webClient.setTimeout(2500);
109              webClient.setJavaScriptEnabled(false);              webClient.setJavaScriptEnabled(false);
110                            
111                
112                String typeString = getTypeString(type);
113              String arrivalDeparture = (arrival==false) ? "Afgang" : "Ankomst";              String arrivalDeparture = (arrival==false) ? "Afgang" : "Ankomst";
114                                                            
115              //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;
116              String uri = "http://trafikinfo.bane.dk/Trafikinformation/AfgangAnkomst/" + arrivalDeparture + "/" + stationcode + "/" +type + "/UdvidetVisning";              String uri = "http://trafikinfo.bane.dk/Trafikinformation/AfgangAnkomst/" + arrivalDeparture + "/" + stationcode + "/" + typeString + "/UdvidetVisning";
117    
118              //logger.info("URI: " + uri);              //logger.info("URI: " + uri);
119              HtmlunitInvocation wrapper = new HtmlunitInvocation(webClient, uri);              HtmlunitInvocation wrapper = new HtmlunitInvocation(webClient, uri);
# Line 123  public class DepartureFetcher { Line 143  public class DepartureFetcher {
143                                  departure.setUpdated(updated);                                  departure.setUpdated(updated);
144                                                                    
145                                  String trainNumber = fields.get(2).asText();                                  String trainNumber = fields.get(2).asText();
146                                  if (type.equalsIgnoreCase("S-Tog")) //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
147                                          trainNumber = trainNumber + " " + extractTrainNumber(fields.get(2));                                          trainNumber = trainNumber + " " + extractTrainNumber(fields.get(2));
148                                  departure.setTrainNumber(trainNumber);                                  departure.setTrainNumber(trainNumber);
149                                                                    
# Line 142  public class DepartureFetcher { Line 162  public class DepartureFetcher {
162                                  String note = extractNote( fields.get(7) );                                  String note = extractNote( fields.get(7) );
163                                  departure.setNote(note);                                  departure.setNote(note);
164                                                                    
165                                  departure.setType(type);                                  departure.setType(typeString);
166                                                                    
167                                  departureList.add(departure);                                  departureList.add(departure);
168                          }                          }

Legend:
Removed from v.971  
changed lines
  Added in v.972

  ViewVC Help
Powered by ViewVC 1.1.20