/[projects]/android/MarketStats/src/dk/thoerup/marketstats/ShowStats.java
ViewVC logotype

Diff of /android/MarketStats/src/dk/thoerup/marketstats/ShowStats.java

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

revision 666 by torben, Fri Apr 23 15:28:34 2010 UTC revision 758 by torben, Thu May 27 08:57:57 2010 UTC
# Line 30  public class ShowStats extends HttpServl Line 30  public class ShowStats extends HttpServl
30    
31          String login;          String login;
32          String password;          String password;
33            
34            MemcachedClient memcache = null;
35    
36    
37          @Override          @Override
# Line 38  public class ShowStats extends HttpServl Line 40  public class ShowStats extends HttpServl
40    
41                  login = getServletContext().getInitParameter("login");                  login = getServletContext().getInitParameter("login");
42                  password = getServletContext().getInitParameter("password");                  password = getServletContext().getInitParameter("password");
43                    
44                    try {
45                            memcache = new MemcachedClient(new InetSocketAddress("localhost", 11211));
46                    } catch (IOException e) {
47                            throw new ServletException(e);
48                    }
49          }          }
50    
51          protected String doLookup(String appId) throws IOException {          protected String doLookup(String query) throws IOException {
52                  MemcachedClient c = new MemcachedClient(new InetSocketAddress("localhost", 11211));                  
   
53    
54                  String key = "marketstats:" + appId;                  String key = "marketstats:" + query;
55                  String response = (String) c.get(key);                  String response = (String) memcache.get(key);
56    
57                  if (response == null) {                  if (response == null) {
58                          response = doLookupWorker(appId);                          response = doLookupWorker(query);
59                          c.set(key, TIMEOUT, response);                          memcache.set(key, TIMEOUT, response);
60                          response += "<!-- new lookup -->";                          response += "<!-- new lookup -->";
61                  } else {                  } else {
62                          response += "<!-- from memcached -->";                          response += "<!-- from memcached -->";
# Line 57  public class ShowStats extends HttpServl Line 64  public class ShowStats extends HttpServl
64                  return response;                  return response;
65          }          }
66                    
67          private void loadComments(String appId, MarketSession session, String locale, ArrayList<CommentBean> commentBeans) {                      private void loadComments(String appId, MarketSession session, ArrayList<CommentBean> commentBeans) {          
68                  CommentCallback commentsCb = new CommentCallback();                  CommentCallback commentsCb = new CommentCallback();
69                  commentsCb.setList( commentBeans );                  commentsCb.setList( commentBeans );
70    
71                  commentsCb.setLocale( locale );                  session.setLocale( Locale.ROOT );
72                  session.setLocale( new Locale(locale) );                  
73                                    
74                                    
75                  int start = 0;                  int start = 0;
# Line 71  public class ShowStats extends HttpServl Line 78  public class ShowStats extends HttpServl
78                          if (start > 0)                                                    if (start > 0)                          
79                                  count = Math.min(10, commentsCb.getEntryCount() );                                  count = Math.min(10, commentsCb.getEntryCount() );
80                                                    
81                          //log.warning("count=" + count + " start=" + start + " " + locale);                          //log.warning("count=" + count + " start=" + start + " entryCount=" + commentsCb.getEntryCount() );
82                          CommentsRequest commentsRequest = CommentsRequest.newBuilder()                          CommentsRequest commentsRequest = CommentsRequest.newBuilder()
83                          .setAppId(appId)                          .setAppId(appId)
84                          .setStartIndex(start)                          .setStartIndex(start)
# Line 82  public class ShowStats extends HttpServl Line 89  public class ShowStats extends HttpServl
89                          session.flush();                          session.flush();
90                          start +=10;                          start +=10;
91                                                    
92                          if (start >= 20)                          if (start >= 200)
93                                  break; //emergency brake                                  break; //emergency brake
94                                                    
95                  } while ( start < commentsCb.getEntryCount() );                  } while ( start < commentsCb.getEntryCount() );
96          }          }
97    
98    
99          protected String doLookupWorker(String appId) {          protected String doLookupWorker(String query) {
100                  final StringBuilder sb = new StringBuilder();                  final StringBuilder sb = new StringBuilder();
101    
102    
# Line 98  public class ShowStats extends HttpServl Line 105  public class ShowStats extends HttpServl
105    
106    
107                  AppsRequest appsRequest = AppsRequest.newBuilder()                  AppsRequest appsRequest = AppsRequest.newBuilder()
108                  .setAppId(appId)                  .setQuery(query)
109                  .setStartIndex(0).setEntriesCount(10)                  .setStartIndex(0).setEntriesCount(10)
110                  .setWithExtendedInfo(true)                  .setWithExtendedInfo(true)
111                  .build();                  .build();
# Line 113  public class ShowStats extends HttpServl Line 120  public class ShowStats extends HttpServl
120    
121                  session.append(appsRequest, appsCb);                  session.append(appsRequest, appsCb);
122                  session.flush();                  session.flush();
123                    
124                    String appId = appsCb.getAppId();
125                    
126                    if (appId != null) {
127    
128                  loadComments(appId, session, "da", commentBeans);                          loadComments(appId, session, commentBeans);
129                  loadComments(appId, session, "en", commentBeans);          
130                            sb.append("-----------------------------------------------------------------\n");
131                  Collections.sort(commentBeans);                          for (CommentBean c : commentBeans) {
132                                    sb.append("User: " + c.author + "\n");
133                  sb.append("-----------------------------------------------------------------\n");                                  sb.append("Rating: " + c.rating + "\n");
134                  for (CommentBean c : commentBeans) {                                  sb.append("Time: " + new Date(c.time).toString() + "\n");
135                          sb.append("User: " + c.author + " ("  + c.locale + ")\n");                                  sb.append( c.text + "\n");
136                          sb.append("Rating: " + c.rating + "\n");                                  sb.append("\n");
137                          sb.append("Time: " + new Date(c.time).toString() + "\n");          
138                          sb.append( c.text + "\n");                          }
139                          sb.append("\n");                          sb.append("Comments: " + commentBeans.size() + "\n");
   
140                  }                  }
141                  sb.append("Comments: " + commentBeans.size() );                  sb.append("Cache.Timeout=" + TIMEOUT/60 + " minutes");          
142    
143    
144                  return sb.toString();                  return sb.toString();
145          }          }
146    
147          protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {          protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
148                  String appId = request.getParameter("appId");                  String query = request.getParameter("query");
149    
150                  response.setContentType("text/html");                  response.setContentType("text/html");
151                  PrintWriter out = response.getWriter();                  PrintWriter out = response.getWriter();
152                  out.print( "<html><body><pre>" + doLookup(appId) + "</pre></body></html>" );                  out.print( "<html><body><pre>" + doLookup(query) + "</pre></body></html>" );
153          }          }
154    
155  }  }

Legend:
Removed from v.666  
changed lines
  Added in v.758

  ViewVC Help
Powered by ViewVC 1.1.20