/[projects]/android/TrainInfoServiceGoogle/src/dk/thoerup/traininfoservice/banedk/DepartureFetcher.java
ViewVC logotype

Diff of /android/TrainInfoServiceGoogle/src/dk/thoerup/traininfoservice/banedk/DepartureFetcher.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 349 by torben, Mon Sep 28 19:14:18 2009 UTC revision 387 by torben, Fri Oct 2 15:06:08 2009 UTC
# Line 8  import java.util.Collections; Line 8  import java.util.Collections;
8  import java.util.List;  import java.util.List;
9  import java.util.logging.Logger;  import java.util.logging.Logger;
10    
11  import com.gargoylesoftware.htmlunit.ProxyConfig;  
12  import com.gargoylesoftware.htmlunit.WebClient;  import com.gargoylesoftware.htmlunit.WebClient;
13  import com.gargoylesoftware.htmlunit.html.DomNodeList;  import com.gargoylesoftware.htmlunit.html.DomNodeList;
14  import com.gargoylesoftware.htmlunit.html.HtmlElement;  import com.gargoylesoftware.htmlunit.html.HtmlElement;
# Line 19  import dk.thoerup.traininfoservice.DBCon Line 19  import dk.thoerup.traininfoservice.DBCon
19  public class DepartureFetcher {  public class DepartureFetcher {
20                    
21          Logger logger = Logger.getLogger(DepartureFetcher.class.getName());          Logger logger = Logger.getLogger(DepartureFetcher.class.getName());
22            
23            TimeoutCache<Integer, List<DepartureBean>> cache = new TimeoutCache<Integer,List<DepartureBean>>(120 * 1000);
24            
25                    
26            
27            public List<DepartureBean> cachedLookupDepartures(int stationID) throws Exception {
28    
29                    List<DepartureBean> list = cache.get(stationID);
30                    
31                    if (list == null) {
32                            logger.warning("Departure: Cache miss " + stationID); //remove before production
33                            list = lookupDepartures(stationID);
34                            cache.put(stationID, list);
35                    } else {
36                            logger.warning("Departure: Cache hit " + stationID); //remove before production
37                    }
38                    return list;
39            }
40                                    
41    
42          public List<DepartureBean> lookupDepartures(int stationID) throws Exception {          public List<DepartureBean> lookupDepartures(int stationID) throws Exception {
# Line 63  public class DepartureFetcher { Line 81  public class DepartureFetcher {
81                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();                  List<DepartureBean> departureList = new ArrayList<DepartureBean>();
82                                    
83              final WebClient webClient = new WebClient();              final WebClient webClient = new WebClient();
84              webClient.setTimeout(1000);              webClient.setTimeout(2500);
85              webClient.setJavaScriptEnabled(false);              webClient.setJavaScriptEnabled(false);
86                                                            
87                            
# Line 82  public class DepartureFetcher { Line 100  public class DepartureFetcher {
100                                  DepartureBean departure = new DepartureBean();                                  DepartureBean departure = new DepartureBean();
101                                                                    
102                                  String time = fields.get(0).asText();                                  String time = fields.get(0).asText();
103                                    if (time.equals(""))
104                                            time = "0:00"; //Bane.dk bug work-around
105                                  departure.setTime(time);                                  departure.setTime(time);
106                                                                    
107                                  int updated = extractUpdated( fields.get(1) );                                  int updated = extractUpdated( fields.get(1) );

Legend:
Removed from v.349  
changed lines
  Added in v.387

  ViewVC Help
Powered by ViewVC 1.1.20