]> WPIA git - gigi.git/blobdiff - util/org/cacert/gigi/util/DatabaseManager.java
[EMPTY] Formatting with configured formatter.
[gigi.git] / util / org / cacert / gigi / util / DatabaseManager.java
index 34f80f9b85b8fb08ddc7753141af486112f718e3..471083953b8d2b2f1362f8d440eca5016c7789de 100644 (file)
@@ -1,36 +1,54 @@
 package org.cacert.gigi.util;
 
 import java.io.File;
+import java.io.FileReader;
 import java.io.IOException;
 import java.nio.file.Files;
 import java.sql.Connection;
 import java.sql.DriverManager;
 import java.sql.SQLException;
 import java.sql.Statement;
+import java.util.Properties;
 
 public class DatabaseManager {
        public static String readFile(File f) throws IOException {
                return new String(Files.readAllBytes(f.toPath()));
        }
-       public static void main(String[] args) throws SQLException,
-                       ClassNotFoundException, IOException {
+
+       public static void main(String[] args) throws SQLException, ClassNotFoundException, IOException {
+               if (args.length == 0) {
+                       Properties p = new Properties();
+                       p.load(new FileReader("config/gigi.properties"));
+                       args = new String[] { p.getProperty("sql.driver"), p.getProperty("sql.url"), p.getProperty("sql.user"),
+                                       p.getProperty("sql.password") };
+               }
                if (args.length < 4) {
-                       System.err
-                                       .println("Usage: com.mysql.jdbc.Driver jdbc:mysql://localhost/cacert user password");
+                       System.err.println("Usage: com.mysql.jdbc.Driver jdbc:mysql://localhost/cacert user password");
                        return;
                }
+               run(args);
+       }
+
+       public static void run(String[] args) throws ClassNotFoundException, SQLException, IOException {
                Class.forName(args[0]);
-               Connection conn = DriverManager
-                               .getConnection(args[1], args[2], args[3]);
+               Connection conn = DriverManager.getConnection(args[1], args[2], args[3]);
                Statement stmt = conn.createStatement();
-               String sql = readFile(new File("doc/tableStructure.sql"));
+               addFile(stmt, new File("doc/tableStructure.sql"));
+               File localData = new File("doc/sampleData.sql");
+               if (localData.exists()) {
+                       addFile(stmt, localData);
+               }
+               stmt.executeBatch();
+               stmt.close();
+       }
+
+       private static void addFile(Statement stmt, File f) throws IOException, SQLException {
+               String sql = readFile(f);
                String[] stmts = sql.split(";");
                for (String string : stmts) {
                        if (!string.trim().equals("")) {
                                stmt.addBatch(string);
                        }
                }
-               stmt.executeBatch();
-               stmt.close();
        }
 }