/[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 388 by torben, Fri Oct 2 15:11:25 2009 UTC revision 1060 by torben, Thu Sep 16 13:32:10 2010 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfoservice;  package dk.thoerup.traininfoservice;
2    
3    import java.io.ByteArrayOutputStream;
4  import java.io.IOException;  import java.io.IOException;
 import java.sql.Connection;  
 import java.sql.PreparedStatement;  
 import java.sql.ResultSet;  
5  import java.sql.SQLException;  import java.sql.SQLException;
6  import java.util.logging.Level;  import java.util.logging.Level;
7  import java.util.logging.Logger;  import java.util.logging.Logger;
8    
9  import javax.servlet.ServletException;  import javax.servlet.ServletException;
10    import javax.servlet.annotation.WebServlet;
11  import javax.servlet.http.HttpServlet;  import javax.servlet.http.HttpServlet;
12  import javax.servlet.http.HttpServletRequest;  import javax.servlet.http.HttpServletRequest;
13  import javax.servlet.http.HttpServletResponse;  import javax.servlet.http.HttpServletResponse;
14    
15  import dk.thoerup.traininfoservice.DBConnection;  import org.simpleframework.xml.Serializer;
16    import org.simpleframework.xml.core.Persister;
17    
18  /**  /**
19   * Servlet implementation class LocateStations   * Servlet implementation class LocateStations
20   */   */
21    @WebServlet(urlPatterns={"/LocateStations"})
22  public class LocateStations extends HttpServlet {  public class LocateStations extends HttpServlet {
23          private static final long serialVersionUID = 1L;          private static final long serialVersionUID = 1L;
24    
25          Logger logger = Logger.getLogger( LocateStations.class.toString() );          Logger logger = Logger.getLogger( LocateStations.class.toString() );
           
         /**  
          * @see HttpServlet#HttpServlet()  
          */  
         public LocateStations() {  
                 super();  
                 // TODO Auto-generated constructor stub  
         }  
   
         public enum Requested {  
                 BY_NAME,  
                 BY_LOCATION,  
                 NONE  
         }  
26    
27            StationDAO stationDao = new StationDAO();
28    
         protected String getStations(Connection conn, double latitude, double longitude, String name, Requested method) throws SQLException {  
                 String SQL = "";  
                 PreparedStatement stmt = null;  
                 ResultSet res = null;  
29    
30                  StringBuffer buff = new StringBuffer();          protected String transformToIntList(String input) {            
31                    String strings[] = input.split(",");
                 buff.append("<?xml version=\"1.0\" ?>\n");  
                 buff.append("<stations>\n");      
                   
                 try  
                 {  
32    
33                          switch (method)                  StringBuffer sb = new StringBuffer();
34                          {                  sb.append("(");
35                          case BY_LOCATION:                  for (int i = 0; i<strings.length; i++) {
36                                  //inner select is workaround from not being able to use a calculated column directly in where clause                          if (i>0) {
37                                  SQL = "SELECT * FROM ( "+                                  sb.append(",");
                                                 "               SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, " +  
                                                 "                     earth_distance( ll_to_earth(latitude,longitude), ll_to_earth(?,?))::int AS calcdist " +  
                                                 "               FROM trainstations " +  
                                                 "               WHERE enabled = true AND latitude IS NOT NULL AND longitude IS NOT NULL " +  
                                                 "       ) AS trainstations2 " +  
                                                 "ORDER BY calcdist ASC " +  
                                                 "LIMIT 4 ";  
                                 stmt = conn.prepareStatement(SQL);  
                                 stmt.setDouble(1, latitude);  
                                 stmt.setDouble(2, longitude);  
   
                                 break;  
                         case BY_NAME:  
                                 SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog,0.0 " +  
                                         "FROM trainstations " +  
                                         "WHERE name ILIKE ? AND latitude IS NOT NULL AND longitude IS NOT NULL " +  
                                         "ORDER BY name ";  
                                 stmt = conn.prepareStatement(SQL);  
                                 stmt.setString(1, name + "%");  
                                 break;  
                         default:  
                                 // This should not be possible  
                                 logger.severe("getStations(): default switch case");  
38                          }                          }
39                            sb.append( Integer.parseInt(strings[i])); //by doing the integer conversion we ensure that it really is a integer
40                    }
41                    sb.append(")");
42                    return sb.toString();          
43            }
44    
45    
46            protected StationBean getStations(HttpServletRequest req) throws SQLException {
47                    StationBean stations = null;
48                    if (req.getParameter("latitude") != null && req.getParameter("latitude") != null) {
49                            
50                            Statistics.getInstance().incrementStationLookupsLocation();
51                            
52                            double latitude = Double.parseDouble( req.getParameter("latitude") );
53                            double longitude = Double.parseDouble( req.getParameter("longitude") );
54                            stations = stationDao.getByLocation(latitude, longitude);
55    
56                    } else if (req.getParameter("name") != null) {
57                            Statistics.getInstance().incrementStationLookupsName();
58                            String name = req.getParameter("name").trim();
59                            stations = stationDao.getByName(name);
60    
61                    } else if (req.getParameter("list") != null) {
62                            Statistics.getInstance().incrementStationLookupsFavorites();
63                            String list = transformToIntList( req.getParameter("list"));
64                            stations = stationDao.getByList(list);
65                    }
66                    return stations;
67            }
68    
69    
70                          res = stmt.executeQuery();          protected String formatStations(StationBean stations) throws ServletException {
71    
72                          while (res.next()) {                  Serializer serializer = new Persister();
                                 buff.append("<station>\n");  
73    
74                                  buff.append("<id>").append( res.getInt(1) ).append("</id>\n");                  ByteArrayOutputStream out = new ByteArrayOutputStream();
                                 buff.append("<name>").append( res.getString(2) ) .append("</name>\n");  
                                 buff.append("<latitude>").append( res.getDouble(3) ) .append("</latitude>\n");  
                                 buff.append("<longitude>").append( res.getDouble(4) ) .append("</longitude>\n");  
                                 res.getString(5);  
                                 buff.append("<fjerntog>").append( !res.wasNull() ) .append("</fjerntog>\n");  
                                 res.getString(6);  
                                 buff.append("<stog>").append( !res.wasNull() ) .append("</stog>\n");  
                                 buff.append("<calcdist>").append( res.getInt(7) ) .append("</calcdist>\n");  
75    
76                                  buff.append("</station>\n");                                              try {
77                          }                          serializer.write(stations, out);
78                  } finally {                  } catch (Exception e) {
79                          if (res != null && !res.isClosed())                          throw new ServletException(e);
                                 res.close();  
                         if (stmt != null && !stmt.isClosed())  
                                 stmt.close();  
80                  }                  }
81                  buff.append("</stations>\n");                  
82                  return buff.toString();                  return out.toString();
83          }          }
84    
85            @Override
86          protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {          protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
87    
                 double longitude = 0.0;  
                 double latitude = 0.0;  
                 String name = "";  
   
                 Requested method = Requested.NONE;  
   
                 if (request.getParameter("latitude") != null && request.getParameter("latitude") != null) {  
                         latitude = Double.parseDouble( request.getParameter("latitude") );  
                         longitude = Double.parseDouble( request.getParameter("longitude") );  
                         method = Requested.BY_LOCATION;  
                 }  
   
                 if (request.getParameter("name") != null) {  
                         name = request.getParameter("name").trim();  
                         method = Requested.BY_NAME;  
                 }  
   
88    
89                  if (method != Requested.NONE) {                  try {
90                            StationBean stations = getStations(request);
91    
                         Connection conn = null;  
                         try {  
                                 conn = DBConnection.getConnection();  
92    
93                                  String xml = getStations(conn, latitude, longitude, name, method);                          if (stations != null){
94                                    String xml = formatStations(stations);
95    
96                                  response.setContentType("text/xml");                                  response.setContentType("text/xml");
97                                  response.getWriter().print(xml);                                  response.getWriter().print(xml);
98                            } else {
99                                  conn.close();                                  response.sendError(400, "not enough parameters");              
                                 conn = null;  
   
                         } catch (Exception e) {                          
                                 logger.log(Level.SEVERE, "Exception while finding stations", e);  
                                 response.sendError(500);                                                  
                         } finally {  
                                 try {  
                                         if (conn != null)  
                                                 conn.close();  
                                 } catch (Throwable t) {}  
100                          }                          }
101                  } else {  
102                          response.sendError(400, "not enough parameters");  
103                  }                  } catch (Exception e) {                        
104                            logger.log(Level.SEVERE, "Exception while finding stations", e);
105                            response.sendError(500);                                                
106                    }
107          }          }
108    
109  }  }

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

  ViewVC Help
Powered by ViewVC 1.1.20