/* * Copyright 2000-2014 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.util.xml; import com.intellij.openapi.extensions.ExtensionPointName; import com.intellij.openapi.extensions.Extensions; import com.intellij.openapi.module.Module; import com.intellij.openapi.module.ModuleUtilCore; import com.intellij.psi.PsiFile; import com.intellij.util.containers.ContainerUtil; import com.intellij.util.containers.HashSet; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.Set; public abstract class ModuleContextProvider { public static final ExtensionPointName<ModuleContextProvider> EP_NAME = ExtensionPointName.create("com.intellij.moduleContextProvider"); @NotNull public abstract Module[] getContextModules(@NotNull PsiFile context); public static Module[] getModules(@Nullable PsiFile context) { if (context == null) return Module.EMPTY_ARRAY; final Set<Module> modules = new HashSet<>(); for (ModuleContextProvider moduleContextProvider : Extensions.getExtensions(EP_NAME)) { ContainerUtil.addAllNotNull(modules, moduleContextProvider.getContextModules(context)); } Module module = ModuleUtilCore.findModuleForPsiElement(context); if (module != null) modules.add(module); return modules.toArray(new Module[modules.size()]); } }