allow multiple pkgs to be built from single pkgbuild and add all to repo
This commit is contained in:
parent
d248cc3132
commit
384cf1b1e0
@ -1,16 +1,16 @@
|
|||||||
use anyhow::anyhow;
|
use anyhow::anyhow;
|
||||||
use std::fs;
|
use std::fs;
|
||||||
use std::process::Stdio;
|
use std::process::Stdio;
|
||||||
use std::time::SystemTime;
|
|
||||||
use tokio::io::{AsyncBufReadExt, BufReader, Lines};
|
use tokio::io::{AsyncBufReadExt, BufReader, Lines};
|
||||||
use tokio::sync::broadcast::Sender;
|
use tokio::sync::broadcast::Sender;
|
||||||
|
|
||||||
|
// todo consider removing pkg_vers from attribute list
|
||||||
pub async fn build_pkgbuild(
|
pub async fn build_pkgbuild(
|
||||||
folder_path: String,
|
folder_path: String,
|
||||||
pkg_vers: &str,
|
pkg_vers: &str,
|
||||||
pkg_name: &str,
|
pkg_name: &str,
|
||||||
tx: Sender<String>,
|
tx: Sender<String>,
|
||||||
) -> anyhow::Result<String> {
|
) -> anyhow::Result<Vec<String>> {
|
||||||
// update pacman cache
|
// update pacman cache
|
||||||
let mut child = tokio::process::Command::new("pacman")
|
let mut child = tokio::process::Command::new("pacman")
|
||||||
.args(["-Sy"])
|
.args(["-Sy"])
|
||||||
@ -71,7 +71,7 @@ pub async fn build_pkgbuild(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
locate_built_package(pkg_name.to_string(), pkg_vers.to_string(), folder_path)
|
locate_built_packages(pkg_name.to_string(), folder_path)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn spawn_broadcast_sender<R: tokio::io::AsyncRead + Unpin + Send + 'static>(
|
fn spawn_broadcast_sender<R: tokio::io::AsyncRead + Unpin + Send + 'static>(
|
||||||
@ -86,58 +86,35 @@ fn spawn_broadcast_sender<R: tokio::io::AsyncRead + Unpin + Send + 'static>(
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
fn locate_built_package(
|
/// a pkgbuild might build multiple packages
|
||||||
pkg_name: String,
|
/// todo handle case later to pick only relevant one
|
||||||
pkg_vers: String,
|
fn locate_built_packages(pkg_name: String, folder_path: String) -> anyhow::Result<Vec<String>> {
|
||||||
folder_path: String,
|
let mut pkg_names: Vec<String> = vec![];
|
||||||
) -> anyhow::Result<String> {
|
|
||||||
// check if expected built dir exists
|
|
||||||
let built_name = build_expected_repo_packagename(pkg_name.to_string(), pkg_vers.to_string());
|
|
||||||
if fs::metadata(format!("{folder_path}/{built_name}")).is_ok() {
|
|
||||||
println!("Built {built_name}");
|
|
||||||
return Ok(built_name.to_string());
|
|
||||||
}
|
|
||||||
|
|
||||||
// the naming might not always contain the build version
|
|
||||||
// eg. mesa-git --> match pkgname and extension if multiple return latest
|
|
||||||
if let Ok(paths) = fs::read_dir(folder_path) {
|
if let Ok(paths) = fs::read_dir(folder_path) {
|
||||||
let mut candidate_filename: Option<String> = None;
|
|
||||||
let mut candidate_timestamp = SystemTime::UNIX_EPOCH;
|
|
||||||
|
|
||||||
for path in paths {
|
for path in paths {
|
||||||
if let Ok(path) = path {
|
if let Ok(path) = path {
|
||||||
let path = path.path();
|
let path = path.path();
|
||||||
if let Some(file_name) = path.file_name() {
|
if let Some(file_name) = path.file_name() {
|
||||||
let file_name = file_name.to_str().unwrap();
|
let file_name = file_name.to_str().unwrap();
|
||||||
|
|
||||||
if file_name.ends_with(".pkg.tar.zst")
|
if file_name.ends_with(".pkg.tar.zst") {
|
||||||
&& file_name.starts_with(pkg_name.as_str())
|
pkg_names.push(file_name.to_string());
|
||||||
{
|
|
||||||
if let Ok(metadata) = path.metadata() {
|
|
||||||
if let Ok(modified_time) = metadata.modified() {
|
|
||||||
// Update the candidate filename and timestamp if the current file is newer
|
|
||||||
if modified_time > candidate_timestamp {
|
|
||||||
candidate_filename = Some(file_name.to_string());
|
|
||||||
candidate_timestamp = modified_time;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if candidate_filename.is_some() {
|
return if pkg_names.is_empty() {
|
||||||
println!("Built {}", candidate_filename.clone().unwrap());
|
|
||||||
return Ok(candidate_filename.unwrap());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Err(anyhow!("Built package not found"))
|
Err(anyhow!("Built package not found"))
|
||||||
|
} else {
|
||||||
|
// expect at least one of the packages to start with the package name
|
||||||
|
if !pkg_names.iter().any(|x| x.starts_with(&pkg_name)) {
|
||||||
|
return Err(anyhow!(
|
||||||
|
"None of the built packages starts with the expected name"
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
Ok(pkg_names)
|
||||||
/// don't trust this pkg name from existing
|
};
|
||||||
/// pkgbuild might build different version name
|
|
||||||
pub fn build_expected_repo_packagename(pkg_name: String, pkg_vers: String) -> String {
|
|
||||||
format!("{pkg_name}-{pkg_vers}-x86_64.pkg.tar.zst")
|
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,7 @@ pub async fn add_pkg(
|
|||||||
tx: Sender<String>,
|
tx: Sender<String>,
|
||||||
) -> anyhow::Result<String> {
|
) -> anyhow::Result<String> {
|
||||||
let fname = download_pkgbuild(format!("{}{}", BASEURL, url).as_str(), "./builds").await?;
|
let fname = download_pkgbuild(format!("{}{}", BASEURL, url).as_str(), "./builds").await?;
|
||||||
let pkg_file_name = build_pkgbuild(
|
let pkg_file_names = build_pkgbuild(
|
||||||
format!("./builds/{fname}"),
|
format!("./builds/{fname}"),
|
||||||
version.as_str(),
|
version.as_str(),
|
||||||
name.as_str(),
|
name.as_str(),
|
||||||
@ -27,6 +27,11 @@ pub async fn add_pkg(
|
|||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
|
// todo for now we just return first one if there are multiple
|
||||||
|
// unwrap is valid because there must be at least one element -> check inside locate_built_packages
|
||||||
|
let firstpkgname: String = pkg_file_names.first().unwrap().to_string();
|
||||||
|
|
||||||
|
for pkg_file_name in pkg_file_names {
|
||||||
// todo force overwrite if file already exists
|
// todo force overwrite if file already exists
|
||||||
fs::copy(
|
fs::copy(
|
||||||
format!("./builds/{fname}/{pkg_file_name}"),
|
format!("./builds/{fname}/{pkg_file_name}"),
|
||||||
@ -35,8 +40,9 @@ pub async fn add_pkg(
|
|||||||
fs::remove_file(format!("./builds/{fname}/{pkg_file_name}"))?;
|
fs::remove_file(format!("./builds/{fname}/{pkg_file_name}"))?;
|
||||||
|
|
||||||
repo_add(pkg_file_name.clone())?;
|
repo_add(pkg_file_name.clone())?;
|
||||||
|
}
|
||||||
|
|
||||||
Ok(pkg_file_name)
|
Ok(firstpkgname)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn remove_pkg(db: &DatabaseConnection, pkg_id: i32) -> anyhow::Result<()> {
|
pub async fn remove_pkg(db: &DatabaseConnection, pkg_id: i32) -> anyhow::Result<()> {
|
||||||
|
Loading…
Reference in New Issue
Block a user