/NewEatsNewYorkServer/src/org/skylight1/neny/NewRestaurantsServlet.java

http://skylight1.googlecode.com/ · Java · 71 lines · 55 code · 16 blank · 0 comment · 2 complexity · c2fcab2f2c0f071c8dd685d1c164394e MD5 · raw file

  1. package org.skylight1.neny;
  2. import static com.google.appengine.api.memcache.jsr107cache.GCacheFactory.EXPIRATION_DELTA;
  3. import java.io.IOException;
  4. import java.util.Calendar;
  5. import java.util.Date;
  6. import java.util.HashMap;
  7. import java.util.List;
  8. import java.util.Map;
  9. import java.util.logging.Logger;
  10. import javax.servlet.http.HttpServlet;
  11. import javax.servlet.http.HttpServletRequest;
  12. import javax.servlet.http.HttpServletResponse;
  13. import net.sf.jsr107cache.Cache;
  14. import net.sf.jsr107cache.CacheFactory;
  15. import net.sf.jsr107cache.CacheManager;
  16. import org.skylight1.neny.model.Restaurant;
  17. import org.skylight1.neny.server.RestaurantDAO;
  18. import com.google.gson.Gson;
  19. @SuppressWarnings("serial")
  20. public class NewRestaurantsServlet extends HttpServlet {
  21. private static final int ONE_DAY = 24 * 60 * 60;
  22. private static final Logger LOGGER = Logger.getLogger(NewRestaurantsServlet.class.getName());
  23. @SuppressWarnings("unchecked")
  24. public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
  25. try {
  26. LOGGER.info("starting");
  27. resp.setContentType("application/json");
  28. final Calendar calendar = Calendar.getInstance();
  29. calendar.add(Calendar.MONTH, -3);
  30. calendar.set(Calendar.HOUR_OF_DAY, 0);
  31. calendar.clear(Calendar.MINUTE);
  32. calendar.clear(Calendar.SECOND);
  33. calendar.clear(Calendar.MILLISECOND);
  34. final Date cutoffDate = calendar.getTime();
  35. final List<Restaurant> listOfRestaurants;
  36. final CacheFactory cacheFactory = CacheManager.getInstance().getCacheFactory();
  37. final Map<Object, Object> properties = new HashMap<Object, Object>();
  38. properties.put(EXPIRATION_DELTA, ONE_DAY);
  39. final Cache cache = cacheFactory.createCache(properties);
  40. LOGGER.info("cache key is " + cutoffDate);
  41. if (cache.containsKey(cutoffDate)) {
  42. listOfRestaurants = (List<Restaurant>) cache.get(cutoffDate);
  43. LOGGER.info("found in cache; list length = " + listOfRestaurants.size());
  44. } else {
  45. listOfRestaurants = new RestaurantDAO().getListOfRestaurants(cutoffDate);
  46. cache.put(cutoffDate, listOfRestaurants);
  47. LOGGER.info("did not find in cache, so retrieved from database and stored in cache; list length = " + listOfRestaurants.size());
  48. }
  49. new Gson().toJson(listOfRestaurants, resp.getWriter());
  50. LOGGER.info("done");
  51. } catch (Exception e) {
  52. throw new IOException(e);
  53. }
  54. }
  55. }