2022-01-19 18:54:33 +01:00
|
|
|
module package
|
2022-01-13 19:20:14 +01:00
|
|
|
|
2022-01-14 22:20:58 +01:00
|
|
|
import os
|
2022-01-18 21:41:09 +01:00
|
|
|
import util
|
2022-01-13 19:20:14 +01:00
|
|
|
|
2022-01-14 22:20:58 +01:00
|
|
|
// Represents a read archive
|
2022-01-13 21:47:14 +01:00
|
|
|
struct Pkg {
|
|
|
|
pub:
|
2022-01-19 17:22:36 +01:00
|
|
|
path string [required]
|
2022-01-13 21:47:14 +01:00
|
|
|
info PkgInfo [required]
|
|
|
|
files []string [required]
|
|
|
|
}
|
|
|
|
|
2022-01-14 22:20:58 +01:00
|
|
|
// Represents the contents of a .PKGINFO file
|
2022-01-13 19:20:14 +01:00
|
|
|
struct PkgInfo {
|
2022-01-19 18:54:33 +01:00
|
|
|
pub mut:
|
2022-01-13 19:20:14 +01:00
|
|
|
// Single values
|
2022-01-13 21:47:14 +01:00
|
|
|
name string
|
|
|
|
base string
|
|
|
|
version string
|
2022-01-13 19:20:14 +01:00
|
|
|
description string
|
2022-01-13 21:47:14 +01:00
|
|
|
size i64
|
|
|
|
csize i64
|
|
|
|
url string
|
|
|
|
arch string
|
|
|
|
build_date i64
|
|
|
|
packager string
|
2022-01-19 17:22:36 +01:00
|
|
|
// md5sum string
|
|
|
|
// sha256sum string
|
|
|
|
pgpsig string
|
|
|
|
pgpsigsize i64
|
2022-01-13 19:20:14 +01:00
|
|
|
// Array values
|
2022-01-13 21:47:14 +01:00
|
|
|
groups []string
|
|
|
|
licenses []string
|
|
|
|
replaces []string
|
|
|
|
depends []string
|
|
|
|
conflicts []string
|
|
|
|
provides []string
|
|
|
|
optdepends []string
|
|
|
|
makedepends []string
|
2022-01-13 19:20:14 +01:00
|
|
|
checkdepends []string
|
|
|
|
}
|
|
|
|
|
2022-01-19 21:24:46 +01:00
|
|
|
// checksum calculates the md5 & sha256 hash of the package
|
2022-01-19 17:22:36 +01:00
|
|
|
pub fn (p &Pkg) checksum() ?(string, string) {
|
|
|
|
return util.hash_file(p.path)
|
|
|
|
}
|
|
|
|
|
2022-01-14 22:46:04 +01:00
|
|
|
// parse_pkg_info_string parses a PkgInfo object from a string
|
2022-01-13 21:47:14 +01:00
|
|
|
fn parse_pkg_info_string(pkg_info_str &string) ?PkgInfo {
|
2022-01-13 19:20:14 +01:00
|
|
|
mut pkg_info := PkgInfo{}
|
|
|
|
|
|
|
|
// Iterate over the entire string
|
|
|
|
for line in pkg_info_str.split_into_lines() {
|
|
|
|
// Skip any comment lines
|
|
|
|
if line.starts_with('#') {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
parts := line.split_nth('=', 2)
|
|
|
|
|
|
|
|
if parts.len < 2 {
|
|
|
|
return error('Invalid line detected.')
|
|
|
|
}
|
|
|
|
|
|
|
|
value := parts[1].trim_space()
|
|
|
|
key := parts[0].trim_space()
|
|
|
|
|
|
|
|
match key {
|
|
|
|
// Single values
|
|
|
|
'pkgname' { pkg_info.name = value }
|
|
|
|
'pkgbase' { pkg_info.base = value }
|
|
|
|
'pkgver' { pkg_info.version = value }
|
|
|
|
'pkgdesc' { pkg_info.description = value }
|
2022-01-18 20:27:00 +01:00
|
|
|
'csize' { continue }
|
2022-01-13 19:20:14 +01:00
|
|
|
'size' { pkg_info.size = value.int() }
|
|
|
|
'url' { pkg_info.url = value }
|
|
|
|
'arch' { pkg_info.arch = value }
|
|
|
|
'builddate' { pkg_info.build_date = value.int() }
|
|
|
|
'packager' { pkg_info.packager = value }
|
2022-01-18 21:41:09 +01:00
|
|
|
'md5sum' { continue }
|
|
|
|
'sha256sum' { continue }
|
2022-01-13 19:20:14 +01:00
|
|
|
'pgpsig' { pkg_info.pgpsig = value }
|
|
|
|
'pgpsigsize' { pkg_info.pgpsigsize = value.int() }
|
|
|
|
// Array values
|
|
|
|
'group' { pkg_info.groups << value }
|
|
|
|
'license' { pkg_info.licenses << value }
|
|
|
|
'replaces' { pkg_info.replaces << value }
|
|
|
|
'depend' { pkg_info.depends << value }
|
|
|
|
'conflict' { pkg_info.conflicts << value }
|
|
|
|
'provides' { pkg_info.provides << value }
|
|
|
|
'optdepend' { pkg_info.optdepends << value }
|
|
|
|
'makedepend' { pkg_info.makedepends << value }
|
|
|
|
'checkdepend' { pkg_info.checkdepends << value }
|
|
|
|
else { return error("Invalid key '$key'.") }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return pkg_info
|
|
|
|
}
|
2022-01-13 21:47:14 +01:00
|
|
|
|
2022-01-14 22:46:04 +01:00
|
|
|
// read_pkg extracts the file list & .PKGINFO contents from an archive
|
2022-01-14 22:20:58 +01:00
|
|
|
// NOTE: this command currently only supports zstd-compressed tarballs
|
2022-01-13 21:47:14 +01:00
|
|
|
pub fn read_pkg(pkg_path string) ?Pkg {
|
2022-01-14 22:20:58 +01:00
|
|
|
if !os.is_file(pkg_path) {
|
|
|
|
return error("'$pkg_path' doesn't exist or isn't a file.")
|
|
|
|
}
|
|
|
|
|
|
|
|
a := C.archive_read_new()
|
|
|
|
entry := C.archive_entry_new()
|
|
|
|
mut r := 0
|
|
|
|
|
|
|
|
// Sinds 2020, all newly built Arch packages use zstd
|
|
|
|
C.archive_read_support_filter_zstd(a)
|
|
|
|
// The content should always be a tarball
|
|
|
|
C.archive_read_support_format_tar(a)
|
|
|
|
|
|
|
|
// TODO find out where does this 10240 come from
|
|
|
|
r = C.archive_read_open_filename(a, &char(pkg_path.str), 10240)
|
|
|
|
defer {
|
|
|
|
C.archive_read_free(a)
|
|
|
|
}
|
|
|
|
|
|
|
|
if r != C.ARCHIVE_OK {
|
|
|
|
return error('Failed to open package.')
|
|
|
|
}
|
|
|
|
|
|
|
|
mut buf := voidptr(0)
|
|
|
|
mut files := []string{}
|
2022-01-14 22:46:04 +01:00
|
|
|
|
2022-01-14 22:20:58 +01:00
|
|
|
for C.archive_read_next_header(a, &entry) == C.ARCHIVE_OK {
|
|
|
|
pathname := C.archive_entry_pathname(entry)
|
|
|
|
|
|
|
|
ignored_names := [c'.BUILDINFO', c'.INSTALL', c'.MTREE', c'.PKGINFO', c'.CHANGELOG']
|
|
|
|
if ignored_names.all(C.strcmp(it, pathname) != 0) {
|
|
|
|
unsafe {
|
|
|
|
files << cstring_to_vstring(pathname)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if C.strcmp(pathname, c'.PKGINFO') == 0 {
|
|
|
|
size := C.archive_entry_size(entry)
|
|
|
|
|
|
|
|
// TODO can this unsafe block be avoided?
|
|
|
|
buf = unsafe { malloc(size) }
|
|
|
|
C.archive_read_data(a, voidptr(buf), size)
|
|
|
|
} else {
|
|
|
|
C.archive_read_data_skip(a)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-18 20:27:00 +01:00
|
|
|
mut pkg_info := parse_pkg_info_string(unsafe { cstring_to_vstring(&char(buf)) }) ?
|
2022-01-18 21:41:09 +01:00
|
|
|
|
2022-01-18 20:27:00 +01:00
|
|
|
pkg_info.csize = i64(os.file_size(pkg_path))
|
2022-01-13 21:47:14 +01:00
|
|
|
|
|
|
|
return Pkg{
|
2022-01-19 17:22:36 +01:00
|
|
|
path: pkg_path
|
2022-01-13 21:47:14 +01:00
|
|
|
info: pkg_info
|
|
|
|
files: files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-18 20:27:00 +01:00
|
|
|
fn format_entry(key string, value string) string {
|
|
|
|
return '\n%$key%\n$value\n'
|
|
|
|
}
|
|
|
|
|
2022-01-19 21:24:46 +01:00
|
|
|
// filename returns the correct filename of the package file
|
2022-01-19 18:54:33 +01:00
|
|
|
pub fn (pkg &Pkg) filename() string {
|
|
|
|
p := pkg.info
|
|
|
|
|
|
|
|
return '$p.name-$p.version-${p.arch}.pkg.tar.zst'
|
|
|
|
}
|
|
|
|
|
2022-01-14 22:46:04 +01:00
|
|
|
// to_desc returns a desc file valid string representation
|
2022-01-18 20:27:00 +01:00
|
|
|
// TODO calculate md5 & sha256 instead of believing the file
|
2022-01-19 17:22:36 +01:00
|
|
|
pub fn (pkg &Pkg) to_desc() string {
|
|
|
|
p := pkg.info
|
|
|
|
|
2022-01-18 20:27:00 +01:00
|
|
|
// filename
|
2022-01-19 18:54:33 +01:00
|
|
|
mut desc := '%FILENAME%\n$pkg.filename()\n'
|
2022-01-18 20:27:00 +01:00
|
|
|
|
|
|
|
desc += format_entry('NAME', p.name)
|
|
|
|
desc += format_entry('BASE', p.base)
|
|
|
|
desc += format_entry('VERSION', p.version)
|
|
|
|
|
|
|
|
if p.description.len > 0 {
|
|
|
|
desc += format_entry('DESC', p.description)
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.groups.len > 0 {
|
|
|
|
desc += format_entry('GROUPS', p.groups.join_lines())
|
|
|
|
}
|
|
|
|
|
|
|
|
desc += format_entry('CSIZE', p.csize.str())
|
|
|
|
desc += format_entry('ISIZE', p.size.str())
|
|
|
|
|
2022-01-19 21:30:56 +01:00
|
|
|
md5sum, _ := pkg.checksum() or { '', '' }
|
2022-01-19 17:22:36 +01:00
|
|
|
|
|
|
|
desc += format_entry('MD5SUM', md5sum)
|
|
|
|
|
|
|
|
// TODO add this
|
|
|
|
// desc += format_entry('SHA256SUM', sha256sum)
|
2022-01-18 20:27:00 +01:00
|
|
|
|
|
|
|
// TODO add pgpsig stuff
|
|
|
|
|
|
|
|
if p.url.len > 0 {
|
|
|
|
desc += format_entry('URL', p.url)
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.licenses.len > 0 {
|
|
|
|
desc += format_entry('LICENSE', p.licenses.join_lines())
|
|
|
|
}
|
|
|
|
|
|
|
|
desc += format_entry('ARCH', p.arch)
|
|
|
|
desc += format_entry('BUILDDATE', p.build_date.str())
|
|
|
|
desc += format_entry('PACKAGER', p.packager)
|
|
|
|
|
|
|
|
if p.replaces.len > 0 {
|
|
|
|
desc += format_entry('REPLACES', p.replaces.join_lines())
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.conflicts.len > 0 {
|
|
|
|
desc += format_entry('CONFLICTS', p.conflicts.join_lines())
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.provides.len > 0 {
|
|
|
|
desc += format_entry('PROVIDES', p.provides.join_lines())
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.depends.len > 0 {
|
|
|
|
desc += format_entry('DEPENDS', p.depends.join_lines())
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.optdepends.len > 0 {
|
|
|
|
desc += format_entry('OPTDEPENDS', p.optdepends.join_lines())
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.makedepends.len > 0 {
|
|
|
|
desc += format_entry('MAKEDEPENDS', p.makedepends.join_lines())
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.checkdepends.len > 0 {
|
|
|
|
desc += format_entry('CHECKDEPENDS', p.checkdepends.join_lines())
|
|
|
|
}
|
2022-01-13 21:47:14 +01:00
|
|
|
|
2022-01-18 20:27:00 +01:00
|
|
|
return '$desc\n'
|
2022-01-13 21:47:14 +01:00
|
|
|
}
|
2022-01-19 18:54:33 +01:00
|
|
|
|
|
|
|
// to_files returns a files file valid string representation
|
|
|
|
pub fn (pkg &Pkg) to_files() string {
|
|
|
|
return '%FILES%\n$pkg.files.join_lines()\n'
|
|
|
|
}
|