Go to file
Vasiliy Tolstov a4bed53e0f fix templates
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2021-02-19 16:56:32 +03:00
.github update renovate.json 2021-02-12 12:39:32 +03:00
assets fix templates 2021-02-19 16:56:32 +03:00
helpers fix templates 2021-02-02 11:13:29 +03:00
templates fix templates 2021-02-19 16:56:32 +03:00
.gitattributes feat: new project layout 2020-01-15 18:00:59 +01:00
.gitignore fix templates 2021-02-02 11:13:29 +03:00
.golangci.yml chore: switch to golangci-lint 2019-01-20 07:18:16 +01:00
assets.go update to v3 2021-02-02 14:07:31 +03:00
AUTHORS partially rewrite for own needs 2021-01-08 22:22:43 +03:00
clean.go add ability to use repo templates 2020-12-31 04:10:22 +03:00
clone.go add ability to use repo templates 2020-12-31 04:10:22 +03:00
copy.go add ability to use repo templates 2020-12-31 04:10:22 +03:00
encoder.go update to v3 2021-02-02 14:07:31 +03:00
generate.go partially rewrite for own needs 2021-01-08 22:22:43 +03:00
go.mod Update google.golang.org/genproto commit hash to fe80b38 2021-02-18 16:43:09 +00:00
go.sum Update google.golang.org/genproto commit hash to fe80b38 2021-02-18 16:43:09 +00:00
LICENSE partially rewrite for own needs 2021-01-08 22:22:43 +03:00
main.go update to v3 2021-02-02 14:07:31 +03:00
README.md fixup readme 2021-01-19 13:05:27 +03:00

protoc-gen-micro

📂 protocol generator + golang text/template (protobuf)

A generic code/script/data generator based on Protobuf.


This project is a generator plugin for the Google Protocol Buffers compiler (protoc).

The plugin parses protobuf files, generates an ast, and walks a local templates directory to generate files using the Golang's text/template engine.

Philosophy

  • protobuf-first
  • no built-in template, only user defined templates
  • kiss, keep it stupid simple

Under the hood

  1. the user protobuf files are parsed by protoc
  2. the ast is generated by protoc-gen-go helpers
  3. the ast is given to Golang's text/template engine for each user template files
  4. the funcmap enriching the template engine is based on Masterminds/sprig, and contains type-manipulation, iteration and language-specific helpers

Usage

protoc-gen-micro requires a template_dir directory (by default ./templates).

Every file ending with .tmpl will be processed and written to the destination folder, following the file hierarchy of the template_dir, and remove the .tmpl extension.


$> ls -R
input.proto     templates/doc.txt.tmpl      templates/config.json.tmpl
$> protoc --micro_out=. input.proto
$> ls -R
input.proto     templates/doc.txt.tmpl      templates/config.json.tmpl
doc.txt         config.json

Options

You can specify custom options, as follow:

$> protoc --micro_out=debug=true,template_dir=/path/to/template/directory:. input.proto
Option Default Value Accepted Values Description
template_repo `` url in form schema://domain path to repo with optional branch or revision after @ sign
template_dir       ./template absolute or relative path path to look for templates
destination_dir     .           absolute or relative path base path to write output
single-package-mode false true or false if true, protoc won't accept multiple packages to be compiled at once (!= from all), but will support Message lookup across the imported protobuf dependencies
debug               false       true or false if true, protoc will generate a more verbose output
all                 false       true or false         if true, protobuf files without Service will also be parsed
components micro `micro grpc
Hints

Shipping the templates with your project is very smart and useful when contributing on git-based projects.

Another workflow consists in having a dedicated repository for generic templates which is then versioned and vendored with multiple projects (npm package, golang vendor package, ...)

Funcmap

This project uses Masterminds/sprig library and additional functions to extend the builtin text/template helpers.

Non-exhaustive list of new helpers:

  • all the functions from sprig
  • add
  • boolFieldExtension
  • camelCase
  • contains
  • divide
  • fieldMapKeyType
  • fieldMapValueType
  • first
  • getEnumValue
  • getMessageType
  • getProtoFile
  • goNormalize
  • goTypeWithPackage
  • goType
  • goZeroValue
  • haskellType
  • httpBody
  • httpPath
  • httpPathsAdditionalBindings
  • httpVerb
  • index
  • int64FieldExtension
  • isFieldMap
  • isFieldMessageTimeStamp
  • isFieldMessage
  • isFieldRepeated
  • jsSuffixReserved
  • jsType
  • json
  • kebabCase
  • last
  • leadingComment
  • leadingDetachedComments
  • lowerCamelCase
  • lowerFirst
  • lowerGoNormalize
  • multiply
  • namespacedFlowType
  • prettyjson
  • replaceDict
  • shortType
  • snakeCase
  • splitArray
  • stringFieldExtension
  • stringMethodOptionsExtension
  • string
  • subtract
  • trailingComment
  • trimstr
  • upperFirst
  • urlHasVarsFromMessage

See the project helpers for the complete list.

Install

  • Install the Go compiler and tools from https://golang.org/doc/install
  • Install protobuf: go get -u github.com/golang/protobuf/{proto,protoc-gen-go}
  • Install protoc-gen-micro: go get -u github.com/unistack-org/protoc-gen-micro

License

MIT