// Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.26.0 // protoc v3.15.6 // source: proto/routing.proto package routing import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" reflect "reflect" sync "sync" ) const ( // Verify that this generated code is sufficiently up-to-date. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) // Verify that runtime/protoimpl is sufficiently up-to-date. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) ) type Point struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Latitude float64 `protobuf:"fixed64,1,opt,name=latitude,proto3" json:"latitude,omitempty"` Longitude float64 `protobuf:"fixed64,2,opt,name=longitude,proto3" json:"longitude,omitempty"` } func (x *Point) Reset() { *x = Point{} if protoimpl.UnsafeEnabled { mi := &file_proto_routing_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *Point) String() string { return protoimpl.X.MessageStringOf(x) } func (*Point) ProtoMessage() {} func (x *Point) ProtoReflect() protoreflect.Message { mi := &file_proto_routing_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use Point.ProtoReflect.Descriptor instead. func (*Point) Descriptor() ([]byte, []int) { return file_proto_routing_proto_rawDescGZIP(), []int{0} } func (x *Point) GetLatitude() float64 { if x != nil { return x.Latitude } return 0 } func (x *Point) GetLongitude() float64 { if x != nil { return x.Longitude } return 0 } type Waypoint struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // street name or related reference Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // gps point coordinates Location *Point `protobuf:"bytes,2,opt,name=location,proto3" json:"location,omitempty"` } func (x *Waypoint) Reset() { *x = Waypoint{} if protoimpl.UnsafeEnabled { mi := &file_proto_routing_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *Waypoint) String() string { return protoimpl.X.MessageStringOf(x) } func (*Waypoint) ProtoMessage() {} func (x *Waypoint) ProtoReflect() protoreflect.Message { mi := &file_proto_routing_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use Waypoint.ProtoReflect.Descriptor instead. func (*Waypoint) Descriptor() ([]byte, []int) { return file_proto_routing_proto_rawDescGZIP(), []int{1} } func (x *Waypoint) GetName() string { if x != nil { return x.Name } return "" } func (x *Waypoint) GetLocation() *Point { if x != nil { return x.Location } return nil } type EtaRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Origin *Point `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin,omitempty"` Destination *Point `protobuf:"bytes,2,opt,name=destination,proto3" json:"destination,omitempty"` // type of transport e.g car, foot, bicycle Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"` // speed in kilometers Speed float64 `protobuf:"fixed64,4,opt,name=speed,proto3" json:"speed,omitempty"` } func (x *EtaRequest) Reset() { *x = EtaRequest{} if protoimpl.UnsafeEnabled { mi := &file_proto_routing_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *EtaRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*EtaRequest) ProtoMessage() {} func (x *EtaRequest) ProtoReflect() protoreflect.Message { mi := &file_proto_routing_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use EtaRequest.ProtoReflect.Descriptor instead. func (*EtaRequest) Descriptor() ([]byte, []int) { return file_proto_routing_proto_rawDescGZIP(), []int{2} } func (x *EtaRequest) GetOrigin() *Point { if x != nil { return x.Origin } return nil } func (x *EtaRequest) GetDestination() *Point { if x != nil { return x.Destination } return nil } func (x *EtaRequest) GetType() string { if x != nil { return x.Type } return "" } func (x *EtaRequest) GetSpeed() float64 { if x != nil { return x.Speed } return 0 } type EtaResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // eta in seconds Duration float64 `protobuf:"fixed64,1,opt,name=duration,proto3" json:"duration,omitempty"` } func (x *EtaResponse) Reset() { *x = EtaResponse{} if protoimpl.UnsafeEnabled { mi := &file_proto_routing_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *EtaResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*EtaResponse) ProtoMessage() {} func (x *EtaResponse) ProtoReflect() protoreflect.Message { mi := &file_proto_routing_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use EtaResponse.ProtoReflect.Descriptor instead. func (*EtaResponse) Descriptor() ([]byte, []int) { return file_proto_routing_proto_rawDescGZIP(), []int{3} } func (x *EtaResponse) GetDuration() float64 { if x != nil { return x.Duration } return 0 } type RouteRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // Point of origin for the trip Origin *Point `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin,omitempty"` // Point of destination for the trip Destination *Point `protobuf:"bytes,2,opt,name=destination,proto3" json:"destination,omitempty"` } func (x *RouteRequest) Reset() { *x = RouteRequest{} if protoimpl.UnsafeEnabled { mi := &file_proto_routing_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *RouteRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*RouteRequest) ProtoMessage() {} func (x *RouteRequest) ProtoReflect() protoreflect.Message { mi := &file_proto_routing_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use RouteRequest.ProtoReflect.Descriptor instead. func (*RouteRequest) Descriptor() ([]byte, []int) { return file_proto_routing_proto_rawDescGZIP(), []int{4} } func (x *RouteRequest) GetOrigin() *Point { if x != nil { return x.Origin } return nil } func (x *RouteRequest) GetDestination() *Point { if x != nil { return x.Destination } return nil } type RouteResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // waypoints on the route Waypoints []*Waypoint `protobuf:"bytes,2,rep,name=waypoints,proto3" json:"waypoints,omitempty"` } func (x *RouteResponse) Reset() { *x = RouteResponse{} if protoimpl.UnsafeEnabled { mi := &file_proto_routing_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *RouteResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*RouteResponse) ProtoMessage() {} func (x *RouteResponse) ProtoReflect() protoreflect.Message { mi := &file_proto_routing_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use RouteResponse.ProtoReflect.Descriptor instead. func (*RouteResponse) Descriptor() ([]byte, []int) { return file_proto_routing_proto_rawDescGZIP(), []int{5} } func (x *RouteResponse) GetWaypoints() []*Waypoint { if x != nil { return x.Waypoints } return nil } var File_proto_routing_proto protoreflect.FileDescriptor var file_proto_routing_proto_rawDesc = []byte{ 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x22, 0x41, 0x0a, 0x05, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x6c, 0x61, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6c, 0x6f, 0x6e, 0x67, 0x69, 0x74, 0x75, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x6c, 0x6f, 0x6e, 0x67, 0x69, 0x74, 0x75, 0x64, 0x65, 0x22, 0x4a, 0x0a, 0x08, 0x57, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x90, 0x01, 0x0a, 0x0a, 0x45, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x12, 0x30, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x70, 0x65, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x73, 0x70, 0x65, 0x65, 0x64, 0x22, 0x29, 0x0a, 0x0b, 0x45, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x68, 0x0a, 0x0c, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x12, 0x30, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x40, 0x0a, 0x0d, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x09, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x57, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x09, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x32, 0x77, 0x0a, 0x07, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x38, 0x0a, 0x05, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x12, 0x15, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x32, 0x0a, 0x03, 0x45, 0x74, 0x61, 0x12, 0x13, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x45, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x45, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x11, 0x5a, 0x0f, 0x2e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x3b, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( file_proto_routing_proto_rawDescOnce sync.Once file_proto_routing_proto_rawDescData = file_proto_routing_proto_rawDesc ) func file_proto_routing_proto_rawDescGZIP() []byte { file_proto_routing_proto_rawDescOnce.Do(func() { file_proto_routing_proto_rawDescData = protoimpl.X.CompressGZIP(file_proto_routing_proto_rawDescData) }) return file_proto_routing_proto_rawDescData } var file_proto_routing_proto_msgTypes = make([]protoimpl.MessageInfo, 6) var file_proto_routing_proto_goTypes = []interface{}{ (*Point)(nil), // 0: routing.Point (*Waypoint)(nil), // 1: routing.Waypoint (*EtaRequest)(nil), // 2: routing.EtaRequest (*EtaResponse)(nil), // 3: routing.EtaResponse (*RouteRequest)(nil), // 4: routing.RouteRequest (*RouteResponse)(nil), // 5: routing.RouteResponse } var file_proto_routing_proto_depIdxs = []int32{ 0, // 0: routing.Waypoint.location:type_name -> routing.Point 0, // 1: routing.EtaRequest.origin:type_name -> routing.Point 0, // 2: routing.EtaRequest.destination:type_name -> routing.Point 0, // 3: routing.RouteRequest.origin:type_name -> routing.Point 0, // 4: routing.RouteRequest.destination:type_name -> routing.Point 1, // 5: routing.RouteResponse.waypoints:type_name -> routing.Waypoint 4, // 6: routing.Routing.Route:input_type -> routing.RouteRequest 2, // 7: routing.Routing.Eta:input_type -> routing.EtaRequest 5, // 8: routing.Routing.Route:output_type -> routing.RouteResponse 3, // 9: routing.Routing.Eta:output_type -> routing.EtaResponse 8, // [8:10] is the sub-list for method output_type 6, // [6:8] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name 6, // [6:6] is the sub-list for extension extendee 0, // [0:6] is the sub-list for field type_name } func init() { file_proto_routing_proto_init() } func file_proto_routing_proto_init() { if File_proto_routing_proto != nil { return } if !protoimpl.UnsafeEnabled { file_proto_routing_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Point); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_proto_routing_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Waypoint); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_proto_routing_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EtaRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_proto_routing_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EtaResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_proto_routing_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RouteRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_proto_routing_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RouteResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_proto_routing_proto_rawDesc, NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, GoTypes: file_proto_routing_proto_goTypes, DependencyIndexes: file_proto_routing_proto_depIdxs, MessageInfos: file_proto_routing_proto_msgTypes, }.Build() File_proto_routing_proto = out.File file_proto_routing_proto_rawDesc = nil file_proto_routing_proto_goTypes = nil file_proto_routing_proto_depIdxs = nil }