|
@@ -51,6 +51,12 @@ public class SqliteController { |
|
|
connection = DriverManager.getConnection("jdbc:sqlite:" + dbPath);
|
|
|
connection = DriverManager.getConnection("jdbc:sqlite:" + dbPath);
|
|
|
if (!connection.isClosed())
|
|
|
if (!connection.isClosed())
|
|
|
System.out.println("...Connection established");
|
|
|
System.out.println("...Connection established");
|
|
|
|
|
|
|
|
|
|
|
|
// init connection
|
|
|
|
|
|
Statement stmt = connection.createStatement();
|
|
|
|
|
|
stmt.execute("PRAGMA foreign_keys = ON;");
|
|
|
|
|
|
stmt.close();
|
|
|
|
|
|
|
|
|
} catch (SQLException e) {
|
|
|
} catch (SQLException e) {
|
|
|
// throw new RuntimeException(e);
|
|
|
// throw new RuntimeException(e);
|
|
|
System.out.println("Could not init local DB.");
|
|
|
System.out.println("Could not init local DB.");
|
|
@@ -72,51 +78,105 @@ public class SqliteController { |
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
public void createSchema() {
|
|
|
public void createSchema() {
|
|
|
|
|
|
if(connection == null) {
|
|
|
|
|
|
throw new RuntimeException("ERROR: Couldn't create Schema, connection is null.");
|
|
|
|
|
|
}
|
|
|
try {
|
|
|
try {
|
|
|
if(connection != null) {
|
|
|
|
|
|
Statement stmt = connection.createStatement();
|
|
|
|
|
|
stmt.executeUpdate("CREATE TABLE IF NOT EXISTS Thing (ThingId INTEGER PRIMARY KEY, Name, ImgUrl, ThumbUrl, Comment, NumPlays);");
|
|
|
|
|
|
stmt.executeUpdate("CREATE TABLE IF NOT EXISTS ThingList (ListId INTEGER PRIMARY KEY, Name);");
|
|
|
|
|
|
stmt.executeUpdate("CREATE UNIQUE INDEX IF NOT EXISTS idx1 ON ThingList(Name)");
|
|
|
|
|
|
stmt.executeUpdate("CREATE TABLE IF NOT EXISTS ThingListToThing (ListId, ThingId, FOREIGN KEY (ListId) REFERENCES ThingList(ListId), FOREIGN KEY (ThingId) REFERENCES Thing(ThingId));");
|
|
|
|
|
|
stmt.executeUpdate("CREATE UNIQUE INDEX IF NOT EXISTS idx2 ON ThingListToThing(ListId, ThingId)");
|
|
|
|
|
|
} else {
|
|
|
|
|
|
System.err.println("ERROR: Couldn't create Schema, connection is null.");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Statement stmt = connection.createStatement();
|
|
|
|
|
|
stmt.executeUpdate("CREATE TABLE IF NOT EXISTS Thing (ThingId INTEGER PRIMARY KEY, Name, ImgUrl, ThumbUrl, Comment, NumPlays);");
|
|
|
|
|
|
stmt.executeUpdate("CREATE TABLE IF NOT EXISTS ThingList (ListId INTEGER PRIMARY KEY, Name);");
|
|
|
|
|
|
stmt.executeUpdate("CREATE UNIQUE INDEX IF NOT EXISTS idx1 ON ThingList(Name)");
|
|
|
|
|
|
stmt.executeUpdate("CREATE TABLE IF NOT EXISTS ThingListToThing (ListId INTEGER, ThingId INTEGER, FOREIGN KEY (ListId) REFERENCES ThingList(ListId), FOREIGN KEY (ThingId) REFERENCES Thing(ThingId));");
|
|
|
|
|
|
stmt.executeUpdate("CREATE UNIQUE INDEX IF NOT EXISTS idx2 ON ThingListToThing(ListId, ThingId)");
|
|
|
|
|
|
stmt.close();
|
|
|
} catch (SQLException e) {
|
|
|
} catch (SQLException e) {
|
|
|
System.err.println("Couldn't create Schema");
|
|
|
System.err.println("Couldn't create Schema");
|
|
|
e.printStackTrace();
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
public void openThingList(String name) {
|
|
|
|
|
|
|
|
|
public void createThingListIfNotExists(String name) {
|
|
|
if(connection == null) {
|
|
|
if(connection == null) {
|
|
|
System.err.println("ERROR: Couldn't create Schema, connection is null.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
throw new RuntimeException("ERROR: Couldn't create Schema, connection is null.");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
try {
|
|
|
try {
|
|
|
Statement stmt = connection.createStatement();
|
|
|
Statement stmt = connection.createStatement();
|
|
|
// insert new thing list if one with that name does not exist already
|
|
|
// insert new thing list if one with that name does not exist already
|
|
|
stmt.executeQuery("INSERT INTO ThingList (name) VALUES ('" + name + "');");
|
|
|
|
|
|
|
|
|
System.err.println("Opening thing list '" + name + "'.");
|
|
|
|
|
|
stmt.execute("INSERT OR IGNORE INTO ThingList (name) VALUES ('" + name + "');");
|
|
|
|
|
|
stmt.close();
|
|
|
} catch (SQLException e) {
|
|
|
} catch (SQLException e) {
|
|
|
System.err.println("Couldn't add to thing list with handle " + name);
|
|
|
System.err.println("Couldn't add to thing list with handle " + name);
|
|
|
e.printStackTrace();
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
public void addToThingList(String name, List<Thing> things) {
|
|
|
|
|
|
|
|
|
public void deleteThingList(String name) {
|
|
|
if(connection == null) {
|
|
|
if(connection == null) {
|
|
|
System.err.println("ERROR: Couldn't create Schema, connection is null.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
throw new RuntimeException("ERROR: Couldn't create Schema, connection is null.");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
try {
|
|
|
|
|
|
|
|
|
Statement stmt = connection.createStatement();
|
|
|
|
|
|
ResultSet res = stmt.executeQuery("SELECT ListId from ThingList where name = '" + name + "'");
|
|
|
|
|
|
int listId = res.getInt(0);
|
|
|
|
|
|
|
|
|
if(!hasThingList(name)) {
|
|
|
|
|
|
System.err.println("INFO: deleteThingList: Thing list '" + name + "' does not exist.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int listId = getThingListId(name);
|
|
|
|
|
|
Statement stmt = connection.createStatement();
|
|
|
|
|
|
// insert new thing list if one with that name does not exist already
|
|
|
|
|
|
System.err.println("INFO: deleteThingList: Deleting thing list '" + name + "'.");
|
|
|
|
|
|
stmt.execute("DELETE FROM ThingListToThing where ListId = " + Integer.toString(listId) + ";");
|
|
|
|
|
|
stmt.execute("DELETE FROM ThingList where name = '" + name + "');");
|
|
|
|
|
|
stmt.close();
|
|
|
|
|
|
} catch (SQLException e) {
|
|
|
|
|
|
System.err.println("deleteThingList: Couldn't delete thing list with handle " + name);
|
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public boolean hasThingList(String name) {
|
|
|
|
|
|
if(getThingListId(name) != -1) {
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int getThingListId(String name) {
|
|
|
|
|
|
if(connection == null) {
|
|
|
|
|
|
throw new RuntimeException("ERROR: Couldn't create Schema, connection is null.");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int listId = -1;
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
Statement stmt = connection.createStatement();
|
|
|
|
|
|
String str = "SELECT ListId from ThingList where name = '" + name + "'";
|
|
|
|
|
|
System.out.println("TRACE: executeQuery: " + str);
|
|
|
|
|
|
ResultSet res = stmt.executeQuery(str);
|
|
|
|
|
|
if(res.getFetchSize() == 1) {
|
|
|
|
|
|
listId = res.getInt(1);
|
|
|
|
|
|
System.out.println("DEBUG: ListId = " + listId);
|
|
|
|
|
|
return listId;
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (SQLException e) {
|
|
|
|
|
|
System.err.println("Couldn't add to thing list with handle " + name);
|
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return listId;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void addToThingList(String name, List<Thing> things) {
|
|
|
|
|
|
if(connection == null) {
|
|
|
|
|
|
throw new RuntimeException("ERROR: Couldn't create Schema, connection is null.");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
int listId = getThingListId(name);
|
|
|
|
|
|
|
|
|
PreparedStatement thingStatement = connection
|
|
|
PreparedStatement thingStatement = connection
|
|
|
.prepareStatement("INSERT INTO Thing VALUES (?, ?, ?, ?, ?, ?) ON CONFLICT REPLACE;");
|
|
|
.prepareStatement("INSERT INTO Thing VALUES (?, ?, ?, ?, ?, ?) ON CONFLICT REPLACE;");
|
|
|
PreparedStatement listToThingStatement = connection
|
|
|
PreparedStatement listToThingStatement = connection
|
|
|