-
Notifications
You must be signed in to change notification settings - Fork 50
/
doc_file.go
147 lines (130 loc) · 4.8 KB
/
doc_file.go
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
// Copyright 2018 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package gengapic
import (
"strings"
"github.com/googleapis/gapic-generator-go/internal/license"
"github.com/googleapis/gapic-generator-go/internal/pbinfo"
"github.com/googleapis/gapic-generator-go/internal/printer"
"google.golang.org/protobuf/types/descriptorpb"
)
// genDocFile generates doc.go
//
// Since it's the only file that needs to write package documentation and canonical import,
// it does not use g.commit().
func (g *generator) genDocFile(year int, serv *descriptorpb.ServiceDescriptorProto) {
p := g.printf
p(license.Apache, year)
p("")
if g.apiName != "" {
p("// Package %s is an auto-generated package for the ", g.opts.pkgName)
p("// %s.", g.apiName)
}
if g.serviceConfig != nil && g.serviceConfig.GetDocumentation() != nil {
summary := g.serviceConfig.GetDocumentation().GetSummary()
summary = mdPlain(summary)
wrapped := wrapString(summary, 75)
if len(wrapped) > 0 && g.apiName != "" {
p("//")
}
for _, line := range wrapped {
p("// %s", strings.TrimSpace(line))
}
}
switch g.opts.relLvl {
case alpha:
p("//")
p("// NOTE: This package is in alpha. It is not stable, and is likely to change.")
case beta:
p("//")
p("// NOTE: This package is in beta. It is not stable, and may be subject to changes.")
case deprecated:
p("//")
p("// Deprecated: Find the newer version of this package in the module.")
}
p("//")
p("// General documentation")
p("//")
p("// For information that is relevant for all client libraries please reference")
p("// https://pkg.go.dev/cloud.google.com/go#pkg-overview. Some information on this")
p("// page includes:")
p("//")
p("// - [Authentication and Authorization]")
p("// - [Timeouts and Cancellation]")
p("// - [Testing against Client Libraries]")
p("// - [Debugging Client Libraries]")
p("// - [Inspecting errors]")
p("//")
p("// Example usage")
p("//")
p("// To get started with this package, create a client.")
// Code block for client creation
servName := pbinfo.ReduceServName(serv.GetName(), g.opts.pkgName)
tmpClient := g.pt
g.pt = printer.P{}
g.exampleInitClientWithOpts(g.opts.pkgName, servName, true)
snipClient := g.pt.String()
g.pt = tmpClient
g.codesnippet(snipClient)
p("// The client will use your default application credentials. Clients should be reused instead of created as needed.")
p("// The methods of Client are safe for concurrent use by multiple goroutines.")
p("// The returned client must be Closed when it is done being used.")
p("//")
// If the service does not have any methods, then do not generate sample method snippet.
if len(serv.GetMethod()) > 0 {
p("// Using the Client")
p("//")
p("// The following is an example of making an API call with the newly created client, mentioned above.")
p("//")
// Code block for client using the first method of the service
tmpMethod := g.pt
g.pt = printer.P{}
g.exampleMethodBodyWithOpts(g.opts.pkgName, servName, serv.GetMethod()[0], true)
snipMethod := g.pt.String()
g.pt = tmpMethod
g.codesnippet(snipMethod)
}
p("// Use of Context")
p("//")
p("// The ctx passed to New%sClient is used for authentication requests and", servName)
p("// for creating the underlying connection, but is not used for subsequent calls.")
p("// Individual methods on the client use the ctx given to them.")
p("//")
p("// To close the open connection, use the Close() method.")
p("//")
p("// [Authentication and Authorization]: https://pkg.go.dev/cloud.google.com/go#hdr-Authentication_and_Authorization")
p("// [Timeouts and Cancellation]: https://pkg.go.dev/cloud.google.com/go#hdr-Timeouts_and_Cancellation")
p("// [Testing against Client Libraries]: https://pkg.go.dev/cloud.google.com/go#hdr-Testing")
p("// [Debugging Client Libraries]: https://pkg.go.dev/cloud.google.com/go#hdr-Debugging")
p("// [Inspecting errors]: https://pkg.go.dev/cloud.google.com/go#hdr-Inspecting_errors")
p("package %s // import %q", g.opts.pkgName, g.opts.pkgPath)
p("")
}
func wrapString(str string, max int) []string {
var lines []string
var line string
if str == "" {
return lines
}
split := strings.Fields(str)
for _, w := range split {
if len(line)+len(w)+1 > max {
lines = append(lines, line)
line = ""
}
line += " " + w
}
lines = append(lines, line)
return lines
}