/[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 2235 by torben, Tue Nov 11 13:45:21 2014 UTC revision 2247 by torben, Mon Dec 15 11:12:21 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                    }
70                    
71                    return bb.clone();//never return the original / cached object
72            }
73    
74          public BoundingBox getBoundingbox(int postnr) throws SQLException {          private BoundingBox getBoundingboxFromDb(String postnr) throws SQLException {
75                    String minPostnr = postnr.replace('x', '0');
76                    String maxPostnr = postnr.replace('x', '9');
77    
78                  String sql =                  String sql =
79                                  "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  " +
80                                  "FROM fulddaekning.adressetabel WHERE postnr=? and rute is null;";                                  "FROM fulddaekning.adressetabel WHERE postnr BETWEEN ? and ? and rute is null;";
81    
82                  PreparedStatement stmt = conn.prepareStatement(sql);                  PreparedStatement stmt = conn.prepareStatement(sql);
83                  stmt.setInt(1, postnr);                  stmt.setString(1, minPostnr);
84                    stmt.setString(2, maxPostnr);
85    
86                  ResultSet res = stmt.executeQuery();                  ResultSet res = stmt.executeQuery();
87                  res.next(); //query returnerer altid 1 række                  res.next(); //query returnerer altid 1 række
# Line 81  public class Database { Line 97  public class Database {
97    
98                  return bbox;                  return bbox;
99          }          }
100            
101            
102    
103          public Queue<Adresse> hentIkkedaekkedeAdresser(int postnr)  throws SQLException {          public Queue<Adresse> hentIkkedaekkedeAdresser(String postnr)  throws SQLException {
104                    
105                    String minPostnr = postnr.replace('x', '0');
106                    String maxPostnr = postnr.replace('x', '9');
107                    
108                  ConcurrentLinkedQueue<Adresse> queue = new ConcurrentLinkedQueue<Adresse>();                  ConcurrentLinkedQueue<Adresse> queue = new ConcurrentLinkedQueue<Adresse>();
109    
110                  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 " +
111                                  "FROM fulddaekning.adressetabel a " +                                  "FROM fulddaekning.adressetabel a " +
112                                  "LEFT JOIN bogleveringer.postnummerdistributor p on (a.postnr=p.postnr) " +                                  "LEFT JOIN bogleveringer.postnummerdistributor p on (a.postnr=p.postnr) " +
113                                  "WHERE rute IS NULL " +  //Ingen dækning                                  "WHERE rute IS NULL " +  //Ingen dækning
114                                  "AND a.postnr=?  " +                                  "AND a.postnr BETWEEN ? AND ? " +
115                                  "AND latitude IS NOT NULL " +                                  "AND latitude IS NOT NULL " +
116                                  "AND longitude IS NOT NULL " +                                  "AND longitude IS NOT NULL " +
117                                  "AND gadeid IS NOT NULL " +                                  "AND gadeid IS NOT NULL " +
118                                  "AND (a.distributor IS NULL OR a.distributor<>'LUKKET') ";                                                "AND (a.distributor IS NULL OR a.distributor<>'LUKKET') ";              
119                  PreparedStatement stmt = conn.prepareStatement(sql);                  PreparedStatement stmt = conn.prepareStatement(sql);
120                  stmt.setInt(1, postnr);                  stmt.setString(1, minPostnr);
121                    stmt.setString(2, maxPostnr);
122    
123                  queue.addAll( hentAdresseListe( stmt ) );                  queue.addAll( hentAdresseListe( stmt ) );
124                  return queue;                  return queue;
125          }          }
126    
127          public List<Integer> hentPostnumre() throws SQLException {          public List<String> hentPostnumre() throws SQLException {
128                  ArrayList<Integer> list = new ArrayList<Integer>();                  ArrayList<String> list = new ArrayList<String>();
129                                    
130                  Constants consts = Constants.getInstance();                  Constants consts = Constants.getInstance();
131    
132                    /*
133                  String sql = "SELECT postnr " +                  String sql = "SELECT postnr " +
134                                           "FROM fulddaekning.adressetabel " +                                           "FROM fulddaekning.adressetabel " +
                                          //"WHERE distributor = ? and rute is not null " +  
135                                           "WHERE postnr BETWEEN ? AND ? " +                                           "WHERE postnr BETWEEN ? AND ? " +
136                                             "AND rute is null " + // Træk kun liste på postnumre hvor der er ikke-dækkede adresser
137                                           "GROUP BY postnr " +                                           "GROUP BY postnr " +
138                                           "ORDER by postnr";                                           "ORDER by postnr";
139                    */
140                    
141                    
142                    String sql = "SELECT rpad(left(postnr,?),'4', 'x') as postnr2 " +
143                                             "FROM fulddaekning.adressetabel " +
144                                             "WHERE postnr BETWEEN ? AND ? " +
145                                             "AND rute is null " + // Trae kun liste paa postnumre hvor der er ikke-daekede adresser
146                                             "AND (postnr NOT BETWEEN 3900 and 3999) " + //Skip alle groenlandske postnumre
147                                             "GROUP BY postnr2 " +
148                                             "ORDER by postnr2 ";
149                    
150                                            
151                                            
152                  PreparedStatement stmt = conn.prepareStatement(sql);                  PreparedStatement stmt = conn.prepareStatement(sql);
153                  //stmt.setString(1, Lookup.distributor );                  //stmt.setString(1, Lookup.distributor );
154                  stmt.setInt(1, consts.getMinPostnr());  
155                  stmt.setInt(2, consts.getMaxPostnr());                  stmt.setInt(1, consts.getPostnrGroup() );
156    
157                    stmt.setInt(2, consts.getMinPostnr());
158                    stmt.setInt(3, consts.getMaxPostnr());
159                  ResultSet res = stmt.executeQuery();                  ResultSet res = stmt.executeQuery();
160    
161                  while (res.next()) {                  while (res.next()) {
162                          int postnr = res.getInt("postnr");                          String postnr = res.getString("postnr2");
163                          list.add(postnr);                          list.add(postnr);
164                  }                  }
165                  res.close();                  res.close();
# Line 150  public class Database { Line 189  public class Database {
189                  stmt.setDouble(2, bbox.latitudeMax);                  stmt.setDouble(2, bbox.latitudeMax);
190                  stmt.setDouble(3, bbox.longitudeMin);                  stmt.setDouble(3, bbox.longitudeMin);
191                  stmt.setDouble(4, bbox.longitudeMax);                  stmt.setDouble(4, bbox.longitudeMax);
192                  stmt.setString(5, Lookup.distributor);                  stmt.setString(5, LookupMain.distributor);
193    
194                  List<Adresse> list = hentAdresseListe( stmt );                  List<Adresse> list = hentAdresseListe( stmt );
195                  return list.toArray( new Adresse[ list.size() ] );                  return list.toArray( new Adresse[ list.size() ] );
# Line 172  public class Database { Line 211  public class Database {
211                  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);
212                  stmt.setFetchSize(Integer.MIN_VALUE);                  stmt.setFetchSize(Integer.MIN_VALUE);
213    
214                  stmt.setString(1, Lookup.distributor);                  stmt.setString(1, LookupMain.distributor);
215    
216                  List<Adresse> list = hentAdresseListe( stmt );                  List<Adresse> list = hentAdresseListe( stmt );
217                  return list.toArray( new Adresse[ list.size() ] );                  return list.toArray( new Adresse[ list.size() ] );

Legend:
Removed from v.2235  
changed lines
  Added in v.2247

  ViewVC Help
Powered by ViewVC 1.1.20