223 lines
7.1 KiB
Go
223 lines
7.1 KiB
Go
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||
|
// source: data.proto
|
||
|
|
||
|
/*
|
||
|
Package data is a generated protocol buffer package.
|
||
|
|
||
|
It is generated from these files:
|
||
|
data.proto
|
||
|
|
||
|
It has these top-level messages:
|
||
|
Empty
|
||
|
CollectedData
|
||
|
*/
|
||
|
package data
|
||
|
|
||
|
import proto "github.com/golang/protobuf/proto"
|
||
|
import fmt "fmt"
|
||
|
import math "math"
|
||
|
|
||
|
import (
|
||
|
context "golang.org/x/net/context"
|
||
|
grpc "google.golang.org/grpc"
|
||
|
)
|
||
|
|
||
|
// Reference imports to suppress errors if they are not otherwise used.
|
||
|
var _ = proto.Marshal
|
||
|
var _ = fmt.Errorf
|
||
|
var _ = math.Inf
|
||
|
|
||
|
// This is a compile-time assertion to ensure that this generated file
|
||
|
// is compatible with the proto package it is being compiled against.
|
||
|
// A compilation error at this line likely means your copy of the
|
||
|
// proto package needs to be updated.
|
||
|
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
||
|
|
||
|
type Empty struct {
|
||
|
}
|
||
|
|
||
|
func (m *Empty) Reset() { *m = Empty{} }
|
||
|
func (m *Empty) String() string { return proto.CompactTextString(m) }
|
||
|
func (*Empty) ProtoMessage() {}
|
||
|
func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
||
|
|
||
|
type CollectedData struct {
|
||
|
AgentId string `protobuf:"bytes,1,opt,name=agentId" json:"agentId,omitempty"`
|
||
|
SensorId string `protobuf:"bytes,2,opt,name=sensorId" json:"sensorId,omitempty"`
|
||
|
Data map[string]string `protobuf:"bytes,3,rep,name=data" json:"data,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
||
|
StartDate int64 `protobuf:"varint,4,opt,name=startDate" json:"startDate,omitempty"`
|
||
|
FinishDate int64 `protobuf:"varint,5,opt,name=finishDate" json:"finishDate,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (m *CollectedData) Reset() { *m = CollectedData{} }
|
||
|
func (m *CollectedData) String() string { return proto.CompactTextString(m) }
|
||
|
func (*CollectedData) ProtoMessage() {}
|
||
|
func (*CollectedData) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
||
|
|
||
|
func (m *CollectedData) GetAgentId() string {
|
||
|
if m != nil {
|
||
|
return m.AgentId
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *CollectedData) GetSensorId() string {
|
||
|
if m != nil {
|
||
|
return m.SensorId
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *CollectedData) GetData() map[string]string {
|
||
|
if m != nil {
|
||
|
return m.Data
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *CollectedData) GetStartDate() int64 {
|
||
|
if m != nil {
|
||
|
return m.StartDate
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (m *CollectedData) GetFinishDate() int64 {
|
||
|
if m != nil {
|
||
|
return m.FinishDate
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
proto.RegisterType((*Empty)(nil), "Empty")
|
||
|
proto.RegisterType((*CollectedData)(nil), "CollectedData")
|
||
|
}
|
||
|
|
||
|
// Reference imports to suppress errors if they are not otherwise used.
|
||
|
var _ context.Context
|
||
|
var _ grpc.ClientConn
|
||
|
|
||
|
// This is a compile-time assertion to ensure that this generated file
|
||
|
// is compatible with the grpc package it is being compiled against.
|
||
|
const _ = grpc.SupportPackageIsVersion4
|
||
|
|
||
|
// Client API for Data service
|
||
|
|
||
|
type DataClient interface {
|
||
|
SendMetric(ctx context.Context, in *CollectedData, opts ...grpc.CallOption) (*Empty, error)
|
||
|
SendMeta(ctx context.Context, in *CollectedData, opts ...grpc.CallOption) (*Empty, error)
|
||
|
}
|
||
|
|
||
|
type dataClient struct {
|
||
|
cc *grpc.ClientConn
|
||
|
}
|
||
|
|
||
|
func NewDataClient(cc *grpc.ClientConn) DataClient {
|
||
|
return &dataClient{cc}
|
||
|
}
|
||
|
|
||
|
func (c *dataClient) SendMetric(ctx context.Context, in *CollectedData, opts ...grpc.CallOption) (*Empty, error) {
|
||
|
out := new(Empty)
|
||
|
err := grpc.Invoke(ctx, "/Data/sendMetric", in, out, c.cc, opts...)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
|
func (c *dataClient) SendMeta(ctx context.Context, in *CollectedData, opts ...grpc.CallOption) (*Empty, error) {
|
||
|
out := new(Empty)
|
||
|
err := grpc.Invoke(ctx, "/Data/sendMeta", in, out, c.cc, opts...)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
|
// Server API for Data service
|
||
|
|
||
|
type DataServer interface {
|
||
|
SendMetric(context.Context, *CollectedData) (*Empty, error)
|
||
|
SendMeta(context.Context, *CollectedData) (*Empty, error)
|
||
|
}
|
||
|
|
||
|
func RegisterDataServer(s *grpc.Server, srv DataServer) {
|
||
|
s.RegisterService(&_Data_serviceDesc, srv)
|
||
|
}
|
||
|
|
||
|
func _Data_SendMetric_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||
|
in := new(CollectedData)
|
||
|
if err := dec(in); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if interceptor == nil {
|
||
|
return srv.(DataServer).SendMetric(ctx, in)
|
||
|
}
|
||
|
info := &grpc.UnaryServerInfo{
|
||
|
Server: srv,
|
||
|
FullMethod: "/Data/SendMetric",
|
||
|
}
|
||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||
|
return srv.(DataServer).SendMetric(ctx, req.(*CollectedData))
|
||
|
}
|
||
|
return interceptor(ctx, in, info, handler)
|
||
|
}
|
||
|
|
||
|
func _Data_SendMeta_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||
|
in := new(CollectedData)
|
||
|
if err := dec(in); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if interceptor == nil {
|
||
|
return srv.(DataServer).SendMeta(ctx, in)
|
||
|
}
|
||
|
info := &grpc.UnaryServerInfo{
|
||
|
Server: srv,
|
||
|
FullMethod: "/Data/SendMeta",
|
||
|
}
|
||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||
|
return srv.(DataServer).SendMeta(ctx, req.(*CollectedData))
|
||
|
}
|
||
|
return interceptor(ctx, in, info, handler)
|
||
|
}
|
||
|
|
||
|
var _Data_serviceDesc = grpc.ServiceDesc{
|
||
|
ServiceName: "Data",
|
||
|
HandlerType: (*DataServer)(nil),
|
||
|
Methods: []grpc.MethodDesc{
|
||
|
{
|
||
|
MethodName: "sendMetric",
|
||
|
Handler: _Data_SendMetric_Handler,
|
||
|
},
|
||
|
{
|
||
|
MethodName: "sendMeta",
|
||
|
Handler: _Data_SendMeta_Handler,
|
||
|
},
|
||
|
},
|
||
|
Streams: []grpc.StreamDesc{},
|
||
|
Metadata: "data.proto",
|
||
|
}
|
||
|
|
||
|
func init() { proto.RegisterFile("data.proto", fileDescriptor0) }
|
||
|
|
||
|
var fileDescriptor0 = []byte{
|
||
|
// 244 bytes of a gzipped FileDescriptorProto
|
||
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x50, 0xc1, 0x4a, 0xc3, 0x40,
|
||
|
0x14, 0x74, 0x9b, 0xa4, 0x35, 0x4f, 0x14, 0x79, 0x78, 0x58, 0x82, 0x48, 0x28, 0x22, 0x39, 0x48,
|
||
|
0x0e, 0xf5, 0xa0, 0x78, 0xb5, 0x3d, 0xf4, 0xe0, 0x25, 0xf8, 0x03, 0xcf, 0xee, 0x53, 0x83, 0x71,
|
||
|
0x53, 0x76, 0x9f, 0x42, 0x7e, 0xd9, 0xaf, 0x90, 0x6c, 0x6b, 0x35, 0x87, 0x5e, 0x96, 0x9d, 0x37,
|
||
|
0xc3, 0x30, 0x33, 0x00, 0x86, 0x84, 0xca, 0xb5, 0x6b, 0xa5, 0x9d, 0x4e, 0x20, 0x59, 0x7c, 0xac,
|
||
|
0xa5, 0x9b, 0x7e, 0x2b, 0x38, 0x7e, 0x68, 0x9b, 0x86, 0x57, 0xc2, 0x66, 0x4e, 0x42, 0xa8, 0x61,
|
||
|
0x42, 0xaf, 0x6c, 0x65, 0x69, 0xb4, 0xca, 0x55, 0x91, 0x56, 0xbf, 0x10, 0x33, 0x38, 0xf4, 0x6c,
|
||
|
0x7d, 0xeb, 0x96, 0x46, 0x8f, 0x02, 0xb5, 0xc3, 0x78, 0x0d, 0x71, 0x6f, 0xaf, 0xa3, 0x3c, 0x2a,
|
||
|
0x8e, 0x66, 0xba, 0x1c, 0x78, 0x96, 0xfd, 0xb3, 0xb0, 0xe2, 0xba, 0x2a, 0xa8, 0xf0, 0x1c, 0x52,
|
||
|
0x2f, 0xe4, 0x64, 0x4e, 0xc2, 0x3a, 0xce, 0x55, 0x11, 0x55, 0x7f, 0x07, 0xbc, 0x00, 0x78, 0xa9,
|
||
|
0x6d, 0xed, 0xdf, 0x02, 0x9d, 0x04, 0xfa, 0xdf, 0x25, 0xbb, 0x85, 0x74, 0x67, 0x88, 0xa7, 0x10,
|
||
|
0xbd, 0x73, 0xb7, 0x8d, 0xda, 0x7f, 0xf1, 0x0c, 0x92, 0x2f, 0x6a, 0x3e, 0x79, 0x9b, 0x71, 0x03,
|
||
|
0xee, 0x47, 0x77, 0x6a, 0xf6, 0x04, 0x71, 0xa8, 0x78, 0x05, 0xe0, 0xd9, 0x9a, 0x47, 0x16, 0x57,
|
||
|
0xaf, 0xf0, 0x64, 0x18, 0x36, 0x1b, 0x97, 0x9b, 0x69, 0x0e, 0xf0, 0x32, 0x14, 0xee, 0x75, 0xb4,
|
||
|
0x5f, 0xf5, 0x3c, 0x0e, 0x93, 0xde, 0xfc, 0x04, 0x00, 0x00, 0xff, 0xff, 0x16, 0x7f, 0xaf, 0xb1,
|
||
|
0x60, 0x01, 0x00, 0x00,
|
||
|
}
|