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

Contents of /android/TrainInfoService/src/dk/thoerup/traininfoservice/db/TestServlet.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1255 - (show annotations) (download)
Mon Apr 4 10:56:44 2011 UTC (13 years, 1 month ago) by torben
File size: 2521 byte(s)
Move database related classes to it's own package
1 package dk.thoerup.traininfoservice.db;
2
3 import java.io.IOException;
4 import java.sql.SQLException;
5 import java.util.Random;
6
7 import javax.servlet.ServletException;
8 import javax.servlet.annotation.WebServlet;
9 import javax.servlet.http.HttpServlet;
10 import javax.servlet.http.HttpServletRequest;
11 import javax.servlet.http.HttpServletResponse;
12
13
14 @WebServlet(urlPatterns={"/TestServlet"})
15 public class TestServlet extends HttpServlet {
16 private static final long serialVersionUID = 1L;
17
18 Random r = new Random();
19
20 //South-West corner= 54.5, 8.0
21 //North-East corner= 57.8, 12.7
22 //Latitude span=3.3
23 //Longitude span=4.7
24 void testFindNearest(int count) throws SQLException {
25
26 StationDAO db = new StationDAO();
27
28
29 for (int i=0; i<count; i++) {
30 float lat = (r.nextFloat()*3.3F) + 54.5F;
31 float lng = (r.nextFloat()*4.7F) + 8.0F;
32 db.getByLocation(lat, lng);
33 }
34
35
36
37 }
38
39 void testFindName(int count) throws SQLException {
40
41 StationDAO db = new StationDAO();
42
43 for (int i=0; i<count; i++) {
44 char c1 = ((char)r.nextInt(26));
45 c1 += 'a';
46 char c2 = ((char)r.nextInt(26)) ;
47 c2 += 'a';
48
49 String search = "" + c1 + c2;
50 System.out.println(search);
51
52 db.getByName(search);
53 }
54 }
55
56 void testFindFavorites(int count) throws SQLException {
57
58 StationDAO db = new StationDAO();
59
60 for (int i=0; i<count; i++) {
61 final int MAX = 8;
62
63 StringBuilder sb = new StringBuilder();
64 sb.append('(');
65 for (int j=0; j<MAX;j++) {
66 if (j>0)
67 sb.append(',');
68 sb.append(r.nextInt(400));
69 }
70 sb.append(')');
71
72
73 db.getByList(sb.toString());
74 }
75 }
76
77 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
78
79
80 String test = request.getParameter("test");
81 String strCount = request.getParameter("count");
82 int count = Integer.parseInt(strCount);
83
84
85 try {
86 long start = System.currentTimeMillis();
87
88 if ( test.equals("name") ) {
89 testFindName(count);
90 } else if ( test.equals("nearest") ) {
91 testFindNearest(count);
92 } else if ( test.equals("favorites") ) {
93 testFindFavorites(count);
94 } else {
95 throw new ServletException("No parameter test");
96 }
97
98 long stop = System.currentTimeMillis();
99
100 long elapsed = stop-start;
101
102 float avg = ((float)elapsed) / count;
103
104 String out = "Count=" + count + "\n" +
105 "Elapsed=" + elapsed + "\n" +
106 "Avg.=" + avg;
107
108 response.getWriter().print( out );
109
110
111 } catch (Exception e) {
112 throw new ServletException(e);
113 }
114 }
115
116 }

  ViewVC Help
Powered by ViewVC 1.1.20