/[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 2151 by torben, Wed May 7 07:59:03 2014 UTC revision 2248 by torben, Mon Dec 15 11:13:48 2014 UTC
# Line 1  Line 1 
1  package dk.daoas.fulddaekning;  package dk.daoas.fulddaekning;
2    
3    import java.io.IOException;
4  import java.sql.Connection;  import java.sql.Connection;
5    import java.sql.DriverManager;
6  import java.sql.PreparedStatement;  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;
13  import java.util.Queue;  import java.util.Queue;
14  import java.util.concurrent.ConcurrentLinkedQueue;  import java.util.concurrent.ConcurrentLinkedQueue;
15  import java.util.logging.Logger;  import java.util.logging.Logger;
16    
17    
18    
19  public class Database {  public class Database {
20          Logger logger = Logger.getLogger(Database.class.getName());          Logger logger = Logger.getLogger(Database.class.getName());
21    
22            int batchCount = 0;
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(Connection conn)  throws SQLException {          public Database(SafeProperties conf)  throws SQLException,IOException {
30                  this.conn = conn;                                                this.conn = getConnection( conf );      
31    
32                  String sql = "INSERT INTO fulddaekning.afstand_anden_rute_thn (orgId,orgPostnr, orgAdresse,orgGadeid,orgHusnr,orgHusnrBogstav,orgLatitude,orgLongitude,orgRute,id,postnr,adresse,gadeid,husnr,husnrbogstav,latitude,longitude,rute,afstand,`timestamp`) "+                  String sql = "INSERT INTO fulddaekning.afstand_anden_rute_ny (orgId,orgPostnr, orgAdresse,orgGadeid,orgHusnr,orgHusnrBogstav,orgLatitude,orgLongitude,orgRute,id,postnr,adresse,gadeid,husnr,husnrbogstav,latitude,longitude,rute,afstand,`timestamp`) "+
33                                  "VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?, now() )";                                  "VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?, now() )";
34    
35                  saveStmt = conn.prepareStatement(sql);                            saveStmt = conn.prepareStatement(sql);          
# Line 29  public class Database { Line 37  public class Database {
37          }          }
38    
39          public void resetResultTable() throws SQLException {          public void resetResultTable() throws SQLException {
40                  logger.info("Truncating result table");                  logger.info("Dropping old result table (if exists)");
41                  String sql = "TRUNCATE TABLE fulddaekning.afstand_anden_rute_thn";                  String sql = "DROP TABLE IF EXISTS fulddaekning.afstand_anden_rute_ny";
42                  conn.createStatement().executeUpdate(sql);                  conn.createStatement().executeUpdate(sql);
43                    
44                    logger.info("Create new result table");
45                    sql = "CREATE TABLE fulddaekning.afstand_anden_rute_ny LIKE fulddaekning.afstand_anden_rute";
46                    conn.createStatement().executeUpdate(sql);              
47          }                }      
48            
49            public void renameResultTables() throws SQLException {
50                    Constants consts = Constants.getInstance();
51                    String ext = consts.getTableExtension();
52                    
53                    logger.info("Dropping old backup table (if exists)");
54                    String sql = "DROP TABLE IF EXISTS fulddaekning.afstand_anden_rute_old" + ext;
55                    conn.createStatement().executeUpdate(sql);
56                    
57                    logger.info("Rename tables");
58                    sql = "RENAME TABLE fulddaekning.afstand_anden_rute" + ext + " TO fulddaekning.afstand_anden_rute_old" + ext + ", fulddaekning.afstand_anden_rute_ny TO fulddaekning.afstand_anden_rute" + ext;
59    
60                    logger.info("Executing: " + sql);
61                    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 58  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,postnr,adresse,gadeid,husnr,husnrbogstav,latitude,longitude,rute FROM fulddaekning.adressetabel " +                  String sql = "SELECT id,a.postnr,adresse,gadeid,husnr,husnrbogstav,latitude,longitude,rute,p.distributor as ho " +
113                                    "FROM fulddaekning.adressetabel a " +
114                                    "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 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') ";              
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();
133    
134                    /*
135                    String sql = "SELECT postnr " +
136                                             "FROM fulddaekning.adressetabel " +
137                                             "WHERE postnr BETWEEN ? AND ? " +
138                                             "AND rute is null " + // Træk kun liste på postnumre hvor der er ikke-dækkede adresser
139                                             "GROUP BY postnr " +
140                                             "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);
155                    //stmt.setString(1, Lookup.distributor );
156    
157                    stmt.setInt(1, consts.getPostnrGroup() );
158    
159                  String sql = "SELECT postnr FROM fulddaekning.adressetabel WHERE distributor = 'DAO' and rute is not null GROUP BY postnr ORDER by postnr";                  stmt.setInt(2, consts.getMinPostnr());
160                  PreparedStatement stmt = conn.prepareStatement(sql);                  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 95  public class Database { Line 172  public class Database {
172                  return list;                  return list;
173          }          }
174    
175          public ArrayList<Adresse> hentDaekkedeAdresser( BoundingBox bbox) throws SQLException {          public Adresse[] hentDaekkedeAdresser( BoundingBox bbox) throws SQLException {
176                  String sql = "SELECT id,postnr,adresse,gadeid,husnr,husnrbogstav,latitude,longitude,rute FROM fulddaekning.adressetabel " +                  String sql = "SELECT id,a.postnr,adresse,gadeid,husnr,husnrbogstav,latitude,longitude,rute,p.distributor as ho " +
177                                    "FROM fulddaekning.adressetabel a " +
178                                    "LEFT JOIN bogleveringer.postnummerdistributor p on (a.postnr=p.postnr) " +
179                                  "WHERE rute IS NOT NULL " +                                  "WHERE rute IS NOT NULL " +
180                                  "AND latitude BETWEEN ? AND ? " +                                  "AND latitude BETWEEN ? AND ? " +
181                                  "AND longitude BETWEEN ? AND ? " +                                  "AND longitude BETWEEN ? AND ? " +
182                                  "AND distributor = 'DAO' ";                                  "AND a.distributor = ? ";
183    
184                  // Forward only + concur_read_only + fetchsize tvinger driver til at hente en række af gangen (bedre performance ved store result sets)                  // Forward only + concur_read_only + fetchsize tvinger driver til at hente en række af gangen (bedre performance ved store result sets)
185                  // Se http://dev.mysql.com/doc/connector-j/en/connector-j-reference-implementation-notes.html                  // Se http://dev.mysql.com/doc/connector-j/en/connector-j-reference-implementation-notes.html
# Line 112  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, LookupMain.distributor);
195    
196                  return hentAdresseListe( stmt );                  List<Adresse> list = hentAdresseListe( stmt );
197                    return list.toArray( new Adresse[ list.size() ] );
198          }          }
199            
200            
201            public Adresse[] hentAlleDaekkedeAdresser() throws SQLException {
202                    String sql = "SELECT id,a.postnr,adresse,gadeid,husnr,husnrbogstav,latitude,longitude,rute,p.distributor as ho " +
203                                    "FROM fulddaekning.adressetabel a " +
204                                    "LEFT JOIN bogleveringer.postnummerdistributor p on (a.postnr=p.postnr) " +
205                                    "WHERE rute IS NOT NULL " +
206                                    "AND latitude IS NOT NULL " +
207                                    "AND longitude IS NOT NULL " +
208                                    "AND a.distributor = ? ";
209    
210                    // Forward only + concur_read_only + fetchsize tvinger driver til at hente en række af gangen (bedre performance ved store result sets)
211                    // Se http://dev.mysql.com/doc/connector-j/en/connector-j-reference-implementation-notes.html
212                    //PreparedStatement stmt = conn.prepareStatement(sql);
213                    PreparedStatement stmt = conn.prepareStatement(sql, java.sql.ResultSet.TYPE_FORWARD_ONLY, java.sql.ResultSet.CONCUR_READ_ONLY);
214                    stmt.setFetchSize(Integer.MIN_VALUE);
215    
216                    stmt.setString(1, LookupMain.distributor);
217    
218                    List<Adresse> list = hentAdresseListe( stmt );
219                    return list.toArray( new Adresse[ list.size() ] );
220            }
221            
222            
223    
224          public synchronized void gemResultat(Adresse orgAdresse, Adresse bedsteAdresse, double bedsteAfstand) throws SQLException {          public synchronized void gemResultat(Adresse orgAdresse, Adresse bedsteAdresse, double bedsteAfstand) throws SQLException {
225                  /*String sql = "INSERT INTO fulddaekning.afstand_anden_rute_thn (orgId,orgPostnr, orgAdresse,orgGadeid,orgHusnr,orgHusnrBogstav,orgLatitude,orgLongitude,orgRute,id,postnr,adresse,gadeid,husnr,husnrbogstav,latitude,longitude,rute,afstand,`timestamp`) "+                  /*String sql = "INSERT INTO fulddaekning.afstand_anden_rute_thn (orgId,orgPostnr, orgAdresse,orgGadeid,orgHusnr,orgHusnrBogstav,orgLatitude,orgLongitude,orgRute,id,postnr,adresse,gadeid,husnr,husnrbogstav,latitude,longitude,rute,afstand,`timestamp`) "+
# Line 147  public class Database { Line 250  public class Database {
250    
251                  saveStmt.setDouble(19, bedsteAfstand);                  saveStmt.setDouble(19, bedsteAfstand);
252    
253                  saveStmt.executeUpdate();                        saveStmt.addBatch();
254                  saveStmt.clearParameters();                  batchCount++;
255                    if (batchCount >= 100) {
256                            saveStmt.executeBatch();
257                            batchCount = 0;
258                    }
259                    //saveStmt.executeUpdate();    
260                    //saveStmt.clearParameters();
261    
262                  //saveStmt.close();                      //saveStmt.close();    
263            }
264            
265            public synchronized void saveBatch() throws SQLException{
266                    saveStmt.executeBatch();
267                    batchCount = 0;
268          }          }
269    
270    
271    
272          protected ArrayList<Adresse> hentAdresseListe(PreparedStatement stmt) throws SQLException{          protected ArrayList<Adresse> hentAdresseListe(PreparedStatement stmt) throws SQLException{
273                  ArrayList<Adresse> list = new ArrayList<Adresse>( 30000 );                  ArrayList<Adresse> list = new ArrayList<Adresse>( 1000000 );
274    
275                  //logger.info("Starting query");                  //logger.info("Starting query");
276                  ResultSet res = stmt.executeQuery();                  ResultSet res = stmt.executeQuery();
# Line 175  public class Database { Line 287  public class Database {
287                          adr.latitude = res.getDouble("latitude");                          adr.latitude = res.getDouble("latitude");
288                          adr.longitude = res.getDouble("longitude");                          adr.longitude = res.getDouble("longitude");
289                          adr.rute = res.getString("rute");                          adr.rute = res.getString("rute");
290                            adr.ho = res.getInt("ho");
291    
292                          list.add(adr);                          list.add(adr);
293    
# Line 187  public class Database { Line 300  public class Database {
300                  return list;                  return list;
301          }          }
302    
303            public Connection getConnection(SafeProperties conf) throws SQLException, IOException {
304                    
305                    String db_host = conf.getSafeProperty("DB_HOST");
306                    String db_user = conf.getSafeProperty("DB_USER");
307                    String db_pass = conf.getSafeProperty("DB_PASS");
308    
309                    
310                    
311    
312                Connection conn = null;
313                Properties connectionProps = new Properties();
314                connectionProps.put("user", db_user);
315                connectionProps.put("password", db_pass);
316    
317                //For debug output, tilføj denne til JDBC url'en: &profileSQL=true    
318                conn = DriverManager.getConnection(
319                               "jdbc:mysql://" +
320                               db_host +
321                               ":3306/?rewriteBatchedStatements=true",
322                               connectionProps);
323                logger.info("Connected to database");
324                return conn;
325            }
326    
327  }  }

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

  ViewVC Help
Powered by ViewVC 1.1.20