2016-11-04 23:44:49 +03:00
# protoc-gen-gotemplate
:open_file_folder: protocol generator + golang text/template (protobuf)
2016-11-07 12:17:25 +03:00
Generic protocol buffer generator backed by Golang's [text/template ](https://golang.org/pkg/text/template ).
2016-11-09 23:48:26 +03: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 12:17:25 +03:00
## Usage
2016-11-09 23:48:26 +03:00
`protoc-gen-gotemplate` requires a **template_dir** directory *(by default `./templates`)* .
2016-12-10 19:23:59 +03: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 23:48:26 +03: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 12:17:25 +03:00
See [examples ](./examples ).
2016-12-10 19:23:59 +03:00
## Funcmap
This project uses [moul/funcmap ](https://github.com/moul/funcmap ) library to extend the builtin [text/template ](https://golang.org/pkg/text/template ) helpers.
Non-exhaustive list of new helpers:
* `json`
* `prettyjson`
* `indent`
* `split`
* `join`
* `title`
* `unexport`
* `add`
* `trimspace`
* `lower`
* `upper`
* `rev`
* `int`
See the project for the complete list.
2016-11-07 12:17:25 +03: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`
## License
MIT