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

Legend:
Removed from v.739  
changed lines
  Added in v.1692

  ViewVC Help
Powered by ViewVC 1.1.20