smart_alarm.pb.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: smart_alarm.proto
  3. // package声明符,用来防止不同的消息类型有命名冲突
  4. package pb
  5. import (
  6. v1 "access-control-monitor/pb/v1"
  7. context "context"
  8. fmt "fmt"
  9. proto "github.com/golang/protobuf/proto"
  10. grpc "google.golang.org/grpc"
  11. codes "google.golang.org/grpc/codes"
  12. status "google.golang.org/grpc/status"
  13. math "math"
  14. )
  15. // Reference imports to suppress errors if they are not otherwise used.
  16. var _ = proto.Marshal
  17. var _ = fmt.Errorf
  18. var _ = math.Inf
  19. // This is a compile-time assertion to ensure that this generated file
  20. // is compatible with the proto package it is being compiled against.
  21. // A compilation error at this line likely means your copy of the
  22. // proto package needs to be updated.
  23. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  24. func init() {
  25. proto.RegisterFile("smart_alarm.proto", fileDescriptor_893604fd7e902205)
  26. }
  27. var fileDescriptor_893604fd7e902205 = []byte{
  28. // 131 bytes of a gzipped FileDescriptorProto
  29. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2c, 0xce, 0x4d, 0x2c,
  30. 0x2a, 0x89, 0x4f, 0xcc, 0x49, 0x2c, 0xca, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x2a,
  31. 0x48, 0x92, 0xe2, 0x2b, 0x33, 0xd4, 0x47, 0x12, 0x33, 0x72, 0xe2, 0xe2, 0x0a, 0x06, 0x29, 0x74,
  32. 0x04, 0x89, 0x09, 0x99, 0x70, 0x71, 0x80, 0x19, 0x8e, 0x29, 0x29, 0x42, 0xc2, 0x7a, 0x65, 0x86,
  33. 0x7a, 0x30, 0x5e, 0x50, 0x6a, 0x61, 0x69, 0x6a, 0x71, 0x89, 0x94, 0x20, 0xaa, 0x60, 0x41, 0x4e,
  34. 0xa5, 0x12, 0x83, 0x93, 0x74, 0x94, 0x64, 0x62, 0x72, 0x72, 0x6a, 0x71, 0xb1, 0x6e, 0x72, 0x7e,
  35. 0x5e, 0x49, 0x51, 0x7e, 0x8e, 0x6e, 0x6e, 0x7e, 0x5e, 0x66, 0x49, 0x7e, 0x91, 0x7e, 0x41, 0x52,
  36. 0x12, 0x1b, 0xd8, 0x1e, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x60, 0x6a, 0xf1, 0x3e, 0x90,
  37. 0x00, 0x00, 0x00,
  38. }
  39. // Reference imports to suppress errors if they are not otherwise used.
  40. var _ context.Context
  41. var _ grpc.ClientConnInterface
  42. // This is a compile-time assertion to ensure that this generated file
  43. // is compatible with the grpc package it is being compiled against.
  44. const _ = grpc.SupportPackageIsVersion6
  45. // SmartAlarmClient is the client API for SmartAlarm service.
  46. //
  47. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  48. type SmartAlarmClient interface {
  49. // 新增告警
  50. AlarmAdd(ctx context.Context, in *v1.AlarmAddRequest, opts ...grpc.CallOption) (*v1.AlarmAddReply, error)
  51. }
  52. type smartAlarmClient struct {
  53. cc grpc.ClientConnInterface
  54. }
  55. func NewSmartAlarmClient(cc grpc.ClientConnInterface) SmartAlarmClient {
  56. return &smartAlarmClient{cc}
  57. }
  58. func (c *smartAlarmClient) AlarmAdd(ctx context.Context, in *v1.AlarmAddRequest, opts ...grpc.CallOption) (*v1.AlarmAddReply, error) {
  59. out := new(v1.AlarmAddReply)
  60. err := c.cc.Invoke(ctx, "/pb.SmartAlarm/AlarmAdd", in, out, opts...)
  61. if err != nil {
  62. return nil, err
  63. }
  64. return out, nil
  65. }
  66. // SmartAlarmServer is the server API for SmartAlarm service.
  67. type SmartAlarmServer interface {
  68. // 新增告警
  69. AlarmAdd(context.Context, *v1.AlarmAddRequest) (*v1.AlarmAddReply, error)
  70. }
  71. // UnimplementedSmartAlarmServer can be embedded to have forward compatible implementations.
  72. type UnimplementedSmartAlarmServer struct {
  73. }
  74. func (*UnimplementedSmartAlarmServer) AlarmAdd(ctx context.Context, req *v1.AlarmAddRequest) (*v1.AlarmAddReply, error) {
  75. return nil, status.Errorf(codes.Unimplemented, "method AlarmAdd not implemented")
  76. }
  77. func RegisterSmartAlarmServer(s *grpc.Server, srv SmartAlarmServer) {
  78. s.RegisterService(&_SmartAlarm_serviceDesc, srv)
  79. }
  80. func _SmartAlarm_AlarmAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  81. in := new(v1.AlarmAddRequest)
  82. if err := dec(in); err != nil {
  83. return nil, err
  84. }
  85. if interceptor == nil {
  86. return srv.(SmartAlarmServer).AlarmAdd(ctx, in)
  87. }
  88. info := &grpc.UnaryServerInfo{
  89. Server: srv,
  90. FullMethod: "/pb.SmartAlarm/AlarmAdd",
  91. }
  92. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  93. return srv.(SmartAlarmServer).AlarmAdd(ctx, req.(*v1.AlarmAddRequest))
  94. }
  95. return interceptor(ctx, in, info, handler)
  96. }
  97. var _SmartAlarm_serviceDesc = grpc.ServiceDesc{
  98. ServiceName: "pb.SmartAlarm",
  99. HandlerType: (*SmartAlarmServer)(nil),
  100. Methods: []grpc.MethodDesc{
  101. {
  102. MethodName: "AlarmAdd",
  103. Handler: _SmartAlarm_AlarmAdd_Handler,
  104. },
  105. },
  106. Streams: []grpc.StreamDesc{},
  107. Metadata: "smart_alarm.proto",
  108. }