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.

89 linhas
2.2KB

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