Преглед изворни кода

Added sqlite-jdbc library

Added "add only new" result modifier
pull/2/head
veronie пре 4 година
родитељ
комит
5c35846aa1
11 измењених фајлова са 54 додато и 22 уклоњено
  1. +1
    -0
      xyz.veronie.bgg.ui/.classpath
  2. +1
    -0
      xyz.veronie.bgg.ui/META-INF/MANIFEST.MF
  3. +5
    -3
      xyz.veronie.bgg.ui/build.properties
  4. +12
    -0
      xyz.veronie.bgg.ui/plugin.xml
  5. +1
    -6
      xyz.veronie.bgg.ui/src/xyz/veronie/bgg/localdb/LocalDbAdapterService.java
  6. +5
    -9
      xyz.veronie.bgg.ui/src/xyz/veronie/bgg/localdb/SqliteController.java
  7. +1
    -1
      xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/ResultConfig.java
  8. +9
    -0
      xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/Thing.java
  9. +14
    -1
      xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/ThingProvider.java
  10. +2
    -2
      xyz.veronie.bgg.ui/src/xyz/veronie/bgg/types/ResultAction.java
  11. +3
    -0
      xyz.veronie.bgg.ui/src/xyz/veronie/bgg/ui/parts/PreparePart.java

+ 1
- 0
xyz.veronie.bgg.ui/.classpath Прегледај датотеку

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry exported="true" kind="lib" path="lib/"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="maven.pomderived" value="true"/>


+ 1
- 0
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

+ 5
- 3
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/

+ 12
- 0
xyz.veronie.bgg.ui/plugin.xml Прегледај датотеку

@@ -2,6 +2,18 @@
<?eclipse version="3.4"?>
<plugin>
<extension
id="anotherproduct"
point="org.eclipse.core.runtime.products">
<product
name="BggToolAnother"
application="org.eclipse.e4.ui.workbench.swt.E4Application">
<property
name="appName"
value="BggToolAnother">
</property>
</product>
</extension>
<extension
id="bggtoolanother"
point="org.eclipse.core.runtime.products">


+ 1
- 6
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();
}


+ 5
- 9
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.");
}


+ 1
- 1
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


+ 9
- 0
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;
}
}
}

+ 14
- 1
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<Thing> 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<Thing> things) {
List<Thing> newThings = new ArrayList<Thing>();
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<Thing> things) {
@@ -84,5 +96,6 @@ public class ThingProvider {
public List<Thing> getThings() {
return things;
}
}

+ 2
- 2
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;


+ 3
- 0
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.");


Loading…
Откажи
Сачувај