forked from vieter-v/vieter
Start of daemon (not working) [CI SKIP]
parent
132a7a8ba5
commit
ff57d73998
|
@ -10,6 +10,9 @@ pub:
|
||||||
api_key string
|
api_key string
|
||||||
address string
|
address string
|
||||||
base_image string = 'archlinux:base-devel'
|
base_image string = 'archlinux:base-devel'
|
||||||
|
max_concurrent_builds int = 1
|
||||||
|
api_update_frequency int = 60
|
||||||
|
global_schedule string
|
||||||
}
|
}
|
||||||
|
|
||||||
// cmd returns the cli module that handles the cron daemon.
|
// cmd returns the cli module that handles the cron daemon.
|
||||||
|
|
|
@ -2,17 +2,23 @@ module cron
|
||||||
|
|
||||||
import git
|
import git
|
||||||
import time
|
import time
|
||||||
|
import log
|
||||||
struct ScheduledBuild {
|
import util
|
||||||
repo git.GitRepo
|
import cron.daemon
|
||||||
timestamp time.Time
|
|
||||||
}
|
|
||||||
|
|
||||||
fn (r1 ScheduledBuild) < (r2 ScheduledBuild) bool {
|
|
||||||
return r1.timestamp < r2.timestamp
|
|
||||||
}
|
|
||||||
|
|
||||||
// cron starts a cron daemon & starts periodically scheduling builds.
|
// cron starts a cron daemon & starts periodically scheduling builds.
|
||||||
pub fn cron(conf Config) ? {
|
pub fn cron(conf Config) ? {
|
||||||
println('WIP')
|
// Configure logger
|
||||||
|
log_level := log.level_from_tag(conf.log_level) or {
|
||||||
|
util.exit_with_message(1, 'Invalid log level. The allowed values are FATAL, ERROR, WARN, INFO & DEBUG.')
|
||||||
|
}
|
||||||
|
|
||||||
|
mut logger := log.Log{
|
||||||
|
level: log_level
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.set_full_logpath(conf.log_file)
|
||||||
|
logger.log_to_console_too()
|
||||||
|
|
||||||
|
d := daemon.init(conf)
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,54 @@
|
||||||
|
module daemon
|
||||||
|
|
||||||
|
import git
|
||||||
|
import time
|
||||||
|
import log
|
||||||
|
import datatypes
|
||||||
|
|
||||||
|
struct ScheduledBuild {
|
||||||
|
repo git.GitRepo
|
||||||
|
timestamp time.Time
|
||||||
|
}
|
||||||
|
|
||||||
|
fn (r1 ScheduledBuild) < (r2 ScheduledBuild) bool {
|
||||||
|
return r1.timestamp < r2.timestamp
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct Daemon {
|
||||||
|
mut:
|
||||||
|
conf Config
|
||||||
|
// Repos currently loaded from API.
|
||||||
|
repos_map map[string]git.GitRepo
|
||||||
|
// At what point to update the list of repositories.
|
||||||
|
api_update_timestamp time.Time
|
||||||
|
queue datatypes.MinHeap<ScheduledBuild>
|
||||||
|
// Which builds are currently running
|
||||||
|
builds []git.GitRepo
|
||||||
|
// Atomic variables used to detect when a build has finished; length is the
|
||||||
|
// same as builds
|
||||||
|
atomics []u64
|
||||||
|
logger shared log.Log
|
||||||
|
}
|
||||||
|
|
||||||
|
// init
|
||||||
|
pub fn init(conf Config) Daemon {
|
||||||
|
return Daemon{
|
||||||
|
conf: conf
|
||||||
|
atomics: [conf.max_concurrent_builds]u64{}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn (mut d Daemon) run() ? {
|
||||||
|
d.renew_repos() ?
|
||||||
|
d.renew_queue() ?
|
||||||
|
}
|
||||||
|
|
||||||
|
fn (mut d Daemon) renew_repos() ? {
|
||||||
|
mut new_repos := git.get_repos(d.conf.address, d.conf.api_key) ?
|
||||||
|
|
||||||
|
d.repos_map = new_repos.move()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn (mut d Daemon) renew_queue() ? {
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
module daemon
|
||||||
|
|
||||||
|
import log
|
||||||
|
|
||||||
|
// log reate a log message with the given level
|
||||||
|
pub fn (mut d Daemon) log(msg &string, level log.Level) {
|
||||||
|
lock d.logger {
|
||||||
|
d.logger.send_output(msg, level)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// lfatal create a log message with the fatal level
|
||||||
|
pub fn (mut d Daemon) lfatal(msg &string) {
|
||||||
|
d.log(msg, log.Level.fatal)
|
||||||
|
}
|
||||||
|
|
||||||
|
// lerror create a log message with the error level
|
||||||
|
pub fn (mut d Daemon) lerror(msg &string) {
|
||||||
|
d.log(msg, log.Level.error)
|
||||||
|
}
|
||||||
|
|
||||||
|
// lwarn create a log message with the warn level
|
||||||
|
pub fn (mut d Daemon) lwarn(msg &string) {
|
||||||
|
d.log(msg, log.Level.warn)
|
||||||
|
}
|
||||||
|
|
||||||
|
// linfo create a log message with the info level
|
||||||
|
pub fn (mut d Daemon) linfo(msg &string) {
|
||||||
|
d.log(msg, log.Level.info)
|
||||||
|
}
|
||||||
|
|
||||||
|
// ldebug create a log message with the debug level
|
||||||
|
pub fn (mut d Daemon) ldebug(msg &string) {
|
||||||
|
d.log(msg, log.Level.debug)
|
||||||
|
}
|
|
@ -241,7 +241,7 @@ fn parse_expression(exp string) ?CronExpression {
|
||||||
// This for loop allows us to more clearly propagate the error to the user.
|
// This for loop allows us to more clearly propagate the error to the user.
|
||||||
for i, min in mins {
|
for i, min in mins {
|
||||||
part_results << parse_part(parts[i], min, maxs[i]) or {
|
part_results << parse_part(parts[i], min, maxs[i]) or {
|
||||||
return error('An error occurred with part $i: $err.msg')
|
return error('An error occurred with part $i: $err.msg()')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,8 @@ pub mut:
|
||||||
arch []string
|
arch []string
|
||||||
// Which repo the builder should publish packages to
|
// Which repo the builder should publish packages to
|
||||||
repo string
|
repo string
|
||||||
|
// Cron schedule describing how frequently to build the repo.
|
||||||
|
schedule string
|
||||||
}
|
}
|
||||||
|
|
||||||
// patch_from_params patches a GitRepo from a map[string]string, usually
|
// patch_from_params patches a GitRepo from a map[string]string, usually
|
||||||
|
|
Loading…
Reference in New Issue