96 lines
2.7 KiB
V
96 lines
2.7 KiB
V
module gittools
|
|
|
|
import time
|
|
import freeflowuniverse.herolib.ui.console
|
|
import os
|
|
|
|
@[params]
|
|
pub struct StatusUpdateArgs {
|
|
reload bool
|
|
}
|
|
|
|
pub fn (mut repo GitRepo) status_update(args StatusUpdateArgs) ! {
|
|
// Check current time vs last check, if needed (check period) then load
|
|
// println("${repo.name} ++")
|
|
repo.cache_get()! // Ensure we have the situation from redis
|
|
repo.init()!
|
|
current_time := int(time.now().unix())
|
|
if args.reload || repo.last_load == 0
|
|
|| current_time - repo.last_load >= repo.config.remote_check_period {
|
|
console.print_debug('${repo.name} ${current_time}-${repo.last_load}: ${repo.config.remote_check_period} +++')
|
|
// if true{exit(0)}
|
|
repo.load()!
|
|
// println("${repo.name} ++++")
|
|
}
|
|
}
|
|
|
|
// Load repo information
|
|
// Does not check cache, it is the callers responsibility to check cache and load accordingly.
|
|
fn (mut repo GitRepo) load() ! {
|
|
console.print_debug('load ${repo.cache_key()}')
|
|
repo.init()!
|
|
if os.exists('${repo.path()}/.git') == false {
|
|
return error("Can't find git in repo ${repo.path()}")
|
|
}
|
|
repo.exec('git fetch --all') or {
|
|
return error('Cannot fetch repo: ${repo.path()}. Error: ${err}')
|
|
}
|
|
repo.load_branches()!
|
|
repo.load_tags()!
|
|
repo.last_load = int(time.now().unix())
|
|
repo.has_changes = repo.detect_changes()!
|
|
repo.cache_set()!
|
|
}
|
|
|
|
// Helper to load remote tags
|
|
fn (mut repo GitRepo) load_branches() ! {
|
|
tags_result := repo.exec("git for-each-ref --format='%(objectname) %(refname:short)' refs/heads refs/remotes/origin")!
|
|
for line in tags_result.split('\n') {
|
|
if line.trim_space() != '' {
|
|
parts := line.split(' ')
|
|
if parts.len == 2 {
|
|
commit_hash := parts[0].trim_space()
|
|
mut name := parts[1].trim_space()
|
|
if name.contains('_archive') {
|
|
continue
|
|
} else if name == 'origin' {
|
|
repo.status_remote.ref_default = commit_hash
|
|
} else if name.starts_with('origin') {
|
|
name = name.all_after('origin/').trim_space()
|
|
// Update remote tags info
|
|
repo.status_remote.branches[name] = commit_hash
|
|
} else {
|
|
repo.status_local.branches[name] = commit_hash
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
mybranch := repo.exec('git branch --show-current')!.split_into_lines().filter(it.trim_space() != '')
|
|
if mybranch.len == 1 {
|
|
repo.status_local.branch = mybranch[0].trim_space()
|
|
}
|
|
// Could be a tag.
|
|
// else{
|
|
// panic("bug: git branch does not give branchname")
|
|
// }
|
|
}
|
|
|
|
// Helper to load remote tags
|
|
fn (mut repo GitRepo) load_tags() ! {
|
|
tags_result := repo.exec('git tag --list')!
|
|
|
|
for line in tags_result.split('\n') {
|
|
if line.trim_space() != '' {
|
|
parts := line.split(' ')
|
|
if parts.len == 2 {
|
|
commit_hash := parts[0].trim_space()
|
|
tag_name := parts[1].all_after('refs/tags/').trim_space()
|
|
|
|
// Update remote tags info
|
|
repo.status_remote.tags[tag_name] = commit_hash
|
|
}
|
|
}
|
|
}
|
|
}
|