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

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

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

revision 301 by torben, Mon Sep 7 12:23:35 2009 UTC revision 388 by torben, Fri Oct 2 15:11:25 2009 UTC
# Line 5  import java.sql.Connection; Line 5  import java.sql.Connection;
5  import java.sql.PreparedStatement;  import java.sql.PreparedStatement;
6  import java.sql.ResultSet;  import java.sql.ResultSet;
7  import java.sql.SQLException;  import java.sql.SQLException;
8    import java.util.logging.Level;
9    import java.util.logging.Logger;
10    
11  import javax.servlet.ServletException;  import javax.servlet.ServletException;
12  import javax.servlet.http.HttpServlet;  import javax.servlet.http.HttpServlet;
# Line 18  import dk.thoerup.traininfoservice.DBCon Line 20  import dk.thoerup.traininfoservice.DBCon
20   */   */
21  public class LocateStations extends HttpServlet {  public class LocateStations extends HttpServlet {
22          private static final long serialVersionUID = 1L;          private static final long serialVersionUID = 1L;
23          
24      /**          Logger logger = Logger.getLogger( LocateStations.class.toString() );
25       * @see HttpServlet#HttpServlet()          
26       */          /**
27      public LocateStations() {           * @see HttpServlet#HttpServlet()
28          super();           */
29          // TODO Auto-generated constructor stub          public LocateStations() {
30      }                  super();
31                    // TODO Auto-generated constructor stub
32          protected String getStations(Connection conn, double latitude, double longitude) throws SQLException {          }
33                  //inner select is workaround from not being able to use a calculated column directly in where clause  
34                  final String SQL = "SELECT * FROM ( "+          public enum Requested {
35                                                     "               SELECT name,latitude,longitude,stationcode, " +                  BY_NAME,
36                                                     "                     earth_distance( ll_to_earth(latitude,longitude), ll_to_earth(?,?))::int AS calcdist " +                  BY_LOCATION,
37                                                     "               FROM trainstations " +                  NONE
38                                                     "               WHERE latitude IS NOT NULL AND longitude IS NOT NULL " +          }
39                                                     "       ) AS trainstations2 " +  
40                                                 "ORDER BY calcdist ASC " +  
41                                                 "LIMIT 4 ";          protected String getStations(Connection conn, double latitude, double longitude, String name, Requested method) throws SQLException {
42                                    String SQL = "";
                 System.out.println(SQL);  
                   
43                  PreparedStatement stmt = null;                  PreparedStatement stmt = null;
44                  ResultSet res = null;                  ResultSet res = null;
45                    
46                  StringBuffer buff = new StringBuffer();                  StringBuffer buff = new StringBuffer();
47                    
48                  buff.append("<?xml version=\"1.0\" ?>\n");                  buff.append("<?xml version=\"1.0\" ?>\n");
49                  buff.append("<stations>\n");                  buff.append("<stations>\n");    
50                    
51                  try                  try
52                  {                  {
53                          stmt = conn.prepareStatement(SQL);  
54                          stmt.setDouble(1, latitude);                          switch (method)
55                          stmt.setDouble(2, longitude);                          {
56                                                    case BY_LOCATION:
57                                    //inner select is workaround from not being able to use a calculated column directly in where clause
58                                    SQL = "SELECT * FROM ( "+
59                                                    "               SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, " +
60                                                    "                     earth_distance( ll_to_earth(latitude,longitude), ll_to_earth(?,?))::int AS calcdist " +
61                                                    "               FROM trainstations " +
62                                                    "               WHERE enabled = true AND latitude IS NOT NULL AND longitude IS NOT NULL " +
63                                                    "       ) AS trainstations2 " +
64                                                    "ORDER BY calcdist ASC " +
65                                                    "LIMIT 4 ";
66                                    stmt = conn.prepareStatement(SQL);
67                                    stmt.setDouble(1, latitude);
68                                    stmt.setDouble(2, longitude);
69    
70                                    break;
71                            case BY_NAME:
72                                    SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog,0.0 " +
73                                            "FROM trainstations " +
74                                            "WHERE name ILIKE ? AND latitude IS NOT NULL AND longitude IS NOT NULL " +
75                                            "ORDER BY name ";
76                                    stmt = conn.prepareStatement(SQL);
77                                    stmt.setString(1, name + "%");
78                                    break;
79                            default:
80                                    // This should not be possible
81                                    logger.severe("getStations(): default switch case");
82                            }
83    
84    
85    
86    
87                          res = stmt.executeQuery();                          res = stmt.executeQuery();
88                            
89                          while (res.next()) {                          while (res.next()) {
90                                  buff.append("<station>\n");                                  buff.append("<station>\n");
91    
92                                  buff.append("<name>").append( res.getString(1) ) .append("</name>\n");                                  buff.append("<id>").append( res.getInt(1) ).append("</id>\n");
93                                  buff.append("<latitude>").append( res.getDouble(2) ) .append("</latitude>\n");                                  buff.append("<name>").append( res.getString(2) ) .append("</name>\n");
94                                  buff.append("<longitude>").append( res.getDouble(3) ) .append("</longitude>\n");                                                                          buff.append("<latitude>").append( res.getDouble(3) ) .append("</latitude>\n");
95                                  buff.append("<stationcode>").append( res.getString(4) ) .append("</stationcode>\n");                                  buff.append("<longitude>").append( res.getDouble(4) ) .append("</longitude>\n");
96                                  buff.append("<calcdist>").append( res.getInt(5) ) .append("</calcdist>\n");                                  res.getString(5);
97                                                                    buff.append("<fjerntog>").append( !res.wasNull() ) .append("</fjerntog>\n");
98                                    res.getString(6);
99                                    buff.append("<stog>").append( !res.wasNull() ) .append("</stog>\n");
100                                    buff.append("<calcdist>").append( res.getInt(7) ) .append("</calcdist>\n");
101    
102                                  buff.append("</station>\n");                                                              buff.append("</station>\n");                            
103                          }                          }
104                  } finally {                  } finally {
# Line 77  public class LocateStations extends Http Line 112  public class LocateStations extends Http
112          }          }
113    
114          protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {          protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
115                    
116                  double latitude = Double.parseDouble( request.getParameter("latitude") );                  double longitude = 0.0;
117                  double longitude = Double.parseDouble( request.getParameter("longitude") );                  double latitude = 0.0;
118                                                    String name = "";
119                  Connection conn = null;  
120                  try {                  Requested method = Requested.NONE;
121                          conn = DBConnection.getConnection();  
122                                            if (request.getParameter("latitude") != null && request.getParameter("latitude") != null) {
123                          String xml = getStations(conn, latitude, longitude);                          latitude = Double.parseDouble( request.getParameter("latitude") );
124                                                    longitude = Double.parseDouble( request.getParameter("longitude") );
125                          response.setContentType("text/xml");                          method = Requested.BY_LOCATION;
126                          response.getWriter().print(xml);                  }
127                            
128                          conn.close();                  if (request.getParameter("name") != null) {
129                          conn = null;                          name = request.getParameter("name").trim();
130                                                    method = Requested.BY_NAME;
131                  } catch (Exception e) {                  }
132                          throw new ServletException(e);  
133                  } finally {  
134                    if (method != Requested.NONE) {
135    
136                            Connection conn = null;
137                          try {                          try {
138                                  if (conn != null)                                  conn = DBConnection.getConnection();
139                                          conn.close();  
140                          } catch (Throwable t) {}                                  String xml = getStations(conn, latitude, longitude, name, method);
141    
142                                    response.setContentType("text/xml");
143                                    response.getWriter().print(xml);
144    
145                                    conn.close();
146                                    conn = null;
147    
148                            } catch (Exception e) {                        
149                                    logger.log(Level.SEVERE, "Exception while finding stations", e);
150                                    response.sendError(500);                                                
151                            } finally {
152                                    try {
153                                            if (conn != null)
154                                                    conn.close();
155                                    } catch (Throwable t) {}
156                            }
157                    } else {
158                            response.sendError(400, "not enough parameters");
159                  }                  }
160          }          }
161    

Legend:
Removed from v.301  
changed lines
  Added in v.388

  ViewVC Help
Powered by ViewVC 1.1.20