Documentation ¶
Overview ¶
Example ¶
package main import ( "fmt" resourcepb "github.com/klosmo/atlas-app-toolkit/v2/rpc/resource" "github.com/klosmo/atlas-app-toolkit/v2/util" ) type ExampleGoType struct { ID int64 ExternalID string VarName string } type ExampleProtoMessage struct { Id *resourcepb.Identifier ExternalId *resourcepb.Identifier VarName string } func (ExampleProtoMessage) XXX_MessageName() string { return "ExampleProtoMessage" } func (ExampleProtoMessage) Reset() {} func (ExampleProtoMessage) String() string { return "ExampleProtoMessage" } func (ExampleProtoMessage) ProtoMessage() {} func main() { RegisterApplication("simpleapp") // you want to convert PB type to your application type toGoTypeFunc := func(msg *ExampleProtoMessage) (*ExampleGoType, error) { var v ExampleGoType // arbitrary variables v.VarName = msg.VarName // convert RPC identifier using UUID Codec for ExampleProtoMessage resource type if id, err := DecodeInt64(msg, msg.Id); err != nil { return nil, err } else { v.ID = id } // convert RPC identifier using External Codec for default resource type if id, err := Decode(nil, msg.ExternalId); err != nil { return nil, err } else { v.ExternalID = id.(string) } return &v, nil } // let's create PB message pb := &ExampleProtoMessage{ Id: &resourcepb.Identifier{ ApplicationName: "simpleapp", ResourceType: "example_proto_message", ResourceId: "12", }, // ExternalId stores data about "external_resource" that belongs to // "externalapp" and has id "id" ExternalId: &resourcepb.Identifier{ ApplicationName: "externalapp", ResourceType: "external_resource", ResourceId: "id", }, VarName: "somename", } val, err := toGoTypeFunc(pb) if err != nil { fmt.Printf("failed to convert TestProtoMessage to TestGoType: %s\n", err) return } fmt.Printf("application name of integer id: %v\n", val.ID) fmt.Printf("application name of fqstring id: %v\n", val.ExternalID) // so now you want to convert it back to PB representation toPBMessageFunc := func(v *ExampleGoType) (*ExampleProtoMessage, error) { var pb ExampleProtoMessage // arbitrary variables pb.VarName = v.VarName // convert internal id to RPC representation using registered UUID codec if id, err := Encode(pb, v.ID); err != nil { return nil, err } else { pb.Id = id } // convert fqstring id to RPC representation using registered External codec if id, err := Encode(nil, v.ExternalID); err != nil { return nil, err } else { pb.ExternalId = id } return &pb, nil } pb, err = toPBMessageFunc(val) if err != nil { fmt.Println("failed to convert TestGoType to TestProtoMessage") } fmt.Printf("application name of internal id: %s\n", pb.Id.GetApplicationName()) fmt.Printf("resource type of internal id: %s\n", util.CamelToSnake(pb.Id.GetResourceType())) fmt.Printf("resource id of internal id: %s\n", pb.Id.GetResourceId()) fmt.Printf("application name of fqstring id: %s\n", pb.ExternalId.GetApplicationName()) fmt.Printf("resource type of fqstring id: %s\n", pb.ExternalId.GetResourceType()) fmt.Printf("resource id of fqstring id: %s\n", pb.ExternalId.GetResourceId()) }
Output: application name of integer id: 12 application name of fqstring id: externalapp/external_resource/id application name of internal id: simpleapp resource type of internal id: example_proto_message resource id of internal id: 12 application name of fqstring id: externalapp resource type of fqstring id: external_resource resource id of fqstring id: id
Index ¶
- func ApplicationName() string
- func Decode(pb proto.Message, id *resourcepb.Identifier) (driver.Value, error)
- func DecodeBytes(pb proto.Message, id *resourcepb.Identifier) ([]byte, error)
- func DecodeInt64(pb proto.Message, id *resourcepb.Identifier) (int64, error)
- func Encode(pb proto.Message, value driver.Value) (*resourcepb.Identifier, error)
- func Name(pb proto.Message) string
- func Plural() bool
- func RegisterApplication(name string)
- func RegisterCodec(codec Codec, pb proto.Message)
- func ReturnEmpty() bool
- func SetPlural()
- func SetReturnEmpty()
- type Codec
- type Namer
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ApplicationName ¶
func ApplicationName() string
ApplicationName returns application name registered by RegisterApplication.
func Decode ¶
func Decode(pb proto.Message, id *resourcepb.Identifier) (driver.Value, error)
Decode decodes identifier using a codec registered for pb if found.
If codec is not found - and id is nil, the (nil, nil) are returned. - and pb is nil the id is decoded in a fully qualified string value in format specified for Atlas References. - only Resource ID part of the identifier is returned as string value.
func DecodeBytes ¶
func DecodeBytes(pb proto.Message, id *resourcepb.Identifier) ([]byte, error)
DecodeBytes decodes value returned by Decode as []byte. Returns an error if value is not of []byte type.
func DecodeInt64 ¶
func DecodeInt64(pb proto.Message, id *resourcepb.Identifier) (int64, error)
DecodeInt64 decodes value returned by Decode as int64. Returns an error if value is not of int64 type.
func Encode ¶
func Encode(pb proto.Message, value driver.Value) (*resourcepb.Identifier, error)
Encode encodes identifier using a codec registered for pb.
If codec is not found - and value is not of string type an error is returned. - and pb is nil the id is encoded as it would be a string value in fully qualified format - and value is nil the (nil, nil) are returned
If Resource ID part is not empty, the Application Name and Resource Type parts are populated by ApplicationName and Name functions accordingly, otherwise the empty identifier is returned.
func Name ¶
Name returns name of pb. If pb implements Namer interface it is used to return name, otherwise the the proto.MessageName is used to obtain fully qualified resource name.
The only last part of fully qualified resource name is used and converted to lower case. E.g. infoblox.rpc.Identifier -> identifier
If SetPlural is called the 's' symbol is added at the end of resource name.
func Plural ¶
func Plural() bool
Plural returns true if resource.SetPlural was called, otherwise returns false.
func RegisterApplication ¶
func RegisterApplication(name string)
RegisterApplication registers name of the application. Registered name is used by Encode to populate application name of Protocol Buffer Identifier.
func RegisterCodec ¶
RegisterCodec registers codec for a given pb. If pb is nil the codec is registered as default. If codec is nil or registered twice for the same resource the panic is raised.
func ReturnEmpty ¶
func ReturnEmpty() bool
ReturnEmpty returns flag that indicates all nil values of driver.Value type in codecs must be converted to empty instance of Identifier.
func SetPlural ¶
func SetPlural()
SetPlural sets package flag that instructs resource.Name to return name in plural form by adding 's' at the end of the name.
func SetReturnEmpty ¶
func SetReturnEmpty()
SetReturnEmpty sets package flag that indicates all nil values of driver.Value type in codecs must be converted to empty instance of Identifier. Default value is false.
Types ¶
type Codec ¶
type Codec interface { // Encode encodes value to Protocol Buffer representation Encode(driver.Value) (*resourcepb.Identifier, error) // Decode decodes Protocol Buffer representation to the driver.Value Decode(*resourcepb.Identifier) (driver.Value, error) }
Codec defines the interface package uses to encode and decode Protocol Buffer Identifier to the driver.Value. Note that implementation must be thread safe.