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

Diff of /android/TrainInfoServiceGoogle/src/dk/thoerup/traininfoservice/TestServlet.java

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

revision 735 by torben, Tue May 18 20:58:04 2010 UTC revision 851 by torben, Tue Jun 15 12:54:25 2010 UTC
# Line 12  import javax.servlet.http.HttpServletRes Line 12  import javax.servlet.http.HttpServletRes
12    
13  public class TestServlet extends HttpServlet {  public class TestServlet extends HttpServlet {
14          private static final long serialVersionUID = 1L;          private static final long serialVersionUID = 1L;
15          final int COUNT = 10;          
16            Random r = new Random();
17    
18          //South-West corner= 54.0, 7.0          //South-West corner= 54.0, 7.0
19          //North-East corner= 58.0, 16.0          //North-East corner= 58.0, 13.0
20          //Latitude span=4.0          //Latitude span=4.0
21          //Longitude span=9.0          //Longitude span=6.0
22          void testFindNearest() throws SQLException {          void testFindNearest(int count) throws SQLException {          
                 Random r = new Random();  
23    
24                  StationDAO db = new StationDAO();                  StationDAO db = new StationDAO();
25    
26    
27                  for (int i=0; i<COUNT; i++) {                  for (int i=0; i<count; i++) {
28                          float lat = (r.nextFloat()*4.0F) + 54.0F;                          float lat = (r.nextFloat()*4.0F) + 54.0F;
29                          float lng = (r.nextFloat()*9.0F) + 7.0F;                          float lng = (r.nextFloat()*6.0F) + 7.0F;
30                          db.getByLocation(lat, lng);                          db.getByLocation(lat, lng);
31                  }                  }
32    
# Line 34  public class TestServlet extends HttpSer Line 34  public class TestServlet extends HttpSer
34    
35          }          }
36    
37          void testFindName()  throws SQLException {          void testFindName(int count)  throws SQLException {
                 Random r = new Random();  
38                                    
39                  StationDAO db = new StationDAO();                  StationDAO db = new StationDAO();
40                                    
41                  for (int i=0; i<COUNT; i++) {                  for (int i=0; i<count; i++) {
42                          char c1 = ((char)r.nextInt(26));                          char c1 = ((char)r.nextInt(26));
43                          c1 += 'a';                          c1 += 'a';
44                          char c2 = ((char)r.nextInt(26)) ;                          char c2 = ((char)r.nextInt(26)) ;
# Line 50  public class TestServlet extends HttpSer Line 49  public class TestServlet extends HttpSer
49                                                    
50                          db.getByName(search);                          db.getByName(search);
51                  }                  }
52            }
53            
54            void testFindFavorites(int count)  throws SQLException {
55                    
56                    StationDAO db = new StationDAO();
57                    
58                    for (int i=0; i<count; i++) {
59                            final int MAX = 8;
60                            
61                            StringBuilder sb = new StringBuilder();
62                            sb.append('(');
63                            for (int j=0; j<MAX;j++) {
64                                    if (j>0)
65                                            sb.append(',');
66                                    sb.append(r.nextInt(400));
67                            }
68                            sb.append(')');
69    
70    
71                            db.getByList(sb.toString());
72                    }
73          }          }
74    
75          protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {          protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
76                    
77                    
78                    String test = request.getParameter("test");
79                    String strCount = request.getParameter("count");
80                    int count = Integer.parseInt(strCount);
81                    
82            
83                  try {                                    try {                  
84                          long start = System.currentTimeMillis();                          long start = System.currentTimeMillis();
85                          testFindName();                          
86                            if ( test.equals("name") ) {
87                                    testFindName(count);
88                            } else if ( test.equals("nearest") ) {
89                                    testFindNearest(count);
90                            } else if ( test.equals("favorites") ) {
91                                    testFindFavorites(count);
92                            } else {
93                                    throw new ServletException("No parameter test");
94                            }
95                            
96                          long stop = System.currentTimeMillis();                          long stop = System.currentTimeMillis();
97    
98                          long elapsed = stop-start;                          long elapsed = stop-start;
99    
100                          float avg = ((float)elapsed) / COUNT;                          float avg = ((float)elapsed) / count;
101    
102                          String out = "Count=" + COUNT + "\n" +                                                            String out = "Count=" + count + "\n" +                                  
103                          "Elapsed=" + elapsed + "\n" +                          "Elapsed=" + elapsed + "\n" +
104                          "Avg.=" +  avg;                          "Avg.=" +  avg;
105    

Legend:
Removed from v.735  
changed lines
  Added in v.851

  ViewVC Help
Powered by ViewVC 1.1.20