Go to file
Manfred Touron 19fd9d7959 Merge pull request #69 from moul/dev/proullon/helpers
feat (helpers): add strings helper
2017-06-26 17:34:13 +02:00
contrib/homebrew Add Homebrew support #3 2016-11-06 20:20:11 +01:00
examples handle google.protobuf.timestamp 2017-06-08 16:40:52 +02:00
helpers feat (helpers): add strings helper 2017-06-26 11:34:02 +02:00
slides Add slides (#16) 2016-12-13 19:08:37 +01:00
vendor glide up 2017-05-18 23:33:43 +02:00
.gitignore Setup unit tests (fix #13) 2016-12-12 19:35:59 +01:00
.travis.yml Update Glide install method 2017-04-01 09:20:29 +02:00
Dockerfile Add $GOPATH/bin in /usr/local/bin:/usr/local/sbin::/Users/moul/mbin:/Users/moul/mbin2:/Users/moul/node_modules/.bin:/usr/local/share/npm/bin:/bin:/sbin:/usr/bin:/usr/sbin:/Users/moul/go/bin env var 2017-05-19 09:49:03 +02:00
encoder.go Isolate helpers in their own package (#63) 2017-05-19 10:02:40 +02:00
glide.lock glide up 2017-05-18 23:33:43 +02:00
glide.yaml glide up 2017-05-18 23:33:43 +02:00
LICENSE Initial commit 2016-11-04 21:44:49 +01:00
main.go Isolate helpers in their own package (#63) 2017-05-19 10:02:40 +02:00
Makefile handle google.protobuf.timestamp 2017-06-08 16:40:52 +02:00
README.md Add Docker usage (fix #8) 2017-05-19 09:56:47 +02:00

protoc-gen-gotemplate

📂 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-gotemplate 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 --gotemplate_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 --gotemplate_out=debug=true,template_dir=/path/to/template/directory:. input.proto
Option Default Value Accepted Values Description
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
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, ...)

See examples.

Funcmap

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

Non-exhaustive list of new helpers:s

  • all the functions from sprig
  • json
  • prettyjson
  • first
  • last
  • splitArray
  • upperFirst
  • lowerFirst
  • camelCase
  • lowerCamelCase
  • kebabCase
  • snakeCase
  • getProtoFile
  • getMessageType
  • getEnumValue
  • isFieldMessage
  • isFieldRepeated
  • goType
  • goTypeWithPackage
  • jsType
  • jsSuffixReserved
  • namespacedFlowType
  • httpVerb
  • httpPath
  • shortType
  • 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-gotemplate: go get -u github.com/moul/protoc-gen-gotemplate

Docker

Usage:

$> docker run --rm -v "$(pwd):$(pwd)" -w "$(pwd)" moul/protoc-gen-gotemplate -I. --gotemplate_out=./output/ ./*.proto

Projects using protoc-gen-gotemplate

  • kafka-gateway: Kafka gateway/proxy (gRPC + http) using Go-Kit
  • translator: Translator Micro-service using Gettext and Go-Kit
  • acl: ACL micro-service (gRPC/protobuf + http/json)

License

MIT