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

Diff of /android/TrainInfoService/src/dk/thoerup/traininfoservice/db/StationDAO.java

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

android/TrainInfoService/src/dk/thoerup/traininfoservice/StationDAO.java revision 588 by torben, Mon Feb 8 19:12:15 2010 UTC android/TrainInfoService/src/dk/thoerup/traininfoservice/db/StationDAO.java revision 1513 by torben, Thu Jun 9 10:02:31 2011 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfoservice;  package dk.thoerup.traininfoservice.db;
2    
3    import java.sql.Array;
4  import java.sql.Connection;  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.sql.Statement;  import java.sql.Statement;
9  import java.util.ArrayList;  import java.util.logging.Logger;
10  import java.util.List;  
11    import dk.thoerup.android.traininfo.common.StationBean;
12    import dk.thoerup.android.traininfo.common.StationEntry;
13    
14  public class StationDAO {  public class StationDAO {
15          private StationBean convertSingleRow(ResultSet res) throws SQLException {          
16                  StationBean station = new StationBean();          private interface StatementParamSetter {
17                                    public void setParams(PreparedStatement stmt) throws SQLException ;
18            }
19            private class NullSetter implements StatementParamSetter {
20                    @Override
21                    public void setParams(PreparedStatement stmt) throws SQLException {}
22            }
23            
24            public static class NostationException extends Exception {
25                    private static final long serialVersionUID = 1L;
26            }
27            
28            final static int LOCATION_LIMIT = 8;
29            static final Logger logger = Logger.getLogger(StationDAO.class.getName());
30            
31            
32            private StationEntry convertSingleRow(ResultSet res) throws SQLException {
33                    StationEntry station = new StationEntry();
34    
35                  station.setId( res.getInt(1) );                  station.setId( res.getInt(1) );
36                  station.setName( res.getString(2) );                  station.setName( res.getString(2) );
37                  station.setLatitude( res.getDouble(3) );                  station.setLatitude( res.getDouble(3) );
# Line 22  public class StationDAO { Line 42  public class StationDAO {
42                  station.setAddress( res.getString(8) );                  station.setAddress( res.getString(8) );
43                  station.setCalcdist( (int)res.getDouble(9) );                  station.setCalcdist( (int)res.getDouble(9) );
44                                    
45                    station.setIsRegional( station.getRegional() != null );
46                    station.setIsStrain( station.getStrain() != null );
47                    station.setIsMetro( station.getMetro() != null );
48    
49                  return station;                  return station;
50          }          }
51            
52          private List<StationBean> convertResultset(ResultSet res) throws SQLException {          private StationBean convertResultset(ResultSet res) throws SQLException {
53                  List<StationBean> stations = new ArrayList<StationBean>();                  StationBean stations = new StationBean();
54                  while (res.next()) {                  while (res.next()) {
55                          stations.add( convertSingleRow(res) );                          stations.entries.add( convertSingleRow(res) );
56                    }
57                    return stations;
58    
59            }
60    
61            private StationBean fetchStations(String SQL, StatementParamSetter setter) throws SQLException {
62                    StationBean stations;
63                    Connection conn = null;
64                    PreparedStatement stmt = null;
65                    ResultSet res = null;
66                    try {
67                            conn = DBConnection.getConnection();
68                            stmt = conn.prepareStatement(SQL);
69                            
70                            setter.setParams(stmt);
71    
72                            res = stmt.executeQuery();
73                            stations = convertResultset(res);
74    
75                    } finally {
76                            if (res != null)
77                                    res.close();
78                            if (stmt != null)
79                                    stmt.close();
80                            if (conn!= null)
81                                    conn.close();
82                  }                  }
83                  return stations;                  return stations;
84                                    
85          }          }
86    
87            public StationEntry getById(int id) throws SQLException,NostationException {
88                    String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog,stationcode_metro,address,0.0 " +
89                    "FROM trainstations WHERE id=" + id + " AND enabled=true";
90                                    
91                    StationBean stations =  fetchStations(SQL, new NullSetter() );
92                    
93                    if (stations.entries.size() > 0 ) {
94                            return stations.entries.get(0);
95                    } else {
96                            throw new NostationException();
97                    }
98            }
99            
100    
101    
102            /*
103             * 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) )
104             *     create function rlike(text,text) returns bool as
105             *     'select $2 ilike $1' language sql strict immutable;
106             *     create operator ~~~ (procedure = rlike, leftarg = text, rightarg = text, commutator = ~~);
107             */
108            public StationBean getByNameNormal(final String name) throws SQLException {
109                    String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address, 0.0 " +
110                    "FROM trainstations " +
111                    "WHERE (name ILIKE ? OR ? ~~~ ANY(aliases)) AND enabled = true " +
112                    "ORDER BY name ";
113    
114                    class NameSetter implements StatementParamSetter {
115                            @Override
116                            public void setParams(PreparedStatement stmt) throws SQLException {
117                                    stmt.setString(1, name + "%");
118                                    stmt.setString(2, name + "%");                          
119                            }                      
120                    }
121                    
122                    return fetchStations(SQL, new NameSetter() );
123            }
124                    
125                    
126          public StationBean getById(int id) throws SQLException {          public StationBean getByNameFuzzy(final String name) throws SQLException {
127                  String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog,stationcode_metro,address,0.0 " +                  String SQL = "SELECT * FROM (" +
128                        "FROM trainstations WHERE id=" + id + " AND enabled=true";                                           "    SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address, 0.0, " +
129                                             "    levenshtein(lower(name),lower(?) ) as leven " +
130                                             "    FROM trainstations " +
131                                             "    WHERE  enabled = true ) as lev2 " +
132                                             "WHERE (leven <= 3) " +                
133                                             "ORDER BY leven " +
134                                             "LIMIT 1";
135    
136                    class NameSetter implements StatementParamSetter {
137                            @Override
138                            public void setParams(PreparedStatement stmt) throws SQLException {
139                                    stmt.setString(1, name );
140                            }                      
141                    }
142                                    
143                  Connection conn = null;                  StationBean stations = fetchStations(SQL, new NameSetter() );
144                  StationBean result;                  stations.fuzzystrmatch = true;
145                    return stations;
146            }
147            
148            public StationBean getByName(String name) throws SQLException {
149                    StationBean stations = getByNameNormal(name);
150                                    
151                  try {                  if (stations.entries.size() == 0) {
152                          conn = DBConnection.getConnection();                          logger.info("getByName failover: " + name);
153                            name = name.replace(".", ""); //remove any .'s before fuzzy search
154                            stations = getByNameFuzzy(name);
155                    }
156                    return stations;
157            }
158            
159            
160    
161            //Latitude (horizonal), longitude(vertical) so
162            // 1 degree latitude is ~ 111320 meters, since the distance between the horizonal lines is always the same
163            // 1 degree longitude is ~111320 meters at equator but gets shorter as we get closer to the poles.
164            // so 1 degree longitude is 64.5 km at denmarks southern point (gedser=54.55,11.95)
165            // and is 59.4km at northern point (skagen = 57.75,10.65)
166            // The "hack" with max 0.4 degrees latitude and 0.75 degrees longitude is only valid since we only service danish trains,
167            // in denmark 0.4dg latitude ~ 44km, 0.75dg longitude ~ 47km
168    
169            // the ultra fast method  (and only slightly inaccurate as long as we only cover a limited geographically area)
170            // is using an aproximation of the length of 1 latitude degree and 1 longitude degree and just use pythagoras to
171            // calculate the distance:
172            //     sqrt( power(abs(latitude-?)*111320, 2) + power(abs(longitude-?)*63000,2) )::int as calcdist
173    
174            public StationBean getByLocationWorker(final double latitude, final double longitude, final boolean geolimit) throws SQLException {
175                                    
176                          Statement stmt = conn.createStatement();                  String limitExpression = (geolimit == true) ? "AND abs(latitude-?)<0.4 AND abs(longitude-?)<0.75 " : "";
177                          ResultSet res = stmt.executeQuery(SQL);                          
178                          res.next();                  String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address, " +
179                          result = convertSingleRow(res);                          "earth_distance( earth_coord, ll_to_earth(?,?))::int AS calcdist " +
180                  } finally {                          "FROM trainstations " +
181                          if (conn != null)                          "WHERE enabled = true " + limitExpression +
182                                  conn.close();                          "ORDER BY calcdist ASC " +
183                            "LIMIT " + LOCATION_LIMIT;
184    
185                    
186                    class LatlongSetter implements StatementParamSetter {
187                            @Override
188                            public void setParams(PreparedStatement stmt) throws SQLException {
189                                    stmt.setDouble(1, latitude);
190                                    stmt.setDouble(2, longitude);
191                                    if (geolimit == true) {
192                                            stmt.setDouble(3, latitude);
193                                            stmt.setDouble(4, longitude);
194                                    }                              
195                            }                      
196                    }
197                    
198                    return fetchStations(SQL, new LatlongSetter() );
199            }
200            
201            public StationBean getByLocation(double latitude, double longitude) throws SQLException {
202                    StationBean result = getByLocationWorker(latitude, longitude, true);
203                    
204                    if (result.entries.size() < LOCATION_LIMIT) { //failover
205                            logger.info("getByLocation failover: " +latitude + "," + longitude);
206                            
207                            result = getByLocationWorker(latitude, longitude, false);
208                  }                  }
209                                    
210                  return result;                  return result;
211          }          }
212                    
213                    
214          public List<StationBean> getByName(String name) throws SQLException {  
215                  String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address, 0.0 " +          public StationBean getByList(String list) throws SQLException {
216                    String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog,stationcode_metro, address,0.0 " +
217                  "FROM trainstations " +                  "FROM trainstations " +
218                  "WHERE name ILIKE ? AND enabled = true " +                  "WHERE id IN " + list + " AND enabled = true " +
219                  "ORDER BY name ";                  "ORDER BY name ";
220                    
221                    return fetchStations(SQL, new NullSetter() );
222            }
223            
224    
225            
226            public StationEntry getSimpleByName(final String name) throws SQLException {
227                    String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address, 0.0 " +
228                    "FROM trainstations " +
229                    "WHERE name = ?  AND enabled = true " +
230                    "LIMIT 1 ";
231    
232                    class NameSetter implements StatementParamSetter {
233                            @Override
234                            public void setParams(PreparedStatement stmt) throws SQLException {
235                                    stmt.setString(1, name );
236                            }                      
237                    }
238                    
239                    StationBean stations = fetchStations(SQL, new NameSetter() );
240                    
241                    if (stations.entries.size() == 1) {
242                            return stations.entries.get(0);
243                    } else {
244                            return null;
245                    }
246            }
247            
248            //used to create full dump in order to populate Google Appengine DB
249            @Deprecated
250            public StationBean dumpAll() throws SQLException {
251                    
252                    String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog,stationcode_metro,address,0.0,aliases " +
253                                    "FROM trainstations WHERE enabled = true ORDER BY id";
254                                    
                 List<StationBean> result;  
255                  Connection conn = null;                  Connection conn = null;
256                    Statement stmt = null;
257                    ResultSet res = null;          
258    
259                    
260                  try {                  try {
261                          conn = DBConnection.getConnection();                          conn = DBConnection.getConnection();
262                          PreparedStatement stmt = conn.prepareStatement(SQL);  
263                                                    stmt = conn.createStatement();
264                          stmt.setString(1, name + "%");                          res = stmt.executeQuery(SQL);          
265                                                                            
266                          ResultSet rs = stmt.executeQuery();                          // Does mostly the same as convertResultset()
267                          result = convertResultset(rs);                          StationBean stations = new StationBean();
268                            while (res.next()) {
269                                    StationEntry entry = convertSingleRow(res);
270                                    
271                                    Array arr = res.getArray(10);
272                                    if (arr != null) {
273                                            String[] aliases = (String[]) arr.getArray();
274                                            entry.setAliases(aliases);
275                                    }
276                                    
277                                    stations.entries.add( entry );
278                                    
279                            }
280                            return stations;
281                                                    
282    
283                  } finally {                  } finally {
284                            if (res != null)
285                                    res.close();
286                            if (stmt != null)
287                                    stmt.close();
288                          if (conn != null)                          if (conn != null)
289                                  conn.close();                                  conn.close();
290                  }                  }
291                  return result;                  
292          }          }
293            
294          public List<StationBean> getByLocation(double latitude, double longitude) throws SQLException {          @Deprecated
295                  String SQL = "SELECT * FROM ( "+          public static String getStationName(int stationID) {
296                  "               SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address," +                  String station = "";
297                  "                     earth_distance( ll_to_earth(latitude,longitude), ll_to_earth(?,?))::int AS calcdist " +  
                 "               FROM trainstations " +  
                 "               WHERE enabled = true " +  
                 "       ) AS trainstations2 " +  
                 "ORDER BY calcdist ASC " +  
                 "LIMIT 4 ";  
                 List<StationBean> result;  
298                  Connection conn = null;                  Connection conn = null;
299                  try {                  try {
300                          conn = DBConnection.getConnection();                          conn = DBConnection.getConnection();
301                          PreparedStatement stmt = conn.prepareStatement(SQL);                          Statement stmt = conn.createStatement();
302                          stmt.setDouble(1, latitude);                          ResultSet rs = stmt.executeQuery("SELECT name FROM trainstations WHERE id=" + stationID);
303                          stmt.setDouble(2, longitude);                          if (rs.next()) {
304                          ResultSet rs = stmt.executeQuery();                                  station = rs.getString(1);
305                          result = convertResultset(rs);                          }
306                            
307                    } catch (Exception e) {
308                  } finally {                  } finally {
                         if (conn != null)  
                                 conn.close();  
                 }  
                 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;  
                         List<StationBean> result;  
                           
309                          try {                          try {
310                                  conn = DBConnection.getConnection();                                  if (conn != null && !conn.isClosed())
                                 Statement stmt = conn.createStatement();  
                                 ResultSet res = stmt.executeQuery(SQL);  
                                 result = convertResultset(res);  
                         } finally {  
                                 if (conn!= null)  
311                                          conn.close();                                          conn.close();
312                          }                          } catch (Exception e) {}
313                                            }
314                          return result;  
315                                            return station;
316           }          }
317                    
318            
319            
320            @Deprecated
321            public int getIdByName(final String name) throws SQLException {
322                    String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address, 0.0 " +
323                    "FROM trainstations " +
324                    "WHERE name = ?  AND enabled = true " +
325                    "LIMIT 1 ";
326    
327                    class NameSetter implements StatementParamSetter {
328                            @Override
329                            public void setParams(PreparedStatement stmt) throws SQLException {
330                                    stmt.setString(1, name );
331                            }                      
332                    }
333                    
334                    StationBean stations = fetchStations(SQL, new NameSetter() );
335                    
336                    if (stations.entries.size() == 1) {
337                            return stations.entries.get(0).getId();
338                    } else {
339                            return -1;
340                    }
341            }
342  }  }

Legend:
Removed from v.588  
changed lines
  Added in v.1513

  ViewVC Help
Powered by ViewVC 1.1.20