[AA] split KtSourceModuleImpl on separate files
^KT-60728
This commit is contained in:
committed by
Space Team
parent
cdd3f10e99
commit
e5cd674f33
+31
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||
*/
|
||||
|
||||
package org.jetbrains.kotlin.analysis.test.framework.project.structure
|
||||
|
||||
import com.intellij.openapi.project.Project
|
||||
import com.intellij.psi.search.GlobalSearchScope
|
||||
import org.jetbrains.kotlin.analysis.project.structure.*
|
||||
import org.jetbrains.kotlin.platform.TargetPlatform
|
||||
import org.jetbrains.kotlin.resolve.PlatformDependentAnalyzerServices
|
||||
import org.jetbrains.kotlin.test.getAnalyzerServices
|
||||
import java.nio.file.Path
|
||||
|
||||
class KtJdkModuleImpl(
|
||||
override val sdkName: String,
|
||||
override val platform: TargetPlatform,
|
||||
override val contentScope: GlobalSearchScope,
|
||||
override val project: Project,
|
||||
private val binaryRoots: Collection<Path>,
|
||||
) : KtModuleWithModifiableDependencies(), KtSdkModule {
|
||||
override val analyzerServices: PlatformDependentAnalyzerServices
|
||||
get() = platform.getAnalyzerServices()
|
||||
|
||||
override fun getBinaryRoots(): Collection<Path> = binaryRoots
|
||||
|
||||
override val directRegularDependencies: MutableList<KtModule> = mutableListOf()
|
||||
override val directDependsOnDependencies: MutableList<KtModule> = mutableListOf()
|
||||
override val directFriendDependencies: MutableList<KtModule> = mutableListOf()
|
||||
}
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||
*/
|
||||
|
||||
package org.jetbrains.kotlin.analysis.test.framework.project.structure
|
||||
|
||||
import com.intellij.openapi.project.Project
|
||||
import com.intellij.psi.search.GlobalSearchScope
|
||||
import org.jetbrains.kotlin.analysis.project.structure.*
|
||||
import org.jetbrains.kotlin.platform.TargetPlatform
|
||||
import org.jetbrains.kotlin.resolve.PlatformDependentAnalyzerServices
|
||||
import org.jetbrains.kotlin.test.getAnalyzerServices
|
||||
import java.nio.file.Path
|
||||
|
||||
class KtLibraryModuleImpl(
|
||||
override val libraryName: String,
|
||||
override val platform: TargetPlatform,
|
||||
override val contentScope: GlobalSearchScope,
|
||||
override val project: Project,
|
||||
private val binaryRoots: Collection<Path>,
|
||||
override var librarySources: KtLibrarySourceModule?,
|
||||
) : KtModuleWithModifiableDependencies(), KtLibraryModule {
|
||||
override val analyzerServices: PlatformDependentAnalyzerServices get() = platform.getAnalyzerServices()
|
||||
override fun getBinaryRoots(): Collection<Path> = binaryRoots
|
||||
|
||||
override val directRegularDependencies: MutableList<KtModule> = mutableListOf()
|
||||
override val directDependsOnDependencies: MutableList<KtModule> = mutableListOf()
|
||||
override val directFriendDependencies: MutableList<KtModule> = mutableListOf()
|
||||
}
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||
*/
|
||||
|
||||
package org.jetbrains.kotlin.analysis.test.framework.project.structure
|
||||
|
||||
import com.intellij.openapi.project.Project
|
||||
import com.intellij.psi.search.GlobalSearchScope
|
||||
import org.jetbrains.kotlin.analysis.project.structure.*
|
||||
import org.jetbrains.kotlin.platform.TargetPlatform
|
||||
import org.jetbrains.kotlin.resolve.PlatformDependentAnalyzerServices
|
||||
import org.jetbrains.kotlin.test.getAnalyzerServices
|
||||
|
||||
class KtLibrarySourceModuleImpl(
|
||||
override val libraryName: String,
|
||||
override val platform: TargetPlatform,
|
||||
override val contentScope: GlobalSearchScope,
|
||||
override val project: Project,
|
||||
override val binaryLibrary: KtLibraryModule,
|
||||
) : KtModuleWithModifiableDependencies(), KtLibrarySourceModule {
|
||||
override val analyzerServices: PlatformDependentAnalyzerServices get() = platform.getAnalyzerServices()
|
||||
|
||||
override val directRegularDependencies: MutableList<KtModule> = mutableListOf()
|
||||
override val directDependsOnDependencies: MutableList<KtModule> = mutableListOf()
|
||||
override val directFriendDependencies: MutableList<KtModule> = mutableListOf()
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||
*/
|
||||
|
||||
package org.jetbrains.kotlin.analysis.test.framework.project.structure
|
||||
|
||||
import org.jetbrains.kotlin.analysis.project.structure.*
|
||||
|
||||
abstract class KtModuleWithModifiableDependencies {
|
||||
abstract val directRegularDependencies: MutableList<KtModule>
|
||||
abstract val directDependsOnDependencies: MutableList<KtModule>
|
||||
abstract val directFriendDependencies: MutableList<KtModule>
|
||||
|
||||
/**
|
||||
* When dependencies are modifiable, transitive `dependsOn` dependencies must be recomputed each time as [directDependsOnDependencies]
|
||||
* may have been mutated.
|
||||
*/
|
||||
val transitiveDependsOnDependencies: List<KtModule>
|
||||
get() = computeTransitiveDependsOnDependencies(directDependsOnDependencies)
|
||||
}
|
||||
+1
-62
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||
*/
|
||||
|
||||
@@ -12,20 +12,6 @@ import org.jetbrains.kotlin.config.LanguageVersionSettings
|
||||
import org.jetbrains.kotlin.platform.TargetPlatform
|
||||
import org.jetbrains.kotlin.resolve.PlatformDependentAnalyzerServices
|
||||
import org.jetbrains.kotlin.test.getAnalyzerServices
|
||||
import java.nio.file.Path
|
||||
|
||||
abstract class KtModuleWithModifiableDependencies {
|
||||
abstract val directRegularDependencies: MutableList<KtModule>
|
||||
abstract val directDependsOnDependencies: MutableList<KtModule>
|
||||
abstract val directFriendDependencies: MutableList<KtModule>
|
||||
|
||||
/**
|
||||
* When dependencies are modifiable, transitive `dependsOn` dependencies must be recomputed each time as [directDependsOnDependencies]
|
||||
* may have been mutated.
|
||||
*/
|
||||
val transitiveDependsOnDependencies: List<KtModule>
|
||||
get() = computeTransitiveDependsOnDependencies(directDependsOnDependencies)
|
||||
}
|
||||
|
||||
class KtSourceModuleImpl(
|
||||
override val moduleName: String,
|
||||
@@ -40,50 +26,3 @@ class KtSourceModuleImpl(
|
||||
override val directDependsOnDependencies: MutableList<KtModule> = mutableListOf()
|
||||
override val directFriendDependencies: MutableList<KtModule> = mutableListOf()
|
||||
}
|
||||
|
||||
class KtJdkModuleImpl(
|
||||
override val sdkName: String,
|
||||
override val platform: TargetPlatform,
|
||||
override val contentScope: GlobalSearchScope,
|
||||
override val project: Project,
|
||||
private val binaryRoots: Collection<Path>,
|
||||
) : KtModuleWithModifiableDependencies(), KtSdkModule {
|
||||
override val analyzerServices: PlatformDependentAnalyzerServices
|
||||
get() = platform.getAnalyzerServices()
|
||||
|
||||
override fun getBinaryRoots(): Collection<Path> = binaryRoots
|
||||
|
||||
override val directRegularDependencies: MutableList<KtModule> = mutableListOf()
|
||||
override val directDependsOnDependencies: MutableList<KtModule> = mutableListOf()
|
||||
override val directFriendDependencies: MutableList<KtModule> = mutableListOf()
|
||||
}
|
||||
|
||||
class KtLibraryModuleImpl(
|
||||
override val libraryName: String,
|
||||
override val platform: TargetPlatform,
|
||||
override val contentScope: GlobalSearchScope,
|
||||
override val project: Project,
|
||||
private val binaryRoots: Collection<Path>,
|
||||
override var librarySources: KtLibrarySourceModule?,
|
||||
) : KtModuleWithModifiableDependencies(), KtLibraryModule {
|
||||
override val analyzerServices: PlatformDependentAnalyzerServices get() = platform.getAnalyzerServices()
|
||||
override fun getBinaryRoots(): Collection<Path> = binaryRoots
|
||||
|
||||
override val directRegularDependencies: MutableList<KtModule> = mutableListOf()
|
||||
override val directDependsOnDependencies: MutableList<KtModule> = mutableListOf()
|
||||
override val directFriendDependencies: MutableList<KtModule> = mutableListOf()
|
||||
}
|
||||
|
||||
class KtLibrarySourceModuleImpl(
|
||||
override val libraryName: String,
|
||||
override val platform: TargetPlatform,
|
||||
override val contentScope: GlobalSearchScope,
|
||||
override val project: Project,
|
||||
override val binaryLibrary: KtLibraryModule,
|
||||
) : KtModuleWithModifiableDependencies(), KtLibrarySourceModule {
|
||||
override val analyzerServices: PlatformDependentAnalyzerServices get() = platform.getAnalyzerServices()
|
||||
|
||||
override val directRegularDependencies: MutableList<KtModule> = mutableListOf()
|
||||
override val directDependsOnDependencies: MutableList<KtModule> = mutableListOf()
|
||||
override val directFriendDependencies: MutableList<KtModule> = mutableListOf()
|
||||
}
|
||||
Reference in New Issue
Block a user