mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
f3a57db293
Many times now we've seen situations where we need to use addresses as map keys, but not all of our address types are comparable and thus we tend to end up using string representations as keys instead. That's problematic because conversion to string uses type information and some of the address types have string representations that are ambiguous with one another. UniqueKey therefore represents an opaque key that is unique for each functionally-distinct address across all types that implement UniqueKeyer. For this initial commit I've implemented UniqueKeyer only for the Referenceable family of types. These are an easy case because they were all already comparable (intentionally) anyway. Later commits can implement UniqueKeyer for other types that are not naturally comparable, such as any which include a ModuleInstance. This also includes a new type addrs.Set which wraps a map as a set of addresses, using the unique keys to ensure that there can be only one element for each distinct address.
55 lines
1.1 KiB
Go
55 lines
1.1 KiB
Go
package addrs
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// LocalValue is the address of a local value.
|
|
type LocalValue struct {
|
|
referenceable
|
|
Name string
|
|
}
|
|
|
|
func (v LocalValue) String() string {
|
|
return "local." + v.Name
|
|
}
|
|
|
|
func (v LocalValue) UniqueKey() UniqueKey {
|
|
return v // A LocalValue is its own UniqueKey
|
|
}
|
|
|
|
func (v LocalValue) uniqueKeySigil() {}
|
|
|
|
// Absolute converts the receiver into an absolute address within the given
|
|
// module instance.
|
|
func (v LocalValue) Absolute(m ModuleInstance) AbsLocalValue {
|
|
return AbsLocalValue{
|
|
Module: m,
|
|
LocalValue: v,
|
|
}
|
|
}
|
|
|
|
// AbsLocalValue is the absolute address of a local value within a module instance.
|
|
type AbsLocalValue struct {
|
|
Module ModuleInstance
|
|
LocalValue LocalValue
|
|
}
|
|
|
|
// LocalValue returns the absolute address of a local value of the given
|
|
// name within the receiving module instance.
|
|
func (m ModuleInstance) LocalValue(name string) AbsLocalValue {
|
|
return AbsLocalValue{
|
|
Module: m,
|
|
LocalValue: LocalValue{
|
|
Name: name,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (v AbsLocalValue) String() string {
|
|
if len(v.Module) == 0 {
|
|
return v.LocalValue.String()
|
|
}
|
|
return fmt.Sprintf("%s.%s", v.Module.String(), v.LocalValue.String())
|
|
}
|