1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
package gendoc
import (
"fmt"
"io/ioutil"
"path"
"path/filepath"
"regexp"
"strings"
"github.com/golang/protobuf/proto"
plugin_go "github.com/golang/protobuf/protoc-gen-go/plugin"
"github.com/pseudomuto/protokit"
)
// PluginOptions encapsulates options for the plugin. The type of renderer, template file, and the name of the output
// file are included.
type PluginOptions struct {
Type RenderType
TemplateFile string
OutputFile string
ExcludePatterns []*regexp.Regexp
SourceRelative bool
}
// SupportedFeatures describes a flag setting for supported features.
var SupportedFeatures = uint64(plugin_go.CodeGeneratorResponse_FEATURE_PROTO3_OPTIONAL)
// Plugin describes a protoc code generate plugin. It's an implementation of Plugin from github.com/pseudomuto/protokit
type Plugin struct{}
// Generate compiles the documentation and generates the CodeGeneratorResponse to send back to protoc. It does this
// by rendering a template based on the options parsed from the CodeGeneratorRequest.
func (p *Plugin) Generate(r *plugin_go.CodeGeneratorRequest) (*plugin_go.CodeGeneratorResponse, error) {
options, err := ParseOptions(r)
if err != nil {
return nil, err
}
result := excludeUnwantedProtos(protokit.ParseCodeGenRequest(r), options.ExcludePatterns)
customTemplate := ""
if options.TemplateFile != "" {
data, err := ioutil.ReadFile(options.TemplateFile)
if err != nil {
return nil, err
}
customTemplate = string(data)
}
resp := new(plugin_go.CodeGeneratorResponse)
fdsGroup := groupProtosByDirectory(result, options.SourceRelative)
for dir, fds := range fdsGroup {
template := NewTemplate(fds)
output, err := RenderTemplate(options.Type, template, customTemplate)
if err != nil {
return nil, err
}
resp.File = append(resp.File, &plugin_go.CodeGeneratorResponse_File{
Name: proto.String(filepath.Join(dir, options.OutputFile)),
Content: proto.String(string(output)),
})
}
resp.SupportedFeatures = proto.Uint64(SupportedFeatures)
return resp, nil
}
func groupProtosByDirectory(fds []*protokit.FileDescriptor, sourceRelative bool) map[string][]*protokit.FileDescriptor {
fdsGroup := make(map[string][]*protokit.FileDescriptor)
for _, fd := range fds {
dir := ""
if sourceRelative {
dir, _ = filepath.Split(fd.GetName())
}
if dir == "" {
dir = "./"
}
fdsGroup[dir] = append(fdsGroup[dir], fd)
}
return fdsGroup
}
func excludeUnwantedProtos(fds []*protokit.FileDescriptor, excludePatterns []*regexp.Regexp) []*protokit.FileDescriptor {
descs := make([]*protokit.FileDescriptor, 0)
OUTER:
for _, d := range fds {
for _, p := range excludePatterns {
if p.MatchString(d.GetName()) {
continue OUTER
}
}
descs = append(descs, d)
}
return descs
}
// ParseOptions parses plugin options from a CodeGeneratorRequest. It does this by splitting the `Parameter` field from
// the request object and parsing out the type of renderer to use and the name of the file to be generated.
//
// The parameter (`--doc_opt`) must be of the format <TYPE|TEMPLATE_FILE>,<OUTPUT_FILE>[,default|source_relative]:<EXCLUDE_PATTERN>,<EXCLUDE_PATTERN>*.
// The file will be written to the directory specified with the `--doc_out` argument to protoc.
func ParseOptions(req *plugin_go.CodeGeneratorRequest) (*PluginOptions, error) {
options := &PluginOptions{
Type: RenderTypeHTML,
TemplateFile: "",
OutputFile: "index.html",
SourceRelative: false,
}
params := req.GetParameter()
if strings.Contains(params, ":") {
// Parse out exclude patterns if any
parts := strings.Split(params, ":")
for _, pattern := range strings.Split(parts[1], ",") {
r, err := regexp.Compile(pattern)
if err != nil {
return nil, err
}
options.ExcludePatterns = append(options.ExcludePatterns, r)
}
// The first part is parsed below
params = parts[0]
}
if params == "" {
return options, nil
}
if !strings.Contains(params, ",") {
return nil, fmt.Errorf("Invalid parameter: %s", params)
}
parts := strings.Split(params, ",")
if len(parts) < 2 || len(parts) > 3 {
return nil, fmt.Errorf("Invalid parameter: %s", params)
}
options.TemplateFile = parts[0]
options.OutputFile = path.Base(parts[1])
if len(parts) > 2 {
switch parts[2] {
case "source_relative":
options.SourceRelative = true
case "default":
options.SourceRelative = false
default:
return nil, fmt.Errorf("Invalid parameter: %s", params)
}
}
options.SourceRelative = len(parts) > 2 && parts[2] == "source_relative"
renderType, err := NewRenderType(options.TemplateFile)
if err == nil {
options.Type = renderType
options.TemplateFile = ""
}
return options, nil
}
|