mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
f40800b3a4
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.
42 lines
960 B
Go
42 lines
960 B
Go
package statemgr
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/hashicorp/terraform/internal/states"
|
|
)
|
|
|
|
// NewTransientInMemory returns a Transient implementation that retains
|
|
// transient snapshots only in memory, as part of the object.
|
|
//
|
|
// The given initial state, if any, must not be modified concurrently while
|
|
// this function is running, but may be freely modified once this function
|
|
// returns without affecting the stored transient snapshot.
|
|
func NewTransientInMemory(initial *states.State) Transient {
|
|
return &transientInMemory{
|
|
current: initial.DeepCopy(),
|
|
}
|
|
}
|
|
|
|
type transientInMemory struct {
|
|
lock sync.RWMutex
|
|
current *states.State
|
|
}
|
|
|
|
var _ Transient = (*transientInMemory)(nil)
|
|
|
|
func (m *transientInMemory) State() *states.State {
|
|
m.lock.RLock()
|
|
defer m.lock.RUnlock()
|
|
|
|
return m.current.DeepCopy()
|
|
}
|
|
|
|
func (m *transientInMemory) WriteState(new *states.State) error {
|
|
m.lock.Lock()
|
|
defer m.lock.Unlock()
|
|
|
|
m.current = new.DeepCopy()
|
|
return nil
|
|
}
|