mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
73dda868cc
This is part of a general effort to move all of Terraform's non-library package surface under internal in order to reinforce that these are for internal use within Terraform only. If you were previously importing packages under this prefix into an external codebase, you could pin to an earlier release tag as an interim solution until you've make a plan to achieve the same functionality some other way.
143 lines
4.1 KiB
Go
143 lines
4.1 KiB
Go
package pg
|
|
|
|
import (
|
|
"crypto/md5"
|
|
"database/sql"
|
|
"fmt"
|
|
|
|
uuid "github.com/hashicorp/go-uuid"
|
|
"github.com/hashicorp/terraform/states/remote"
|
|
"github.com/hashicorp/terraform/states/statemgr"
|
|
_ "github.com/lib/pq"
|
|
)
|
|
|
|
// RemoteClient is a remote client that stores data in a Postgres database
|
|
type RemoteClient struct {
|
|
Client *sql.DB
|
|
Name string
|
|
SchemaName string
|
|
|
|
info *statemgr.LockInfo
|
|
}
|
|
|
|
func (c *RemoteClient) Get() (*remote.Payload, error) {
|
|
query := `SELECT data FROM %s.%s WHERE name = $1`
|
|
row := c.Client.QueryRow(fmt.Sprintf(query, c.SchemaName, statesTableName), c.Name)
|
|
var data []byte
|
|
err := row.Scan(&data)
|
|
switch {
|
|
case err == sql.ErrNoRows:
|
|
// No existing state returns empty.
|
|
return nil, nil
|
|
case err != nil:
|
|
return nil, err
|
|
default:
|
|
md5 := md5.Sum(data)
|
|
return &remote.Payload{
|
|
Data: data,
|
|
MD5: md5[:],
|
|
}, nil
|
|
}
|
|
}
|
|
|
|
func (c *RemoteClient) Put(data []byte) error {
|
|
query := `INSERT INTO %s.%s (name, data) VALUES ($1, $2)
|
|
ON CONFLICT (name) DO UPDATE
|
|
SET data = $2 WHERE %s.name = $1`
|
|
_, err := c.Client.Exec(fmt.Sprintf(query, c.SchemaName, statesTableName, statesTableName), c.Name, data)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *RemoteClient) Delete() error {
|
|
query := `DELETE FROM %s.%s WHERE name = $1`
|
|
_, err := c.Client.Exec(fmt.Sprintf(query, c.SchemaName, statesTableName), c.Name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *RemoteClient) Lock(info *statemgr.LockInfo) (string, error) {
|
|
var err error
|
|
var lockID string
|
|
|
|
if info.ID == "" {
|
|
lockID, err = uuid.GenerateUUID()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
info.ID = lockID
|
|
}
|
|
|
|
// Local helper function so we can call it multiple places
|
|
//
|
|
lockUnlock := func(pgLockId string) error {
|
|
query := `SELECT pg_advisory_unlock(%s)`
|
|
row := c.Client.QueryRow(fmt.Sprintf(query, pgLockId))
|
|
var didUnlock []byte
|
|
err := row.Scan(&didUnlock)
|
|
if err != nil {
|
|
return &statemgr.LockError{Info: info, Err: err}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Try to acquire locks for the existing row `id` and the creation lock `-1`.
|
|
query := `SELECT %s.id, pg_try_advisory_lock(%s.id), pg_try_advisory_lock(-1) FROM %s.%s WHERE %s.name = $1`
|
|
row := c.Client.QueryRow(fmt.Sprintf(query, statesTableName, statesTableName, c.SchemaName, statesTableName, statesTableName), c.Name)
|
|
var pgLockId, didLock, didLockForCreate []byte
|
|
err = row.Scan(&pgLockId, &didLock, &didLockForCreate)
|
|
switch {
|
|
case err == sql.ErrNoRows:
|
|
// No rows means we're creating the workspace. Take the creation lock.
|
|
innerRow := c.Client.QueryRow(`SELECT pg_try_advisory_lock(-1)`)
|
|
var innerDidLock []byte
|
|
err := innerRow.Scan(&innerDidLock)
|
|
if err != nil {
|
|
return "", &statemgr.LockError{Info: info, Err: err}
|
|
}
|
|
if string(innerDidLock) == "false" {
|
|
return "", &statemgr.LockError{Info: info, Err: fmt.Errorf("Already locked for workspace creation: %s", c.Name)}
|
|
}
|
|
info.Path = "-1"
|
|
case err != nil:
|
|
return "", &statemgr.LockError{Info: info, Err: err}
|
|
case string(didLock) == "false":
|
|
// Existing workspace is already locked. Release the attempted creation lock.
|
|
lockUnlock("-1")
|
|
return "", &statemgr.LockError{Info: info, Err: fmt.Errorf("Workspace is already locked: %s", c.Name)}
|
|
case string(didLockForCreate) == "false":
|
|
// Someone has the creation lock already. Release the existing workspace because it might not be safe to touch.
|
|
lockUnlock(string(pgLockId))
|
|
return "", &statemgr.LockError{Info: info, Err: fmt.Errorf("Cannot lock workspace; already locked for workspace creation: %s", c.Name)}
|
|
default:
|
|
// Existing workspace is now locked. Release the attempted creation lock.
|
|
lockUnlock("-1")
|
|
info.Path = string(pgLockId)
|
|
}
|
|
c.info = info
|
|
|
|
return info.ID, nil
|
|
}
|
|
|
|
func (c *RemoteClient) getLockInfo() (*statemgr.LockInfo, error) {
|
|
return c.info, nil
|
|
}
|
|
|
|
func (c *RemoteClient) Unlock(id string) error {
|
|
if c.info != nil && c.info.Path != "" {
|
|
query := `SELECT pg_advisory_unlock(%s)`
|
|
row := c.Client.QueryRow(fmt.Sprintf(query, c.info.Path))
|
|
var didUnlock []byte
|
|
err := row.Scan(&didUnlock)
|
|
if err != nil {
|
|
return &statemgr.LockError{Info: c.info, Err: err}
|
|
}
|
|
c.info = nil
|
|
}
|
|
return nil
|
|
}
|