2016-12-15 17:49:18 +01:00
# `protoc-gen-gotemplate`
2016-11-04 21:44:49 +01:00
:open_file_folder: protocol generator + golang text/template (protobuf)
2016-11-07 10:17:25 +01:00
Generic protocol buffer generator backed by Golang's [text/template ](https://golang.org/pkg/text/template ).
2016-11-09 21:48:26 +01:00
---
This is a generator plugin for the Google Protocol Buffers compiler (`protoc`).
The plugin can generate files based on a template directory using the [Golang's `text/template` ](https://golang.org/pkg/text/template/ ) engine.
2016-11-07 10:17:25 +01:00
## Usage
2016-11-09 21:48:26 +01:00
`protoc-gen-gotemplate` requires a **template_dir** directory *(by default `./templates`)* .
2016-12-10 17:23:59 +01:00
Every files ending with `.tmpl` will be processed and written in the destination folder, following the file hierarchy of the `template_dir` , and removing the `.tmpl` extension.
2016-11-09 21:48:26 +01:00
---
```console
$> 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
```
---
You can specify a custom `template_dir` or enable `debug` :
```console
$> protoc --gotemplate_out=debug=true,template_dir=/path/to/template/directory:. input.proto
```
---
2016-11-07 10:17:25 +01:00
See [examples ](./examples ).
2016-12-10 17:23:59 +01:00
## Funcmap
2016-12-15 13:40:39 +01:00
This project uses [Masterminds/sprig ](https://github.com/Masterminds/sprig ) library and additional functions to extend the builtin [text/template ](https://golang.org/pkg/text/template ) helpers.
2016-12-10 17:23:59 +01:00
Non-exhaustive list of new helpers:
2016-12-15 13:41:32 +01:00
* **all the functions from [sprig ](https://github.com/Masterminds/sprig )**
2016-12-10 17:23:59 +01:00
* `json`
* `prettyjson`
2016-12-15 13:40:39 +01:00
* `first`
* `last`
See the project helpers for the complete list.
2016-12-10 17:23:59 +01:00
2016-11-07 10:17:25 +01:00
## 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`
2016-12-15 17:49:18 +01:00
## Projects using `protoc-gen-gotemplate`
2016-12-17 21:44:04 +01:00
* [kafka-gateway ](https://github.com/moul/kafka-gateway/ ): Kafka gateway/proxy (gRPC + http) using Go-Kit
* [translator ](https://github.com/moul/translator ): Translator Micro-service using Gettext and Go-Kit
2016-12-27 13:58:27 +01:00
* [acl ](https://github.com/moul/acl ): ACL micro-service (gRPC/protobuf + http/json)
2016-12-15 17:49:18 +01:00
2016-11-07 10:17:25 +01:00
## License
MIT