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

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

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

android/TrainInfoService/src/dk/thoerup/traininfoservice/StationDAO.java revision 650 by torben, Mon Apr 19 19:04:34 2010 UTC android/TrainInfoServiceGoogle/src/dk/thoerup/traininfoservice/StationDAO.java revision 1093 by torben, Tue Sep 21 20:10:46 2010 UTC
# Line 5  import java.sql.PreparedStatement; Line 5  import java.sql.PreparedStatement;
5  import java.sql.ResultSet;  import java.sql.ResultSet;
6  import java.sql.SQLException;  import java.sql.SQLException;
7  import java.sql.Statement;  import java.sql.Statement;
8  import java.util.ArrayList;  import java.util.logging.Logger;
9  import java.util.List;  
10    import javax.jdo.PersistenceManager;
11    
12    import dk.thoerup.android.traininfo.common.StationBean;
13    import dk.thoerup.android.traininfo.common.StationBean.StationEntry;
14    import dk.thoerup.traininfoservice.jdo.JdoStationBean;
15    import dk.thoerup.traininfoservice.jdo.PMF;
16    
17  public class StationDAO {  public class StationDAO {
18          private StationBean convertSingleRow(ResultSet res) throws SQLException {          final static int LOCATION_LIMIT = 8;
19                  StationBean station = new StationBean();          static final Logger logger = Logger.getLogger(StationDAO.class.getName());
20                            
21            
22            private StationEntry convertSingleRow(ResultSet res) throws SQLException {
23                    StationEntry station = new StationEntry();
24    
25                  station.setId( res.getInt(1) );                  station.setId( res.getInt(1) );
26                  station.setName( res.getString(2) );                  station.setName( res.getString(2) );
27                  station.setLatitude( res.getDouble(3) );                  station.setLatitude( res.getDouble(3) );
# Line 22  public class StationDAO { Line 32  public class StationDAO {
32                  station.setAddress( res.getString(8) );                  station.setAddress( res.getString(8) );
33                  station.setCalcdist( (int)res.getDouble(9) );                  station.setCalcdist( (int)res.getDouble(9) );
34                                    
35                    station.setIsRegional( station.getRegional() != null );
36                    station.setIsStrain( station.getStrain() != null );
37                    station.setIsMetro( station.getMetro() != null );
38    
39                  return station;                  return station;
40          }          }
41            
42          private List<StationBean> convertResultset(ResultSet res) throws SQLException {          private StationBean convertResultset(ResultSet res) throws SQLException {
43                  List<StationBean> stations = new ArrayList<StationBean>();                  StationBean stations = new StationBean();
44                  while (res.next()) {                  while (res.next()) {
45                          stations.add( convertSingleRow(res) );                          stations.entries.add( convertSingleRow(res) );
46                  }                  }
47                  return stations;                  return stations;
48                    
49          }          }
50            
51            
52          public StationBean getById(int id) throws SQLException {          public JdoStationBean getById(int id) throws SQLException {
53                  String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog,stationcode_metro,address,0.0 " +  
54                        "FROM trainstations WHERE id=" + id + " AND enabled=true";                  PersistenceManager pm = null;
55                                    
56                    try {
57                            pm = PMF.get().getPersistenceManager();
58                            return pm.getObjectById(JdoStationBean.class, new Integer(id) );
59                    } finally {
60                            pm.close();
61                    }
62            }
63    
64            /*
65             * this code requires theses statements are run on database in order to do ILIKE searches against aliases (which is defines as array of varchar(64) )
66             *     create function rlike(text,text) returns bool as
67             *     'select $2 ilike $1' language sql strict immutable;
68             *     create operator ~~~ (procedure = rlike, leftarg = text, rightarg = text, commutator = ~~);
69             */
70            public StationBean getByName(String name) throws SQLException {
71                    String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address, 0.0 " +
72                    "FROM trainstations " +
73                    "WHERE (name ILIKE ? OR ? ~~~ ANY(aliases)) AND enabled = true " +
74                    "ORDER BY name ";
75    
76    
77                    StationBean result;
78                  Connection conn = null;                  Connection conn = null;
79                  Statement stmt = null;                  PreparedStatement stmt = null;
80                  ResultSet res = null;                  ResultSet res = null;
81                  StationBean result;                  try {
82                            conn = DBConnection.getConnection();
83                            stmt = conn.prepareStatement(SQL);
84    
85                            stmt.setString(1, name + "%");
86                            stmt.setString(2, name + "%");
87    
88                            res = stmt.executeQuery();
89                            result = convertResultset(res);
90    
91                    } finally {
92                            if (res != null)
93                                    res.close();
94                            if (stmt != null)
95                                    stmt.close();
96                            if (conn!= null)
97                                    conn.close();
98                    }
99                    return result;
100            }
101    
102            //the "hack" with max 0.4 degrees latitude and 0.75 degrees longitude is only valid since we only service danish trains,
103            // in denmark 0.4dg latitude ~ 44km, 0.75dg longitude ~ 47km
104    
105            // the ultra fast method  (and only slightly inaccurate as long as we only cover a limited geographically area)
106            // is using an aproximation of the length of 1 latitude degree and 1 longitude degree and just use pythagoras to
107            // calculate the distance:
108            //     sqrt( power(abs(latitude-?)*111320, 2) + power(abs(longitude-?)*63000,2) )::int as calcdist
109    
110            public StationBean getByLocationWorker(double latitude, double longitude, boolean geolimit) throws SQLException {
111                    
112                    String limitExpression = (geolimit == true) ? "AND abs(latitude-?)<0.4 AND abs(longitude-?)<0.75 " : "";
113                    
114                    String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address, " +
115                            "earth_distance( earth_coord, ll_to_earth(?,?))::int AS calcdist " +
116                            "FROM trainstations " +
117                            "WHERE enabled = true " + limitExpression +
118                            "ORDER BY calcdist ASC " +
119                            "LIMIT " + LOCATION_LIMIT;
120    
121    
122                                    
123                    StationBean result;
124                    Connection conn = null;
125                    PreparedStatement stmt = null;
126                    ResultSet res = null;
127                  try {                  try {
128                          conn = DBConnection.getConnection();                          conn = DBConnection.getConnection();
129                            stmt = conn.prepareStatement(SQL);
130                            stmt.setDouble(1, latitude);
131                            stmt.setDouble(2, longitude);
132                            if (geolimit == true) {
133                                    stmt.setDouble(3, latitude);
134                                    stmt.setDouble(4, longitude);
135                            }
136                            res = stmt.executeQuery();
137                            result = convertResultset(res);
138                                    
                         stmt = conn.createStatement();  
                         res = stmt.executeQuery(SQL);            
                         res.next();  
                         result = convertSingleRow(res);  
139                  } finally {                  } finally {
140                          if (res != null)                          if (res != null)
141                                  res.close();                                  res.close();
142                          if (stmt != null)                          if (stmt != null)
143                                  stmt.close();                                  stmt.close();
144                          if (conn != null)                          if (conn!= null)
145                                  conn.close();                                  conn.close();
146                  }                  }
147                    return result;
148            }
149            
150            public StationBean getByLocation(double latitude, double longitude) throws SQLException {
151                    StationBean result = getByLocationWorker(latitude, longitude, true);
152                    
153                    if (result.entries.size() < LOCATION_LIMIT) { //failover
154                            logger.info("getByLocation failover: " +latitude + "," + longitude);
155                            
156                            result = getByLocationWorker(latitude, longitude, false);
157                    }
158                                    
159                  return result;                  return result;
160          }          }
161                    
162                    
163          public List<StationBean> getByName(String name) throws SQLException {  
164                  String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address, 0.0 " +          public StationBean getByList(String list) throws SQLException {
165                    String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog,stationcode_metro, address,0.0 " +
166                  "FROM trainstations " +                  "FROM trainstations " +
167                  "WHERE name ILIKE ? AND enabled = true " +                  "WHERE id IN " + list + " AND enabled = true " +
168                  "ORDER BY name ";                  "ORDER BY name ";
169    
                   
                 List<StationBean> result;  
170                  Connection conn = null;                  Connection conn = null;
171                  PreparedStatement stmt = null;                  Statement stmt = null;
172                  ResultSet res = null;                  ResultSet res = null;
173                    StationBean result;
174    
175                  try {                  try {
176                          conn = DBConnection.getConnection();                          conn = DBConnection.getConnection();
177                          stmt = conn.prepareStatement(SQL);                          stmt = conn.createStatement();
178                                                    res = stmt.executeQuery(SQL);
                         stmt.setString(1, name + "%");  
                           
                         res = stmt.executeQuery();  
179                          result = convertResultset(res);                          result = convertResultset(res);
                           
180                  } finally {                  } finally {
181                          if (res != null)                          if (res != null)
182                                  res.close();                                  res.close();
# Line 92  public class StationDAO { Line 185  public class StationDAO {
185                          if (conn!= null)                          if (conn!= null)
186                                  conn.close();                                  conn.close();
187                  }                  }
188    
189                  return result;                  return result;
190    
191            }
192            public static String getStationName(int stationID) {
193                    String station = "";
194    
195                    Connection conn = null;
196                    try {
197                            conn = DBConnection.getConnection();
198                            Statement stmt = conn.createStatement();
199                            ResultSet rs = stmt.executeQuery("SELECT name FROM trainstations WHERE id=" + stationID);
200                            if (rs.next()) {
201                                    station = rs.getString(1);
202                            }
203    
204                    } catch (Exception e) {
205                    } finally {
206                            try {
207                                    if (conn != null && !conn.isClosed())
208                                            conn.close();
209                            } catch (Exception e) {}
210                    }
211    
212                    return station;
213          }          }
214            
215          public List<StationBean> getByLocation(double latitude, double longitude) throws SQLException {          public int getIdByName(String name) throws SQLException {
216                  String SQL = "SELECT * FROM ( "+                  String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address, 0.0 " +
217                  "               SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address," +                  "FROM trainstations " +
218                  "                     earth_distance( ll_to_earth(latitude,longitude), ll_to_earth(?,?))::int AS calcdist " +                  "WHERE name = ?  AND enabled = true " +
219                  "               FROM trainstations " +                  "LIMIT 1 ";
220                  "               WHERE enabled = true " +  
221                  "       ) AS trainstations2 " +                  StationBean result;
                 "ORDER BY calcdist ASC " +  
                 "LIMIT 4 ";  
                 List<StationBean> result;  
222                  Connection conn = null;                  Connection conn = null;
223                  PreparedStatement stmt = null;                  PreparedStatement stmt = null;
224                  ResultSet res = null;                  ResultSet res = null;
225                  try {                  try {
226                          conn = DBConnection.getConnection();                          conn = DBConnection.getConnection();
227                          stmt = conn.prepareStatement(SQL);                          stmt = conn.prepareStatement(SQL);
228                          stmt.setDouble(1, latitude);  
229                          stmt.setDouble(2, longitude);                          stmt.setString(1, name );
230    
231                          res = stmt.executeQuery();                          res = stmt.executeQuery();
232                          result = convertResultset(res);                          result = convertResultset(res);
233                            
234                  } finally {                  } finally {
235                          if (res != null)                          if (res != null)
236                                  res.close();                                  res.close();
# Line 124  public class StationDAO { Line 239  public class StationDAO {
239                          if (conn!= null)                          if (conn!= null)
240                                  conn.close();                                  conn.close();
241                  }                  }
                 return result;  
         }  
           
          public List<StationBean> getByList(String list) throws SQLException {  
                         String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog,stationcode_metro, address,0.0 " +  
                         "FROM trainstations " +  
                         "WHERE id IN " + list + " AND enabled = true " +  
                         "ORDER BY name ";  
                           
                         Connection conn = null;  
                         Statement stmt = null;  
                         ResultSet res = null;  
                         List<StationBean> result;  
                           
                         try {  
                                 conn = DBConnection.getConnection();  
                                 stmt = conn.createStatement();  
                                 res = stmt.executeQuery(SQL);  
                                 result = convertResultset(res);  
                         } finally {  
                                 if (res != null)  
                                         res.close();  
                                 if (stmt != null)  
                                         stmt.close();  
                                 if (conn!= null)  
                                         conn.close();  
                         }  
                           
                         return result;  
                           
          }  
          public static String getStationName(int stationID) {  
                  String station = "";  
   
                  Connection conn = null;  
                  try {  
                          conn = DBConnection.getConnection();  
                          Statement stmt = conn.createStatement();  
                          ResultSet rs = stmt.executeQuery("SELECT name FROM trainstations WHERE id=" + stationID);  
                          if (rs.next()) {  
                                  station = rs.getString(1);  
                          }  
   
                  } catch (Exception e) {          
                  } finally {  
                          try {  
                                  if (conn != null && !conn.isClosed())  
                                          conn.close();  
                          } catch (Exception e) {}  
                  }  
242    
243                   return station;                  if (result.entries.size() == 1) {
244           }                          return result.entries.get(0).getId();
245                    } else {
246                            return -1;
247                    }
248            }
249  }  }

Legend:
Removed from v.650  
changed lines
  Added in v.1093

  ViewVC Help
Powered by ViewVC 1.1.20