An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

113 行
2.8KB

  1. package xyz.veronie.bgg.result;
  2. import java.sql.SQLException;
  3. import java.util.ArrayList;
  4. import java.util.List;
  5. import java.util.function.Predicate;
  6. import javax.annotation.PostConstruct;
  7. import javax.inject.Singleton;
  8. import org.eclipse.e4.core.di.annotations.Creatable;
  9. import xyz.veronie.bgg.localdb.LocalDbAdapterService;
  10. @Creatable
  11. @Singleton
  12. public class ThingProvider {
  13. private LocalDbAdapterService localDbAdapterService;
  14. /// list of things. Each ID is expected to exist exactly once.
  15. private List<Thing> things;
  16. public ThingProvider() {}
  17. @PostConstruct
  18. public void init() {
  19. localDbAdapterService = new LocalDbAdapterService();
  20. things = new ArrayList<Thing>();
  21. }
  22. /// replace current list with new list
  23. public void replaceThings(ArrayList<Thing> things) {
  24. this.things = things;
  25. }
  26. /// add things from argument to current list iff their ID does not exist yet
  27. public void addThings(ArrayList<Thing> things) {
  28. for(Thing tmd : things) {
  29. Boolean exists = false;
  30. for(Thing thisThing : this.things) {
  31. if(tmd.getId() == thisThing.getId()) {
  32. exists = true;
  33. }
  34. }
  35. if(!exists) {
  36. this.things.add(tmd);
  37. }
  38. }
  39. }
  40. // helper function for subtractThingMetas
  41. private static Predicate<Thing> thingEqual(final Thing other)
  42. {
  43. return p -> p.equals(other);
  44. }
  45. /// remove the things in the argument from the current list of things (using their ID)
  46. public void subtractThings(ArrayList<Thing> things) {
  47. for(Thing thing : things) {
  48. this.things.removeIf(thingEqual(thing));
  49. }
  50. }
  51. /// keep only things that are new in the argument vs the internal thing list
  52. public void keepOnlyNew(ArrayList<Thing> things) {
  53. List<Thing> newThings = new ArrayList<Thing>();
  54. for(Thing thing : things) {
  55. if(!this.things.contains(thing)) {
  56. newThings.add(thing);
  57. }
  58. }
  59. this.things = newThings;
  60. }
  61. /// keep only things that exist in both argument list and current list (by ID)
  62. public void intersectThings(ArrayList<Thing> things) {
  63. List<Thing> cpThings = new ArrayList<Thing>(this.things);
  64. this.things.clear();
  65. for(Thing thing : things) {
  66. for(Thing thisThing : cpThings) {
  67. if(thing.getId() == thisThing.getId()) {
  68. this.things.add(thing);
  69. }
  70. }
  71. }
  72. }
  73. /// store current list in DB
  74. public void storeList(String listName) throws SQLException {
  75. localDbAdapterService.storeThingList(this.things, listName);
  76. }
  77. public void loadList(String name) throws SQLException {
  78. // TODO: handle unsaved current list
  79. this.things = localDbAdapterService.loadThingList(name);
  80. }
  81. public int numberOfThings() {
  82. return things.size();
  83. }
  84. // return the current list of ids
  85. public List<Thing> getThings() {
  86. return things;
  87. }
  88. }