An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

280 linhas
9.3KB

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