--!A cross-platform build utility based on Lua -- -- 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. -- -- Copyright (C) 2015-present, Xmake Open Source Community. -- -- @author ruki -- @file install_package.lua -- -- imports import("core.base.option") import("core.base.global") import("core.base.json") import("core.base.semver") import("lib.detect.find_tool") import("package.manager.kotlin-native.configurations") import("net.http") import("core.base.semver") -- select package version -- e.g. https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-serialization-json-iosarm64/maven-metadata.xml function _select_package_version(name, opt) local installdir = opt.installdir local require_version = opt.require_version local metadata_file = path.join(installdir, "maven-metadata.xml") for _, repository in ipairs(opt.repositories) do local metadata_url = ("%s/%s-%s/maven-metadata.xml"):format(repository, (name:gsub("%.", "/"):gsub(":", "/")), opt.triplet) local ok = try { function() http.download(metadata_url, metadata_file, { insecure = global.get("insecure-ssl")}) return true end } if ok and os.isfile(metadata_file) then local metadata = io.readfile(metadata_file) local versions = {} for _, line in ipairs(metadata:split("\n")) do local v = line:match("(.*)") if v then table.insert(versions, v) end end local version = semver.select(require_version, versions) if version then return version, repository end end end end -- install package -- e.g. https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-serialization-json-iosarm64/1.8.0/kotlinx-serialization-json-iosarm64-1.8.0.klib function _install_package(name, opt) local installdir = opt.installdir local basename = name:split(":")[2] .. "-" .. opt.triplet local library_file = path.join(installdir, "klib", "platform", opt.plat .. "_" .. opt.arch, basename .. ".klib") local library_url = ("%s/%s-%s/%s/%s-%s.klib"):format(opt.repository, (name:gsub("%.", "/"):gsub(":", "/")), opt.triplet, opt.version, basename, opt.version) http.download(library_url, library_file, { insecure = global.get("insecure-ssl")}) local manifest_file = path.join(installdir, "installed_manifest.txt") io.save(manifest_file, { links = library_file, libfiles = library_file, version = opt.version}) end -- install package -- -- @param name the package name, e.g. org.jetbrains.kotlinx:kotlinx-serialization-json 1.8.0 -- @param opt the options, e.g. {verbose = true} -- function main(name, opt) opt = opt or {} local configs = opt.configs or {} local repositories = configs.repositories -- init triplet local arch = opt.arch local plat = opt.plat plat = configurations.plat(plat) arch = configurations.arch(arch) local triplet = configurations.triplet(plat, arch) -- select version local installdir = assert(opt.installdir, "installdir not found!") local require_version = opt.require_version local version, repository = _select_package_version(name, { triplet = triplet, installdir = installdir, require_version = require_version, repositories = repositories}) assert(version and repository, "package(%s): %s not found for %s!", name, require_version, triplet) -- do install _install_package(name, { plat = plat, arch = arch, triplet = triplet, installdir = installdir, version = version, repository = repository}) end