2021-04-09 01:55:10 +02:00
|
|
|
package lock
|
|
|
|
|
|
|
|
import (
|
2021-04-17 20:51:40 +02:00
|
|
|
"os"
|
2021-04-09 01:55:10 +02:00
|
|
|
"path"
|
|
|
|
"sync"
|
|
|
|
|
2021-04-17 20:51:40 +02:00
|
|
|
"github.com/cupcakearmy/autorestic/internal/colors"
|
2022-02-16 21:42:54 +01:00
|
|
|
"github.com/cupcakearmy/autorestic/internal/flags"
|
2021-04-09 01:55:10 +02:00
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
|
|
|
var lock *viper.Viper
|
|
|
|
var file string
|
|
|
|
var once sync.Once
|
|
|
|
|
2022-06-06 12:59:47 +02:00
|
|
|
const (
|
|
|
|
RUNNING = "running"
|
|
|
|
)
|
|
|
|
|
2021-04-09 01:55:10 +02:00
|
|
|
func getLock() *viper.Viper {
|
|
|
|
if lock == nil {
|
|
|
|
|
|
|
|
once.Do(func() {
|
|
|
|
lock = viper.New()
|
|
|
|
lock.SetDefault("running", false)
|
2021-11-23 12:32:35 +01:00
|
|
|
p := viper.ConfigFileUsed()
|
|
|
|
if p == "" {
|
|
|
|
colors.Error.Println("cannot lock before reading config location")
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
file = path.Join(path.Dir(p), ".autorestic.lock.yml")
|
2022-02-16 21:42:54 +01:00
|
|
|
if !flags.CRON_LEAN {
|
|
|
|
colors.Faint.Println("Using lock:\t", file)
|
|
|
|
}
|
2021-04-09 01:55:10 +02:00
|
|
|
lock.SetConfigFile(file)
|
|
|
|
lock.SetConfigType("yml")
|
|
|
|
lock.ReadInConfig()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return lock
|
|
|
|
}
|
|
|
|
|
2022-06-06 12:59:47 +02:00
|
|
|
func setLockValue(key string, value interface{}) (*viper.Viper, error) {
|
2021-04-09 01:55:10 +02:00
|
|
|
lock := getLock()
|
2022-06-06 12:59:47 +02:00
|
|
|
|
|
|
|
if key == RUNNING {
|
|
|
|
value := value.(bool)
|
|
|
|
if value && lock.GetBool(key) {
|
2021-04-17 20:51:40 +02:00
|
|
|
colors.Error.Println("an instance is already running. exiting")
|
|
|
|
os.Exit(1)
|
2021-04-09 01:55:10 +02:00
|
|
|
}
|
|
|
|
}
|
2022-06-06 12:59:47 +02:00
|
|
|
|
|
|
|
lock.Set(key, value)
|
2021-04-09 01:55:10 +02:00
|
|
|
if err := lock.WriteConfigAs(file); err != nil {
|
2022-06-06 12:59:47 +02:00
|
|
|
return nil, err
|
2021-04-09 01:55:10 +02:00
|
|
|
}
|
2022-06-06 12:59:47 +02:00
|
|
|
return lock, nil
|
2021-04-09 01:55:10 +02:00
|
|
|
}
|
|
|
|
|
2021-04-11 15:02:27 +02:00
|
|
|
func GetCron(location string) int64 {
|
2022-06-06 12:59:47 +02:00
|
|
|
return getLock().GetInt64("cron." + location)
|
2021-04-11 15:02:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func SetCron(location string, value int64) {
|
2022-06-06 12:59:47 +02:00
|
|
|
setLockValue("cron."+location, value)
|
2021-04-11 15:02:27 +02:00
|
|
|
}
|
|
|
|
|
2021-04-09 01:55:10 +02:00
|
|
|
func Lock() error {
|
2022-06-06 12:59:47 +02:00
|
|
|
_, err := setLockValue(RUNNING, true)
|
|
|
|
return err
|
2021-04-09 01:55:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func Unlock() error {
|
2022-06-06 12:59:47 +02:00
|
|
|
_, err := setLockValue(RUNNING, false)
|
|
|
|
return err
|
2021-04-09 01:55:10 +02:00
|
|
|
}
|