123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- // +build codegen
- package api
- import (
- "bytes"
- "fmt"
- "regexp"
- "sort"
- "strings"
- "text/template"
- )
- // An Operation defines a specific API Operation.
- type Operation struct {
- API *API `json:"-"`
- ExportedName string
- Name string
- Documentation string
- HTTP HTTPInfo
- InputRef ShapeRef `json:"input"`
- OutputRef ShapeRef `json:"output"`
- ErrorRefs []ShapeRef `json:"errors"`
- Paginator *Paginator
- Deprecated bool `json:"deprecated"`
- AuthType string `json:"authtype"`
- imports map[string]bool
- }
- // A HTTPInfo defines the method of HTTP request for the Operation.
- type HTTPInfo struct {
- Method string
- RequestURI string
- ResponseCode uint
- }
- // HasInput returns if the Operation accepts an input paramater
- func (o *Operation) HasInput() bool {
- return o.InputRef.ShapeName != ""
- }
- // HasOutput returns if the Operation accepts an output parameter
- func (o *Operation) HasOutput() bool {
- return o.OutputRef.ShapeName != ""
- }
- // tplOperation defines a template for rendering an API Operation
- var tplOperation = template.Must(template.New("operation").Funcs(template.FuncMap{
- "GetCrosslinkURL": GetCrosslinkURL,
- }).Parse(`
- const op{{ .ExportedName }} = "{{ .Name }}"
- // {{ .ExportedName }}Request generates a "aws/request.Request" representing the
- // client's request for the {{ .ExportedName }} operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // See {{ .ExportedName }} for usage and error information.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the {{ .ExportedName }} method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the {{ .ExportedName }}Request method.
- // req, resp := client.{{ .ExportedName }}Request(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- {{ $crosslinkURL := GetCrosslinkURL $.API.BaseCrosslinkURL $.API.APIName $.API.Metadata.UID $.ExportedName -}}
- {{ if ne $crosslinkURL "" -}}
- //
- // Please also see {{ $crosslinkURL }}
- {{ end -}}
- func (c *{{ .API.StructName }}) {{ .ExportedName }}Request(` +
- `input {{ .InputRef.GoType }}) (req *request.Request, output {{ .OutputRef.GoType }}) {
- {{ if (or .Deprecated (or .InputRef.Deprecated .OutputRef.Deprecated)) }}if c.Client.Config.Logger != nil {
- c.Client.Config.Logger.Log("This operation, {{ .ExportedName }}, has been deprecated")
- }
- op := &request.Operation{ {{ else }} op := &request.Operation{ {{ end }}
- Name: op{{ .ExportedName }},
- {{ if ne .HTTP.Method "" }}HTTPMethod: "{{ .HTTP.Method }}",
- {{ end }}HTTPPath: {{ if ne .HTTP.RequestURI "" }}"{{ .HTTP.RequestURI }}"{{ else }}"/"{{ end }},
- {{ if .Paginator }}Paginator: &request.Paginator{
- InputTokens: {{ .Paginator.InputTokensString }},
- OutputTokens: {{ .Paginator.OutputTokensString }},
- LimitToken: "{{ .Paginator.LimitKey }}",
- TruncationToken: "{{ .Paginator.MoreResults }}",
- },
- {{ end }}
- }
- if input == nil {
- input = &{{ .InputRef.GoTypeElem }}{}
- }
- output = &{{ .OutputRef.GoTypeElem }}{}
- req = c.newRequest(op, input, output){{ if eq .OutputRef.Shape.Placeholder true }}
- req.Handlers.Unmarshal.Remove({{ .API.ProtocolPackage }}.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler){{ end }}
- {{ if eq .AuthType "none" }}req.Config.Credentials = credentials.AnonymousCredentials
- {{ end -}}
- return
- }
- // {{ .ExportedName }} API operation for {{ .API.Metadata.ServiceFullName }}.
- {{ if .Documentation -}}
- //
- {{ .Documentation }}
- {{ end -}}
- //
- // Returns awserr.Error for service API and SDK errors. Use runtime type assertions
- // with awserr.Error's Code and Message methods to get detailed information about
- // the error.
- //
- // See the AWS API reference guide for {{ .API.Metadata.ServiceFullName }}'s
- // API operation {{ .ExportedName }} for usage and error information.
- {{ if .ErrorRefs -}}
- //
- // Returned Error Codes:
- {{ range $_, $err := .ErrorRefs -}}
- {{ $errDoc := $err.IndentedDocstring -}}
- // * {{ $err.Shape.ErrorName }}
- {{ if $errDoc -}}
- {{ $errDoc }}{{ end }}
- //
- {{ end -}}
- {{ end -}}
- {{ $crosslinkURL := GetCrosslinkURL $.API.BaseCrosslinkURL $.API.APIName $.API.Metadata.UID $.ExportedName -}}
- {{ if ne $crosslinkURL "" -}}
- // Please also see {{ $crosslinkURL }}
- {{ end -}}
- func (c *{{ .API.StructName }}) {{ .ExportedName }}(` +
- `input {{ .InputRef.GoType }}) ({{ .OutputRef.GoType }}, error) {
- req, out := c.{{ .ExportedName }}Request(input)
- err := req.Send()
- return out, err
- }
- {{ if .Paginator }}
- // {{ .ExportedName }}Pages iterates over the pages of a {{ .ExportedName }} operation,
- // calling the "fn" function with the response data for each page. To stop
- // iterating, return false from the fn function.
- //
- // See {{ .ExportedName }} method for more information on how to use this operation.
- //
- // Note: This operation can generate multiple requests to a service.
- //
- // // Example iterating over at most 3 pages of a {{ .ExportedName }} operation.
- // pageNum := 0
- // err := client.{{ .ExportedName }}Pages(params,
- // func(page {{ .OutputRef.GoType }}, lastPage bool) bool {
- // pageNum++
- // fmt.Println(page)
- // return pageNum <= 3
- // })
- //
- func (c *{{ .API.StructName }}) {{ .ExportedName }}Pages(` +
- `input {{ .InputRef.GoType }}, fn func(p {{ .OutputRef.GoType }}, lastPage bool) (shouldContinue bool)) error {
- page, _ := c.{{ .ExportedName }}Request(input)
- page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
- return page.EachPage(func(p interface{}, lastPage bool) bool {
- return fn(p.({{ .OutputRef.GoType }}), lastPage)
- })
- }
- {{ end }}
- `))
- // GoCode returns a string of rendered GoCode for this Operation
- func (o *Operation) GoCode() string {
- var buf bytes.Buffer
- err := tplOperation.Execute(&buf, o)
- if err != nil {
- panic(err)
- }
- return strings.TrimSpace(buf.String())
- }
- // tplInfSig defines the template for rendering an Operation's signature within an Interface definition.
- var tplInfSig = template.Must(template.New("opsig").Parse(`
- {{ .ExportedName }}Request({{ .InputRef.GoTypeWithPkgName }}) (*request.Request, {{ .OutputRef.GoTypeWithPkgName }})
- {{ .ExportedName }}({{ .InputRef.GoTypeWithPkgName }}) ({{ .OutputRef.GoTypeWithPkgName }}, error)
- {{ if .Paginator -}}
- {{ .ExportedName }}Pages({{ .InputRef.GoTypeWithPkgName }}, func({{ .OutputRef.GoTypeWithPkgName }}, bool) bool) error
- {{- end }}
- `))
- // InterfaceSignature returns a string representing the Operation's interface{}
- // functional signature.
- func (o *Operation) InterfaceSignature() string {
- var buf bytes.Buffer
- err := tplInfSig.Execute(&buf, o)
- if err != nil {
- panic(err)
- }
- return strings.TrimSpace(buf.String())
- }
- // tplExample defines the template for rendering an Operation example
- var tplExample = template.Must(template.New("operationExample").Parse(`
- func Example{{ .API.StructName }}_{{ .ExportedName }}() {
- sess, err := session.NewSession()
- if err != nil {
- fmt.Println("failed to create session,", err)
- return
- }
- svc := {{ .API.PackageName }}.New(sess)
- {{ .ExampleInput }}
- resp, err := svc.{{ .ExportedName }}(params)
- if err != nil {
- // Print the error, cast err to awserr.Error to get the Code and
- // Message from an error.
- fmt.Println(err.Error())
- return
- }
- // Pretty-print the response data.
- fmt.Println(resp)
- }
- `))
- // Example returns a string of the rendered Go code for the Operation
- func (o *Operation) Example() string {
- var buf bytes.Buffer
- err := tplExample.Execute(&buf, o)
- if err != nil {
- panic(err)
- }
- return strings.TrimSpace(buf.String())
- }
- // ExampleInput return a string of the rendered Go code for an example's input parameters
- func (o *Operation) ExampleInput() string {
- if len(o.InputRef.Shape.MemberRefs) == 0 {
- if strings.Contains(o.InputRef.GoTypeElem(), ".") {
- o.imports["github.com/aws/aws-sdk-go/service/"+strings.Split(o.InputRef.GoTypeElem(), ".")[0]] = true
- return fmt.Sprintf("var params *%s", o.InputRef.GoTypeElem())
- }
- return fmt.Sprintf("var params *%s.%s",
- o.API.PackageName(), o.InputRef.GoTypeElem())
- }
- e := example{o, map[string]int{}}
- return "params := " + e.traverseAny(o.InputRef.Shape, false, false)
- }
- // A example provides
- type example struct {
- *Operation
- visited map[string]int
- }
- // traverseAny returns rendered Go code for the shape.
- func (e *example) traverseAny(s *Shape, required, payload bool) string {
- str := ""
- e.visited[s.ShapeName]++
- switch s.Type {
- case "structure":
- str = e.traverseStruct(s, required, payload)
- case "list":
- str = e.traverseList(s, required, payload)
- case "map":
- str = e.traverseMap(s, required, payload)
- default:
- str = e.traverseScalar(s, required, payload)
- }
- e.visited[s.ShapeName]--
- return str
- }
- var reType = regexp.MustCompile(`\b([A-Z])`)
- // traverseStruct returns rendered Go code for a structure type shape.
- func (e *example) traverseStruct(s *Shape, required, payload bool) string {
- var buf bytes.Buffer
- if s.resolvePkg != "" {
- e.imports[s.resolvePkg] = true
- buf.WriteString("&" + s.GoTypeElem() + "{")
- } else {
- buf.WriteString("&" + s.API.PackageName() + "." + s.GoTypeElem() + "{")
- }
- if required {
- buf.WriteString(" // Required")
- }
- buf.WriteString("\n")
- req := make([]string, len(s.Required))
- copy(req, s.Required)
- sort.Strings(req)
- if e.visited[s.ShapeName] < 2 {
- for _, n := range req {
- m := s.MemberRefs[n].Shape
- p := n == s.Payload && (s.MemberRefs[n].Streaming || m.Streaming)
- buf.WriteString(n + ": " + e.traverseAny(m, true, p) + ",")
- if m.Type != "list" && m.Type != "structure" && m.Type != "map" {
- buf.WriteString(" // Required")
- }
- buf.WriteString("\n")
- }
- for _, n := range s.MemberNames() {
- if s.IsRequired(n) {
- continue
- }
- m := s.MemberRefs[n].Shape
- p := n == s.Payload && (s.MemberRefs[n].Streaming || m.Streaming)
- buf.WriteString(n + ": " + e.traverseAny(m, false, p) + ",\n")
- }
- } else {
- buf.WriteString("// Recursive values...\n")
- }
- buf.WriteString("}")
- return buf.String()
- }
- // traverseMap returns rendered Go code for a map type shape.
- func (e *example) traverseMap(s *Shape, required, payload bool) string {
- var buf bytes.Buffer
- t := ""
- if s.resolvePkg != "" {
- e.imports[s.resolvePkg] = true
- t = s.GoTypeElem()
- } else {
- t = reType.ReplaceAllString(s.GoTypeElem(), s.API.PackageName()+".$1")
- }
- buf.WriteString(t + "{")
- if required {
- buf.WriteString(" // Required")
- }
- buf.WriteString("\n")
- if e.visited[s.ShapeName] < 2 {
- m := s.ValueRef.Shape
- buf.WriteString("\"Key\": " + e.traverseAny(m, true, false) + ",")
- if m.Type != "list" && m.Type != "structure" && m.Type != "map" {
- buf.WriteString(" // Required")
- }
- buf.WriteString("\n// More values...\n")
- } else {
- buf.WriteString("// Recursive values...\n")
- }
- buf.WriteString("}")
- return buf.String()
- }
- // traverseList returns rendered Go code for a list type shape.
- func (e *example) traverseList(s *Shape, required, payload bool) string {
- var buf bytes.Buffer
- t := ""
- if s.resolvePkg != "" {
- e.imports[s.resolvePkg] = true
- t = s.GoTypeElem()
- } else {
- t = reType.ReplaceAllString(s.GoTypeElem(), s.API.PackageName()+".$1")
- }
- buf.WriteString(t + "{")
- if required {
- buf.WriteString(" // Required")
- }
- buf.WriteString("\n")
- if e.visited[s.ShapeName] < 2 {
- m := s.MemberRef.Shape
- buf.WriteString(e.traverseAny(m, true, false) + ",")
- if m.Type != "list" && m.Type != "structure" && m.Type != "map" {
- buf.WriteString(" // Required")
- }
- buf.WriteString("\n// More values...\n")
- } else {
- buf.WriteString("// Recursive values...\n")
- }
- buf.WriteString("}")
- return buf.String()
- }
- // traverseScalar returns an AWS Type string representation initialized to a value.
- // Will panic if s is an unsupported shape type.
- func (e *example) traverseScalar(s *Shape, required, payload bool) string {
- str := ""
- switch s.Type {
- case "integer", "long":
- str = `aws.Int64(1)`
- case "float", "double":
- str = `aws.Float64(1.0)`
- case "string", "character":
- str = `aws.String("` + s.ShapeName + `")`
- case "blob":
- if payload {
- str = `bytes.NewReader([]byte("PAYLOAD"))`
- } else {
- str = `[]byte("PAYLOAD")`
- }
- case "boolean":
- str = `aws.Bool(true)`
- case "timestamp":
- str = `aws.Time(time.Now())`
- default:
- panic("unsupported shape " + s.Type)
- }
- return str
- }
|