summaryrefslogtreecommitdiff
path: root/src/ci_driver.rs
blob: fd6f813386b724117f041e261f54dbb0adc048df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
use rusqlite::Connection;
use std::process::Command;
use std::path::{Path, PathBuf};

mod sql;

use std::time::{SystemTime, UNIX_EPOCH};

fn reserve_artifacts_dir(job: u64) -> std::io::Result<PathBuf> {
    let mut path: PathBuf = "/root/ixi_ci_server/jobs/".into();
    path.push(job.to_string());
    std::fs::create_dir(&path)?;
    Ok(path)
}

fn activate_job(connection: &mut Connection, job: u64, artifacts: Option<String>, state: u8, run_host: Option<String>, commit_id: u64, repo_url: String, repo_name: String) {
    let now = SystemTime::now()
        .duration_since(UNIX_EPOCH)
        .expect("now is before epoch")
        .as_millis();

    let commit_sha: String = connection
        .query_row("select sha from commits where id=?1", [commit_id], |row| row.get(0))
        .expect("can run query");

    let artifacts: PathBuf = match artifacts {
        Some(artifacts) => PathBuf::from(artifacts),
        None => reserve_artifacts_dir(job).expect("can reserve a directory for artifacts")
    };

    if run_host == None {
        eprintln!("need to find a host to run the job");
    }

    eprintln!("cloning {}", repo_url);
    let mut repo_dir = artifacts.clone();
    repo_dir.push("repo");
    eprintln!(" ... into {}", repo_dir.display());

    Command::new("git")
        .arg("clone")
        .arg(repo_url)
        .arg(&format!("{}", repo_dir.display()))
        .status()
        .expect("can clone the repo");

    eprintln!("checking out {}", commit_sha);
    Command::new("git")
        .current_dir(&repo_dir)
        .arg("checkout")
        .arg(commit_sha)
        .status()
        .expect("can checkout hash");

    eprintln!("running {}", repo_name);
    /*
     * find the CI script, figure out how to run it
     */

    connection.execute(
        "update jobs set started_time=?1, run_host=?2, state=1, artifacts_path=?3 where id=?4",
        (now as u64, "test host".to_string(), format!("{}", artifacts.display()), job)
    )
        .expect("can update");
}

fn main() {
    let mut connection = Connection::open("/root/ixi_ci_server/state.db").unwrap();
    connection.execute(sql::CREATE_JOBS_TABLE, ()).unwrap();
    connection.execute(sql::CREATE_COMMITS_TABLE, ()).unwrap();
    connection.execute(sql::CREATE_REPOS_TABLE, ()).unwrap();
    connection.execute(sql::CREATE_REMOTES_TABLE, ()).unwrap();

    loop {
        let mut pending_query = connection.prepare(sql::PENDING_JOBS).unwrap();
        let mut jobs = pending_query.query([]).unwrap();
        let mut to_start = Vec::new();
        while let Some(row) = jobs.next().unwrap() {
            let (id, artifacts, state, run_host, commit_id, repo_url, repo_name): (u64, Option<String>, u8, Option<String>, u64, String, String)= TryInto::try_into(row).unwrap();
            to_start.push((id, artifacts, state, run_host, commit_id, repo_url, repo_name));
        }
        std::mem::drop(jobs);
        std::mem::drop(pending_query);
        if to_start.len() > 0 {
            println!("{} new jobs", to_start.len());

            for job in to_start.into_iter() {
                activate_job(&mut connection, job.0, job.1, job.2, job.3, job.4, job.5, job.6);
            }
        }
        std::thread::sleep(std::time::Duration::from_millis(100));
    }
}