2015-02-22 01:04:32 +01:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/hashicorp/errwrap"
|
|
|
|
"github.com/hashicorp/terraform/state"
|
|
|
|
"github.com/hashicorp/terraform/state/remote"
|
2015-02-22 03:00:08 +01:00
|
|
|
"github.com/hashicorp/terraform/terraform"
|
2015-02-22 01:04:32 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// State returns the proper state.State implementation to represent the
|
|
|
|
// current environment.
|
|
|
|
//
|
|
|
|
// localPath is the path to where state would be if stored locally.
|
|
|
|
// dataDir is the path to the local data directory where the remote state
|
|
|
|
// cache would be stored.
|
|
|
|
func State(localPath string) (state.State, string, error) {
|
|
|
|
var result state.State
|
|
|
|
var resultPath string
|
|
|
|
|
|
|
|
// Get the remote state cache path
|
|
|
|
remoteCachePath := filepath.Join(DefaultDataDir, DefaultStateFilename)
|
|
|
|
if _, err := os.Stat(remoteCachePath); err == nil {
|
|
|
|
// We have a remote state, initialize that.
|
2015-02-22 03:00:08 +01:00
|
|
|
result, err = remoteStateFromPath(remoteCachePath)
|
2015-02-22 01:04:32 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, "", err
|
|
|
|
}
|
|
|
|
resultPath = remoteCachePath
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do we have a local state?
|
|
|
|
if localPath != "" {
|
|
|
|
local := &state.LocalState{Path: localPath}
|
|
|
|
err := local.RefreshState()
|
|
|
|
if err != nil {
|
|
|
|
isNotExist := false
|
|
|
|
errwrap.Walk(err, func(e error) {
|
|
|
|
if !isNotExist && os.IsNotExist(e) {
|
|
|
|
isNotExist = true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if isNotExist {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if result != nil {
|
|
|
|
// We already have a remote state... that is an error.
|
|
|
|
return nil, "", fmt.Errorf(
|
|
|
|
"Remote state found, but state file '%s' also present.",
|
|
|
|
localPath)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, "", errwrap.Wrapf(
|
|
|
|
"Error reading local state: {{err}}", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
result = local
|
|
|
|
resultPath = localPath
|
|
|
|
}
|
|
|
|
|
2015-02-22 03:00:08 +01:00
|
|
|
// If we have a result, make sure to back it up
|
|
|
|
if result != nil {
|
|
|
|
result = &state.BackupState{
|
|
|
|
Real: result,
|
|
|
|
Path: resultPath + DefaultBackupExtention,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-22 01:04:32 +01:00
|
|
|
// Return whatever state we have
|
|
|
|
return result, resultPath, nil
|
|
|
|
}
|
|
|
|
|
2015-02-22 03:00:08 +01:00
|
|
|
// StateFromPlan gets our state from the plan.
|
|
|
|
func StateFromPlan(
|
|
|
|
localPath string, plan *terraform.Plan) (state.State, string, error) {
|
|
|
|
var result state.State
|
|
|
|
resultPath := localPath
|
|
|
|
if plan != nil && plan.State != nil &&
|
|
|
|
plan.State.Remote != nil && plan.State.Remote.Type != "" {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
// It looks like we have a remote state in the plan, so
|
|
|
|
// we have to initialize that.
|
|
|
|
resultPath = filepath.Join(DefaultDataDir, DefaultStateFilename)
|
|
|
|
result, err = remoteState(plan.State, resultPath, false)
|
|
|
|
if err != nil {
|
|
|
|
return nil, "", err
|
|
|
|
}
|
2015-02-22 01:04:32 +01:00
|
|
|
}
|
|
|
|
|
2015-02-22 03:00:08 +01:00
|
|
|
if result == nil {
|
|
|
|
local := &state.LocalState{Path: resultPath}
|
|
|
|
local.SetState(plan.State)
|
|
|
|
result = local
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have a result, make sure to back it up
|
|
|
|
result = &state.BackupState{
|
|
|
|
Real: result,
|
|
|
|
Path: resultPath + DefaultBackupExtention,
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, resultPath, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func remoteState(
|
|
|
|
local *terraform.State,
|
|
|
|
localPath string, refresh bool) (state.State, error) {
|
2015-02-22 01:04:32 +01:00
|
|
|
// If there is no remote settings, it is an error
|
2015-02-22 03:00:08 +01:00
|
|
|
if local.Remote == nil {
|
2015-02-22 01:04:32 +01:00
|
|
|
return nil, fmt.Errorf("Remote state cache has no remote info")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize the remote client based on the local state
|
2015-02-22 03:00:08 +01:00
|
|
|
client, err := remote.NewClient(local.Remote.Type, local.Remote.Config)
|
2015-02-22 01:04:32 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, errwrap.Wrapf(fmt.Sprintf(
|
|
|
|
"Error initializing remote driver '%s': {{err}}",
|
2015-02-22 03:00:08 +01:00
|
|
|
local.Remote.Type), err)
|
2015-02-22 01:04:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create the remote client
|
|
|
|
durable := &remote.State{Client: client}
|
|
|
|
|
|
|
|
// Create the cached client
|
|
|
|
cache := &state.CacheState{
|
2015-02-22 03:00:08 +01:00
|
|
|
Cache: &state.LocalState{Path: localPath},
|
2015-02-22 01:04:32 +01:00
|
|
|
Durable: durable,
|
|
|
|
}
|
|
|
|
|
2015-02-22 03:00:08 +01:00
|
|
|
if refresh {
|
|
|
|
// Refresh the cache
|
|
|
|
if err := cache.RefreshState(); err != nil {
|
|
|
|
return nil, errwrap.Wrapf(
|
|
|
|
"Error reloading remote state: {{err}}", err)
|
2015-02-22 01:04:32 +01:00
|
|
|
}
|
2015-02-22 03:00:08 +01:00
|
|
|
switch cache.RefreshResult() {
|
|
|
|
case state.CacheRefreshNoop:
|
|
|
|
case state.CacheRefreshInit:
|
|
|
|
case state.CacheRefreshLocalNewer:
|
|
|
|
case state.CacheRefreshUpdateLocal:
|
|
|
|
// Write our local state out to the durable storage to start.
|
|
|
|
if err := cache.WriteState(local); err != nil {
|
|
|
|
return nil, errwrap.Wrapf(
|
|
|
|
"Error preparing remote state: {{err}}", err)
|
|
|
|
}
|
|
|
|
if err := cache.PersistState(); err != nil {
|
|
|
|
return nil, errwrap.Wrapf(
|
|
|
|
"Error preparing remote state: {{err}}", err)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return nil, errwrap.Wrapf(
|
|
|
|
"Error initilizing remote state: {{err}}", err)
|
2015-02-22 01:04:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return cache, nil
|
|
|
|
}
|
2015-02-22 03:00:08 +01:00
|
|
|
|
|
|
|
func remoteStateFromPath(path string) (state.State, error) {
|
|
|
|
// First create the local state for the path
|
|
|
|
local := &state.LocalState{Path: path}
|
|
|
|
if err := local.RefreshState(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
localState := local.State()
|
|
|
|
|
|
|
|
return remoteState(localState, path, true)
|
|
|
|
}
|