{{! Copyright (c) Meta Platforms, Inc. and affiliates. 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 http://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. }}{{! This tempalte defined the client type/functions for a thrift service. }} type {{service:go_name}}Processor struct { {{#service:extends?}} {{#service:extends}} // Inherited/extended processor *{{service:go_qualified_name}}Processor {{/service:extends}} {{/service:extends?}} {{^service:extends?}} processorMap map[string]thrift.ProcessorFunctionContext functionServiceMap map[string]string handler {{service:go_name}} {{/service:extends?}} } // Compile time interface enforcer var _ thrift.ProcessorContext = &{{service:go_name}}Processor{} func New{{service:go_name}}Processor(handler {{service:go_name}}) *{{service:go_name}}Processor { p := &{{service:go_name}}Processor{ {{#service:extends?}} {{#service:extends}} {{service:go_package_alias_prefix}}New{{service:go_name}}Processor(handler), {{/service:extends}} {{/service:extends?}} {{^service:extends?}} handler: handler, processorMap: make(map[string]thrift.ProcessorFunctionContext), functionServiceMap: make(map[string]string), {{/service:extends?}} } {{#service:functions}} {{#function:go_supported?}} p.AddToProcessorMap("{{function:name}}", &{{> svc/proc_func_name}}{handler: handler}) {{/function:go_supported?}} {{/service:functions}} {{#service:functions}} {{#function:go_supported?}} p.AddToFunctionServiceMap("{{function:name}}", "{{service:go_name}}") {{/function:go_supported?}} {{/service:functions}} return p } {{^service:extends?}} func (p *{{service:go_name}}Processor) AddToProcessorMap(key string, processor thrift.ProcessorFunctionContext) { p.processorMap[key] = processor } func (p *{{service:go_name}}Processor) AddToFunctionServiceMap(key, service string) { p.functionServiceMap[key] = service } func (p *{{service:go_name}}Processor) GetProcessorFunctionContext{{! }}(key string) (processor thrift.ProcessorFunctionContext, err error) { if processor, ok := p.processorMap[key]; ok { return processor, nil } return nil, nil } func (p *{{service:go_name}}Processor) ProcessorMap() map[string]thrift.ProcessorFunctionContext { return p.processorMap } func (p *{{service:go_name}}Processor) FunctionServiceMap() map[string]string { return p.functionServiceMap } {{/service:extends?}} {{#program:gen_metadata?}} func (p *{{service:go_name}}Processor) GetThriftMetadata() *{{program:metadata_qualifier}}ThriftMetadata { return GetThriftMetadataForService("{{service:scoped_name}}") } {{/program:gen_metadata?}} {{#service:functions}} {{#function:go_supported?}} type {{> svc/proc_func_name}} struct { handler {{service:go_name}} } // Compile time interface enforcer var _ thrift.ProcessorFunctionContext = &{{> svc/proc_func_name}}{} func (p *{{> svc/proc_func_name}}) Read(iprot thrift.Format) (thrift.Struct, thrift.Exception) { args := newReq{{service:go_name}}{{function:go_name}}() if err := args.Read(iprot); err != nil { return nil, err } iprot.ReadMessageEnd() return args, nil } func (p *{{> svc/proc_func_name}}) Write(seqId int32, result thrift.WritableStruct, oprot thrift.Format) (err thrift.Exception) { var err2 error messageType := thrift.REPLY switch {{#function:exceptions?}}v := {{/function:exceptions?}}result.(type) { {{#function:exceptions?}} {{#function:exceptions}} case *{{#field:type}}{{> common/type}}{{/field:type}}: result = &resp{{service:go_name}}{{function:go_name}}{ {{field:go_name}}: v, } {{/function:exceptions}} {{/function:exceptions?}} case thrift.ApplicationException: messageType = thrift.EXCEPTION } if err2 = oprot.WriteMessageBegin("{{function:name}}", messageType, seqId); err2 != nil { err = err2 } if err2 = result.Write(oprot); err == nil && err2 != nil { err = err2 } if err2 = oprot.WriteMessageEnd(); err == nil && err2 != nil { err = err2 } if err2 = oprot.Flush(); err == nil && err2 != nil { err = err2 } return err } func (p *{{> svc/proc_func_name}}) RunContext(ctx context.Context, reqStruct thrift.Struct) (thrift.WritableStruct, thrift.ApplicationException) { {{#function:args?}} args := reqStruct.(*req{{service:go_name}}{{function:go_name}}) {{/function:args?}} {{^function:oneway?}} result := newResp{{service:go_name}}{{function:go_name}}() {{/function:oneway?}} {{^function:void?}}retval, {{/function:void?}}err := p.handler.{{function:go_name}}({{! }}ctx{{function:comma}}{{! }}{{#function:args}}{{! }}args.{{field:go_name}}{{! }}{{^last?}}, {{/last?}}{{! }}{{/function:args}}) if err != nil { {{#function:exceptions?}} switch v := err.(type) { {{#function:exceptions}} case *{{#field:type}}{{> common/type}}{{/field:type}}: result.{{field:go_name}} = v return result, nil {{/function:exceptions}} default: x := thrift.NewApplicationExceptionCause(thrift.INTERNAL_ERROR, "Internal error processing {{function:go_name}}: " + err.Error(), err) return x, x } {{/function:exceptions?}} {{^function:exceptions?}} x := thrift.NewApplicationExceptionCause(thrift.INTERNAL_ERROR, "Internal error processing {{function:go_name}}: " + err.Error(), err) return x, x {{/function:exceptions?}} } {{^function:void?}} result.{{function:retval_field_name}} = {{^function:retval_nilable?}}&{{/function:retval_nilable?}}retval {{/function:void?}} {{#function:oneway?}} return nil, nil {{/function:oneway?}} {{^function:oneway?}} return result, nil {{/function:oneway?}} } {{/function:go_supported?}} {{/service:functions}}