pulumi/pkg/encoding/decode_expressions.go
joeduffy db99092334 Implement mapper.Encode "for real"
This change implements `mapper.Encode` "for real" (that is, in a way
that isn't a complete embarrassment).  It uses the obvious reflection
trickery to encode a tagged struct and its values as a JSON-like
in-memory map and collection of keyed values.

During this, I took the opportunity to also clean up a few other things
that had been bugging me.  Namely, the presence of `mapper.Object` was
always error prone, since it isn't a true "typedef" in the sence that
it carries extra RTTI.  Instead of doing that, let's just use the real
`map[string]interface{}` "JSON-map-like" object type.  Even better, we
no longer require resource providers to deal with the mapper
infrastructure.  Instead, the `Check` function can simply return an
array of errors.  It's still best practice to return field-specific errors
to facilitate better diagnostics, but it's no longer required; and I've
added `resource.NewFieldError` to eliminate the need to import mapper.

As of this change, we can also consistently emit RPC structs with `lumi`
tags, rather than `lumi` tags on the way in and `json` on the way out.

This completes pulumi/lumi#183.
2017-06-05 17:49:00 -07:00

242 lines
7.1 KiB
Go

// Licensed to Pulumi Corporation ("Pulumi") under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// Pulumi licenses this file to You 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 encoding
import (
"reflect"
"github.com/pulumi/lumi/pkg/compiler/ast"
"github.com/pulumi/lumi/pkg/util/contract"
"github.com/pulumi/lumi/pkg/util/mapper"
)
func decodeExpression(m mapper.Mapper, obj map[string]interface{}) (ast.Expression, error) {
k, err := mapper.FieldString(obj, reflect.TypeOf((*ast.Expression)(nil)).Elem(), "kind", true)
if err != nil {
return nil, err
}
if k != nil {
kind := ast.NodeKind(*k)
switch kind {
// Literals
case ast.NullLiteralKind:
return decodeNullLiteral(m, obj)
case ast.BoolLiteralKind:
return decodeBoolLiteral(m, obj)
case ast.NumberLiteralKind:
return decodeNumberLiteral(m, obj)
case ast.StringLiteralKind:
return decodeStringLiteral(m, obj)
case ast.ArrayLiteralKind:
return decodeArrayLiteral(m, obj)
case ast.ObjectLiteralKind:
return decodeObjectLiteral(m, obj)
// Loads
case ast.LoadLocationExpressionKind:
return decodeLoadLocationExpression(m, obj)
case ast.LoadDynamicExpressionKind:
return decodeLoadDynamicExpression(m, obj)
case ast.TryLoadDynamicExpressionKind:
return decodeTryLoadDynamicExpression(m, obj)
// Functions
case ast.NewExpressionKind:
return decodeNewExpression(m, obj)
case ast.InvokeFunctionExpressionKind:
return decodeInvokeFunctionExpression(m, obj)
case ast.LambdaExpressionKind:
return decodeLambdaExpression(m, obj)
// Operators
case ast.UnaryOperatorExpressionKind:
return decodeUnaryOperatorExpression(m, obj)
case ast.BinaryOperatorExpressionKind:
return decodeBinaryOperatorExpression(m, obj)
// Type testing
case ast.CastExpressionKind:
return decodeCastExpression(m, obj)
case ast.IsInstExpressionKind:
return decodeIsInstExpression(m, obj)
case ast.TypeOfExpressionKind:
return decodeTypeOfExpression(m, obj)
// Miscellaneous
case ast.ConditionalExpressionKind:
return decodeConditionalExpression(m, obj)
case ast.SequenceExpressionKind:
return decodeSequenceExpression(m, obj)
default:
contract.Failf("Unrecognized Expression kind: %v\n%v\n", kind, obj)
}
}
return nil, nil
}
func decodeNullLiteral(m mapper.Mapper, obj map[string]interface{}) (*ast.NullLiteral, error) {
var lit ast.NullLiteral
if err := m.Decode(obj, &lit); err != nil {
return nil, err
}
return &lit, nil
}
func decodeBoolLiteral(m mapper.Mapper, obj map[string]interface{}) (*ast.BoolLiteral, error) {
var lit ast.BoolLiteral
if err := m.Decode(obj, &lit); err != nil {
return nil, err
}
return &lit, nil
}
func decodeNumberLiteral(m mapper.Mapper, obj map[string]interface{}) (*ast.NumberLiteral, error) {
var lit ast.NumberLiteral
if err := m.Decode(obj, &lit); err != nil {
return nil, err
}
return &lit, nil
}
func decodeStringLiteral(m mapper.Mapper, obj map[string]interface{}) (*ast.StringLiteral, error) {
var lit ast.StringLiteral
if err := m.Decode(obj, &lit); err != nil {
return nil, err
}
return &lit, nil
}
func decodeArrayLiteral(m mapper.Mapper, obj map[string]interface{}) (*ast.ArrayLiteral, error) {
var lit ast.ArrayLiteral
if err := m.Decode(obj, &lit); err != nil {
return nil, err
}
return &lit, nil
}
func decodeObjectLiteral(m mapper.Mapper, obj map[string]interface{}) (*ast.ObjectLiteral, error) {
var lit ast.ObjectLiteral
if err := m.Decode(obj, &lit); err != nil {
return nil, err
}
return &lit, nil
}
func decodeLoadLocationExpression(m mapper.Mapper, obj map[string]interface{}) (*ast.LoadLocationExpression, error) {
var expr ast.LoadLocationExpression
if err := m.Decode(obj, &expr); err != nil {
return nil, err
}
return &expr, nil
}
func decodeLoadDynamicExpression(m mapper.Mapper, obj map[string]interface{}) (*ast.LoadDynamicExpression, error) {
var expr ast.LoadDynamicExpression
if err := m.Decode(obj, &expr); err != nil {
return nil, err
}
return &expr, nil
}
func decodeTryLoadDynamicExpression(m mapper.Mapper, obj map[string]interface{}) (*ast.TryLoadDynamicExpression, error) {
var expr ast.TryLoadDynamicExpression
if err := m.Decode(obj, &expr); err != nil {
return nil, err
}
return &expr, nil
}
func decodeNewExpression(m mapper.Mapper, obj map[string]interface{}) (*ast.NewExpression, error) {
var expr ast.NewExpression
if err := m.Decode(obj, &expr); err != nil {
return nil, err
}
return &expr, nil
}
func decodeInvokeFunctionExpression(m mapper.Mapper, obj map[string]interface{}) (*ast.InvokeFunctionExpression, error) {
var expr ast.InvokeFunctionExpression
if err := m.Decode(obj, &expr); err != nil {
return nil, err
}
return &expr, nil
}
func decodeLambdaExpression(m mapper.Mapper, obj map[string]interface{}) (*ast.LambdaExpression, error) {
var expr ast.LambdaExpression
if err := m.Decode(obj, &expr); err != nil {
return nil, err
}
return &expr, nil
}
func decodeUnaryOperatorExpression(m mapper.Mapper, obj map[string]interface{}) (*ast.UnaryOperatorExpression, error) {
var expr ast.UnaryOperatorExpression
if err := m.Decode(obj, &expr); err != nil {
return nil, err
}
return &expr, nil
}
func decodeBinaryOperatorExpression(m mapper.Mapper, obj map[string]interface{}) (*ast.BinaryOperatorExpression, error) {
var expr ast.BinaryOperatorExpression
if err := m.Decode(obj, &expr); err != nil {
return nil, err
}
return &expr, nil
}
func decodeCastExpression(m mapper.Mapper, obj map[string]interface{}) (*ast.CastExpression, error) {
var expr ast.CastExpression
if err := m.Decode(obj, &expr); err != nil {
return nil, err
}
return &expr, nil
}
func decodeIsInstExpression(m mapper.Mapper, obj map[string]interface{}) (*ast.IsInstExpression, error) {
var expr ast.IsInstExpression
if err := m.Decode(obj, &expr); err != nil {
return nil, err
}
return &expr, nil
}
func decodeTypeOfExpression(m mapper.Mapper, obj map[string]interface{}) (*ast.TypeOfExpression, error) {
var expr ast.TypeOfExpression
if err := m.Decode(obj, &expr); err != nil {
return nil, err
}
return &expr, nil
}
func decodeConditionalExpression(m mapper.Mapper, obj map[string]interface{}) (*ast.ConditionalExpression, error) {
var expr ast.ConditionalExpression
if err := m.Decode(obj, &expr); err != nil {
return nil, err
}
return &expr, nil
}
func decodeSequenceExpression(m mapper.Mapper, obj map[string]interface{}) (*ast.SequenceExpression, error) {
var expr ast.SequenceExpression
if err := m.Decode(obj, &expr); err != nil {
return nil, err
}
return &expr, nil
}