mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-19 17:59:05 -05:00
69 lines
1.4 KiB
Go
69 lines
1.4 KiB
Go
// statelocker use used for testing command with a locked state.
|
|
// This will lock the state file at a given path, then wait for a signal. On
|
|
// SIGINT and SIGTERM the state will be Unlocked before exit.
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"log"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/opentofu/opentofu/internal/command/clistate"
|
|
"github.com/opentofu/opentofu/internal/states/statemgr"
|
|
)
|
|
|
|
func main() {
|
|
if len(os.Args) != 2 {
|
|
log.Fatal(os.Args[0], "statefile")
|
|
}
|
|
|
|
s := &clistate.LocalState{
|
|
Path: os.Args[1],
|
|
}
|
|
|
|
info := statemgr.NewLockInfo()
|
|
info.Operation = "test"
|
|
info.Info = "state locker"
|
|
|
|
lockID, err := s.Lock(context.Background(), info)
|
|
if err != nil {
|
|
io.WriteString(os.Stderr, err.Error()+"\n")
|
|
return
|
|
}
|
|
|
|
defer func() {
|
|
if err := s.Unlock(context.Background(), lockID); err != nil {
|
|
io.WriteString(os.Stderr, err.Error()+"\n")
|
|
return
|
|
}
|
|
}()
|
|
|
|
// signal to the caller that we're locked
|
|
_, err = io.WriteString(os.Stdout, "LOCKID "+lockID+"\n")
|
|
if err != nil {
|
|
io.WriteString(os.Stderr, err.Error()+"\n")
|
|
return
|
|
}
|
|
|
|
c := make(chan struct{})
|
|
go waitForEOF(c)
|
|
|
|
// timeout after 10 second in case we don't get cleaned up by the test
|
|
select {
|
|
case <-time.After(10 * time.Second):
|
|
case <-c:
|
|
}
|
|
}
|
|
|
|
func waitForEOF(resultChan chan struct{}) {
|
|
_, err := io.ReadAll(os.Stdin)
|
|
if err != nil {
|
|
fmt.Errorf("on waiting for input: %s", err.Error())
|
|
}
|
|
|
|
close(resultChan)
|
|
}
|