An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

135 řádky
4.9KB

  1. package xyz.veronie.bgg.localdb;
  2. import java.sql.Connection;
  3. import java.sql.DriverManager;
  4. import java.sql.PreparedStatement;
  5. import java.sql.ResultSet;
  6. import java.sql.SQLException;
  7. import java.sql.Statement;
  8. import java.util.List;
  9. import xyz.veronie.bgg.result.ThingMetaData;
  10. public class SqliteController {
  11. private static final SqliteController dbcontroller = new SqliteController();
  12. private static Connection connection;
  13. public static final String DB_PATH = System.getProperty("user.home") + "/" + "bggtool.db";
  14. static {
  15. try {
  16. Class.forName("org.sqlite.JDBC");
  17. } catch (ClassNotFoundException e) {
  18. System.err.println("Error while loading JDBC driver");
  19. e.printStackTrace();
  20. }
  21. }
  22. private SqliteController() {
  23. initDBConnection();
  24. }
  25. public static SqliteController getInstance() {
  26. return dbcontroller;
  27. }
  28. private void initDBConnection() {
  29. try {
  30. if (connection != null)
  31. return;
  32. System.out.println("Creating Connection to Database...");
  33. String filename = System.getProperty("user.home") + "/bggtool.db";
  34. connection = DriverManager.getConnection("jdbc:sqlite:" + filename);
  35. if (!connection.isClosed())
  36. System.out.println("...Connection established");
  37. } catch (SQLException e) {
  38. throw new RuntimeException(e);
  39. }
  40. Runtime.getRuntime().addShutdownHook(new Thread() {
  41. public void run() {
  42. try {
  43. if (!connection.isClosed() && connection != null) {
  44. connection.close();
  45. if (connection.isClosed())
  46. System.out.println("Connection to Database closed");
  47. }
  48. } catch (SQLException e) {
  49. e.printStackTrace();
  50. }
  51. }
  52. });
  53. }
  54. public void createSchema() {
  55. try {
  56. Statement stmt = connection.createStatement();
  57. stmt.executeUpdate("DROP TABLE IF EXISTS Thing;");
  58. stmt.executeUpdate("DROP TABLE IF EXISTS ThingList");
  59. stmt.executeUpdate("DROP TABLE IF EXISTS ThingListToThing");
  60. stmt.executeUpdate("CREATE TABLE Thing (ThingId INTEGER PRIMARY KEY, Name, ImgUrl, ThumbUrl, Comment, NumPlays);");
  61. stmt.executeUpdate("CREATE TABLE ThingList (ListId INTEGER PRIMARY KEY, Name) ON DELETE CASCADE;");
  62. stmt.executeUpdate("CREATE UNIQUE INDEX idx1 ON ThingList(Name)");
  63. stmt.executeUpdate("CREATE TABLE ThingListToThing (ListId, ThingId, FOREIGN KEY (ListId) REFERENCES ThingList(ListId), FOREIGN KEY (ThingId) REFERENCES Thing(ThingId));");
  64. stmt.executeUpdate("CREATE UNIQUE INDEX idx2 ON ThingListToThing(ListId, ThingId)");
  65. } catch (SQLException e) {
  66. System.err.println("Couldn't create Schema");
  67. e.printStackTrace();
  68. }
  69. }
  70. public void openThingList(String name) {
  71. try {
  72. Statement stmt = connection.createStatement();
  73. // insert new thing list if one with that name does not exist already
  74. stmt.executeQuery("INSERT INTO ThingList (name) VALUES ('" + name + "');");
  75. } catch (SQLException e) {
  76. System.err.println("Couldn't add to thing list with handle " + name);
  77. e.printStackTrace();
  78. }
  79. }
  80. public void addToThingList(String name, List<ThingMetaData> things) {
  81. try {
  82. Statement stmt = connection.createStatement();
  83. ResultSet res = stmt.executeQuery("SELECT ListId from ThingList where name = '" + name + "'");
  84. int listId = res.getInt(0);
  85. PreparedStatement thingStatement = connection
  86. .prepareStatement("INSERT INTO Thing VALUES (?, ?, ?, ?, ?, ?) ON CONFLICT REPLACE;");
  87. PreparedStatement listToThingStatement = connection
  88. .prepareStatement("INSERT INTO ThingListToThing VALUES (?, ?)");
  89. for (ThingMetaData thing : things) {
  90. thingStatement.setInt(1, thing.getId());
  91. thingStatement.setString(2, thing.getName());
  92. thingStatement.setString(3, thing.getImgURL());
  93. thingStatement.setString(4, thing.getThumbURL());
  94. thingStatement.setString(5, thing.getComment());
  95. thingStatement.setInt(6, thing.getNumPlays());
  96. thingStatement.addBatch();
  97. // get generated id
  98. ResultSet keys = thingStatement.getGeneratedKeys();
  99. int thingId = keys.getInt(0);
  100. listToThingStatement.setInt(0, listId);
  101. listToThingStatement.setInt(1, thingId);
  102. listToThingStatement.addBatch();
  103. }
  104. connection.setAutoCommit(false);
  105. thingStatement.executeBatch();
  106. connection.setAutoCommit(true);
  107. } catch (SQLException e) {
  108. System.err.println("Couldn't add to thing list with handle " + name);
  109. e.printStackTrace();
  110. }
  111. }
  112. }