/platform/projectModel-impl/src/com/intellij/openapi/projectRoots/impl/RootsAsVirtualFilePointers.java

http://github.com/JetBrains/intellij-community · Java · 204 lines · 157 code · 26 blank · 21 comment · 29 complexity · f6bea137f5e5b3cbfdb8ab74deac8401 MD5 · raw file

  1. // Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
  2. package com.intellij.openapi.projectRoots.impl;
  3. import com.intellij.openapi.Disposable;
  4. import com.intellij.openapi.application.ApplicationManager;
  5. import com.intellij.openapi.diagnostic.Logger;
  6. import com.intellij.openapi.roots.OrderRootType;
  7. import com.intellij.openapi.roots.PersistentOrderRootType;
  8. import com.intellij.openapi.roots.RootProvider;
  9. import com.intellij.openapi.vfs.*;
  10. import com.intellij.openapi.vfs.pointers.VirtualFilePointer;
  11. import com.intellij.openapi.vfs.pointers.VirtualFilePointerContainer;
  12. import com.intellij.openapi.vfs.pointers.VirtualFilePointerListener;
  13. import com.intellij.openapi.vfs.pointers.VirtualFilePointerManager;
  14. import com.intellij.util.ArrayUtilRt;
  15. import gnu.trove.THashMap;
  16. import org.jdom.Element;
  17. import org.jetbrains.annotations.NotNull;
  18. import java.util.List;
  19. import java.util.Map;
  20. public class RootsAsVirtualFilePointers implements RootProvider {
  21. private static final Logger LOG = Logger.getInstance(RootsAsVirtualFilePointers.class);
  22. private final Map<OrderRootType, VirtualFilePointerContainer> myRoots = new THashMap<>();
  23. private final boolean myNoCopyJars;
  24. private final VirtualFilePointerListener myListener;
  25. @NotNull private final Disposable myParent;
  26. RootsAsVirtualFilePointers(boolean noCopyJars, VirtualFilePointerListener listener, @NotNull Disposable parent) {
  27. myNoCopyJars = noCopyJars;
  28. myListener = listener;
  29. myParent = parent;
  30. }
  31. @Override
  32. public VirtualFile @NotNull [] getFiles(@NotNull OrderRootType type) {
  33. VirtualFilePointerContainer container = myRoots.get(type);
  34. return container == null ? VirtualFile.EMPTY_ARRAY : container.getFiles();
  35. }
  36. @Override
  37. public String @NotNull [] getUrls(@NotNull OrderRootType type) {
  38. VirtualFilePointerContainer container = myRoots.get(type);
  39. return container == null ? ArrayUtilRt.EMPTY_STRING_ARRAY : container.getUrls();
  40. }
  41. public void addRoot(@NotNull VirtualFile virtualFile, @NotNull OrderRootType type) {
  42. getOrCreateContainer(type).add(virtualFile);
  43. }
  44. public void addRoot(@NotNull String url, @NotNull OrderRootType type) {
  45. getOrCreateContainer(type).add(url);
  46. }
  47. public void removeAllRoots(@NotNull OrderRootType type) {
  48. VirtualFilePointerContainer container = myRoots.get(type);
  49. if (container != null) {
  50. container.clear();
  51. }
  52. }
  53. public void removeRoot(@NotNull VirtualFile root, @NotNull OrderRootType type) {
  54. removeRoot(root.getUrl(), type);
  55. }
  56. public void removeRoot(@NotNull String url, @NotNull OrderRootType type) {
  57. VirtualFilePointerContainer container = myRoots.get(type);
  58. VirtualFilePointer pointer = container == null ? null : container.findByUrl(url);
  59. if (pointer != null) {
  60. container.remove(pointer);
  61. }
  62. }
  63. public void removeAllRoots() {
  64. for (VirtualFilePointerContainer myRoot : myRoots.values()) {
  65. myRoot.clear();
  66. }
  67. }
  68. public void readExternal(@NotNull Element element) {
  69. for (PersistentOrderRootType type : OrderRootType.getAllPersistentTypes()) {
  70. read(element, type);
  71. }
  72. ApplicationManager.getApplication().runReadAction(() -> myRoots.values().forEach(container -> {
  73. if (myNoCopyJars) {
  74. for (String root : container.getUrls()) {
  75. setNoCopyJars(root);
  76. }
  77. }
  78. }));
  79. }
  80. public void writeExternal(@NotNull Element element) {
  81. for (PersistentOrderRootType type : OrderRootType.getSortedRootTypes()) {
  82. write(element, type);
  83. }
  84. }
  85. void copyRootsFrom(@NotNull RootProvider rootContainer) {
  86. removeAllRoots();
  87. for (OrderRootType rootType : OrderRootType.getAllTypes()) {
  88. final String[] newRoots = rootContainer.getUrls(rootType);
  89. for (String newRoot : newRoots) {
  90. addRoot(newRoot, rootType);
  91. }
  92. }
  93. }
  94. private static void setNoCopyJars(@NotNull String url) {
  95. if (StandardFileSystems.JAR_PROTOCOL.equals(VirtualFileManager.extractProtocol(url))) {
  96. String path = VirtualFileManager.extractPath(url);
  97. final VirtualFileSystem fileSystem = StandardFileSystems.jar();
  98. if (fileSystem instanceof JarCopyingFileSystem) {
  99. ((JarCopyingFileSystem)fileSystem).setNoCopyJarForPath(path);
  100. }
  101. }
  102. }
  103. /**
  104. <roots>
  105. <sourcePath>
  106. <root type="composite">
  107. <root type="simple" url="jar://I:/Java/jdk1.8/src.zip!/" />
  108. <root type="simple" url="jar://I:/Java/jdk1.8/javafx-src.zip!/" />
  109. </root>
  110. </sourcePath>
  111. </roots>
  112. */
  113. private void read(@NotNull Element roots, @NotNull PersistentOrderRootType type) {
  114. String sdkRootName = type.getSdkRootName();
  115. Element child = sdkRootName == null ? null : roots.getChild(sdkRootName);
  116. if (child == null) {
  117. return;
  118. }
  119. List<Element> composites = child.getChildren();
  120. if (composites.size() != 1) {
  121. LOG.error(composites);
  122. }
  123. Element composite = composites.get(0);
  124. if (!composite.getChildren("root").isEmpty()) {
  125. VirtualFilePointerContainer container = getOrCreateContainer(type);
  126. container.readExternal(composite, "root", false);
  127. }
  128. }
  129. /**
  130. <roots>
  131. <sourcePath>
  132. <root type="composite">
  133. <root type="simple" url="jar://I:/Java/jdk1.8/src.zip!/" />
  134. <root type="simple" url="jar://I:/Java/jdk1.8/javafx-src.zip!/" />
  135. </root>
  136. </sourcePath>
  137. </roots>
  138. */
  139. private void write(@NotNull Element roots, @NotNull PersistentOrderRootType type) {
  140. String sdkRootName = type.getSdkRootName();
  141. if (sdkRootName == null) {
  142. return;
  143. }
  144. Element e = new Element(sdkRootName);
  145. roots.addContent(e);
  146. Element composite = new Element("root");
  147. composite.setAttribute("type", "composite");
  148. e.addContent(composite);
  149. VirtualFilePointerContainer container = myRoots.get(type);
  150. if (container != null) {
  151. container.writeExternal(composite, "root", false);
  152. }
  153. for (Element root : composite.getChildren()) {
  154. root.setAttribute("type", "simple");
  155. }
  156. }
  157. @Override
  158. public void addRootSetChangedListener(@NotNull RootSetChangedListener listener) {
  159. throw new RuntimeException();
  160. }
  161. @Override
  162. public void addRootSetChangedListener(@NotNull RootSetChangedListener listener, @NotNull Disposable parentDisposable) {
  163. throw new RuntimeException();
  164. }
  165. @Override
  166. public void removeRootSetChangedListener(@NotNull RootSetChangedListener listener) {
  167. throw new RuntimeException();
  168. }
  169. @NotNull
  170. private VirtualFilePointerContainer getOrCreateContainer(@NotNull OrderRootType rootType) {
  171. VirtualFilePointerContainer roots = myRoots.get(rootType);
  172. if (roots == null) {
  173. roots = VirtualFilePointerManager.getInstance().createContainer(myParent, myListener);
  174. myRoots.put(rootType, roots);
  175. }
  176. return roots;
  177. }
  178. }