conversions

package
v0.0.0-...-8ad424e Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 1, 2024 License: MIT Imports: 9 Imported by: 0

README

Property Conversions

One of our challenges is generating the code to copy losslessly between different versions of each resource.

How it works

The primary entry point is CreateTypeConversion:

func CreateTypeConversion(
    sourceEndpoint *TypedConversionEndpoint,
    destinationEndpoint *TypedConversionEndpoint,
    conversionContext *PropertyConversionContext) (PropertyConversion, error)
  • sourceEndpoint captures the name and type of the source value that needs to be transferred;
  • destinationEndpoint similarly captures the name and type of the destination that needs to be populated;
  • conversionContext contains other information about the conversion being generated.

The core algorithm works by scanning through the handlers listed in propertyConversionFactories to find one that can handle the current conversion.

Many of these conversion handlers only handle a part of the conversion, relying on a recursive call to CreateTypeConversion() to handle the rest. For example, AssignFromOptional knows how to handle an optional source value, so when it sees a sourceEndpoint containing an optional value, it will strip the optionality from the endpoint and call CreateTypeConversion() to see if the simpler conversion is possible.

All of the handlers follow a similar structure:

  • Check prerequisites
  • Preparation
  • Generation

Each handler returns one of the following:

  • (PropertyConversion, nil) - the handler successfully provided a conversion.
  • (nil, error) - the handler tried to provide a conversion, but something went wrong.
  • (nil, nil) - the handler doesn't apply to this situation.

In the examples below we'll see how these play out.

Simple properties

Support for simple assignments, where the value is a simple atomic value (such as an int or string value) that needs to be copied across, is provided by assignPrimitiveFromPrimitive().

All handlers have the same function signature:

func assignPrimitiveFromPrimitive(
    sourceEndpoint *TypedConversionEndpoint,
    destinationEndpoint *TypedConversionEndpoint,
    _ *PropertyConversionContext) (PropertyConversion, error) {

For the purposes of illustration, let's work with a sample pair of endpoints, depicted in Go syntax:

sourceEndpoint := &TypedConversionEndpoint {
    name:    "Quantity",
    theType: IntType,
}

destinationEndpoint := &TypedConversionEndpoint {
    name:    "Quantity",
    theType: &FlaggedType {
        element: IntType,
        flags:   // ... elided ...
    }
}

Note how the type of destinationEndpoint includes some flags. This is a common model, and explains why we use As*() conversion methods rather than simple Go casts. Some of the wrapper types - such as OptionalType are important for our conversions, so we look out for those as we go.

The function starts with checking prerequisites - the conditions under which this handler will trigger. Each bails out early if we find that the prerequisite is not satisfied.

    // Require both source and destination to not be bag items
    if sourceEndpoint.IsBagItem() || destinationEndpoint.IsBagItem() {
        return nil, nil
    }

// Require both source and destination to be non-optional
    if sourceEndpoint.IsOptional() || destinationEndpoint.IsOptional() {
        return nil, nil
    }

Neither of our endpoints is a bag item, and neither is optional, so our sample data passes these checks and the handler continues. (Property bags are used to stash property values when there's no direct storage available - these are discussed later on.)

Only primitive types can be simply copied across, so we check that both endpoints are the same primitive type.

    // Require source to be a primitive type
    sourcePrimitive, sourceIsPrimitive := astmodel.AsPrimitiveType(sourceEndpoint.Type())
    if !sourceIsPrimitive {
        return nil, nil
    }

    // Require destination to be a primitive type
    destinationPrimitive, destinationIsPrimitive := astmodel.AsPrimitiveType(destinationEndpoint.Type())
    if !destinationIsPrimitive {
        return nil, nil
    }

    // Require both properties to have the same primitive type
    if !astmodel.TypeEquals(sourcePrimitive, destinationPrimitive) {
        return nil, nil
    }

When applied to sourceEndPoint.Type(), the AsPrimitiveType() conversion function returns the underlying IntType. It also knows how to unwrap our composite types, so when applied to destinationEndPoint.Type() it tunnels through the FlaggedType and also returns IntType. Since both types are the same, the last check passes as well.

We finish by returning a function that creates the required code.

    return func(
        reader dst.Expr, 
        writer func(dst.Expr) []dst.Stmt, 
        knownLocals *astmodel.KnownLocalsSet, 
        generationContext *astmodel.CodeGenerationContext) []dst.Stmt {
        return writer(reader)
    }, nil
}

Every handler returns a function of this form.

The first parameter, reader, is an expression giving access to the original value. The Go type of this expression will always match the type represented by the sourceEndpoint originally passed in.

The second parameter, writer, is a function to generate a set of statements writing an expression to our final destination. The expression passed to writer must always hava a Go type matching the type represented by the destinationEndpoint originally passed in.

Any local variables generated by each handler are collected in knownLocals. On entry, this will contain any local variables declared by previous handlers, and it contains methods allowing us to ensure that each local variable has a unique name.

Lastly, generationContext contains information about the larger context of this conversion. This includes, for example, a complete list of which packages are available for import and which alias should be used for each one.

For this simple property assignment handler, we don't need any intermediate transformation, so we can just write the value by passing reader directly to writer.

Our final generated code does what you expect:

destination.Quantity = source.Quantity

Optional Values

When one or the other values is optional, we can't just copy the pointer across - we'd end up sharing the contents between the source and destination. This may not be safe as changes made to one object would be visible to another.

A pair of handlers - assignFromOptional and assignToOptional - work together to handle these cases.

Let's look at how assignFromOptional works, with another sample pair of endpoints:

sourceEndpoint := &TypedConversionEndpoint {
    name:    "Quantity",
    theType: &OptionalType {
        element: IntType,
    },
}

destinationEndpoint := &TypedConversionEndpoint {
    name:    "Quantity",
    theType: &FlaggedType {
        element: &OptionalType {
            element: IntType,
        },
        flags:   // ... elided ...
    }
}

Again we've included some flags on destinationEndpoint. Note how the OptionalType is wrapped within the FlaggedType.

We start with the standard function signature required of all handlers:

func assignFromOptional(
    sourceEndpoint *TypedConversionEndpoint,
    destinationEndpoint *TypedConversionEndpoint,
    conversionContext *PropertyConversionContext) (PropertyConversion, error) {

For our prerequisites, we require that we aren't reading from a property bag, and that the source must be optional.

    // Require source to not be a bag item
    if sourceEndpoint.IsBagItem() {
        return nil, nil
    }

    // Require source to be optional
    sourceOptional, sourceIsOptional := astmodel.AsOptionalType(sourceEndpoint.Type())
    if !sourceIsOptional {
        return nil, nil
    }

When passed our demonstration sourceEndpoint.Type(), the helper AsOptionalType returns the expected OptionalType.

No prerequisite checks are made on destinationEndpoint because this particular handler doesn't care.

To proceed, need to be able to convert between the non-optional source and our destination. Finding out whether this is supported, involves a recursive call to CreateTypeConversion using a new source endpoint that contains the unwrapped contents from the OptionalType returned earlier. If that doesn't work, we bail out.

    // Require a conversion between the unwrapped type and our source
    unwrappedEndpoint := sourceEndpoint.
        WithType(sourceOptional.Element())
    conversion, err := CreateTypeConversion(
        unwrappedEndpoint,
        destinationEndpoint,
        conversionContext)
    if err != nil {
        return nil, err
    }
    if conversion == nil {
        return nil, nil
    }

Since we have the necessary conversion, we return our generator function.

    return func(
        reader dst.Expr, 
        writer func(dst.Expr) []dst.Stmt, 
        knownLocals *astmodel.KnownLocalsSet, 
        generationContext *astmodel.CodeGenerationContext) []dst.Stmt {

One of our guiding principles is that the generated code should look hand written whenever possible, to aid in code-review and debugging. We check what kind of reader we are given. If it's a local variable or a field selector, we can use it directly and skip creating a local variable.

        var cacheOriginal dst.Stmt
        var actualReader dst.Expr

        switch reader.(type) {
        case *dst.Ident, *dst.SelectorExpr:
            // reading a local variable or a field
            cacheOriginal = nil
            actualReader = reader
        default:
            // Something else, so we cache the original
            local := knownLocals.CreateSingularLocal(
                sourceEndpoint.Name(), 
                "", "AsRead")
            cacheOriginal = astbuilder.ShortDeclaration(local, reader)
            actualReader = dst.NewIdent(local)
        }
  • cacheOriginal is an optional statement that reads our value and stashes it in a local variable.
  • actualReader is an expression for use later in the function. It reads from our local variable (if used), or directly from our source (if not).

The ShortDeclaration helper method is passed both the name of a local variable, and an expression to use when initializing it.

For the purposes of our demonstration, we'll assume we're reading directly from a field, so no local cache is necessary.

Writing the actual value uses our nested conversion. We pass in dereference of the expression to reveal the actual value.

        writeActualValue := conversion(
            astbuilder.Dereference(actualReader),
            writer,
            knownLocals.Clone(),
            generationContext)

We use a clone of knownLocals as any local variables created by the nested conversion will be scoped within our if statement and won't be visible to later code.

If no value is available, we still want to write something - so we'll write a zero value.

        writeZeroValue := writer(
            destinationEndpoint.Type().
                AsZero(conversionContext.Types(), generationContext))

We can now build the final statement, checking to see if we have a value at all and then assigning either it or zero.

        checkForNil := astbuilder.AreNotEqual(actualReader, astbuilder.Nil())

        stmt := astbuilder.SimpleIfElse(
            checkForNil,
            writeActualValue,
            writeZeroValue)

From the astbuilder package we use Statements() to stitch together our fragments into a sequence of statements that we return. This helper is smart enough to omit any missing fragments (as when we don't need cacheOriginal) and to flatten any passed statement slices.

        return astbuilder.Statements(cacheOriginal, stmt)
    }, nil
}

Our final generated code:

if source.Quantity != nil {
    destination.Quantity = *source.Quantity
} else {
    destination.Quantity = 0
}

We assign 0 in the else branch because that's the zero value for an integer.

Container types

If the property is a container (a list or dictionary), we need to copy all the individual items across. The assignArrayFromArray and assignMapFromMap handlers do this.

The assignArrayFromArray handler is representative. As usual, here are two sample endpoints:

sourceEndpoint := &TypedConversionEndpoint {
    name:    "Aliases",
    theType: &ArrayType {
        element: StringType,
    }
}

destinationEndpoint := &TypedConversionEndpoint {
    name:    "Aliases",
    theType: &ValidatedType {
        element: &ArrayType {
            element: StringType,
        },
        validations: // ... elided ...
    }
}

Our destination endpoint is a validated array.

We begin with the standard function signature.

func assignArrayFromArray(
    sourceEndpoint *TypedConversionEndpoint,
    destinationEndpoint *TypedConversionEndpoint,
    conversionContext *PropertyConversionContext) (PropertyConversion, error) {

We don't support bag items here, so we check for them up front.

    // Require both source and destination to not be bag items
    if sourceEndpoint.IsBagItem() || destinationEndpoint.IsBagItem() {
        return nil, nil
    }

Both the source and destination must be array types.

    // Require source to be an array type
    sourceArray, sourceIsArray := 
        astmodel.AsArrayType(sourceEndpoint.Type())
    if !sourceIsArray {
        return nil, nil
    }

    // Require destination to be an array type
    destinationArray, destinationIsArray := 
        astmodel.AsArrayType(destinationEndpoint.Type())
    if !destinationIsArray {
        return nil, nil
    }

As we've seen before with other helper methods, AsArrayType() will unwrap the ValidatedType, returning the array within.

It's not enough to have two arrays. We must also have a way to convert each item from the source array into an item for the destination array.

To find such a conversion we create a pair of endpoints by unwrapping the array definitions, and then recursively call CreateTypeConversion.

    // Require a conversion between the array definitions
    unwrappedSourceEndpoint := sourceEndpoint.
        WithType(sourceArray.Element())
    unwrappedDestinationEndpoint := destinationEndpoint.
        WithType(destinationArray.Element())
    conversion, err := CreateTypeConversion(
        unwrappedSourceEndpoint,
        unwrappedDestinationEndpoint,
        conversionContext)

For our sample endpoints, you'd correctly predict that assignPrimitiveFromPrimitive will be involved here. We don't try and do that directly because there are too many possibilities to handle - recursively calling CreateTypeConversion with a smaller problem both gives us greatest flexiblity, and helps keep each handler relatively simple.

Returning a high quality error message is critical to anyone trying to debug conversion failures, so we construct a useful one here. The DebugDescription() handler returns a string that contains a comprehensive breakdown of the type. If it encounters a TypeName, the definition is looked up and a description of that type is included as well.

    if err != nil {
        return nil, errors.Wrapf(
            err,
            "finding array conversion from %s to %s",
            astmodel.DebugDescription(
                sourceEndpoint.Type(), 
                conversionContext.Types()),
            astmodel.DebugDescription(
                destinationEndpoint.Type(), 
                conversionContext.Types()))
    }
    if conversion == nil {
        return nil, nil
    }

With all our prerequisites satisfied, we return our conversion function.

    return func(
        reader dst.Expr, 
        writer func(dst.Expr) []dst.Stmt, 
        knownLocals *astmodel.KnownLocalsSet, 
        generationContext *astmodel.CodeGenerationContext) []dst.Stmt {

As we did above in assignFromOptional, we want to keep the quality of our generated code high by avoiding a local variable if we don't need one.

        var cacheOriginal dst.Stmt
        var actualReader dst.Expr

        switch reader.(type) {
        case *dst.Ident, *dst.SelectorExpr:
            // reading a local variable or a field
            cacheOriginal = nil
            actualReader = reader
        default:
            // Something else, so we cache the original
            local := knownLocals.CreateSingularLocal(
                sourceEndpoint.Name(), 
                "", 
                "Cache")
            cacheOriginal = astbuilder.ShortDeclaration(
                local, 
                reader)
            actualReader = dst.NewIdent(local)
        }
  • cacheOriginal is an optional statement that reads our value and stashes it in a local variable.
  • actualReader is an expression for use later in the function. It reads from our local variable (if used), or directly from our source (if not).

Our array may be nil, so we need to check and avoid dereferencing it if so.

        checkForNil := astbuilder.AreNotEqual(actualReader, astbuilder.Nil())

Using knownLocals, we create three obviously related identifiers to use for the array conversion. Each uses the name of our source as a base, with a different suffix.

We use different suffixes here to those used in assignMapFromMap in order to keep the code easy to read if the two are nested.

        branchLocals := knownLocals.Clone()
        tempId := branchLocals.
            CreateSingularLocal(sourceEndpoint.Name(), "List")

        loopLocals := branchLocals.Clone()
        itemId := loopLocals.
            CreateSingularLocal(sourceEndpoint.Name(), "Item")
        indexId := loopLocals.
            CreateSingularLocal(sourceEndpoint.Name(), "Index")
  • List is the final list we're creating
  • Item is a single item from the source list
  • Index is the integer index of the item we're converting

Clones of knownLocals are used for each nested scope (one inside our if statement, see below; the other inside our loop) so that definitions don't leak out.

Our declaration initializes a new list of the correct final size.

        declaration := astbuilder.ShortDeclaration(
            tempId,
            astbuilder.MakeSlice(
                destinationArray.AsType(generationContext), 
                astbuilder.CallFunc("len", actualReader)))

We create a custom writer to store values into our at a given index.

        writeToElement := func(expr dst.Expr) []dst.Stmt {
            return []dst.Stmt{
                astbuilder.SimpleAssignment(
                    &dst.IndexExpr{
                        X:     dst.NewIdent(tempId),
                        Index: dst.NewIdent(indexId),
                    },
                    expr),
            }
        }

Within our loop we create a copy of the item variable, to avoid aliasing between loops. We know for our sample case that an alias isn't necessary - but we don't know generally know what conversions might do, so this is a safety precaution.

        avoidAliasing := astbuilder.ShortDeclaration(itemId, dst.NewIdent(itemId))
        avoidAliasing.Decs.Start.
            Append("// Shadow the loop variable to avoid aliasing")
        avoidAliasing.Decs.Before = dst.NewLine

The loop body copies one item across to the final array using the nested conversion we obtained earlier.

        loopBody := astbuilder.Statements(
            avoidAliasing,
            conversion(
                dst.NewIdent(itemId), 
                writeToElement, 
                loopLocals, 
                generationContext))

We build the loop itself by iterating over that body once for each item in the list. Fortunately, we have a helper for that:

        loop := astbuilder.IterateOverSliceWithIndex(
            indexId, 
            itemId, 
            reader, 
            loopBody...)
  • indexId is a string with the name to use for our integer index
  • itemId is a string with the name to use for each item
  • reader is an Expr detailing how to retrieve the slice for iteration
  • loopBody is the set of statements to put within the loop

After iterating through all the items, we assign the final list to the destination by calling writer.

        assignValue := writer(dst.NewIdent(tempId))

Finally, we wrap that loop within an if statement.

Earlier we created a test to see if the source array is present at all. If it's present (not nil), we copy across all the items. If not, we explicitly assign nil using writer to ensure we don't leave any debris lying around.

        trueBranch := astbuilder.Statements(
            declaration, 
            loop, 
            assignValue)

        assignZero := writer(astbuilder.Nil())

        return astbuilder.Statements(
            cacheOriginal,
            astbuilder.SimpleIfElse(
                checkForNil, 
                trueBranch, 
                assignZero))
    }, nil
}

The final generated code.

if source.Aliases != nil {
    aliasList := make([]string, len(source.Aliases))
    for aliasIndex, aliasItem := range source.Aliases {
        aliasItem := aliasItem
        aliasList[aliasIndex] = aliasItem
    }

    destination.Aliases = aliasList
} else {
    destination.Aliases = nil
}

Property Bags

To ensure properties aren't lost as we convert between different resource versions, we sometimes stash values into a property bag - a map containing a key/value collection of strings.

The pullFromBagItem and writeToBagItem handlers provide support for these conversions.

The pullFromBagItem handler is representative. Our two sample endpoints:

sourceEndpoint := &TypedConversionEndpoint {
    name:    "Alias",
    theType: StringType,
}

destinationEndpoint := &TypedConversionEndpoint {
    name:    "Alias",
    theType: &PropertyBagMemberType {
        element: StringType,
    }
}

As always, we being with the standard function signature:

func pullFromBagItem(
	sourceEndpoint *TypedConversionEndpoint,
	destinationEndpoint *TypedConversionEndpoint,
	conversionContext *PropertyConversionContext) (PropertyConversion, error) {

Unlike our other handlers, this time we want to have a bag item.

	// Require source to be a bag item
	sourceBagItem, sourceIsBagItem := AsPropertyBagMemberType(sourceEndpoint.Type())
	if !sourceIsBagItem {
		return nil, nil
	}

Now we isolate the destination type.

	// Work out our destination type, and whether it's optional
	actualDestinationType := destinationEndpoint.Type()
	destinationOptional, destinationIsOptional := astmodel.AsOptionalType(actualDestinationType)
	if destinationIsOptional {
		actualDestinationType = destinationOptional.BaseType()
	}

We require the item in the bag to be exactly the same type as our destination. We don't want to recursively do all the conversions because our property bag item should always contain exactly the expected type, with no conversion required.

Plus, our conversions are designed to isolate the source and destination from each other (so that changes to one don't impact the other), but with the property bag everything gets immediately serialized to a string so everything is already nicely isolated.

	if !astmodel.TypeEquals(sourceBagItem.Element(), actualDestinationType) {
		return nil, nil
	}

Now we can return our generator function.

	errIdent := dst.NewIdent("err")

	return func(
        _ dst.Expr, 
        writer func(dst.Expr) []dst.Stmt, 
        knownLocals *astmodel.KnownLocalsSet, 
        generationContext *astmodel.CodeGenerationContext) []dst.Stmt {

Our first parameter is an expression to read the value from our source instance, but we know it doesn't exist there - we're going to read it from the property bag - so we're ignoring it.

We create a local variable to store the value we're reading. By default we want to avoid using a suffix, but if there's already a conflicting local, we use the suffix Read. (And, if that also conflicts, CreateSingularLocal will add a numeric suffix ensure it's unique.)

		local := knownLocals.CreateSingularLocal(
            sourceEndpoint.Name(), 
            "", "Read")

We need to know the import name used for the errors package - we can't assume that it will always be errors. This also signals to the context that the import is being imported, ensuring it will be included in the final file.

		errorsPkg := generationContext.MustGetImportedPackageName(
            astmodel.GitHubErrorsReference)

The predicate Contains() on the property bag is used to see if there's a value to pull.

		condition := astbuilder.CallQualifiedFunc(
			conversionContext.PropertyBagName(),
			"Contains",
			astbuilder.StringLiteral(sourceEndpoint.Name()))

We declare our local variable, and then call Pull() to read the value.

		declare := astbuilder.NewVariableWithType(
			local,
			sourceBagItem.AsType(generationContext))

		pull := astbuilder.ShortDeclaration(
			"err",
			astbuilder.CallQualifiedFunc(
				conversionContext.PropertyBagName(),
				"Pull",
				astbuilder.StringLiteral(sourceEndpoint.Name()),
				astbuilder.AddrOf(dst.NewIdent(local))))

The method is called Pull() because it removes the value from the bag as well - we do more than read it.

If something went wrong (e.g. we were unable to deserialize the value property), we return the error. We wrap the returned error with some context so that it's clear which property we were trying to pull from the bag.

		returnIfErr := astbuilder.ReturnIfNotNil(
			errIdent,
			astbuilder.WrappedErrorf(
				errorsPkg,
				"pulling '%s' from propertyBag",
				sourceEndpoint.Name()))
		returnIfErr.Decorations().After = dst.EmptyLine
``

Now we create a new reader, based on our local variable. We have two ways to initialize this, depending on whether our destination is optional or not.

``` go
		var reader dst.Expr
		if destinationIsOptional {
			reader = astbuilder.AddrOf(dst.NewIdent(local))
		} else {
			reader = dst.NewIdent(local)
		}

Assigning the value is straightforward.

		assignValue := writer(reader)

If the bag doesn't contain the value we want, we need to assign a zero value instead.

		assignZero := writer(
            destinationEndpoint.Type().
            AsZero(conversionContext.Types(), 
            generationContext))

Finally we can wrap all of these building blocks into an if statement and return the final result.

		ifStatement := astbuilder.SimpleIfElse(
			condition,
			astbuilder.Statements(declare, pull, returnIfErr, assignValue),
			assignZero)

		return astbuilder.Statements(ifStatement)
	}, nil
}

The final generated code has this form:

	// Family
	if propertyBag.Contains("Family") {
		var family string
		err := propertyBag.Pull("Family", &family)
		if err != nil {
			return errors.Wrap(err, "pulling 'Family' from propertyBag")
		}

		sku.Family = &family
	} else {
		sku.Family = nil
	}

Conclusion

There many other property conversion handlers, but they all follow the same structure as the ones detailed here, each handling a specific scenario and recursively calling CreateTypeConversion() to handle anything else needed.

Documentation

Index

Constants

View Source
const (
	AssignPropertiesMethodPrefix = "AssignProperties"
	InitializationMethodPrefix   = "Initialize"
)

Variables

This section is empty.

Functions

func NameOfPropertyAssignmentFunction

func NameOfPropertyAssignmentFunction(
	baseName string,
	parameterType astmodel.TypeName,
	direction Direction,
	idFactory astmodel.IdentifierFactory,
) string

NameOfPropertyAssignmentFunction returns the name of the property assignment function

Types

type ConvertFromDirection

type ConvertFromDirection struct{}

func (*ConvertFromDirection) SelectExpr

func (dir *ConvertFromDirection) SelectExpr(fromExpr dst.Expr, _ dst.Expr) dst.Expr

SelectExpr returns the expression for conversion FROM

func (*ConvertFromDirection) SelectName

SelectName returns one of the provided names, depending on the direction of conversion

func (*ConvertFromDirection) SelectString

func (dir *ConvertFromDirection) SelectString(fromString string, _ string) string

SelectString returns the string for conversion FROM

func (*ConvertFromDirection) SelectType

func (dir *ConvertFromDirection) SelectType(fromType astmodel.Type, _ astmodel.Type) astmodel.Type

SelectType returns the type for conversion FROM

func (*ConvertFromDirection) WhenFrom

func (dir *ConvertFromDirection) WhenFrom(fn func()) Direction

WhenFrom will run the supplied function, returning this FROM direction for chaining

func (*ConvertFromDirection) WhenTo

func (dir *ConvertFromDirection) WhenTo(_ func()) Direction

WhenTo will skip the supplied function, returning this FROM direction for chaining

type ConvertToDirection

type ConvertToDirection struct{}

func (*ConvertToDirection) SelectExpr

func (dir *ConvertToDirection) SelectExpr(_ dst.Expr, toExpr dst.Expr) dst.Expr

SelectExpr returns the expression for conversion TO

func (*ConvertToDirection) SelectName

SelectName returns one of the provided names, depending on the direction of conversion

func (*ConvertToDirection) SelectString

func (dir *ConvertToDirection) SelectString(_ string, toValue string) string

SelectString returns the string for conversion TO

func (*ConvertToDirection) SelectType

func (dir *ConvertToDirection) SelectType(_ astmodel.Type, toType astmodel.Type) astmodel.Type

SelectType returns the type for conversion TO

func (*ConvertToDirection) WhenFrom

func (dir *ConvertToDirection) WhenFrom(_ func()) Direction

WhenFrom will skip the supplied function, returning this TO direction for chaining

func (*ConvertToDirection) WhenTo

func (dir *ConvertToDirection) WhenTo(fn func()) Direction

WhenTo will run the supplied function, returning this TO direction for chaining

type Direction

type Direction interface {
	// SelectString returns one of the provided strings, depending on the direction of conversion
	SelectString(from string, to string) string
	// SelectType returns one of the provided types, depending on the direction of conversion
	SelectType(from astmodel.Type, to astmodel.Type) astmodel.Type
	// SelectName returns one of the provided names, depending on the direction of conversion
	SelectName(from astmodel.InternalTypeName, to astmodel.InternalTypeName) astmodel.InternalTypeName
	// SelectExpr returns on one of the provided expressions, depending on the direction of conversion
	SelectExpr(from dst.Expr, to dst.Expr) dst.Expr
	// WhenFrom will run the specified function only if the direction is "From", returning the current direction for chaining
	WhenFrom(fn func()) Direction
	// WhenTo will run the specified function only if the direction is "To", returning the current direction for chaining
	WhenTo(fn func()) Direction
}

Direction specifies the direction of conversion we're implementing with this function

var (
	// ConvertFrom indicates the conversion is from the passed 'other', populating the receiver with properties from the other
	ConvertFrom Direction = &ConvertFromDirection{}
	// ConvertTo indicates the conversion is to the passed 'other', populating the other with properties from the receiver
	ConvertTo Direction = &ConvertToDirection{}
)

type PropertyBagMemberType

type PropertyBagMemberType struct {
	// contains filtered or unexported fields
}

PropertyBagMemberType is a wrapper type for properties that are stored-in/recalled-from a PropertyBag Using this custom type allows us to cleanly define endpoints that read-from/write-to the property bag without needing to introduce special cases through the conversions package. Instead, code generation of the conversion steps now naturally falls out of the usual flow - the endpoints contain definitions, and handlers for those definitions pick up the context and generate the required code.

func AsPropertyBagMemberType

func AsPropertyBagMemberType(aType astmodel.Type) (*PropertyBagMemberType, bool)

AsPropertyBagMemberType unwraps any wrappers around the provided type and returns either the underlying PropertyBagMemberType and true, or nil and false.

func NewPropertyBagMemberType

func NewPropertyBagMemberType(element astmodel.Type) *PropertyBagMemberType

NewPropertyBagMemberType returns a new PropertyBagMemberType, ready for use by the conversion framework A bag item can't be optional, so if we're given an optional type we just unwrap it

func (*PropertyBagMemberType) AsDeclarations

func (b *PropertyBagMemberType) AsDeclarations(
	codeGenerationContext *astmodel.CodeGenerationContext,
	declContext astmodel.DeclarationContext,
) ([]dst.Decl, error)

AsDeclarations panics because this is a metatype that will never be rendered

func (*PropertyBagMemberType) AsTypeExpr

func (b *PropertyBagMemberType) AsTypeExpr(codeGenerationContext *astmodel.CodeGenerationContext) (dst.Expr, error)

AsType renders as our contained type

func (*PropertyBagMemberType) AsZero

AsZero renders an expression for the "zero" value of the type

func (*PropertyBagMemberType) Element

func (b *PropertyBagMemberType) Element() astmodel.Type

Element returns the type contained by the bag item

func (*PropertyBagMemberType) Equals

Equals returns true if the passed type is a PropertyBagMemberType with the same element this one, false otherwise

func (*PropertyBagMemberType) References

func (b *PropertyBagMemberType) References() astmodel.TypeNameSet

References returns the names of all definitions that the element type we wrap references.

func (*PropertyBagMemberType) RequiredPackageReferences

func (b *PropertyBagMemberType) RequiredPackageReferences() *astmodel.PackageReferenceSet

RequiredPackageReferences returns a set of packages imports required by the element we wrap

func (*PropertyBagMemberType) String

func (b *PropertyBagMemberType) String() string

String returns a string representing the type

func (*PropertyBagMemberType) Unwrap

func (b *PropertyBagMemberType) Unwrap() astmodel.Type

Unwrap returns the type contained within the wrapper type

func (*PropertyBagMemberType) WriteDebugDescription

func (b *PropertyBagMemberType) WriteDebugDescription(builder *strings.Builder, currentPackage astmodel.InternalPackageReference)

WriteDebugDescription adds a description of the current type to the passed builder builder receives the full description, including nested definitions definitions is a dictionary for resolving named definitions

type PropertyConversion

type PropertyConversion func(
	reader dst.Expr,
	writer func(dst.Expr) []dst.Stmt,
	knownLocals *astmodel.KnownLocalsSet,
	generationContext *astmodel.CodeGenerationContext,
) ([]dst.Stmt, error)

PropertyConversion generates the AST for a given property conversion. reader is an expression to read the original value. writer is a function that accepts an expression for reading a value and creates one or more statements to write that value. Both of these might be complex expressions, possibly involving indexing into arrays or maps.

func CreateTypeConversion

func CreateTypeConversion(
	sourceEndpoint *TypedConversionEndpoint,
	destinationEndpoint *TypedConversionEndpoint,
	conversionContext *PropertyConversionContext,
) (PropertyConversion, error)

CreateTypeConversion tries to create a type conversion between the two provided definitions, using all of the available type conversion functions in priority order to do so.

The method works by considering the conversion requested by sourceEndpoint & destinationEndpoint, with recursive calls breaking the conversion down into multiple steps that are then combined.

Example:

CreateTypeConversion() is called to create a conversion from an optional string to an optional Sku, where Sku is a new type based on string:

source *string => destination *Sku

assuming

type Sku string

assignFromOptional can handle the optionality of sourceEndpoint and makes a recursive call to CreateTypeConversion() with the simpler target:

source string => destination *Sku

assignToOptional can handle the optionality of destinationEndpoint and makes a recursive
call to CreateTypeConversion() with a simpler target:

source string => destination Sku

    assignToAliasedPrimitive can handle the type conversion of string to Sku, and makes
    a recursive call to CreateTypeConversion() with a simpler target:

    source string => destination string

        assignPrimitiveFromPrimitive can handle primitive values, and generates a
        conversion that does a simple assignment:

        destination = source

    assignToAliasedPrimitive injects the necessary type conversion:

    destination = Sku(source)

assignToOptional injects a local variable and takes it's address

sku := Sku(source)
destination = &sku

finally, assignFromOptional injects the check to see if we have a value to assign in the first place, assigning a suitable zero value if we don't:

if source != nil {
    sku := Sku(source)
    destination := &sku
} else {

    destination := ""
}

type PropertyConversionContext

type PropertyConversionContext struct {
	// contains filtered or unexported fields
}

PropertyConversionContext captures additional supporting information that may be needed when a storage conversion factory creates a conversion

func NewPropertyConversionContext

func NewPropertyConversionContext(
	functionBaseName string,
	definitions astmodel.TypeDefinitionSet,
	idFactory astmodel.IdentifierFactory,
) *PropertyConversionContext

NewPropertyConversionContext creates a new instance of a PropertyConversionContext

func (*PropertyConversionContext) AddPackageReference

func (c *PropertyConversionContext) AddPackageReference(ref astmodel.PackageReference)

AddPackageReference adds a new reference that's needed by the given conversion

func (*PropertyConversionContext) FindNextType

FindNextType returns the next type in the storage conversion graph, if any. If no conversion graph is available, returns an empty type name and no error.

func (*PropertyConversionContext) FindPivotType

FindPivotType returns the type name of the pivot type between the two specified types, if any.

func (*PropertyConversionContext) FunctionBaseName

func (c *PropertyConversionContext) FunctionBaseName() string

FunctionBaseName returns the base name of the function we're generating

func (*PropertyConversionContext) HasDirection

func (c *PropertyConversionContext) HasDirection(dir Direction) bool

HasDirection returns true if this context has the specified direction.

func (*PropertyConversionContext) IDFactory

IDFactory returns a reference to our identifier factory

func (*PropertyConversionContext) PathExists

PathExists returns true if a path exists in the conversion graph starting from the specified type name and ending at the specified type name. If no conversion graph is available, returns false.

func (*PropertyConversionContext) PropertyBagName

func (c *PropertyConversionContext) PropertyBagName() string

PropertyBagName returns the name to use for a local property bag variable

func (*PropertyConversionContext) PropertyRename

func (c *PropertyConversionContext) PropertyRename(
	container astmodel.InternalTypeName,
	property astmodel.PropertyName,
) (string, bool)

PropertyRename looks up a property-rename for the specified type, returning the new name and true if found, or empty string and false if not. If no configuration is available, acts as though there is no configuration for this rename, returning "" and false.

func (*PropertyConversionContext) ResolveType

ResolveType resolves a type that might be a type name into both the name and the actual type it references, returning true iff it was a TypeName that could be resolved

func (*PropertyConversionContext) TypeRename

TypeRename looks up a type-rename for the specified type, returning the new name and true if found, or empty string and false if not. If no configuration is available, acts as though there is no configuration for this rename, returning "" and false.

func (*PropertyConversionContext) Types

Types returns the set of definitions available in this context

func (*PropertyConversionContext) WithConfiguration

WithConfiguration returns a new context with the specified configuration included

func (*PropertyConversionContext) WithConversionGraph

func (c *PropertyConversionContext) WithConversionGraph(conversionGraph *storage.ConversionGraph) *PropertyConversionContext

WithConversionGraph returns a new context with the specified conversion graph included

func (*PropertyConversionContext) WithDirection

WithDirection returns a new context with the specified direction

func (*PropertyConversionContext) WithPackageReferenceSet

WithPackageReferenceSet returns a new context that collects new package references

func (*PropertyConversionContext) WithPropertyBag

WithPropertyBag returns a new context with the specified property bag name included

type PropertyConversionFactory

type PropertyConversionFactory func(
	source *TypedConversionEndpoint,
	destination *TypedConversionEndpoint,
	conversionContext *PropertyConversionContext) (PropertyConversion, error)

PropertyConversionFactory represents factory methods that can be used to create a PropertyConversion for a specific pair of properties source is the property conversion endpoint that will be read destination is the property conversion endpoint that will be written ctx contains additional information that may be needed when creating the property conversion

The factory should return one of three result sets:

  • For a fatal error, one that guarantees no conversion can be generated, return (nil, error) This will abort the conversion process and return an error for logging.
  • For a valid conversion, return (conversion, nil)
  • When no conversion could be generated by this factory, return (nil, nil) to delegate to another factory

Each conversion should be written with lead predicates to make sure that it only fires in the correct circumstances. This requires, in particular, that most conversions check for optionality and bag items and exit early when those are found. Phrased another way, conversions should not rely on the order of listing in propertyConversionFactories in order to generate the correct code; any conversion that relies on being "protected" from particular situations by having other conversions earlier in the list held by propertyConversionFactories is brittle and likely to generate the incorrect code if the order of items in the list is modified.

type ReadableConversionEndpoint

type ReadableConversionEndpoint struct {
	// contains filtered or unexported fields
}

ReadableConversionEndpoint is an endpoint that includes a way to generate an expression for the source value

func NewReadableConversionEndpointReadingProperty

func NewReadableConversionEndpointReadingProperty(
	propertyName astmodel.PropertyName,
	propertyType astmodel.Type,
) *ReadableConversionEndpoint

NewReadableConversionEndpointReadingProperty creates a ReadableConversionEndpoint that reads a value from a specific property

func NewReadableConversionEndpointReadingPropertyBagMember

func NewReadableConversionEndpointReadingPropertyBagMember(
	itemName string,
	itemType astmodel.Type,
) *ReadableConversionEndpoint

NewReadableConversionEndpointReadingPropertyBagMember creates a ReadableConversionEndpoint that reads an item from a property bag.

func NewReadableConversionEndpointReadingValueFunction

func NewReadableConversionEndpointReadingValueFunction(
	fnName string,
	fnReturnType astmodel.Type,
) *ReadableConversionEndpoint

NewReadableConversionEndpointReadingValueFunction creates a ReadableConversionEndpoint that reads a value from a specific single valued function

func (*ReadableConversionEndpoint) Endpoint

Endpoint provides access to the end point we read

func (*ReadableConversionEndpoint) Name

Name returns the name of the underlying endpoint

func (*ReadableConversionEndpoint) Read

func (r *ReadableConversionEndpoint) Read(expr dst.Expr) dst.Expr

Read generates an expression to read our endpoint

func (*ReadableConversionEndpoint) String

func (r *ReadableConversionEndpoint) String() string

String returns a human-readable description of the endpoint

type ReadableConversionEndpointSet

type ReadableConversionEndpointSet map[string]*ReadableConversionEndpoint

ReadableConversionEndpointSet is a set of uniquely named readable conversion endpoints

func NewReadableConversionEndpointSet

func NewReadableConversionEndpointSet() ReadableConversionEndpointSet

NewReadableConversionEndpointSet returns a new set of readable conversion endpoints

func (ReadableConversionEndpointSet) CreatePropertyEndpoints

func (set ReadableConversionEndpointSet) CreatePropertyEndpoints(sourceType astmodel.Type) int

CreatePropertyEndpoints will create readable conversion endpoints for any properties found on the passed instance type. Existing endpoints won't be overwritten. Returns the count of new endpoints created

func (ReadableConversionEndpointSet) CreateValueFunctionEndpoints

func (set ReadableConversionEndpointSet) CreateValueFunctionEndpoints(sourceType astmodel.Type) int

CreateValueFunctionEndpoints will create additional readable conversion endpoints for any compatible functions found on the passed instance type that don't collide with the names of existing endpoints. Returns the count of new endpoints created

func (ReadableConversionEndpointSet) Delete

func (set ReadableConversionEndpointSet) Delete(name string)

Delete removes a specific endpoint from the set

type TypedConversionEndpoint

type TypedConversionEndpoint struct {
	// contains filtered or unexported fields
}

TypedConversionEndpoint represents either a source or a destination target for a storage conversion In simple cases these will be fields, but can also represent indexed members of slices and maps.

func NewTypedConversionEndpoint

func NewTypedConversionEndpoint(theType astmodel.Type, name string) *TypedConversionEndpoint

func (*TypedConversionEndpoint) IsBagItem

func (endpoint *TypedConversionEndpoint) IsBagItem() bool

IsBagItem returns true if the endpoint contains a property bag item, false otherwise

func (*TypedConversionEndpoint) IsOptional

func (endpoint *TypedConversionEndpoint) IsOptional() bool

IsOptional returns true if the endpoint contains an optional type, false otherwise

func (*TypedConversionEndpoint) Name

func (endpoint *TypedConversionEndpoint) Name() string

Name returns the actual property name of this endpoint

func (*TypedConversionEndpoint) Type

func (endpoint *TypedConversionEndpoint) Type() astmodel.Type

Type returns the type of this endpoint

func (*TypedConversionEndpoint) WithType

func (endpoint *TypedConversionEndpoint) WithType(theType astmodel.Type) *TypedConversionEndpoint

WithType creates a new endpoint with a different type

type WritableConversionEndpoint

type WritableConversionEndpoint struct {
	// contains filtered or unexported fields
}

WritableConversionEndpoint is an endpoint that includes a way to generate statements to write the final value

func NewWritableConversionEndpointWritingProperty

func NewWritableConversionEndpointWritingProperty(
	propertyName astmodel.PropertyName,
	propertyType astmodel.Type,
) *WritableConversionEndpoint

NewWritableConversionEndpointWritingProperty creates a WritableConversionEndpoint for a specific property

func NewWritableConversionEndpointWritingPropertyBagMember

func NewWritableConversionEndpointWritingPropertyBagMember(
	itemName string,
	itemType astmodel.Type,
) *WritableConversionEndpoint

NewWritableConversionEndpointWritingPropertyBagMember creates a WritableConversionEndpoint that writes an item into a property bag

func (*WritableConversionEndpoint) Endpoint

Endpoint provides access to the endpoint we write

func (*WritableConversionEndpoint) Name

Name returns the name of the underlying endpoint

func (*WritableConversionEndpoint) String

func (w *WritableConversionEndpoint) String() string

String returns a human-readable description of the endpoint

func (*WritableConversionEndpoint) Write

func (w *WritableConversionEndpoint) Write(destination dst.Expr, value dst.Expr) []dst.Stmt

Write generates a series of statements to write the specified value to our destination endpoint

type WritableConversionEndpointSet

type WritableConversionEndpointSet map[string]*WritableConversionEndpoint

WritableConversionEndpointSet is a set of uniquely named writable conversion endpoints

func NewWritableConversionEndpointSet

func NewWritableConversionEndpointSet() WritableConversionEndpointSet

NewWritableConversionEndpointSet returns a new empty set of writable conversion endpoints

func (WritableConversionEndpointSet) CreatePropertyEndpoints

func (set WritableConversionEndpointSet) CreatePropertyEndpoints(destinationType astmodel.Type) int

CreatePropertyEndpoints will create writable conversion endpoints for any properties found on the passed instance type. Existing endpoints won't be overwritten. Returns the count of new endpoints created

func (WritableConversionEndpointSet) Delete

func (set WritableConversionEndpointSet) Delete(name string)

Delete removes a specific endpoint from the set

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL