All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kotlin.script.experimental.dependencies.maven.impl.ArtifactRequestBuilder.kt Maven / Gradle / Ivy

/*
 * Copyright 2010-2022 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 kotlin.script.experimental.dependencies.maven.impl

import org.eclipse.aether.artifact.Artifact
import org.eclipse.aether.graph.DependencyNode
import org.eclipse.aether.graph.DependencyVisitor
import org.eclipse.aether.resolution.ArtifactRequest
import org.eclipse.aether.util.artifact.DelegatingArtifact

internal class ArtifactRequestBuilder(
    private val classifier: String?,
    private val extension: String?,
) : DependencyVisitor {
    private val result: MutableList = ArrayList()

    override fun visitEnter(node: DependencyNode): Boolean {
        val dep = node.dependency
        if (dep != null) {
            val artifact = dep.artifact
            result.add(
                ArtifactRequest(
                    ArtifactWithAnotherKind(artifact, classifier, extension),
                    node.repositories,
                    node.requestContext
                )
            )
        }
        return true
    }

    override fun visitLeave(node: DependencyNode): Boolean {
        return true
    }

    val requests: List
        get() = result
}

private class ArtifactWithAnotherKind(
    artifact: Artifact,
    private val myClassifier: String?,
    private val myExtension: String?,
) : DelegatingArtifact(artifact) {
    override fun newInstance(artifact: Artifact): DelegatingArtifact {
        return ArtifactWithAnotherKind(artifact, myClassifier, myExtension)
    }

    override fun getClassifier(): String {
        return myClassifier ?: super.getClassifier()
    }

    override fun getExtension(): String {
        return myExtension ?: super.getExtension()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy