use of com.intellij.openapi.roots.ContentEntry in project intellij-plugins by JetBrains.
the class DartHighlightingTest method unexcludeFolder.
private void unexcludeFolder(final String relPath) {
ApplicationManager.getApplication().runWriteAction(() -> {
final ModifiableRootModel model = ModuleRootManager.getInstance(myModule).getModifiableModel();
try {
final ContentEntry[] contentEntries = model.getContentEntries();
contentEntries[0].removeExcludeFolder(contentEntries[0].getUrl() + "/" + relPath);
model.commit();
} finally {
if (!model.isDisposed()) {
model.dispose();
}
}
});
}
use of com.intellij.openapi.roots.ContentEntry in project intellij-plugins by JetBrains.
the class DartHighlightingTest method excludeFolder.
private void excludeFolder(final String relPath) {
ApplicationManager.getApplication().runWriteAction(() -> {
final ModifiableRootModel model = ModuleRootManager.getInstance(myModule).getModifiableModel();
try {
final ContentEntry[] contentEntries = model.getContentEntries();
contentEntries[0].addExcludeFolder(contentEntries[0].getUrl() + "/" + relPath);
model.commit();
} finally {
if (!model.isDisposed()) {
model.dispose();
}
}
});
}
use of com.intellij.openapi.roots.ContentEntry in project intellij-plugins by JetBrains.
the class FlashUmlTest method doTestImpl.
private DiagramBuilder doTestImpl(@Nullable File projectRoot, String[] files, String[] additionalClasses, Computable<GlobalSearchScope> scopeProvider, @Nullable EnumSet<FlashUmlDependenciesSettingsOption> dependencies, @Nullable String expectedFileNamePrefix) throws Exception {
List<VirtualFile> vFiles = new ArrayList<>(files.length);
for (String file : files) {
vFiles.add(getVirtualFile(BASE_PATH + file));
}
ApplicationManager.getApplication().runWriteAction(() -> {
final ModuleRootManager rootManager = ModuleRootManager.getInstance(myModule);
final ModifiableRootModel rootModel = rootManager.getModifiableModel();
ContentEntry[] contentEntries = rootModel.getContentEntries();
for (ContentEntry contentEntry : contentEntries) {
rootModel.removeContentEntry(contentEntry);
}
rootModel.commit();
});
configureByFiles(projectRoot, VfsUtilCore.toVirtualFileArray(vFiles));
final LinkedHashMap<Integer, String> markers = JSTestUtils.extractPositionMarkers(getProject(), getEditor().getDocument());
assertFalse(markers.isEmpty());
DiagramBuilder builder = null;
int i = 1;
for (Map.Entry<Integer, String> marker : markers.entrySet()) {
getEditor().getCaretModel().moveToOffset(marker.getKey());
i++;
String expectedPrefix = StringUtil.isNotEmpty(marker.getValue()) ? marker.getValue() : expectedFileNamePrefix;
final DataContext dataContext = DataManager.getInstance().getDataContext();
final DiagramProvider[] providers = DiagramProvider.findProviders(dataContext, "unknown");
final FlashUmlProvider provider = ContainerUtil.findInstance(providers, FlashUmlProvider.class);
assertNotNull("Flash UML provider not found", provider);
final String actualOriginFqn = provider.getVfsResolver().getQualifiedName(provider.getElementManager().findInDataContext(dataContext));
final Object actualOrigin = provider.getVfsResolver().resolveElementByFQN(actualOriginFqn, getProject());
builder = UmlGraphBuilderFactory.create(myProject, provider, actualOrigin, null);
Disposer.register(getTestRootDisposable(), builder);
final DiagramDataModel<Object> model = builder.getDataModel();
DiagramConfiguration configuration = DiagramConfiguration.getConfiguration();
String originalCategories = configuration.categories.get(provider.getID());
if (dependencies != null) {
model.setShowDependencies(true);
EnumSet<FlashUmlDependenciesSettingsOption> disabledOptions = EnumSet.complementOf(dependencies);
configuration.categories.put(provider.getID(), StringUtil.join(disabledOptions, option -> option.getDisplayName(), ";"));
} else {
model.setShowDependencies(false);
}
try {
model.refreshDataModel();
// first limit elements by scope
Collection<DiagramNode<Object>> nodesToRemove = new ArrayList<>();
for (DiagramNode<Object> node : model.getNodes()) {
if (node.getIdentifyingElement() instanceof JSClass && !scopeProvider.compute().contains(((JSClass) node.getIdentifyingElement()).getContainingFile().getVirtualFile())) {
nodesToRemove.add(node);
}
}
for (DiagramNode<Object> node : nodesToRemove) {
model.removeNode(node);
}
builder.updateGraph();
// then add explicitly required classes
for (String aClass : additionalClasses) {
JSClass c = JSTestUtils.findClassByQName(aClass, GlobalSearchScope.allScope(myProject));
final DiagramNode node = model.addElement(c);
if (node != null) {
builder.createDraggedNode(node, node.getTooltip(), DiagramUtils.getBestPositionForNode(builder));
builder.updateGraph();
}
}
assertModel(expectedPrefix, provider, actualOriginFqn, model);
} finally {
configuration.categories.put(provider.getID(), originalCategories);
}
}
assert builder != null;
return builder;
}
use of com.intellij.openapi.roots.ContentEntry in project intellij-plugins by JetBrains.
the class CreateFlexUnitTestDialog method createTestSourceFolderAndPackage.
@Nullable
private static PsiDirectory createTestSourceFolderAndPackage(final Module module, final String srcRootPath, final String packageName) {
final String path = FileUtil.toSystemIndependentName(srcRootPath);
VirtualFile contentRoot = null;
for (VirtualFile root : ModuleRootManager.getInstance(module).getContentRoots()) {
if (path.startsWith(root.getPath() + "/")) {
contentRoot = root;
break;
}
}
if (contentRoot != null) {
final ModifiableRootModel model = ModuleRootManager.getInstance(module).getModifiableModel();
try {
final VirtualFile finalContentRoot = contentRoot;
final VirtualFile folder = ApplicationManager.getApplication().runWriteAction((NullableComputable<VirtualFile>) () -> {
try {
final VirtualFile srcRoot = VfsUtil.createDirectoryIfMissing(finalContentRoot, path.substring((finalContentRoot.getPath() + "/").length()));
final VirtualFile folder1 = packageName.isEmpty() ? srcRoot : VfsUtil.createDirectoryIfMissing(srcRoot, packageName.replace('.', '/'));
final ContentEntry contentEntry = MarkRootActionBase.findContentEntry(model, folder1);
if (contentEntry != null) {
contentEntry.addSourceFolder(srcRoot, true);
model.commit();
return folder1;
}
} catch (IOException ignore) {
}
return null;
});
return folder == null ? null : PsiManager.getInstance(module.getProject()).findDirectory(folder);
} finally {
if (model.isWritable()) {
model.dispose();
}
}
}
return null;
}
use of com.intellij.openapi.roots.ContentEntry in project intellij-plugins by JetBrains.
the class CreateFlexUnitTestDialog method suggestTestSourceRootPath.
private static String suggestTestSourceRootPath(final Module module, final VirtualFile file) {
if (file != null) {
final ContentEntry contentEntry = MarkRootActionBase.findContentEntry(ModuleRootManager.getInstance(module), file);
if (contentEntry != null) {
boolean mavenStyle = false;
for (VirtualFile srcRoot : contentEntry.getSourceFolderFiles()) {
if (srcRoot.getUrl().equals(contentEntry.getUrl() + "/src/main/flex")) {
mavenStyle = true;
break;
}
}
final String basePath = VfsUtilCore.urlToPath(contentEntry.getUrl()) + (mavenStyle ? "/src/test/flex" : "/testSrc");
String path = basePath;
int i = 0;
while (LocalFileSystem.getInstance().findFileByPath(path) != null) {
path = basePath + (++i);
}
return path;
}
}
return "";
}
Aggregations