2018-06-08 02:27:57 +02:00
|
|
|
package states
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/terraform/addrs"
|
|
|
|
"github.com/zclconf/go-cty/cty"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Taking deep copies of states is an important operation because state is
|
|
|
|
// otherwise a mutable data structure that is challenging to share across
|
|
|
|
// many separate callers. It is important that the DeepCopy implementations
|
|
|
|
// in this file comprehensively copy all parts of the state data structure
|
|
|
|
// that could be mutated via pointers.
|
|
|
|
|
|
|
|
// DeepCopy returns a new state that contains equivalent data to the reciever
|
|
|
|
// but shares no backing memory in common.
|
|
|
|
//
|
|
|
|
// As with all methods on State, this method is not safe to use concurrently
|
|
|
|
// with writing to any portion of the recieving data structure. It is the
|
|
|
|
// caller's responsibility to ensure mutual exclusion for the duration of the
|
|
|
|
// operation, but may then freely modify the receiver and the returned copy
|
|
|
|
// independently once this method returns.
|
|
|
|
func (s *State) DeepCopy() *State {
|
|
|
|
if s == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
modules := make(map[string]*Module, len(s.Modules))
|
|
|
|
for k, m := range s.Modules {
|
|
|
|
modules[k] = m.DeepCopy()
|
|
|
|
}
|
|
|
|
return &State{
|
|
|
|
Modules: modules,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy returns a new module state that contains equivalent data to the
|
|
|
|
// receiver but shares no backing memory in common.
|
|
|
|
//
|
|
|
|
// As with all methods on Module, this method is not safe to use concurrently
|
|
|
|
// with writing to any portion of the recieving data structure. It is the
|
|
|
|
// caller's responsibility to ensure mutual exclusion for the duration of the
|
|
|
|
// operation, but may then freely modify the receiver and the returned copy
|
|
|
|
// independently once this method returns.
|
|
|
|
func (ms *Module) DeepCopy() *Module {
|
|
|
|
if ms == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
resources := make(map[string]*Resource, len(ms.Resources))
|
|
|
|
for k, r := range ms.Resources {
|
|
|
|
resources[k] = r.DeepCopy()
|
|
|
|
}
|
|
|
|
outputValues := make(map[string]*OutputValue, len(ms.OutputValues))
|
|
|
|
for k, v := range ms.OutputValues {
|
|
|
|
outputValues[k] = v.DeepCopy()
|
|
|
|
}
|
|
|
|
localValues := make(map[string]cty.Value, len(ms.LocalValues))
|
|
|
|
for k, v := range ms.LocalValues {
|
|
|
|
// cty.Value is immutable, so we don't need to copy these.
|
|
|
|
localValues[k] = v
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Module{
|
|
|
|
Addr: ms.Addr, // technically mutable, but immutable by convention
|
|
|
|
Resources: resources,
|
|
|
|
OutputValues: outputValues,
|
|
|
|
LocalValues: localValues,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy returns a new resource state that contains equivalent data to the
|
|
|
|
// receiver but shares no backing memory in common.
|
|
|
|
//
|
|
|
|
// As with all methods on Resource, this method is not safe to use concurrently
|
|
|
|
// with writing to any portion of the recieving data structure. It is the
|
|
|
|
// caller's responsibility to ensure mutual exclusion for the duration of the
|
|
|
|
// operation, but may then freely modify the receiver and the returned copy
|
|
|
|
// independently once this method returns.
|
|
|
|
func (rs *Resource) DeepCopy() *Resource {
|
|
|
|
if rs == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
instances := make(map[addrs.InstanceKey]*ResourceInstance, len(rs.Instances))
|
|
|
|
for k, i := range rs.Instances {
|
|
|
|
instances[k] = i.DeepCopy()
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Resource{
|
|
|
|
Addr: rs.Addr,
|
|
|
|
EachMode: rs.EachMode,
|
|
|
|
Instances: instances,
|
|
|
|
ProviderConfig: rs.ProviderConfig, // technically mutable, but immutable by convention
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy returns a new resource instance state that contains equivalent data
|
|
|
|
// to the receiver but shares no backing memory in common.
|
|
|
|
//
|
|
|
|
// As with all methods on ResourceInstance, this method is not safe to use
|
|
|
|
// concurrently with writing to any portion of the recieving data structure. It
|
|
|
|
// is the caller's responsibility to ensure mutual exclusion for the duration
|
|
|
|
// of the operation, but may then freely modify the receiver and the returned
|
|
|
|
// copy independently once this method returns.
|
|
|
|
func (is *ResourceInstance) DeepCopy() *ResourceInstance {
|
|
|
|
if is == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-07-21 02:15:29 +02:00
|
|
|
deposed := make(map[DeposedKey]*ResourceInstanceObjectSrc, len(is.Deposed))
|
2018-06-08 02:27:57 +02:00
|
|
|
for k, obj := range is.Deposed {
|
|
|
|
deposed[k] = obj.DeepCopy()
|
|
|
|
}
|
|
|
|
|
|
|
|
return &ResourceInstance{
|
|
|
|
Current: is.Current.DeepCopy(),
|
|
|
|
Deposed: deposed,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy returns a new resource instance object that contains equivalent data
|
|
|
|
// to the receiver but shares no backing memory in common.
|
|
|
|
//
|
2018-09-12 20:02:14 +02:00
|
|
|
// As with all methods on ResourceInstanceObjectSrc, this method is not safe to
|
|
|
|
// use concurrently with writing to any portion of the recieving data structure.
|
|
|
|
// It is the caller's responsibility to ensure mutual exclusion for the duration
|
2018-06-08 02:27:57 +02:00
|
|
|
// of the operation, but may then freely modify the receiver and the returned
|
|
|
|
// copy independently once this method returns.
|
2018-07-21 02:15:29 +02:00
|
|
|
func (obj *ResourceInstanceObjectSrc) DeepCopy() *ResourceInstanceObjectSrc {
|
2018-06-08 02:27:57 +02:00
|
|
|
if obj == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var attrsFlat map[string]string
|
|
|
|
if obj.AttrsFlat != nil {
|
2018-09-07 17:50:29 +02:00
|
|
|
attrsFlat = make(map[string]string, len(obj.AttrsFlat))
|
2018-06-08 02:27:57 +02:00
|
|
|
for k, v := range obj.AttrsFlat {
|
|
|
|
attrsFlat[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var attrsJSON []byte
|
|
|
|
if obj.AttrsJSON != nil {
|
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 23:24:45 +02:00
|
|
|
attrsJSON = make([]byte, len(obj.AttrsJSON))
|
2018-06-08 02:27:57 +02:00
|
|
|
copy(attrsJSON, obj.AttrsJSON)
|
|
|
|
}
|
|
|
|
|
2018-09-12 20:02:14 +02:00
|
|
|
var private []byte
|
|
|
|
if obj.Private != nil {
|
2019-06-04 16:32:12 +02:00
|
|
|
private = make([]byte, len(obj.Private))
|
2018-09-12 20:02:14 +02:00
|
|
|
copy(private, obj.Private)
|
|
|
|
}
|
|
|
|
|
2018-06-08 02:27:57 +02:00
|
|
|
// Some addrs.Referencable implementations are technically mutable, but
|
|
|
|
// we treat them as immutable by convention and so we don't deep-copy here.
|
2020-03-23 20:26:18 +01:00
|
|
|
var dependencies []addrs.ConfigResource
|
2019-10-08 20:11:02 +02:00
|
|
|
if obj.Dependencies != nil {
|
2020-03-23 20:26:18 +01:00
|
|
|
dependencies = make([]addrs.ConfigResource, len(obj.Dependencies))
|
2019-10-08 20:11:02 +02:00
|
|
|
copy(dependencies, obj.Dependencies)
|
|
|
|
}
|
|
|
|
|
|
|
|
var dependsOn []addrs.Referenceable
|
|
|
|
if obj.DependsOn != nil {
|
|
|
|
dependsOn = make([]addrs.Referenceable, len(obj.DependsOn))
|
|
|
|
copy(dependsOn, obj.DependsOn)
|
|
|
|
}
|
2018-06-08 02:27:57 +02:00
|
|
|
|
2018-07-21 02:15:29 +02:00
|
|
|
return &ResourceInstanceObjectSrc{
|
2019-12-12 20:59:18 +01:00
|
|
|
Status: obj.Status,
|
|
|
|
SchemaVersion: obj.SchemaVersion,
|
|
|
|
Private: private,
|
|
|
|
AttrsFlat: attrsFlat,
|
|
|
|
AttrsJSON: attrsJSON,
|
|
|
|
Dependencies: dependencies,
|
|
|
|
DependsOn: dependsOn,
|
|
|
|
CreateBeforeDestroy: obj.CreateBeforeDestroy,
|
2018-06-08 02:27:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-12 20:02:14 +02:00
|
|
|
// DeepCopy returns a new resource instance object that contains equivalent data
|
|
|
|
// to the receiver but shares no backing memory in common.
|
|
|
|
//
|
|
|
|
// As with all methods on ResourceInstanceObject, this method is not safe to use
|
|
|
|
// concurrently with writing to any portion of the recieving data structure. It
|
|
|
|
// is the caller's responsibility to ensure mutual exclusion for the duration
|
|
|
|
// of the operation, but may then freely modify the receiver and the returned
|
|
|
|
// copy independently once this method returns.
|
|
|
|
func (obj *ResourceInstanceObject) DeepCopy() *ResourceInstanceObject {
|
|
|
|
if obj == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var private []byte
|
|
|
|
if obj.Private != nil {
|
2019-06-04 16:32:12 +02:00
|
|
|
private = make([]byte, len(obj.Private))
|
2018-09-12 20:02:14 +02:00
|
|
|
copy(private, obj.Private)
|
|
|
|
}
|
|
|
|
|
2019-06-04 16:32:12 +02:00
|
|
|
// Some addrs.Referenceable implementations are technically mutable, but
|
2018-09-12 20:02:14 +02:00
|
|
|
// we treat them as immutable by convention and so we don't deep-copy here.
|
2020-03-23 20:26:18 +01:00
|
|
|
var dependencies []addrs.ConfigResource
|
2019-06-04 16:32:12 +02:00
|
|
|
if obj.Dependencies != nil {
|
2020-03-23 20:26:18 +01:00
|
|
|
dependencies = make([]addrs.ConfigResource, len(obj.Dependencies))
|
2019-06-04 16:32:12 +02:00
|
|
|
copy(dependencies, obj.Dependencies)
|
|
|
|
}
|
2018-09-12 20:02:14 +02:00
|
|
|
|
|
|
|
return &ResourceInstanceObject{
|
|
|
|
Value: obj.Value,
|
|
|
|
Status: obj.Status,
|
|
|
|
Private: private,
|
|
|
|
Dependencies: dependencies,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-08 02:27:57 +02:00
|
|
|
// DeepCopy returns a new output value state that contains equivalent data
|
|
|
|
// to the receiver but shares no backing memory in common.
|
|
|
|
//
|
|
|
|
// As with all methods on OutputValue, this method is not safe to use
|
|
|
|
// concurrently with writing to any portion of the recieving data structure. It
|
|
|
|
// is the caller's responsibility to ensure mutual exclusion for the duration
|
|
|
|
// of the operation, but may then freely modify the receiver and the returned
|
|
|
|
// copy independently once this method returns.
|
|
|
|
func (os *OutputValue) DeepCopy() *OutputValue {
|
|
|
|
if os == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return &OutputValue{
|
|
|
|
Value: os.Value,
|
|
|
|
Sensitive: os.Sensitive,
|
|
|
|
}
|
|
|
|
}
|