75f3dd141c
CodeQL / Analyze (go) (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CI and Release / lint-frontend (push) Has been cancelled
CI and Release / dockerfile-scan (push) Has been cancelled
CI and Release / test-frontend (push) Has been cancelled
CI and Release / lint-verification-agent (push) Has been cancelled
CI and Release / test-verification-agent (push) Has been cancelled
CI and Release / e2e-verification-agent (push) Has been cancelled
CI and Release / test-backend (push) Has been cancelled
CI and Release / build-dev-image (push) Has been cancelled
CI and Release / push-dev-image (push) Has been cancelled
CI and Release / build-image (push) Has been cancelled
CI and Release / build-verification-image (push) Has been cancelled
CI and Release / determine-version (push) Has been cancelled
CI and Release / push-image (push) Has been cancelled
CI and Release / push-verification-image (12) (push) Has been cancelled
CI and Release / lint-backend (push) Has been cancelled
CI and Release / push-verification-image (17) (push) Has been cancelled
CI and Release / push-verification-image (18) (push) Has been cancelled
CI and Release / release (push) Has been cancelled
CI and Release / publish-helm-chart (push) Has been cancelled
CI and Release / push-verification-image (13) (push) Has been cancelled
CI and Release / push-verification-image (14) (push) Has been cancelled
CI and Release / push-verification-image (15) (push) Has been cancelled
CI and Release / push-verification-image (16) (push) Has been cancelled
89 lines
1.6 KiB
Go
89 lines
1.6 KiB
Go
package start
|
|
|
|
import (
|
|
"context"
|
|
"log/slog"
|
|
"os"
|
|
"syscall"
|
|
"time"
|
|
)
|
|
|
|
const lockWatchInterval = 5 * time.Second
|
|
|
|
type LockWatcher struct {
|
|
originalInode uint64
|
|
cancel context.CancelFunc
|
|
log *slog.Logger
|
|
}
|
|
|
|
func NewLockWatcher(lockFile *os.File, cancel context.CancelFunc, log *slog.Logger) (*LockWatcher, error) {
|
|
inode, err := getFileInode(lockFile)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &LockWatcher{
|
|
originalInode: inode,
|
|
cancel: cancel,
|
|
log: log,
|
|
}, nil
|
|
}
|
|
|
|
func (w *LockWatcher) Run(ctx context.Context) {
|
|
ticker := time.NewTicker(lockWatchInterval)
|
|
defer ticker.Stop()
|
|
|
|
for {
|
|
select {
|
|
case <-ctx.Done():
|
|
return
|
|
case <-ticker.C:
|
|
w.check()
|
|
}
|
|
}
|
|
}
|
|
|
|
func (w *LockWatcher) check() {
|
|
info, err := os.Stat(lockFileName)
|
|
if err != nil {
|
|
w.log.Error("Lock file disappeared, shutting down", "file", lockFileName, "error", err)
|
|
w.cancel()
|
|
|
|
return
|
|
}
|
|
|
|
currentInode, err := getStatInode(info)
|
|
if err != nil {
|
|
w.log.Error("Failed to read lock file inode, shutting down", "error", err)
|
|
w.cancel()
|
|
|
|
return
|
|
}
|
|
|
|
if currentInode != w.originalInode {
|
|
w.log.Error("Lock file was replaced (inode changed), shutting down",
|
|
"originalInode", w.originalInode,
|
|
"currentInode", currentInode,
|
|
)
|
|
w.cancel()
|
|
}
|
|
}
|
|
|
|
func getFileInode(f *os.File) (uint64, error) {
|
|
info, err := f.Stat()
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
return getStatInode(info)
|
|
}
|
|
|
|
func getStatInode(info os.FileInfo) (uint64, error) {
|
|
stat, ok := info.Sys().(*syscall.Stat_t)
|
|
if !ok {
|
|
return 0, os.ErrInvalid
|
|
}
|
|
|
|
return stat.Ino, nil
|
|
}
|