helloworld

package
v0.1.251 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 24, 2022 License: Apache-2.0 Imports: 12 Imported by: 0

README

ProtoC

Individual outputs

go mod vendor

protoc --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative helloworld/helloworld.proto
go get -u github.com/fluffy-bunny/grpcdotnetgo/protoc-gen-go-di/cmd/protoc-gen-go-di
protoc --go_out=. --go_opt=paths=source_relative --go-di_out=. --go-di_opt=paths=source_relative helloworld/helloworld.proto 

One hit wonder

go mod vendor

go get -u github.com/fluffy-bunny/grpcdotnetgo/protoc-gen-go-di/cmd/protoc-gen-go-di

protoc --proto_path=. --proto_path=vendor --proto_path=vendor/github.com/fluffy-bunny  --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative --go-di_out=. --go-di_opt=paths=source_relative .\protoc-gen-go-di\helloworld\helloworld.proto  

Documentation

Index

Constants

View Source
const (
	// FMN_Greeter2_SayHello
	FMN_Greeter2_SayHello = "/helloworld.Greeter2/SayHello"
)

FullMethodNames for Greeter2

View Source
const (
	// FMN_Greeter_SayHello
	FMN_Greeter_SayHello = "/helloworld.Greeter/SayHello"
)

FullMethodNames for Greeter

Variables

View Source
var File_protoc_gen_go_di_helloworld_helloworld_proto protoreflect.FileDescriptor
View Source
var Greeter2_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "helloworld.Greeter2",
	HandlerType: (*Greeter2Server)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "SayHello",
			Handler:    _Greeter2_SayHello_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "protoc-gen-go-di/helloworld/helloworld.proto",
}

Greeter2_ServiceDesc is the grpc.ServiceDesc for Greeter2 service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var Greeter_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "helloworld.Greeter",
	HandlerType: (*GreeterServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "SayHello",
			Handler:    _Greeter_SayHello_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "protoc-gen-go-di/helloworld/helloworld.proto",
}

Greeter_ServiceDesc is the grpc.ServiceDesc for Greeter service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var M_helloworld_Greeter2FullMethodNameExecuteMap = map[string]func(service IGreeter2Server, ctx context.Context, request interface{}) (interface{}, error){
	"/helloworld.Greeter2/SayHello": func(service IGreeter2Server, ctx context.Context, request interface{}) (interface{}, error) {
		req := request.(*HelloRequest)
		return service.SayHello(ctx, req)
	},
}

M_helloworld_Greeter2FullMethodNameExecuteMap keys match that of grpc.UnaryServerInfo.FullMethodName

View Source
var M_helloworld_GreeterFullMethodNameExecuteMap = map[string]func(service IGreeterServer, ctx context.Context, request interface{}) (interface{}, error){
	"/helloworld.Greeter/SayHello": func(service IGreeterServer, ctx context.Context, request interface{}) (interface{}, error) {
		req := request.(*HelloRequest)
		return service.SayHello(ctx, req)
	},
}

M_helloworld_GreeterFullMethodNameExecuteMap keys match that of grpc.UnaryServerInfo.FullMethodName

View Source
var ReflectTypeIGreeter2Server = sarulabsdi.GetInterfaceReflectType((*IGreeter2Server)(nil))

ReflectTypeIGreeter2Server reflect type

View Source
var ReflectTypeIGreeter2Service = sarulabsdi.GetInterfaceReflectType((*IGreeter2Service)(nil))

ReflectTypeIGreeter2Service reflect type

View Source
var ReflectTypeIGreeterServer = sarulabsdi.GetInterfaceReflectType((*IGreeterServer)(nil))

ReflectTypeIGreeterServer reflect type

View Source
var ReflectTypeIGreeterService = sarulabsdi.GetInterfaceReflectType((*IGreeterService)(nil))

ReflectTypeIGreeterService reflect type

TypeIGreeter2Server reflect type

TypeIGreeter2Service reflect type

TypeIGreeterServer reflect type

TypeIGreeterService reflect type

Functions

func AddScopedIGreeter2Service added in v0.1.144

func AddScopedIGreeter2Service(builder *sarulabsdi.Builder, implType reflect.Type)

AddScopedIGreeter2Service adds a type that implements IGreeter2Service

func AddScopedIGreeter2ServiceByFunc added in v0.1.144

func AddScopedIGreeter2ServiceByFunc(builder *sarulabsdi.Builder, implType reflect.Type, build func(ctn sarulabsdi.Container) (interface{}, error))

AddScopedIGreeter2ServiceByFunc adds a type by a custom func

func AddScopedIGreeterService added in v0.1.144

func AddScopedIGreeterService(builder *sarulabsdi.Builder, implType reflect.Type)

AddScopedIGreeterService adds a type that implements IGreeterService

func AddScopedIGreeterServiceByFunc added in v0.1.144

func AddScopedIGreeterServiceByFunc(builder *sarulabsdi.Builder, implType reflect.Type, build func(ctn sarulabsdi.Container) (interface{}, error))

AddScopedIGreeterServiceByFunc adds a type by a custom func

func AddSingletonIGreeter2Server added in v0.1.147

func AddSingletonIGreeter2Server(builder *sarulabsdi.Builder, implType reflect.Type)

AddSingletonIGreeter2Server adds a type that implements IGreeter2Server

func AddSingletonIGreeter2ServerByFunc added in v0.1.147

func AddSingletonIGreeter2ServerByFunc(builder *sarulabsdi.Builder, implType reflect.Type, build func(ctn sarulabsdi.Container) (interface{}, error))

AddSingletonIGreeter2ServerByFunc adds a type by a custom func

func AddSingletonIGreeter2ServerByObj added in v0.1.147

func AddSingletonIGreeter2ServerByObj(builder *sarulabsdi.Builder, obj interface{})

AddSingletonIGreeter2ServerByObj adds a prebuilt obj

func AddSingletonIGreeter2Service added in v0.1.144

func AddSingletonIGreeter2Service(builder *sarulabsdi.Builder, implType reflect.Type)

AddSingletonIGreeter2Service adds a type that implements IGreeter2Service

func AddSingletonIGreeter2ServiceByFunc added in v0.1.144

func AddSingletonIGreeter2ServiceByFunc(builder *sarulabsdi.Builder, implType reflect.Type, build func(ctn sarulabsdi.Container) (interface{}, error))

AddSingletonIGreeter2ServiceByFunc adds a type by a custom func

func AddSingletonIGreeter2ServiceByObj added in v0.1.144

func AddSingletonIGreeter2ServiceByObj(builder *sarulabsdi.Builder, obj interface{})

AddSingletonIGreeter2ServiceByObj adds a prebuilt obj

func AddSingletonIGreeterServer added in v0.1.147

func AddSingletonIGreeterServer(builder *sarulabsdi.Builder, implType reflect.Type)

AddSingletonIGreeterServer adds a type that implements IGreeterServer

func AddSingletonIGreeterServerByFunc added in v0.1.147

func AddSingletonIGreeterServerByFunc(builder *sarulabsdi.Builder, implType reflect.Type, build func(ctn sarulabsdi.Container) (interface{}, error))

AddSingletonIGreeterServerByFunc adds a type by a custom func

func AddSingletonIGreeterServerByObj added in v0.1.147

func AddSingletonIGreeterServerByObj(builder *sarulabsdi.Builder, obj interface{})

AddSingletonIGreeterServerByObj adds a prebuilt obj

func AddSingletonIGreeterService added in v0.1.144

func AddSingletonIGreeterService(builder *sarulabsdi.Builder, implType reflect.Type)

AddSingletonIGreeterService adds a type that implements IGreeterService

func AddSingletonIGreeterServiceByFunc added in v0.1.144

func AddSingletonIGreeterServiceByFunc(builder *sarulabsdi.Builder, implType reflect.Type, build func(ctn sarulabsdi.Container) (interface{}, error))

AddSingletonIGreeterServiceByFunc adds a type by a custom func

func AddSingletonIGreeterServiceByObj added in v0.1.144

func AddSingletonIGreeterServiceByObj(builder *sarulabsdi.Builder, obj interface{})

AddSingletonIGreeterServiceByObj adds a prebuilt obj

func AddTransientIGreeter2Service added in v0.1.144

func AddTransientIGreeter2Service(builder *sarulabsdi.Builder, implType reflect.Type)

AddTransientIGreeter2Service adds a type that implements IGreeter2Service

func AddTransientIGreeter2ServiceByFunc added in v0.1.144

func AddTransientIGreeter2ServiceByFunc(builder *sarulabsdi.Builder, implType reflect.Type, build func(ctn sarulabsdi.Container) (interface{}, error))

AddTransientIGreeter2ServiceByFunc adds a type by a custom func

func AddTransientIGreeterService added in v0.1.144

func AddTransientIGreeterService(builder *sarulabsdi.Builder, implType reflect.Type)

AddTransientIGreeterService adds a type that implements IGreeterService

func AddTransientIGreeterServiceByFunc added in v0.1.144

func AddTransientIGreeterServiceByFunc(builder *sarulabsdi.Builder, implType reflect.Type, build func(ctn sarulabsdi.Container) (interface{}, error))

AddTransientIGreeterServiceByFunc adds a type by a custom func

func Get_helloworldFullEmptyResponseFromFullMethodName

func Get_helloworldFullEmptyResponseFromFullMethodName(fullMethodName string) func() interface{}

Get_helloworldFullEmptyResponseFromFullMethodName ...

func Get_helloworldFullEmptyResponseWithErrorFromFullMethodName

func Get_helloworldFullEmptyResponseWithErrorFromFullMethodName(fullMethodName string) func() interface{}

Get_helloworldFullEmptyResponseWithErrorFromFullMethodName ...

func New_helloworldFullMethodNameSlice

func New_helloworldFullMethodNameSlice() []string

New_helloworldFullMethodNameSlice create a new map of fullMethodNames to []string i.e. /helloworld.Greeter/SayHello

func RegisterGreeter2Server

func RegisterGreeter2Server(s grpc.ServiceRegistrar, srv Greeter2Server)

func RegisterGreeter2ServerDI

func RegisterGreeter2ServerDI(s grpc.ServiceRegistrar) interface{}

RegisterGreeter2ServerDI ...

func RegisterGreeterServer

func RegisterGreeterServer(s grpc.ServiceRegistrar, srv GreeterServer)

func RegisterGreeterServerDI

func RegisterGreeterServerDI(s grpc.ServiceRegistrar) interface{}

RegisterGreeterServerDI ...

func RemoveAllIGreeter2Service added in v0.1.144

func RemoveAllIGreeter2Service(builder *sarulabsdi.Builder)

RemoveAllIGreeter2Service removes all IBillingService from the DI

func RemoveAllIGreeterService added in v0.1.144

func RemoveAllIGreeterService(builder *sarulabsdi.Builder)

RemoveAllIGreeterService removes all IBillingService from the DI

Types

type Greeter2Client

type Greeter2Client interface {
	// Sends a greeting
	SayHello(ctx context.Context, in *HelloRequest, opts ...grpc.CallOption) (*HelloReply2, error)
}

Greeter2Client is the client API for Greeter2 service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewGreeter2Client

func NewGreeter2Client(cc grpc.ClientConnInterface) Greeter2Client

type Greeter2Server

type Greeter2Server interface {
	// Sends a greeting
	SayHello(context.Context, *HelloRequest) (*HelloReply2, error)
	// contains filtered or unexported methods
}

Greeter2Server is the server API for Greeter2 service. All implementations must embed UnimplementedGreeter2Server for forward compatibility

type GreeterClient

type GreeterClient interface {
	// Sends a greeting
	SayHello(ctx context.Context, in *HelloRequest, opts ...grpc.CallOption) (*HelloReply, error)
}

GreeterClient is the client API for Greeter service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewGreeterClient

func NewGreeterClient(cc grpc.ClientConnInterface) GreeterClient

type GreeterServer

type GreeterServer interface {
	// Sends a greeting
	SayHello(context.Context, *HelloRequest) (*HelloReply, error)
	// contains filtered or unexported methods
}

GreeterServer is the server API for Greeter service. All implementations must embed UnimplementedGreeterServer for forward compatibility

type HelloReply

type HelloReply struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

The response message containing the greetings

func (*HelloReply) Descriptor deprecated

func (*HelloReply) Descriptor() ([]byte, []int)

Deprecated: Use HelloReply.ProtoReflect.Descriptor instead.

func (*HelloReply) GetMessage

func (x *HelloReply) GetMessage() string

func (*HelloReply) ProtoMessage

func (*HelloReply) ProtoMessage()

func (*HelloReply) ProtoReflect

func (x *HelloReply) ProtoReflect() protoreflect.Message

func (*HelloReply) Reset

func (x *HelloReply) Reset()

func (*HelloReply) String

func (x *HelloReply) String() string

type HelloReply2

type HelloReply2 struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*HelloReply2) Descriptor deprecated

func (*HelloReply2) Descriptor() ([]byte, []int)

Deprecated: Use HelloReply2.ProtoReflect.Descriptor instead.

func (*HelloReply2) GetMessage

func (x *HelloReply2) GetMessage() string

func (*HelloReply2) ProtoMessage

func (*HelloReply2) ProtoMessage()

func (*HelloReply2) ProtoReflect

func (x *HelloReply2) ProtoReflect() protoreflect.Message

func (*HelloReply2) Reset

func (x *HelloReply2) Reset()

func (*HelloReply2) String

func (x *HelloReply2) String() string

type HelloRequest

type HelloRequest struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

The request message containing the user's name.

func (*HelloRequest) Descriptor deprecated

func (*HelloRequest) Descriptor() ([]byte, []int)

Deprecated: Use HelloRequest.ProtoReflect.Descriptor instead.

func (*HelloRequest) GetName

func (x *HelloRequest) GetName() string

func (*HelloRequest) ProtoMessage

func (*HelloRequest) ProtoMessage()

func (*HelloRequest) ProtoReflect

func (x *HelloRequest) ProtoReflect() protoreflect.Message

func (*HelloRequest) Reset

func (x *HelloRequest) Reset()

func (*HelloRequest) String

func (x *HelloRequest) String() string

type IGreeter2Server

type IGreeter2Server interface {
	SayHello(ctx context.Context, request *HelloRequest) (*HelloReply2, error)
}

IGreeter2Server defines the grpc server

type IGreeter2Service

type IGreeter2Service interface {
	SayHello(request *HelloRequest) (*HelloReply2, error)
}

IGreeter2Service defines the required downstream service interface

func GetGreeter2ServiceFromContainer

func GetGreeter2ServiceFromContainer(ctn sarulabsdi.Container) IGreeter2Service

GetGreeter2ServiceFromContainer fetches the downstream di.Request scoped service

func GetIGreeter2ServiceFromContainer added in v0.1.120

func GetIGreeter2ServiceFromContainer(ctn sarulabsdi.Container) IGreeter2Service

GetIGreeter2ServiceFromContainer fetches the downstream di.Request scoped service

func SafeGetIGreeter2ServiceFromContainer added in v0.1.120

func SafeGetIGreeter2ServiceFromContainer(ctn sarulabsdi.Container) (IGreeter2Service, error)

SafeGetIGreeter2ServiceFromContainer fetches the downstream di.Request scoped service

type IGreeterServer

type IGreeterServer interface {
	SayHello(ctx context.Context, request *HelloRequest) (*HelloReply, error)
}

IGreeterServer defines the grpc server

type IGreeterService

type IGreeterService interface {
	SayHello(request *HelloRequest) (*HelloReply, error)
}

IGreeterService defines the required downstream service interface

func GetGreeterServiceFromContainer

func GetGreeterServiceFromContainer(ctn sarulabsdi.Container) IGreeterService

GetGreeterServiceFromContainer fetches the downstream di.Request scoped service

func GetIGreeterServiceFromContainer added in v0.1.120

func GetIGreeterServiceFromContainer(ctn sarulabsdi.Container) IGreeterService

GetIGreeterServiceFromContainer fetches the downstream di.Request scoped service

func SafeGetIGreeterServiceFromContainer added in v0.1.120

func SafeGetIGreeterServiceFromContainer(ctn sarulabsdi.Container) (IGreeterService, error)

SafeGetIGreeterServiceFromContainer fetches the downstream di.Request scoped service

type UnimplementedGreeter2Server

type UnimplementedGreeter2Server struct {
}

UnimplementedGreeter2Server must be embedded to have forward compatible implementations.

func (UnimplementedGreeter2Server) SayHello

type UnimplementedGreeterServer

type UnimplementedGreeterServer struct {
}

UnimplementedGreeterServer must be embedded to have forward compatible implementations.

func (UnimplementedGreeterServer) SayHello

type UnsafeGreeter2Server

type UnsafeGreeter2Server interface {
	// contains filtered or unexported methods
}

UnsafeGreeter2Server may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to Greeter2Server will result in compilation errors.

type UnsafeGreeterServer

type UnsafeGreeterServer interface {
	// contains filtered or unexported methods
}

UnsafeGreeterServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to GreeterServer will result in compilation errors.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL