command.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. // Protocol Buffers for Go with Gadgets
  2. //
  3. // Copyright (c) 2015, The GoGo Authors. All rights reserved.
  4. // http://github.com/gogo/protobuf
  5. //
  6. // Redistribution and use in source and binary forms, with or without
  7. // modification, are permitted provided that the following conditions are
  8. // met:
  9. //
  10. // * Redistributions of source code must retain the above copyright
  11. // notice, this list of conditions and the following disclaimer.
  12. // * Redistributions in binary form must reproduce the above
  13. // copyright notice, this list of conditions and the following disclaimer
  14. // in the documentation and/or other materials provided with the
  15. // distribution.
  16. //
  17. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  20. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  21. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  22. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  23. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  24. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  27. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. package command
  29. import (
  30. "fmt"
  31. "go/format"
  32. "io/ioutil"
  33. "os"
  34. "strings"
  35. _ "github.com/gogo/protobuf/plugin/compare"
  36. _ "github.com/gogo/protobuf/plugin/defaultcheck"
  37. _ "github.com/gogo/protobuf/plugin/description"
  38. _ "github.com/gogo/protobuf/plugin/embedcheck"
  39. _ "github.com/gogo/protobuf/plugin/enumstringer"
  40. _ "github.com/gogo/protobuf/plugin/equal"
  41. _ "github.com/gogo/protobuf/plugin/face"
  42. _ "github.com/gogo/protobuf/plugin/gostring"
  43. _ "github.com/gogo/protobuf/plugin/marshalto"
  44. _ "github.com/gogo/protobuf/plugin/oneofcheck"
  45. _ "github.com/gogo/protobuf/plugin/populate"
  46. _ "github.com/gogo/protobuf/plugin/size"
  47. _ "github.com/gogo/protobuf/plugin/stringer"
  48. "github.com/gogo/protobuf/plugin/testgen"
  49. _ "github.com/gogo/protobuf/plugin/union"
  50. _ "github.com/gogo/protobuf/plugin/unmarshal"
  51. "github.com/gogo/protobuf/proto"
  52. "github.com/gogo/protobuf/protoc-gen-gogo/generator"
  53. _ "github.com/gogo/protobuf/protoc-gen-gogo/grpc"
  54. plugin "github.com/gogo/protobuf/protoc-gen-gogo/plugin"
  55. )
  56. func Read() *plugin.CodeGeneratorRequest {
  57. g := generator.New()
  58. data, err := ioutil.ReadAll(os.Stdin)
  59. if err != nil {
  60. g.Error(err, "reading input")
  61. }
  62. if err := proto.Unmarshal(data, g.Request); err != nil {
  63. g.Error(err, "parsing input proto")
  64. }
  65. if len(g.Request.FileToGenerate) == 0 {
  66. g.Fail("no files to generate")
  67. }
  68. return g.Request
  69. }
  70. // filenameSuffix replaces the .pb.go at the end of each filename.
  71. func GeneratePlugin(req *plugin.CodeGeneratorRequest, p generator.Plugin, filenameSuffix string) *plugin.CodeGeneratorResponse {
  72. g := generator.New()
  73. g.Request = req
  74. if len(g.Request.FileToGenerate) == 0 {
  75. g.Fail("no files to generate")
  76. }
  77. g.CommandLineParameters(g.Request.GetParameter())
  78. g.WrapTypes()
  79. g.SetPackageNames()
  80. g.BuildTypeNameMap()
  81. g.GeneratePlugin(p)
  82. for i := 0; i < len(g.Response.File); i++ {
  83. g.Response.File[i].Name = proto.String(
  84. strings.Replace(*g.Response.File[i].Name, ".pb.go", filenameSuffix, -1),
  85. )
  86. }
  87. if err := goformat(g.Response); err != nil {
  88. g.Error(err)
  89. }
  90. return g.Response
  91. }
  92. func goformat(resp *plugin.CodeGeneratorResponse) error {
  93. for i := 0; i < len(resp.File); i++ {
  94. formatted, err := format.Source([]byte(resp.File[i].GetContent()))
  95. if err != nil {
  96. return fmt.Errorf("go format error: %v", err)
  97. }
  98. fmts := string(formatted)
  99. resp.File[i].Content = &fmts
  100. }
  101. return nil
  102. }
  103. func Generate(req *plugin.CodeGeneratorRequest) *plugin.CodeGeneratorResponse {
  104. // Begin by allocating a generator. The request and response structures are stored there
  105. // so we can do error handling easily - the response structure contains the field to
  106. // report failure.
  107. g := generator.New()
  108. g.Request = req
  109. g.CommandLineParameters(g.Request.GetParameter())
  110. // Create a wrapped version of the Descriptors and EnumDescriptors that
  111. // point to the file that defines them.
  112. g.WrapTypes()
  113. g.SetPackageNames()
  114. g.BuildTypeNameMap()
  115. g.GenerateAllFiles()
  116. if err := goformat(g.Response); err != nil {
  117. g.Error(err)
  118. }
  119. testReq := proto.Clone(req).(*plugin.CodeGeneratorRequest)
  120. testResp := GeneratePlugin(testReq, testgen.NewPlugin(), "pb_test.go")
  121. for i := 0; i < len(testResp.File); i++ {
  122. if strings.Contains(*testResp.File[i].Content, `//These tests are generated by github.com/gogo/protobuf/plugin/testgen`) {
  123. g.Response.File = append(g.Response.File, testResp.File[i])
  124. }
  125. }
  126. return g.Response
  127. }
  128. func Write(resp *plugin.CodeGeneratorResponse) {
  129. g := generator.New()
  130. // Send back the results.
  131. data, err := proto.Marshal(resp)
  132. if err != nil {
  133. g.Error(err, "failed to marshal output proto")
  134. }
  135. _, err = os.Stdout.Write(data)
  136. if err != nil {
  137. g.Error(err, "failed to write output proto")
  138. }
  139. }