add dependency map and update logic and idk tons of stuff

This commit is contained in:
askiiart 2025-01-23 13:04:10 -06:00
parent 6d46dea47f
commit 857609a63a
Signed by untrusted user who does not match committer: askiiart
GPG key ID: 6A32977DAF31746A

View file

@ -44,19 +44,18 @@ fn main() {
}
},
Commands::Run { config } => {
println!("Config path: {}", config);
run(config);
}
}
}
fn run(config_path: String) {
let config = config_from_file(config_path).unwrap();
let config = config_from_file(config_path).unwrap(); // this reads the file to a [`Config`] thing
let mut jobs: HashMap<String, Job> = HashMap::new();
// arranges all the jobs by their job id (e.g. `packages.librewolf.compilation`)
for (package_name, package) in config.clone().packages {
match package.compilation {
Some(tmp) => {
jobs.insert(format!("packages.{}.compilation", package_name), tmp);
@ -64,29 +63,45 @@ fn run(config_path: String) {
None => {}
}
for (packaging_name, job) in package.packaging {
jobs.insert(format!("packages.{}.{}", package_name, packaging_name), job);
for (job_name, job) in package.packaging {
jobs.insert(
format!("packages.{}.packaging.{}", package_name, job_name),
job,
);
}
}
// TODO: improve efficiency of all this logic
// TODO: Also clean it up and split it into different functions, especially the job sorter
// TODO: figure all this out and stuff and update the comments above this - the dependency map is done though
let dep_map = dependency_map(jobs.clone(), config.clone());
let mut ordered: Vec<String> = Vec::new(); // holds the job ids in order of how they should be run
let mut update_repo_jobs: HashMap<String, Job> = HashMap::new();
for (repo, job) in config.clone().update_repo {
jobs.insert(format!("update-repo.{}", repo), job);
update_repo_jobs.insert(format!("update-repo.{}", repo), job);
}
for (job_name, job) in jobs {
println!("{:#?}", run_job(config.clone(), job_name, job));
}
// TODO: Add logic to add repo update repos when relevant (see dependencies) here - or maybe do that logic earlier?
let failed_packages: Vec<String> = Vec::new();
// runs the jobs (will need to be updated after sorting is added)
for (job_id, job) in jobs {
let job_exit_status = run_job(config.clone(), job_id, job);
println!("{:#?}", job_exit_status);
}
}
fn run_job(conf: Config, job_name: String, job: Job) -> JobExitStatus {
fn run_job(conf: Config, job_id: String, job: Job) -> JobExitStatus {
// limit threads to max_threads in the config
let mut threads = job.threads;
if job.threads > conf.max_threads {
threads = conf.max_threads;
}
let container_name: String = format!("gregory-{}-{}-{}", job_name, job.revision, Uuid::now_v7());
let container_name: String = format!("gregory-{}-{}-{}", job_id, job.revision, Uuid::now_v7());
// do job log setup
let log_path = &format!("{}/logs/{container_name}", conf.data_dir); // can't select fields in the format!() {} thing, have to do this
@ -98,7 +113,7 @@ fn run_job(conf: Config, job_name: String, job: Job) -> JobExitStatus {
));
// write the script
let script_path = &format!("{}/tmp/{container_name}.sh", conf.data_dir); // can't select fields in the format!() {} thing, have to do this
let script_path = &format!("{}/tmp/{container_name}.sh", conf.data_dir);
let script_dir: &Path = Path::new(script_path).parent().unwrap(); // create dir for the script
create_dir_all(script_dir).unwrap();
write(script_path, job.commands.join("\n")).unwrap();
@ -124,9 +139,7 @@ fn run_job(conf: Config, job_name: String, job: Job) -> JobExitStatus {
Some(item) => {
cmd_args.push(format!("-v={}", item));
}
None => {
println!()
}
None => {}
}
}
cmd_args.push(format!(
@ -154,12 +167,10 @@ fn run_job(conf: Config, job_name: String, job: Job) -> JobExitStatus {
}
},
);
// remove tmp dir/clean up
remove_dir_all(script_dir).unwrap();
println!("{:?}", cmd_output);
return JobExitStatus {
container_name: container_name,
duration: cmd_output.clone().duration(),
@ -168,3 +179,153 @@ fn run_job(conf: Config, job_name: String, job: Job) -> JobExitStatus {
log_path: log_path.clone(),
};
}
/// Turns a job name into the relevant data - (category (i.e. "packaging"), package name (i.e. "librewolf"), name (i.e. "compilation"))
fn jod_id_to_metadata(job_id: String) -> (String, String, String) {
let data = job_id
.split(".")
.map(|item| item.to_string())
.collect::<Vec<String>>();
return (data[0].clone(), data[1].clone(), data[2].clone());
}
// TODO: update all this and stuff
fn order_jobs(jobs: HashMap<String, Job>, conf: Config) {
// i feel like this stuff would be good as a recursive function
/*
for (job_name, job) in jobs.clone() {
ordered.push(job_name.clone());
for i in 0..(ordered.len() - 1) {
for item in dependency_map.get(&ordered[i]).unwrap() {
if dependency_map.get(&ordered[i]).unwrap().contains(&job_name) {
// move job_name to the start
let mut new_ordered = vec![ordered.pop().unwrap()];
new_ordered.append(&mut ordered);
ordered = new_ordered;
}
// handle it as a specific job that depends on it, or as a package as a whole
// TODO: add support for only specific jobs in a package depending on another package? should be easy
if item.contains('.') {
}
else {
}
}
}
}
*/
}
/// Returns a hashmap mapping all job ids to what they depend on (recursively)
///
/// Example output using the example toml:
///
/// ```json
/// {
/// "packages.some-librewolf-dependency.compilation": [
/// "packages.some-librewolf-dependency.compilation",
/// ],
/// "packages.librewolf.fedora": [
/// "some-librewolf-dependency",
/// "packages.librewolf.compilation",
/// ],
/// "packages.librewolf.compilation": [
/// "some-librewolf-dependency",
/// "packages.librewolf.compilation",
/// ],
/// "packages.some-librewolf-dependency.fedora": [
/// "packages.some-librewolf-dependency.compilation",
/// ],
/// }
/// ```
fn dependency_map(jobs: HashMap<String, Job>, conf: Config) -> HashMap<String, Vec<String>> {
let mut dep_map: HashMap<String, Vec<String>> = HashMap::new(); // holds job ids and every job they depend on (recursively) - not just specified dependencies, also packaging depending on compilation
for (job_id, _) in jobs.clone() {
let (_, package_name, _) = jod_id_to_metadata(job_id.clone());
for dep_name in conf
.packages
.get(&package_name)
.unwrap()
.dependencies
.clone()
{
let all_deps = recursive_deps_for_package(dep_name.clone(), conf.clone());
for dep in all_deps {
if !dep_map.contains_key(&dep) {
dep_map.insert(dep.clone(), Vec::new());
}
dep_map.get_mut(&dep).unwrap().push(job_id.clone());
}
}
}
// add compilation jobs when relevant
for (package_name, package) in conf.packages {
if package.compilation.is_some() {
if !dep_map.contains_key(&format!("packages.{package_name}.compilation")) {
dep_map.insert(format!("packages.{package_name}.compilation"), Vec::new());
}
for (job_name, _) in package.packaging {
dep_map
.get_mut(&format!("packages.{package_name}.compilation"))
.unwrap()
.push(format!("packages.{package_name}.packaging.{job_name}"));
}
}
}
// deduplicate dependencies
for (_, deps) in dep_map.iter_mut() {
deps.dedup();
}
return dep_map;
}
/// Returns all the dependencies for a package recursively, *not* including the package's own jobs (e.g. compilation)
fn recursive_deps_for_package(package_name: String, conf: Config) -> Vec<String> {
let mut deps: Vec<String> = Vec::new();
for dep_name in conf
.packages
.get(&package_name)
.unwrap()
.dependencies
.clone()
{
// add recursive dependencies
deps.append(&mut recursive_deps_for_package(
dep_name.clone(),
conf.clone(),
));
}
// add its compilation to deps
match conf
.packages
.get(&package_name)
.unwrap()
.compilation
.clone()
{
Some(_) => {
deps.push(format!("packages.{package_name}.compilation"));
}
None => {}
}
// add packaging jobs to deps
for (packaging_job_name, _) in conf.packages.get(&package_name).unwrap().packaging.clone() {
deps.push(format!(
"packages.{package_name}.packaging.{packaging_job_name}"
))
}
return deps;
}