protoc-gen-gorm

command module
v0.5.0 Latest Latest
Warning

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

Go to latest
Published: Jun 5, 2018 License: Apache-2.0 Imports: 2 Imported by: 0

README

protoc-gen-gorm

Purpose

A protobuf (https://developers.google.com/protocol-buffers/) compiler plugin designed to simplify the API calls needed to perform simple object persistence tasks. This is currently accomplished by creating a secondary .pb.orm.go file which contains sister objects to those generated in the standard .pb.go file satisfying these criteria:

  • Go field decorators/tags can be defined by option in the .proto file for GORM/SQL
  • There are options for dropping fields from the pb object, or adding additional fields (not generally recommended, as it reduces clarity of .proto file)
  • Converters between pb version and ORM version of the objects are included
  • Hook interfaces allow for custom application logic
Prerequisites
Dependencies

The protobuf compiler (protoc) is required. The official instructions are here, and an abbreviated version can be found here.

Then you will also need the golang code generator

go get -u github.com/golang/protobuf/protoc-gen-go
Installation

To use this tool, install it from code with make install, go install directly, or go get github.com/infobloxopen/protoc-gen-gorm.

Usage

Once installed, the --gorm_out=. or --gorm_out=${GOPATH}src option can be specified in a protoc command to generate the .pb.gorm.go files.

Any message types with the option (gorm.opts).ormable = true will have the following autogenerated:

  • A struct with ORM compatible types and the "ORM" suffix
  • Tags copied from the field options [(gorm.field).tags = "..."]
  • A {PbType}.ToORM and {TypeORM}.ToPB function
  • Barebones C/U/R/D/L handlers that accept the protobuf versions (as from an API call), a context (used with the multiaccount option and for collection operators https://github.com/infobloxopen/atlas-app-toolkit#collection-operators), and a gorm.DB then perform the basic operation on the DB with the object
  • Interface hooks for before and after each conversion that can be implemented to add custom handling.

Any services with the option (gorm.server).autogen = true will have basic grpc server generated:

  • For service methods with names starting with Create|Read|Update|Delete generated implementation will call basic CRUD handlers.
  • For other methods return &MethodResponse{}, nil stub is generated.

For CRUD methods to be generated correctly you need to follow specific conventions:

  • Request messages for Create and Update methods should have an Ormable Type in a field named payload, for Read and Delete methods an id field is required. Nothing is required in the List request.
  • Response messages for Create, Read, and Update require an Ormable Type in a field named result and for List a repeated Ormable Type named results.
  • Delete methods require the (gorm.method).object_type option to indicate which Ormable Type it should delete, and has no response type requirements.

If conventions are not met stubs are generated for CRUD methods. As seen in the feature_demo/demo_service example.

To leverage DB specific features, specify the DB engine during generation using the --gorm_out="engine={postgres,...}:{path}". Currently only Postgres has special type support, any other choice will behave as default.

Examples

Example .proto files and generated .pb.gorm.go files are included in the 'example' directory. The contacts/contacts.proto mirrors the example project in https://github.com/infobloxopen/atlas-contacts-app, the feature_demo/demo_types file demonstrates the type handling and multi_account functions, and the feature_demo/demo_service shows the service autogeneration.

Running make example will recompile all these test proto files, if you want to test the effects of changing the options and fields.

Supported Types

Within the proto files, the following types are supported:

Limitations

Currently only proto3 is supported.

This project is currently in development, and is expected to undergo "breaking" (and fixing) changes

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
example
feature_demo
Package example is a generated protocol buffer package.
Package example is a generated protocol buffer package.
user
Package user is a generated protocol buffer package.
Package user is a generated protocol buffer package.
Package gorm is a generated protocol buffer package.
Package gorm is a generated protocol buffer package.
Package types is a generated protocol buffer package.
Package types is a generated protocol buffer package.

Jump to

Keyboard shortcuts

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