mirror of https://github.com/pulumi/pulumi.git
132 lines
3.6 KiB
Go
132 lines
3.6 KiB
Go
// Copyright 2016-2018, Pulumi Corporation.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package deploytest
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/pulumi/pulumi/pkg/resource"
|
|
"github.com/pulumi/pulumi/pkg/resource/plugin"
|
|
"github.com/pulumi/pulumi/pkg/tokens"
|
|
pulumirpc "github.com/pulumi/pulumi/sdk/proto/go"
|
|
)
|
|
|
|
type ResourceMonitor struct {
|
|
resmon pulumirpc.ResourceMonitorClient
|
|
}
|
|
|
|
func (rm *ResourceMonitor) RegisterResource(t tokens.Type, name string, custom bool, parent resource.URN, protect bool,
|
|
dependencies []resource.URN, provider string,
|
|
inputs resource.PropertyMap) (resource.URN, resource.ID, resource.PropertyMap, error) {
|
|
|
|
// marshal inputs
|
|
ins, err := plugin.MarshalProperties(inputs, plugin.MarshalOptions{KeepUnknowns: true})
|
|
if err != nil {
|
|
return "", "", nil, err
|
|
}
|
|
|
|
// marshal dependencies
|
|
deps := []string{}
|
|
for _, d := range dependencies {
|
|
deps = append(deps, string(d))
|
|
}
|
|
|
|
// submit request
|
|
resp, err := rm.resmon.RegisterResource(context.Background(), &pulumirpc.RegisterResourceRequest{
|
|
Type: string(t),
|
|
Name: name,
|
|
Custom: custom,
|
|
Parent: string(parent),
|
|
Protect: protect,
|
|
Dependencies: deps,
|
|
Provider: provider,
|
|
Object: ins,
|
|
})
|
|
if err != nil {
|
|
return "", "", nil, err
|
|
}
|
|
|
|
// unmarshal outputs
|
|
outs, err := plugin.UnmarshalProperties(resp.Object, plugin.MarshalOptions{KeepUnknowns: true})
|
|
if err != nil {
|
|
return "", "", nil, err
|
|
}
|
|
|
|
return resource.URN(resp.Urn), resource.ID(resp.Id), outs, nil
|
|
}
|
|
|
|
func (rm *ResourceMonitor) ReadResource(t tokens.Type, name string, id resource.ID, parent resource.URN,
|
|
inputs resource.PropertyMap, provider string) (resource.URN, resource.PropertyMap, error) {
|
|
|
|
// marshal inputs
|
|
ins, err := plugin.MarshalProperties(inputs, plugin.MarshalOptions{KeepUnknowns: true})
|
|
if err != nil {
|
|
return "", nil, err
|
|
}
|
|
|
|
// submit request
|
|
resp, err := rm.resmon.ReadResource(context.Background(), &pulumirpc.ReadResourceRequest{
|
|
Type: string(t),
|
|
Name: name,
|
|
Parent: string(parent),
|
|
Provider: provider,
|
|
Properties: ins,
|
|
})
|
|
if err != nil {
|
|
return "", nil, err
|
|
}
|
|
|
|
// unmarshal outputs
|
|
outs, err := plugin.UnmarshalProperties(resp.Properties, plugin.MarshalOptions{KeepUnknowns: true})
|
|
if err != nil {
|
|
return "", nil, err
|
|
}
|
|
|
|
return resource.URN(resp.Urn), outs, nil
|
|
}
|
|
|
|
func (rm *ResourceMonitor) Invoke(tok tokens.ModuleMember,
|
|
inputs resource.PropertyMap, provider string) (resource.PropertyMap, []*pulumirpc.CheckFailure, error) {
|
|
|
|
// marshal inputs
|
|
ins, err := plugin.MarshalProperties(inputs, plugin.MarshalOptions{KeepUnknowns: true})
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
// submit request
|
|
resp, err := rm.resmon.Invoke(context.Background(), &pulumirpc.InvokeRequest{
|
|
Tok: string(tok),
|
|
Provider: provider,
|
|
Args: ins,
|
|
})
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
// handle failures
|
|
if len(resp.Failures) != 0 {
|
|
return nil, resp.Failures, nil
|
|
}
|
|
|
|
// unmarshal outputs
|
|
outs, err := plugin.UnmarshalProperties(resp.Return, plugin.MarshalOptions{KeepUnknowns: true})
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
return outs, nil, nil
|
|
}
|