/[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

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

Legend:
Removed from v.309  
changed lines
  Added in v.1102

  ViewVC Help
Powered by ViewVC 1.1.20