/[projects]/dao/FuldDaekningWorker/src/dk/daoas/fulddaekning/Database.java
ViewVC logotype

Diff of /dao/FuldDaekningWorker/src/dk/daoas/fulddaekning/Database.java

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

revision 2237 by torben, Tue Dec 9 15:49:43 2014 UTC revision 2248 by torben, Mon Dec 15 11:13:48 2014 UTC
# Line 7  import java.sql.PreparedStatement; Line 7  import java.sql.PreparedStatement;
7  import java.sql.ResultSet;  import java.sql.ResultSet;
8  import java.sql.SQLException;  import java.sql.SQLException;
9  import java.util.ArrayList;  import java.util.ArrayList;
10    import java.util.HashMap;
11  import java.util.List;  import java.util.List;
12  import java.util.Properties;  import java.util.Properties;
13  import java.util.Queue;  import java.util.Queue;
# Line 22  public class Database { Line 23  public class Database {
23    
24          Connection conn;          Connection conn;
25          PreparedStatement saveStmt;          PreparedStatement saveStmt;
26            
27            private HashMap<String,BoundingBox> bbCache = new HashMap<String,BoundingBox>();
28    
29          public Database(SafeProperties conf)  throws SQLException,IOException {          public Database(SafeProperties conf)  throws SQLException,IOException {
30                  this.conn = getConnection( conf );                        this.conn = getConnection( conf );      
# Line 56  public class Database { Line 59  public class Database {
59    
60                  logger.info("Executing: " + sql);                  logger.info("Executing: " + sql);
61                  conn.createStatement().executeUpdate(sql);                                conn.createStatement().executeUpdate(sql);              
62          }                }
63            
64            public BoundingBox getBoundingbox(String postnr) throws SQLException {
65                    BoundingBox bb = bbCache.get(postnr);
66                    if ( bb == null ) {
67                            bb = getBoundingboxFromDb(postnr);
68                            bbCache.put(postnr, bb);
69                    } else {
70                            logger.info("Serving BB from cache");
71                    }
72                    
73                    return bb.clone();//never return the original / cached object
74            }
75    
76          public BoundingBox getBoundingbox(int postnr) throws SQLException {          private BoundingBox getBoundingboxFromDb(String postnr) throws SQLException {
77                    String minPostnr = postnr.replace('x', '0');
78                    String maxPostnr = postnr.replace('x', '9');
79    
80                  String sql =                  String sql =
81                                  "SELECT max(latitude) latmax, min(latitude) latmin, max(longitude) lngmax,min(longitude) lngmin  " +                                  "SELECT max(latitude) latmax, min(latitude) latmin, max(longitude) lngmax,min(longitude) lngmin  " +
82                                  "FROM fulddaekning.adressetabel WHERE postnr=? and rute is null;";                                  "FROM fulddaekning.adressetabel WHERE postnr BETWEEN ? and ? and rute is null;";
83    
84                  PreparedStatement stmt = conn.prepareStatement(sql);                  PreparedStatement stmt = conn.prepareStatement(sql);
85                  stmt.setInt(1, postnr);                  stmt.setString(1, minPostnr);
86                    stmt.setString(2, maxPostnr);
87    
88                  ResultSet res = stmt.executeQuery();                  ResultSet res = stmt.executeQuery();
89                  res.next(); //query returnerer altid 1 række                  res.next(); //query returnerer altid 1 række
# Line 81  public class Database { Line 99  public class Database {
99    
100                  return bbox;                  return bbox;
101          }          }
102            
103            
104    
105          public Queue<Adresse> hentIkkedaekkedeAdresser(int postnr)  throws SQLException {          public Queue<Adresse> hentIkkedaekkedeAdresser(String postnr)  throws SQLException {
106                    
107                    String minPostnr = postnr.replace('x', '0');
108                    String maxPostnr = postnr.replace('x', '9');
109                    
110                  ConcurrentLinkedQueue<Adresse> queue = new ConcurrentLinkedQueue<Adresse>();                  ConcurrentLinkedQueue<Adresse> queue = new ConcurrentLinkedQueue<Adresse>();
111    
112                  String sql = "SELECT id,a.postnr,adresse,gadeid,husnr,husnrbogstav,latitude,longitude,rute,p.distributor as ho " +                  String sql = "SELECT id,a.postnr,adresse,gadeid,husnr,husnrbogstav,latitude,longitude,rute,p.distributor as ho " +
113                                  "FROM fulddaekning.adressetabel a " +                                  "FROM fulddaekning.adressetabel a " +
114                                  "LEFT JOIN bogleveringer.postnummerdistributor p on (a.postnr=p.postnr) " +                                  "LEFT JOIN bogleveringer.postnummerdistributor p on (a.postnr=p.postnr) " +
115                                  "WHERE rute IS NULL " +  //Ingen dækning                                  "WHERE rute IS NULL " +  //Ingen dækning
116                                  "AND a.postnr=?  " +                                  "AND a.postnr BETWEEN ? AND ? " +
117                                  "AND latitude IS NOT NULL " +                                  "AND latitude IS NOT NULL " +
118                                  "AND longitude IS NOT NULL " +                                  "AND longitude IS NOT NULL " +
119                                  "AND gadeid IS NOT NULL " +                                  "AND gadeid IS NOT NULL " +
120                                  "AND (a.distributor IS NULL OR a.distributor<>'LUKKET') ";                                                "AND (a.distributor IS NULL OR a.distributor<>'LUKKET') ";              
121                  PreparedStatement stmt = conn.prepareStatement(sql);                  PreparedStatement stmt = conn.prepareStatement(sql);
122                  stmt.setInt(1, postnr);                  stmt.setString(1, minPostnr);
123                    stmt.setString(2, maxPostnr);
124    
125                  queue.addAll( hentAdresseListe( stmt ) );                  queue.addAll( hentAdresseListe( stmt ) );
126                  return queue;                  return queue;
127          }          }
128    
129          public List<Integer> hentPostnumre() throws SQLException {          public List<String> hentPostnumre() throws SQLException {
130                  ArrayList<Integer> list = new ArrayList<Integer>();                  ArrayList<String> list = new ArrayList<String>();
131                                    
132                  Constants consts = Constants.getInstance();                  Constants consts = Constants.getInstance();
133    
134                    /*
135                  String sql = "SELECT postnr " +                  String sql = "SELECT postnr " +
136                                           "FROM fulddaekning.adressetabel " +                                           "FROM fulddaekning.adressetabel " +
137                                           "WHERE postnr BETWEEN ? AND ? " +                                           "WHERE postnr BETWEEN ? AND ? " +
138                                           "AND rute is null " + // Træk kun liste på postnumre hvor der er ikke-dækkede adresser                                           "AND rute is null " + // Træk kun liste på postnumre hvor der er ikke-dækkede adresser
139                                           "GROUP BY postnr " +                                           "GROUP BY postnr " +
140                                           "ORDER by postnr";                                           "ORDER by postnr";
141                    */
142                    
143                    
144                    String sql = "SELECT rpad(left(postnr,?),'4', 'x') as postnr2 " +
145                                             "FROM fulddaekning.adressetabel " +
146                                             "WHERE postnr BETWEEN ? AND ? " +
147                                             "AND rute is null " + // Trae kun liste paa postnumre hvor der er ikke-daekede adresser
148                                             "AND (postnr NOT BETWEEN 3900 and 3999) " + //Skip alle groenlandske postnumre
149                                             "GROUP BY postnr2 " +
150                                             "ORDER by postnr2 ";
151                    
152                                            
153                                            
154                  PreparedStatement stmt = conn.prepareStatement(sql);                  PreparedStatement stmt = conn.prepareStatement(sql);
155                  //stmt.setString(1, Lookup.distributor );                  //stmt.setString(1, Lookup.distributor );
156                  stmt.setInt(1, consts.getMinPostnr());  
157                  stmt.setInt(2, consts.getMaxPostnr());                  stmt.setInt(1, consts.getPostnrGroup() );
158    
159                    stmt.setInt(2, consts.getMinPostnr());
160                    stmt.setInt(3, consts.getMaxPostnr());
161                  ResultSet res = stmt.executeQuery();                  ResultSet res = stmt.executeQuery();
162    
163                  while (res.next()) {                  while (res.next()) {
164                          int postnr = res.getInt("postnr");                          String postnr = res.getString("postnr2");
165                          list.add(postnr);                          list.add(postnr);
166                  }                  }
167                  res.close();                  res.close();
# Line 150  public class Database { Line 191  public class Database {
191                  stmt.setDouble(2, bbox.latitudeMax);                  stmt.setDouble(2, bbox.latitudeMax);
192                  stmt.setDouble(3, bbox.longitudeMin);                  stmt.setDouble(3, bbox.longitudeMin);
193                  stmt.setDouble(4, bbox.longitudeMax);                  stmt.setDouble(4, bbox.longitudeMax);
194                  stmt.setString(5, Lookup.distributor);                  stmt.setString(5, LookupMain.distributor);
195    
196                  List<Adresse> list = hentAdresseListe( stmt );                  List<Adresse> list = hentAdresseListe( stmt );
197                  return list.toArray( new Adresse[ list.size() ] );                  return list.toArray( new Adresse[ list.size() ] );
# Line 172  public class Database { Line 213  public class Database {
213                  PreparedStatement stmt = conn.prepareStatement(sql, java.sql.ResultSet.TYPE_FORWARD_ONLY, java.sql.ResultSet.CONCUR_READ_ONLY);                  PreparedStatement stmt = conn.prepareStatement(sql, java.sql.ResultSet.TYPE_FORWARD_ONLY, java.sql.ResultSet.CONCUR_READ_ONLY);
214                  stmt.setFetchSize(Integer.MIN_VALUE);                  stmt.setFetchSize(Integer.MIN_VALUE);
215    
216                  stmt.setString(1, Lookup.distributor);                  stmt.setString(1, LookupMain.distributor);
217    
218                  List<Adresse> list = hentAdresseListe( stmt );                  List<Adresse> list = hentAdresseListe( stmt );
219                  return list.toArray( new Adresse[ list.size() ] );                  return list.toArray( new Adresse[ list.size() ] );

Legend:
Removed from v.2237  
changed lines
  Added in v.2248

  ViewVC Help
Powered by ViewVC 1.1.20