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

69 行
1.4KB

  1. package xyz.veronie.bgg.ui.helpers;
  2. import java.io.File;
  3. import java.io.IOException;
  4. import java.nio.file.Files;
  5. import java.nio.file.Path;
  6. import java.nio.file.Paths;
  7. import org.eclipse.jface.resource.JFaceResources;
  8. import org.eclipse.jface.resource.LocalResourceManager;
  9. public enum Resources {
  10. INSTANCE;
  11. private Path prefixPath;
  12. private Path tmpDir;
  13. private LocalResourceManager resourceManager;
  14. private Resources() {
  15. try {
  16. if(prefixPath == null) {
  17. tmpDir = Paths.get(Constants.TMP_PREFIX);
  18. if(!Files.exists(tmpDir)) {
  19. Files.createDirectory(tmpDir);
  20. }
  21. } else {
  22. tmpDir = Paths.get(prefixPath + File.separator + Constants.TMP_PREFIX);
  23. if(!Files.exists(tmpDir)) {
  24. Files.createDirectory(tmpDir);
  25. }
  26. }
  27. Path thumbPath = getThumbsDir();
  28. if(!Files.exists(thumbPath)) {
  29. Files.createDirectory(thumbPath);
  30. }
  31. System.out.println("tmp dir: " + tmpDir.toAbsolutePath());
  32. }
  33. catch(IOException ex) {
  34. ex.printStackTrace();
  35. }
  36. resourceManager = new LocalResourceManager(JFaceResources.getResources());
  37. }
  38. public Path getThumbsDir() {
  39. return Paths.get(tmpDir + File.separator + Constants.THUMB_CACHE_DIR);
  40. }
  41. public Path getTmpDir() {
  42. return tmpDir;
  43. }
  44. public void dispose() {
  45. try {
  46. Files.delete(tmpDir);
  47. } catch (IOException e) {
  48. e.printStackTrace();
  49. }
  50. getResourceManager().dispose();
  51. }
  52. public LocalResourceManager getResourceManager() {
  53. return resourceManager;
  54. }
  55. }