An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

270 lines
9.0KB

  1. package xyz.veronie.bgg.localdb;
  2. import java.io.File;
  3. import java.nio.file.Path;
  4. import java.nio.file.Paths;
  5. import java.sql.Connection;
  6. import java.sql.DriverManager;
  7. import java.sql.PreparedStatement;
  8. import java.sql.ResultSet;
  9. import java.sql.SQLException;
  10. import java.sql.Statement;
  11. import java.util.ArrayList;
  12. import java.util.List;
  13. import xyz.veronie.bgg.result.Thing;
  14. import xyz.veronie.bgg.result.ThingMetaData;
  15. import xyz.veronie.bgg.ui.helpers.Resources;
  16. public class SqliteController {
  17. private static final SqliteController dbcontroller = new SqliteController();
  18. private static Connection connection;
  19. private String dbPath;
  20. static {
  21. try {
  22. Class.forName("org.sqlite.JDBC");
  23. } catch (ClassNotFoundException e) {
  24. System.err.println("Error while loading JDBC driver");
  25. e.printStackTrace();
  26. }
  27. }
  28. public Path getDbPath() {
  29. return Paths.get(dbPath);
  30. }
  31. private SqliteController() {
  32. dbPath = Resources.INSTANCE.getTmpDir() + File.separator + "bggtool.db";
  33. initDBConnection();
  34. }
  35. public static SqliteController getInstance() {
  36. return dbcontroller;
  37. }
  38. private void initDBConnection() {
  39. try {
  40. if (connection != null)
  41. return;
  42. System.out.println("Creating Connection to Database...");
  43. connection = DriverManager.getConnection("jdbc:sqlite:" + dbPath);
  44. if (!connection.isClosed())
  45. System.out.println("...Connection established");
  46. // init connection
  47. Statement stmt = connection.createStatement();
  48. stmt.execute("PRAGMA foreign_keys = ON;");
  49. stmt.close();
  50. } catch (SQLException e) {
  51. // throw new RuntimeException(e);
  52. System.out.println("Could not init local DB.");
  53. }
  54. Runtime.getRuntime().addShutdownHook(new Thread() {
  55. public void run() {
  56. try {
  57. if (!connection.isClosed() && connection != null) {
  58. connection.close();
  59. if (connection.isClosed())
  60. System.out.println("Connection to Database closed");
  61. }
  62. } catch (SQLException e) {
  63. e.printStackTrace();
  64. }
  65. }
  66. });
  67. }
  68. public void createSchema() {
  69. if(connection == null) {
  70. throw new RuntimeException("ERROR: Couldn't create Schema, connection is null.");
  71. }
  72. try {
  73. Statement stmt = connection.createStatement();
  74. stmt.executeUpdate("CREATE TABLE IF NOT EXISTS Thing (ThingId INTEGER PRIMARY KEY, Name, ImgUrl, ThumbUrl, Comment, NumPlays);");
  75. stmt.executeUpdate("CREATE TABLE IF NOT EXISTS ThingList (ListId INTEGER PRIMARY KEY, Name);");
  76. stmt.executeUpdate("CREATE UNIQUE INDEX IF NOT EXISTS idx1 ON ThingList(Name)");
  77. stmt.executeUpdate("CREATE TABLE IF NOT EXISTS ThingListToThing (ListId INTEGER, ThingId INTEGER, FOREIGN KEY (ListId) REFERENCES ThingList(ListId), FOREIGN KEY (ThingId) REFERENCES Thing(ThingId));");
  78. stmt.executeUpdate("CREATE UNIQUE INDEX IF NOT EXISTS idx2 ON ThingListToThing(ListId, ThingId)");
  79. stmt.close();
  80. } catch (SQLException e) {
  81. System.err.println("Couldn't create Schema");
  82. e.printStackTrace();
  83. }
  84. }
  85. public void createThingListIfNotExists(String name) {
  86. if(connection == null) {
  87. throw new RuntimeException("ERROR: Couldn't create Schema, connection is null.");
  88. }
  89. try {
  90. Statement stmt = connection.createStatement();
  91. // insert new thing list if one with that name does not exist already
  92. System.err.println("Opening thing list '" + name + "'.");
  93. stmt.execute("INSERT OR IGNORE INTO ThingList (name) VALUES ('" + name + "');");
  94. stmt.close();
  95. } catch (SQLException e) {
  96. System.err.println("Couldn't add to thing list with handle " + name);
  97. e.printStackTrace();
  98. }
  99. }
  100. public void deleteThingList(String name) throws SQLException {
  101. if(connection == null) {
  102. throw new RuntimeException("ERROR: Couldn't create Schema, connection is null.");
  103. }
  104. if(!hasThingList(name)) {
  105. System.err.println("INFO: deleteThingList: Thing list '" + name + "' does not exist.");
  106. return;
  107. }
  108. int listId = getThingListId(name);
  109. Statement stmt = connection.createStatement();
  110. // insert new thing list if one with that name does not exist already
  111. System.err.println("INFO: deleteThingList: Deleting thing list '" + name + "'.");
  112. stmt.execute("DELETE FROM ThingListToThing where ListId = " + Integer.toString(listId) + ";");
  113. stmt.execute("DELETE FROM ThingList where ListId = " + Integer.toString(listId) + ";");
  114. stmt.close();
  115. }
  116. public boolean hasThingList(String name) throws SQLException {
  117. if(getThingListId(name) != -1) {
  118. return true;
  119. }
  120. return false;
  121. }
  122. public int getThingListId(String name) throws SQLException {
  123. if(connection == null) {
  124. throw new RuntimeException("ERROR: Couldn't create Schema, connection is null.");
  125. }
  126. Statement stmt = connection.createStatement();
  127. String countStr = "SELECT COUNT(*) as count from ThingList where name = '" + name + "'";
  128. ResultSet res = stmt.executeQuery(countStr);
  129. int count = res.getInt("count");
  130. if(count == 0) {
  131. stmt.close();
  132. return -1;
  133. }
  134. String str = "SELECT ListId from ThingList where name = '" + name + "'";
  135. System.out.println("TRACE: executeQuery: " + str);
  136. res = stmt.executeQuery(str);
  137. int listId = res.getInt(1);
  138. System.out.println("DEBUG: ListId = " + listId);
  139. stmt.close();
  140. return listId;
  141. }
  142. public void addToThingList(String name, List<Thing> things) throws SQLException {
  143. if(connection == null) {
  144. throw new RuntimeException("ERROR: Couldn't create Schema, connection is null.");
  145. }
  146. int listId = getThingListId(name);
  147. PreparedStatement thingStatement = connection
  148. .prepareStatement("INSERT OR REPLACE INTO Thing VALUES (?, ?, ?, ?, ?, ?);");
  149. PreparedStatement listToThingStatement = connection
  150. .prepareStatement("INSERT INTO ThingListToThing VALUES (?, ?);");
  151. for (Thing thing : things) {
  152. ThingMetaData metaData = thing.getMetaData();
  153. thingStatement.setInt(1, metaData.getId());
  154. thingStatement.setString(2, metaData.getName());
  155. thingStatement.setString(3, metaData.getImgURL());
  156. thingStatement.setString(4, metaData.getThumbURL());
  157. thingStatement.setString(5, metaData.getComment());
  158. if(metaData.getNumPlays() != null) {
  159. thingStatement.setInt(6, metaData.getNumPlays());
  160. } else {
  161. thingStatement.setNull(6, java.sql.Types.INTEGER);
  162. }
  163. thingStatement.execute();
  164. // get generated id
  165. ResultSet keys = thingStatement.getGeneratedKeys();
  166. int thingId = keys.getInt(1);
  167. System.out.println("TRACE: ThingId = " + thingId + ", ListId = " + listId);
  168. listToThingStatement.setInt(1, listId);
  169. listToThingStatement.setInt(2, thingId);
  170. listToThingStatement.addBatch();
  171. }
  172. connection.setAutoCommit(false);
  173. listToThingStatement.executeBatch();
  174. connection.setAutoCommit(true);
  175. }
  176. /// Retrieve the list of names of ThingLists.
  177. public List<String> getThingLists() throws SQLException {
  178. if(connection == null) {
  179. throw new RuntimeException("ERROR: Couldn't create Schema, connection is null.");
  180. }
  181. Statement stmt = null;
  182. stmt = connection.createStatement();
  183. String str = "SELECT Name from ThingList order by Name asc";
  184. System.out.println("TRACE: executeQuery: " + str);
  185. ResultSet res = stmt.executeQuery(str);
  186. List<String> listNames = new ArrayList<String>();
  187. while(res.next()) {
  188. listNames.add(res.getString(1));
  189. }
  190. stmt.close();
  191. return listNames;
  192. }
  193. /// Retrieve all Things (with metadata, no details) for a given ThingList.
  194. public List<Thing> getThingList(String name) throws SQLException {
  195. if(connection == null) {
  196. throw new RuntimeException("ERROR: Couldn't create Schema, connection is null.");
  197. }
  198. Statement stmt = null;
  199. stmt = connection.createStatement();
  200. String str = "SELECT t.ThingId, t.Name, ImgUrl, ThumbUrl, Comment, NumPlays from Thing t " +
  201. "join ThingListToThing tltt on t.ThingId = tltt.ThingId " +
  202. "join ThingList tl on tl.ListId = tltt.ListId " +
  203. "where tl.Name = '" + name + "' order by t.Name asc";
  204. System.out.println("TRACE: executeQuery: " + str);
  205. ResultSet res = stmt.executeQuery(str);
  206. List<Thing> thingList = new ArrayList<Thing>();
  207. while(res.next()) {
  208. int id = res.getInt(1);
  209. ThingMetaData metaData = new ThingMetaData(id,
  210. res.getString(2),
  211. res.getString(3),
  212. res.getString(4),
  213. res.getString(5),
  214. res.getInt(6));
  215. Thing thing = new Thing(id, metaData);
  216. thingList.add(thing);
  217. }
  218. stmt.close();
  219. return thingList;
  220. }
  221. }