diff --git a/xyz.veronie.bgg.ui/.classpath b/xyz.veronie.bgg.ui/.classpath index 1bc46b2..111b080 100644 --- a/xyz.veronie.bgg.ui/.classpath +++ b/xyz.veronie.bgg.ui/.classpath @@ -1,5 +1,6 @@ + diff --git a/xyz.veronie.bgg.ui/META-INF/MANIFEST.MF b/xyz.veronie.bgg.ui/META-INF/MANIFEST.MF index e18a3d4..3ba545a 100644 --- a/xyz.veronie.bgg.ui/META-INF/MANIFEST.MF +++ b/xyz.veronie.bgg.ui/META-INF/MANIFEST.MF @@ -20,3 +20,4 @@ Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Import-Package: javax.inject;version="1.0.0", org.eclipse.e4.ui.model.application.descriptor.basic, org.eclipse.e4.ui.model.application.ui.basic +Bundle-ClassPath: lib/sqlite-jdbc-3.34.0.jar diff --git a/xyz.veronie.bgg.ui/build.properties b/xyz.veronie.bgg.ui/build.properties index f8a7909..341ccac 100644 --- a/xyz.veronie.bgg.ui/build.properties +++ b/xyz.veronie.bgg.ui/build.properties @@ -1,6 +1,8 @@ output.. = bin/ bin.includes = META-INF/,\ - .,\ plugin.xml,\ - Application.e4xmi -source.. = src/ + Application.e4xmi,\ + lib/,\ + ./,\ + lib/sqlite-jdbc-3.34.0.jar +source.lib/sqlite-jdbc-3.34.0.jar = src/ diff --git a/xyz.veronie.bgg.ui/plugin.xml b/xyz.veronie.bgg.ui/plugin.xml index 9cf6b9b..4a77977 100644 --- a/xyz.veronie.bgg.ui/plugin.xml +++ b/xyz.veronie.bgg.ui/plugin.xml @@ -2,6 +2,18 @@ + + + + + + diff --git a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/localdb/LocalDbAdapterService.java b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/localdb/LocalDbAdapterService.java index c19c1dd..1fcf89d 100644 --- a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/localdb/LocalDbAdapterService.java +++ b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/localdb/LocalDbAdapterService.java @@ -1,6 +1,5 @@ package xyz.veronie.bgg.localdb; -import java.io.File; import java.util.ArrayList; import java.util.List; @@ -16,11 +15,7 @@ public class LocalDbAdapterService { private void initDb() { sqliteController = SqliteController.getInstance(); - - File dbFile = sqliteController.getDbPath().toFile(); - if(!dbFile.exists()) { - sqliteController.createSchema(); - } + sqliteController.createSchema(); } diff --git a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/localdb/SqliteController.java b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/localdb/SqliteController.java index 0cf80ab..4d8dd7c 100644 --- a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/localdb/SqliteController.java +++ b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/localdb/SqliteController.java @@ -75,15 +75,11 @@ public class SqliteController { try { if(connection != null) { Statement stmt = connection.createStatement(); - stmt.executeUpdate("DROP TABLE IF EXISTS Thing;"); - stmt.executeUpdate("DROP TABLE IF EXISTS ThingList"); - stmt.executeUpdate("DROP TABLE IF EXISTS ThingListToThing"); - - stmt.executeUpdate("CREATE TABLE Thing (ThingId INTEGER PRIMARY KEY, Name, ImgUrl, ThumbUrl, Comment, NumPlays);"); - stmt.executeUpdate("CREATE TABLE ThingList (ListId INTEGER PRIMARY KEY, Name) ON DELETE CASCADE;"); - stmt.executeUpdate("CREATE UNIQUE INDEX idx1 ON ThingList(Name)"); - stmt.executeUpdate("CREATE TABLE ThingListToThing (ListId, ThingId, FOREIGN KEY (ListId) REFERENCES ThingList(ListId), FOREIGN KEY (ThingId) REFERENCES Thing(ThingId));"); - stmt.executeUpdate("CREATE UNIQUE INDEX idx2 ON ThingListToThing(ListId, ThingId)"); + 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."); } diff --git a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/ResultConfig.java b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/ResultConfig.java index aa60f10..5eb6853 100644 --- a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/ResultConfig.java +++ b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/ResultConfig.java @@ -15,7 +15,7 @@ public class ResultConfig { // TODO: integrate different filters (or extend?) public SourceFilter source = SourceFilter.BGG_USER; - public ResultAction action = ResultAction.REP; + public ResultAction action = ResultAction.ONLY_NEW; public Subtype subtype = Subtype.BOARDGAME; // bgg user filter settings diff --git a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/Thing.java b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/Thing.java index b809827..b524968 100644 --- a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/Thing.java +++ b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/Thing.java @@ -120,5 +120,14 @@ public class Thing { return returnStr; } + + @Override + public boolean equals(Object o) { + if(o instanceof Thing) { + return ((Thing)o).getId() == getId(); + } else { + return false; + } + } } diff --git a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/ThingProvider.java b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/ThingProvider.java index 970f364..1569b83 100644 --- a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/ThingProvider.java +++ b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/ThingProvider.java @@ -51,7 +51,7 @@ public class ThingProvider { // helper function for subtractThingMetas private static Predicate thingEqual(final Thing other) { - return p -> p.getId() == other.getId(); + return p -> p.equals(other); } /// remove the things in the argument from the current list of things (using their ID) @@ -60,6 +60,18 @@ public class ThingProvider { this.things.removeIf(thingEqual(thing)); } } + + + /// keep only things that are new in the argument vs the internal thing list + public void keepOnlyNew(ArrayList things) { + List newThings = new ArrayList(); + for(Thing thing : things) { + if(!this.things.contains(thing)) { + newThings.add(thing); + } + } + this.things = newThings; + } /// keep only things that exist in both argument list and current list (by ID) public void intersectThings(ArrayList things) { @@ -84,5 +96,6 @@ public class ThingProvider { public List getThings() { return things; } + } diff --git a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/types/ResultAction.java b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/types/ResultAction.java index fac970c..cf7eb4b 100644 --- a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/types/ResultAction.java +++ b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/types/ResultAction.java @@ -4,8 +4,8 @@ public enum ResultAction { ADD("add to"), REP("replace"), SUB("subtract from"), - AND("intercept with"); - //MIS("mis"); + AND("intersect with"), + ONLY_NEW("keep not in"); private String name; diff --git a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/ui/parts/PreparePart.java b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/ui/parts/PreparePart.java index 4e052e0..6c2393a 100644 --- a/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/ui/parts/PreparePart.java +++ b/xyz.veronie.bgg.ui/src/xyz/veronie/bgg/ui/parts/PreparePart.java @@ -211,6 +211,9 @@ public class PreparePart { case AND: thingProvider.intersectThings(things); break; + case ONLY_NEW: + thingProvider.keepOnlyNew(things); + break; } eventBroker.send(EventConstants.TOPIC_RESULT_CHANGED, ""); eventBroker.send(EventConstants.TOPIC_STATUS, "Fetched " + Integer.toString(things.size()) + " things.");