toolkit.plugins.packagemanagers.cocoapods-package-manager.41.0.0.source-code.Lockfile.kt Maven / Gradle / Ivy
/*
* Copyright (C) 2024 The ORT Project Authors (see )
*
* 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
*
* https://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.
*
* SPDX-License-Identifier: Apache-2.0
* License-Filename: LICENSE
*/
package org.ossreviewtoolkit.plugins.packagemanagers.cocoapods
import com.charleskorn.kaml.Yaml
import com.charleskorn.kaml.YamlList
import com.charleskorn.kaml.YamlMap
import com.charleskorn.kaml.YamlNode
import com.charleskorn.kaml.YamlScalar
import com.charleskorn.kaml.yamlList
import com.charleskorn.kaml.yamlMap
import com.charleskorn.kaml.yamlScalar
import org.ossreviewtoolkit.plugins.packagemanagers.cocoapods.Lockfile.CheckoutOption
import org.ossreviewtoolkit.plugins.packagemanagers.cocoapods.Lockfile.Dependency
import org.ossreviewtoolkit.plugins.packagemanagers.cocoapods.Lockfile.Pod
internal data class Lockfile(
val pods: List,
val checkoutOptions: Map,
val dependencies: List
) {
data class Pod(
val name: String,
val version: String? = null,
val dependencies: List = emptyList()
)
data class CheckoutOption(
val git: String?,
val commit: String?
)
data class Dependency(
val name: String,
val versionConstraint: String?
)
}
internal fun String.parseLockfile(): Lockfile {
val root = Yaml.default.parseToYamlNode(this).yamlMap
val pods = root.get("PODS")?.items.orEmpty().map { it.toPod() }
val checkoutOptions = root.get("CHECKOUT OPTIONS")?.entries.orEmpty().map {
val name = it.key.content
val node = it.value.yamlMap
val checkoutOption = CheckoutOption(
git = node.get(":git")?.content,
commit = node.get(":commit")?.content
)
name to checkoutOption
}.toMap()
val dependencies = root.get("DEPENDENCIES")?.items.orEmpty().map { node ->
val (name, version) = parseNameAndVersion(node.yamlScalar.content)
Dependency(name, version)
}
return Lockfile(pods, checkoutOptions, dependencies)
}
private fun YamlNode.toPod(): Pod =
when {
this is YamlMap -> {
val (key, value) = yamlMap.entries.entries.single()
val (name, version) = parseNameAndVersion(key.content)
Pod(
name = name,
version = version,
dependencies = value.yamlList.items.map { it.toPod() }
)
}
else -> {
val (name, version) = parseNameAndVersion(yamlScalar.content)
Pod(name, version)
}
}
private fun parseNameAndVersion(entry: String): Pair {
val info = entry.split(' ', limit = 2)
val name = info[0]
// A version entry could look something like "(6.3.0)", "(= 2021.06.28.00-v2)", "(~> 8.15.0)", etc. Also see
// https://guides.cocoapods.org/syntax/podfile.html#pod.
val version = info.getOrNull(1)?.removeSurrounding("(", ")")
return name to version
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy