/[projects]/android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/DepartureServlet.java
ViewVC logotype

Diff of /android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/DepartureServlet.java

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

revision 1253 by torben, Mon Apr 4 08:59:46 2011 UTC revision 1396 by torben, Thu Apr 28 10:13:36 2011 UTC
# Line 17  import org.simpleframework.xml.Serialize Line 17  import org.simpleframework.xml.Serialize
17  import org.simpleframework.xml.core.Persister;  import org.simpleframework.xml.core.Persister;
18    
19  import dk.thoerup.android.traininfo.common.DepartureBean;  import dk.thoerup.android.traininfo.common.DepartureBean;
20    import dk.thoerup.android.traininfo.common.StationBean;
21  import dk.thoerup.circuitbreaker.CircuitBreakerException;  import dk.thoerup.circuitbreaker.CircuitBreakerException;
 import dk.thoerup.traininfoservice.StationDAO;  
22  import dk.thoerup.traininfoservice.Statistics;  import dk.thoerup.traininfoservice.Statistics;
23    import dk.thoerup.traininfoservice.TraininfoSettings;
24  import dk.thoerup.traininfoservice.banedk.DepartureFetcher.FetchTrainType;  import dk.thoerup.traininfoservice.banedk.DepartureFetcher.FetchTrainType;
25    import dk.thoerup.traininfoservice.db.StationDAO;
26    
27  /**  /**
28   * Servlet implementation class DepartureServlet   * Servlet implementation class DepartureServlet
# Line 43  public class DepartureServlet extends Ht Line 45  public class DepartureServlet extends Ht
45          public void init() throws ServletException {          public void init() throws ServletException {
46                  super.init();                  super.init();
47    
48                  boolean useAzureSite =  Boolean.parseBoolean( getServletContext().getInitParameter("useazuresite") );  
49                  int cacheTimeout =  Integer.parseInt( getServletContext().getInitParameter("cache_timeout") );                  TraininfoSettings settings = (TraininfoSettings) getServletContext().getAttribute("settings");
50                  int replyTimeout =  Integer.parseInt( getServletContext().getInitParameter("reply_timeout") );                  fetcher = new DepartureFetcher(settings);
                 logger.info( "DepartureServlet, use azure site=" + useAzureSite + ", cache=" + cacheTimeout);  
                 fetcher = new DepartureFetcher(useAzureSite, cacheTimeout, replyTimeout);  
51                                    
52                  /*                  /*
53                  xslTransFact = TransformerFactory.newInstance();                  xslTransFact = TransformerFactory.newInstance();
# Line 90  public class DepartureServlet extends Ht Line 90  public class DepartureServlet extends Ht
90                          type = FetchTrainType.valueOf( req.getParameter("type") );                          type = FetchTrainType.valueOf( req.getParameter("type") );
91                  }                  }
92    
93                    
94                  try {                  try {
95                          beans = fetcher.cachedLookupDepartures(station, arrival, type);                          beans = fetcher.cachedLookupDepartures(station, arrival, type);
96                          beans.arrival = arrival;                          beans.arrival = arrival;
97                  } catch (java.io.IOException ioe) {                  } catch (java.io.IOException ioe) {
98                          logger.warning("Read failed, station="+station + ". " + ioe.getMessage() );                          logger.warning("Read failed, station="+station + ". " + ioe.getMessage() );
99                          Statistics.getInstance().incrementDepartureErrors();                          Statistics.getInstance().incrementDepartureErrors();
100                          resp.sendError(500);                          resp.sendError(500, "backend didnt answer");
101                          return;                          return;
102                  } catch (CircuitBreakerException cbe) {                  } catch (CircuitBreakerException cbe) {
103                          logger.warning("Circuitbreaker - failing fast, station=" +station);                          logger.warning("Circuitbreaker - failing fast, station=" +station);
104                          Statistics.getInstance().incrementDepartureErrors();                          Statistics.getInstance().incrementDepartureErrors();
105                          resp.sendError(500);                          beans = generateErrorBean(1);
                         return;  
106                  } catch (StationDAO.NostationException nse) {                  } catch (StationDAO.NostationException nse) {
107                          logger.log(Level.WARNING, "Station not in Database, station=" +station);                          logger.log(Level.WARNING, "Station not in Database, station=" +station);
108                          Statistics.getInstance().incrementDepartureErrors();                          Statistics.getInstance().incrementDepartureErrors();
# Line 135  public class DepartureServlet extends Ht Line 135  public class DepartureServlet extends Ht
135                  } else {                  } else {
136                          resp.sendError(400, "Unknown format");                                            resp.sendError(400, "Unknown format");                  
137                  }                  }
138            }
139            
140            protected DepartureBean generateErrorBean(int code) {
141                    DepartureBean bean = new DepartureBean();
142                    bean.stationName="";
143                    bean.errorCode = code;
144                    return bean;
145          }          }
146    
147          protected String formatXml(DepartureBean beans) throws ServletException{          protected String formatXml(DepartureBean beans) throws ServletException{

Legend:
Removed from v.1253  
changed lines
  Added in v.1396

  ViewVC Help
Powered by ViewVC 1.1.20