An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

109 рядки
2.8KB

  1. package xyz.veronie.bgg.result;
  2. import java.io.BufferedWriter;
  3. import java.io.FileWriter;
  4. import java.io.IOException;
  5. import java.util.ArrayList;
  6. import java.util.List;
  7. import java.util.function.Predicate;
  8. import javax.inject.Inject;
  9. import org.eclipse.e4.core.di.annotations.Optional;
  10. import org.eclipse.e4.ui.di.UIEventTopic;
  11. import com.google.gson.Gson;
  12. import xyz.veronie.bgg.types.EventConstants;
  13. import xyz.veronie.bgg.types.SourceFilter;
  14. public enum ThingProvider {
  15. INSTANCE;
  16. /// list of things. Each ID is expected to exist exactly once.
  17. private List<ThingMetaData> thingMetas;
  18. private ThingProvider() {
  19. thingMetas = new ArrayList<ThingMetaData>();
  20. }
  21. /// replace current list with new list
  22. public void replaceThingMetas(ArrayList<ThingMetaData> metas) {
  23. this.thingMetas = metas;
  24. }
  25. /// add things from argument to current list iff their ID does not exist yet
  26. public void addThingMetas(ArrayList<ThingMetaData> metas) {
  27. for(ThingMetaData tmd : metas) {
  28. Boolean exists = false;
  29. for(ThingMetaData thisTmd : this.thingMetas) {
  30. if(tmd.getId() == thisTmd.getId()) {
  31. exists = true;
  32. }
  33. }
  34. if(!exists) {
  35. this.thingMetas.add(tmd);
  36. }
  37. }
  38. }
  39. // helper functino for subtractThingMetas
  40. private static Predicate<ThingMetaData> thingEqual(ThingMetaData 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 subtractThingMetas(ArrayList<ThingMetaData> metas) {
  46. for(ThingMetaData tmd : metas) {
  47. this.thingMetas.removeIf(thingEqual(tmd));
  48. }
  49. }
  50. /// keep only things that exist in both argument list and current list (by ID)
  51. public void intersectThingMetas(ArrayList<ThingMetaData> metas) {
  52. List<ThingMetaData> cpMetas = new ArrayList<ThingMetaData>(this.thingMetas);
  53. this.thingMetas.clear();
  54. for(ThingMetaData tmd : metas) {
  55. for(ThingMetaData thisTmd : cpMetas) {
  56. if(tmd.getId() == thisTmd.getId()) {
  57. this.thingMetas.add(tmd);
  58. }
  59. }
  60. }
  61. }
  62. /// create a tag of the current list
  63. public void tagResult() {
  64. Gson gson = new Gson();
  65. String resultList = gson.toJson(this.thingMetas);
  66. try {
  67. BufferedWriter writer = new BufferedWriter(
  68. new FileWriter("result_" + Long.toString(System.currentTimeMillis())));
  69. writer.write(resultList);
  70. writer.close();
  71. } catch (IOException e) {
  72. e.printStackTrace();
  73. }
  74. }
  75. // return the current list of ids
  76. public List<ThingMetaData> getThingMetas() {
  77. return thingMetas;
  78. }
  79. @Inject
  80. @Optional
  81. private void subscribeTopicSourceChanged
  82. (@UIEventTopic(EventConstants.TOPIC_TAG_RESULT)
  83. String str) {
  84. System.out.println("Tag result now.");
  85. this.tagResult();
  86. }
  87. }