cron: basic working loop; removed -skip-unused
ci/woodpecker/push/arch unknown status
Details
ci/woodpecker/push/docker unknown status
Details
ci/woodpecker/push/build_experimental Pipeline failed
Details
ci/woodpecker/push/lint Pipeline failed
Details
ci/woodpecker/push/build Pipeline failed
Details
ci/woodpecker/push/test Pipeline failed
Details
ci/woodpecker/push/arch unknown status
Details
ci/woodpecker/push/docker unknown status
Details
ci/woodpecker/push/build_experimental Pipeline failed
Details
ci/woodpecker/push/lint Pipeline failed
Details
ci/woodpecker/push/build Pipeline failed
Details
ci/woodpecker/push/test Pipeline failed
Details
parent
05efe15dd9
commit
15d21e3f1e
2
Makefile
2
Makefile
|
@ -3,7 +3,7 @@ SRC_DIR := src
|
||||||
SOURCES != find '$(SRC_DIR)' -iname '*.v'
|
SOURCES != find '$(SRC_DIR)' -iname '*.v'
|
||||||
|
|
||||||
V_PATH ?= v
|
V_PATH ?= v
|
||||||
V := $(V_PATH) -showcc -gc boehm -skip-unused
|
V := $(V_PATH) -showcc -gc boehm
|
||||||
|
|
||||||
all: vieter
|
all: vieter
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,25 @@
|
||||||
module daemon
|
module daemon
|
||||||
|
|
||||||
import git
|
|
||||||
import time
|
import time
|
||||||
import sync.stdatomic
|
import sync.stdatomic
|
||||||
|
|
||||||
|
const build_empty = 0
|
||||||
|
const build_running = 1
|
||||||
|
const build_done = 2
|
||||||
|
|
||||||
|
// reschedule_builds looks for any builds with status code 2 & re-adds them to
|
||||||
|
// the queue.
|
||||||
|
fn (mut d Daemon) reschedule_builds() ? {
|
||||||
|
for i in 0..d.atomics.len {
|
||||||
|
if stdatomic.load_u64(&d.atomics[i]) == build_done {
|
||||||
|
stdatomic.store_u64(&d.atomics[i], build_empty)
|
||||||
|
sb := d.builds[i]
|
||||||
|
|
||||||
|
d.schedule_build(sb.repo_id, sb.repo) ?
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// update_builds starts as many builds as possible.
|
// update_builds starts as many builds as possible.
|
||||||
fn (mut d Daemon) update_builds() ? {
|
fn (mut d Daemon) update_builds() ? {
|
||||||
now := time.now()
|
now := time.now()
|
||||||
|
@ -13,7 +29,7 @@ fn (mut d Daemon) update_builds() ? {
|
||||||
sb := d.queue.pop() ?
|
sb := d.queue.pop() ?
|
||||||
|
|
||||||
// If this build couldn't be scheduled, no more will be possible.
|
// If this build couldn't be scheduled, no more will be possible.
|
||||||
if !d.start_build(sb.repo_id)? {
|
if !d.start_build(sb)? {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -22,13 +38,14 @@ fn (mut d Daemon) update_builds() ? {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// start_build starts a build for the given repo_id.
|
// start_build starts a build for the given ScheduledBuild object.
|
||||||
fn (mut d Daemon) start_build(repo_id string) ?bool {
|
fn (mut d Daemon) start_build(sb ScheduledBuild) ?bool {
|
||||||
for i in 0..d.atomics.len {
|
for i in 0..d.atomics.len {
|
||||||
if stdatomic.load_u64(&d.atomics[i]) == 0 {
|
if stdatomic.load_u64(&d.atomics[i]) == build_empty {
|
||||||
stdatomic.store_u64(&d.atomics[i], 1)
|
stdatomic.store_u64(&d.atomics[i], build_running)
|
||||||
|
d.builds[i] = sb
|
||||||
|
|
||||||
go d.run_build(i, d.repos_map[repo_id])
|
go d.run_build(i, sb)
|
||||||
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
@ -37,9 +54,10 @@ fn (mut d Daemon) start_build(repo_id string) ?bool {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
fn (mut d Daemon) run_build(build_index int, repo git.GitRepo) ? {
|
// run_build actually starts the build process for a given repo.
|
||||||
|
fn (mut d Daemon) run_build(build_index int, sb ScheduledBuild) ? {
|
||||||
time.sleep(10 * time.second)
|
time.sleep(10 * time.second)
|
||||||
|
|
||||||
stdatomic.store_u64(&d.atomics[build_index], 2)
|
stdatomic.store_u64(&d.atomics[build_index], build_done)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ mut:
|
||||||
api_update_timestamp time.Time
|
api_update_timestamp time.Time
|
||||||
queue MinHeap<ScheduledBuild>
|
queue MinHeap<ScheduledBuild>
|
||||||
// Which builds are currently running
|
// Which builds are currently running
|
||||||
builds []git.GitRepo
|
builds []ScheduledBuild
|
||||||
// Atomic variables used to detect when a build has finished; length is the
|
// Atomic variables used to detect when a build has finished; length is the
|
||||||
// same as builds
|
// same as builds
|
||||||
atomics []u64
|
atomics []u64
|
||||||
|
@ -47,7 +47,7 @@ pub fn init_daemon(logger log.Log, address string, api_key string, base_image st
|
||||||
global_schedule: global_schedule
|
global_schedule: global_schedule
|
||||||
api_update_frequency: api_update_frequency
|
api_update_frequency: api_update_frequency
|
||||||
atomics: []u64{len: max_concurrent_builds}
|
atomics: []u64{len: max_concurrent_builds}
|
||||||
builds: []git.GitRepo{len: max_concurrent_builds}
|
builds: []ScheduledBuild{len: max_concurrent_builds}
|
||||||
logger: logger
|
logger: logger
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,14 +62,37 @@ pub fn init_daemon(logger log.Log, address string, api_key string, base_image st
|
||||||
// periodically refreshes the list of repositories to ensure we stay in sync.
|
// periodically refreshes the list of repositories to ensure we stay in sync.
|
||||||
pub fn (mut d Daemon) run() ? {
|
pub fn (mut d Daemon) run() ? {
|
||||||
for {
|
for {
|
||||||
|
println('1')
|
||||||
|
// Cleans up finished builds, opening up spots for new builds
|
||||||
|
d.reschedule_builds() ?
|
||||||
|
println('2')
|
||||||
|
// Schedules new builds when possible
|
||||||
d.update_builds() ?
|
d.update_builds() ?
|
||||||
|
|
||||||
println(d.queue)
|
println(d.queue)
|
||||||
println(d.atomics)
|
println(d.atomics)
|
||||||
|
|
||||||
time.sleep(60 * time.second)
|
time.sleep(10 * time.second)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// schedule_build adds the next occurence of the given repo build to the queue.
|
||||||
|
fn (mut d Daemon) schedule_build(repo_id string, repo git.GitRepo) ? {
|
||||||
|
ce := parse_expression(repo.schedule) or {
|
||||||
|
d.lerror("Error while parsing cron expression '$repo.schedule' ($repo_id): $err.msg()")
|
||||||
|
|
||||||
|
d.global_schedule
|
||||||
|
}
|
||||||
|
// A repo that can't be scheduled will just be skipped for now
|
||||||
|
timestamp := ce.next_from_now() ?
|
||||||
|
|
||||||
|
d.queue.insert(ScheduledBuild{
|
||||||
|
repo_id: repo_id
|
||||||
|
repo: repo
|
||||||
|
timestamp: timestamp
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
fn (mut d Daemon) renew_repos() ? {
|
fn (mut d Daemon) renew_repos() ? {
|
||||||
mut new_repos := git.get_repos(d.address, d.api_key) ?
|
mut new_repos := git.get_repos(d.address, d.api_key) ?
|
||||||
|
|
||||||
|
@ -101,19 +124,11 @@ fn (mut d Daemon) renew_queue() ? {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
d.queue = new_queue
|
||||||
|
|
||||||
// For each repository in repos_map, parse their cron expression (or use
|
// For each repository in repos_map, parse their cron expression (or use
|
||||||
// the default one if not present) & add them to the queue
|
// the default one if not present) & add them to the queue
|
||||||
for id, repo in d.repos_map {
|
for id, repo in d.repos_map {
|
||||||
ce := parse_expression(repo.schedule) or { d.global_schedule }
|
d.schedule_build(id, repo) ?
|
||||||
// A repo that can't be scheduled will just be skipped for now
|
|
||||||
timestamp := ce.next(now) or { continue }
|
|
||||||
|
|
||||||
new_queue.insert(ScheduledBuild{
|
|
||||||
repo_id: id
|
|
||||||
repo: repo
|
|
||||||
timestamp: timestamp
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
d.queue = new_queue
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -114,7 +114,7 @@ pub fn (ce &CronExpression) next(ref time.Time) ?time.Time {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
fn (ce &CronExpression) next_from_now() ?time.Time {
|
pub fn (ce &CronExpression) next_from_now() ?time.Time {
|
||||||
return ce.next(time.now())
|
return ce.next(time.now())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ import response { new_data_response, new_response }
|
||||||
|
|
||||||
const repos_file = 'repos.json'
|
const repos_file = 'repos.json'
|
||||||
|
|
||||||
['/api/repos'; get; markused]
|
['/api/repos'; get]
|
||||||
fn (mut app App) get_repos() web.Result {
|
fn (mut app App) get_repos() web.Result {
|
||||||
if !app.is_authorized() {
|
if !app.is_authorized() {
|
||||||
return app.json(http.Status.unauthorized, new_response('Unauthorized.'))
|
return app.json(http.Status.unauthorized, new_response('Unauthorized.'))
|
||||||
|
@ -25,7 +25,7 @@ fn (mut app App) get_repos() web.Result {
|
||||||
return app.json(http.Status.ok, new_data_response(repos))
|
return app.json(http.Status.ok, new_data_response(repos))
|
||||||
}
|
}
|
||||||
|
|
||||||
['/api/repos/:id'; get; markused]
|
['/api/repos/:id'; get]
|
||||||
fn (mut app App) get_single_repo(id string) web.Result {
|
fn (mut app App) get_single_repo(id string) web.Result {
|
||||||
if !app.is_authorized() {
|
if !app.is_authorized() {
|
||||||
return app.json(http.Status.unauthorized, new_response('Unauthorized.'))
|
return app.json(http.Status.unauthorized, new_response('Unauthorized.'))
|
||||||
|
@ -48,7 +48,7 @@ fn (mut app App) get_single_repo(id string) web.Result {
|
||||||
return app.json(http.Status.ok, new_data_response(repo))
|
return app.json(http.Status.ok, new_data_response(repo))
|
||||||
}
|
}
|
||||||
|
|
||||||
['/api/repos'; post; markused]
|
['/api/repos'; post]
|
||||||
fn (mut app App) post_repo() web.Result {
|
fn (mut app App) post_repo() web.Result {
|
||||||
if !app.is_authorized() {
|
if !app.is_authorized() {
|
||||||
return app.json(http.Status.unauthorized, new_response('Unauthorized.'))
|
return app.json(http.Status.unauthorized, new_response('Unauthorized.'))
|
||||||
|
@ -86,7 +86,7 @@ fn (mut app App) post_repo() web.Result {
|
||||||
return app.json(http.Status.ok, new_response('Repo added successfully.'))
|
return app.json(http.Status.ok, new_response('Repo added successfully.'))
|
||||||
}
|
}
|
||||||
|
|
||||||
['/api/repos/:id'; delete; markused]
|
['/api/repos/:id'; delete]
|
||||||
fn (mut app App) delete_repo(id string) web.Result {
|
fn (mut app App) delete_repo(id string) web.Result {
|
||||||
if !app.is_authorized() {
|
if !app.is_authorized() {
|
||||||
return app.json(http.Status.unauthorized, new_response('Unauthorized.'))
|
return app.json(http.Status.unauthorized, new_response('Unauthorized.'))
|
||||||
|
@ -113,7 +113,7 @@ fn (mut app App) delete_repo(id string) web.Result {
|
||||||
return app.json(http.Status.ok, new_response('Repo removed successfully.'))
|
return app.json(http.Status.ok, new_response('Repo removed successfully.'))
|
||||||
}
|
}
|
||||||
|
|
||||||
['/api/repos/:id'; patch; markused]
|
['/api/repos/:id'; patch]
|
||||||
fn (mut app App) patch_repo(id string) web.Result {
|
fn (mut app App) patch_repo(id string) web.Result {
|
||||||
if !app.is_authorized() {
|
if !app.is_authorized() {
|
||||||
return app.json(http.Status.unauthorized, new_response('Unauthorized.'))
|
return app.json(http.Status.unauthorized, new_response('Unauthorized.'))
|
||||||
|
|
|
@ -11,12 +11,12 @@ import response { new_response }
|
||||||
|
|
||||||
// healthcheck just returns a string, but can be used to quickly check if the
|
// healthcheck just returns a string, but can be used to quickly check if the
|
||||||
// server is still responsive.
|
// server is still responsive.
|
||||||
['/health'; get; markused]
|
['/health'; get]
|
||||||
pub fn (mut app App) healthcheck() web.Result {
|
pub fn (mut app App) healthcheck() web.Result {
|
||||||
return app.json(http.Status.ok, new_response('Healthy.'))
|
return app.json(http.Status.ok, new_response('Healthy.'))
|
||||||
}
|
}
|
||||||
|
|
||||||
['/:repo/:arch/:filename'; get; head; markused]
|
['/:repo/:arch/:filename'; get; head]
|
||||||
fn (mut app App) get_repo_file(repo string, arch string, filename string) web.Result {
|
fn (mut app App) get_repo_file(repo string, arch string, filename string) web.Result {
|
||||||
mut full_path := ''
|
mut full_path := ''
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ fn (mut app App) get_repo_file(repo string, arch string, filename string) web.Re
|
||||||
return app.file(full_path)
|
return app.file(full_path)
|
||||||
}
|
}
|
||||||
|
|
||||||
['/:repo/publish'; post; markused]
|
['/:repo/publish'; post]
|
||||||
fn (mut app App) put_package(repo string) web.Result {
|
fn (mut app App) put_package(repo string) web.Result {
|
||||||
if !app.is_authorized() {
|
if !app.is_authorized() {
|
||||||
return app.json(http.Status.unauthorized, new_response('Unauthorized.'))
|
return app.json(http.Status.unauthorized, new_response('Unauthorized.'))
|
||||||
|
|
Loading…
Reference in New Issue