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

139 行
4.3KB

  1. package xyz.veronie.bgg.ui.handlers;
  2. import java.io.BufferedReader;
  3. import java.io.FileNotFoundException;
  4. import java.io.FileReader;
  5. import java.io.IOException;
  6. import java.util.HashSet;
  7. import java.util.List;
  8. import java.util.Set;
  9. import org.eclipse.core.runtime.Path;
  10. import org.eclipse.e4.core.di.annotations.CanExecute;
  11. import org.eclipse.e4.core.di.annotations.Execute;
  12. import org.eclipse.e4.core.services.events.IEventBroker;
  13. import org.eclipse.swt.SWT;
  14. import org.eclipse.swt.widgets.FileDialog;
  15. import org.eclipse.swt.widgets.MessageBox;
  16. import org.eclipse.swt.widgets.Shell;
  17. import xyz.veronie.bgg.result.BggApi;
  18. import xyz.veronie.bgg.result.Thing;
  19. import xyz.veronie.bgg.result.ThingProvider;
  20. import xyz.veronie.bgg.types.EventConstants;
  21. public class ImportResultTxtHandler {
  22. private Shell shell;
  23. @Execute
  24. public void execute(Shell shell, ThingProvider thingProvider, BggApi bggApi, IEventBroker eventBroker) {
  25. this.shell = shell;
  26. FileDialog dialog = new FileDialog(shell, SWT.OPEN);
  27. dialog.setText("Select a result.txt from bgg1tool");
  28. String[] exfilters = { "*.txt" };
  29. dialog.setFilterExtensions(exfilters);
  30. String resultPath = dialog.open();
  31. if(resultPath != null && !resultPath.isEmpty()) {
  32. Set<Integer> thingIds = parseResultTxtIds(resultPath);
  33. if(thingIds != null && !thingIds.isEmpty()) {
  34. String listName = new Path(resultPath).lastSegment() + " (unsaved)";
  35. eventBroker.send(EventConstants.TOPIC_STATUS, "Fetching entries from BGG...");
  36. List<Thing> things = bggApi.getThings(thingIds);
  37. thingProvider.importList(things, listName);
  38. eventBroker.send(EventConstants.TOPIC_RESULT_CHANGED, listName);
  39. eventBroker.send(EventConstants.TOPIC_STATUS, "Fetched " + Integer.toString(things.size()) + " things.");
  40. }
  41. }
  42. }
  43. private Set<Integer> parseResultTxtIds(String resultPath) {
  44. FileReader input = null;
  45. String myLine = null;
  46. int lineNo = 0; // count overall lines
  47. int errNo = 0; // count unparsable lines
  48. int dupNo = 0; // count duplicates
  49. boolean header = false;
  50. try {
  51. input = new FileReader(resultPath);
  52. BufferedReader bufferedReader = new BufferedReader(input);
  53. Set<Integer> ids = new HashSet<Integer>();
  54. while ( (myLine = bufferedReader.readLine()) != null)
  55. {
  56. lineNo++;
  57. String[] tokens = myLine.split(",");
  58. if(tokens.length > 0) {
  59. if(tokens[0].equals("id")) {
  60. header = true;
  61. continue; // header line
  62. }
  63. try {
  64. boolean exists = !ids.add(Integer.parseInt(tokens[0]));
  65. if(exists) {
  66. System.out.println("DEBUG: duplicate id: " + tokens[0]);
  67. dupNo++;
  68. }
  69. }
  70. catch (NumberFormatException e) {
  71. errNo++;
  72. System.out.println("WARN: Could not parse id from line " + Integer.toString(lineNo)
  73. + ", line starts with '" + tokens[0] + "'");
  74. }
  75. }
  76. }
  77. bufferedReader.close();
  78. if(ids != null) {
  79. MessageBox msgBox = new MessageBox(shell, SWT.ICON_INFORMATION | SWT.OK);
  80. StringBuilder msg = new StringBuilder();
  81. int thingsNo = lineNo - errNo - dupNo;
  82. if(header) thingsNo -= 1;
  83. msg.append("Parsing successful. Found ").append(Integer.toString(thingsNo)).append(" things.");
  84. if(errNo > 0) {
  85. msg.append("\n\rSkipped ").append(Integer.toString(errNo)).append(" line(s).");
  86. }
  87. if(dupNo > 0) {
  88. msg.append("\n\r").append(Integer.toString(dupNo)).append(" duplicate ids");
  89. }
  90. msg.append("\n\r");
  91. msgBox.setMessage(msg.toString());
  92. msgBox.open();
  93. }
  94. System.out.println("TRACE: " + ids);
  95. return ids;
  96. } catch (FileNotFoundException e) {
  97. MessageBox msgBox = new MessageBox(shell, SWT.ICON_ERROR | SWT.OK);
  98. msgBox.setMessage("Could not open file '" + resultPath + "'.");
  99. msgBox.open();
  100. e.printStackTrace();
  101. } catch (IOException e) {
  102. MessageBox msgBox = new MessageBox(shell, SWT.ICON_ERROR | SWT.OK);
  103. String msg = "Error while parsing '" + resultPath + "'.\r\n" +
  104. "It must have comma separated lines starting with an integer number.\r\n";
  105. msgBox.setMessage(msg);
  106. msgBox.open();
  107. e.printStackTrace();
  108. }
  109. return null;
  110. }
  111. @CanExecute
  112. public boolean canExecute() {
  113. return true;
  114. }
  115. }