Files
uta-trax-api/proto/schema.pb.go
T
2025-08-05 12:00:23 -06:00

369 lines
11 KiB
Go

// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.6
// protoc v5.29.3
// source: proto/schema.proto
package proto
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
unsafe "unsafe"
)
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 VehicleFeed_Line int32
const (
VehicleFeed_LINE_UNSPECIFIED VehicleFeed_Line = 0
VehicleFeed_GREEN VehicleFeed_Line = 1
VehicleFeed_RED VehicleFeed_Line = 2
VehicleFeed_BLUE VehicleFeed_Line = 3
VehicleFeed_STREETCAR VehicleFeed_Line = 4
VehicleFeed_FRONTRUNNER VehicleFeed_Line = 5
)
// Enum value maps for VehicleFeed_Line.
var (
VehicleFeed_Line_name = map[int32]string{
0: "LINE_UNSPECIFIED",
1: "GREEN",
2: "RED",
3: "BLUE",
4: "STREETCAR",
5: "FRONTRUNNER",
}
VehicleFeed_Line_value = map[string]int32{
"LINE_UNSPECIFIED": 0,
"GREEN": 1,
"RED": 2,
"BLUE": 3,
"STREETCAR": 4,
"FRONTRUNNER": 5,
}
)
func (x VehicleFeed_Line) Enum() *VehicleFeed_Line {
p := new(VehicleFeed_Line)
*p = x
return p
}
func (x VehicleFeed_Line) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (VehicleFeed_Line) Descriptor() protoreflect.EnumDescriptor {
return file_proto_schema_proto_enumTypes[0].Descriptor()
}
func (VehicleFeed_Line) Type() protoreflect.EnumType {
return &file_proto_schema_proto_enumTypes[0]
}
func (x VehicleFeed_Line) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use VehicleFeed_Line.Descriptor instead.
func (VehicleFeed_Line) EnumDescriptor() ([]byte, []int) {
return file_proto_schema_proto_rawDescGZIP(), []int{0, 0}
}
type VehicleFeed struct {
state protoimpl.MessageState `protogen:"open.v1"`
Vehicles []*VehicleFeed_Vehicle `protobuf:"bytes,1,rep,name=vehicles,proto3" json:"vehicles,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *VehicleFeed) Reset() {
*x = VehicleFeed{}
mi := &file_proto_schema_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *VehicleFeed) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*VehicleFeed) ProtoMessage() {}
func (x *VehicleFeed) ProtoReflect() protoreflect.Message {
mi := &file_proto_schema_proto_msgTypes[0]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use VehicleFeed.ProtoReflect.Descriptor instead.
func (*VehicleFeed) Descriptor() ([]byte, []int) {
return file_proto_schema_proto_rawDescGZIP(), []int{0}
}
func (x *VehicleFeed) GetVehicles() []*VehicleFeed_Vehicle {
if x != nil {
return x.Vehicles
}
return nil
}
type VehicleFeed_Station struct {
state protoimpl.MessageState `protogen:"open.v1"`
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
Lat float32 `protobuf:"fixed32,3,opt,name=lat,proto3" json:"lat,omitempty"`
Lon float32 `protobuf:"fixed32,4,opt,name=lon,proto3" json:"lon,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *VehicleFeed_Station) Reset() {
*x = VehicleFeed_Station{}
mi := &file_proto_schema_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *VehicleFeed_Station) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*VehicleFeed_Station) ProtoMessage() {}
func (x *VehicleFeed_Station) ProtoReflect() protoreflect.Message {
mi := &file_proto_schema_proto_msgTypes[1]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use VehicleFeed_Station.ProtoReflect.Descriptor instead.
func (*VehicleFeed_Station) Descriptor() ([]byte, []int) {
return file_proto_schema_proto_rawDescGZIP(), []int{0, 0}
}
func (x *VehicleFeed_Station) GetId() string {
if x != nil {
return x.Id
}
return ""
}
func (x *VehicleFeed_Station) GetName() string {
if x != nil {
return x.Name
}
return ""
}
func (x *VehicleFeed_Station) GetLat() float32 {
if x != nil {
return x.Lat
}
return 0
}
func (x *VehicleFeed_Station) GetLon() float32 {
if x != nil {
return x.Lon
}
return 0
}
type VehicleFeed_Vehicle struct {
state protoimpl.MessageState `protogen:"open.v1"`
Lat float32 `protobuf:"fixed32,1,opt,name=lat,proto3" json:"lat,omitempty"`
Lon float32 `protobuf:"fixed32,2,opt,name=lon,proto3" json:"lon,omitempty"`
Line VehicleFeed_Line `protobuf:"varint,3,opt,name=line,proto3,enum=VehicleFeed_Line" json:"line,omitempty"`
Direction int32 `protobuf:"varint,4,opt,name=direction,proto3" json:"direction,omitempty"`
Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
NearestStation *VehicleFeed_Station `protobuf:"bytes,6,opt,name=nearest_station,json=nearestStation,proto3" json:"nearest_station,omitempty"`
Headsign string `protobuf:"bytes,7,opt,name=headsign,proto3" json:"headsign,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *VehicleFeed_Vehicle) Reset() {
*x = VehicleFeed_Vehicle{}
mi := &file_proto_schema_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *VehicleFeed_Vehicle) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*VehicleFeed_Vehicle) ProtoMessage() {}
func (x *VehicleFeed_Vehicle) ProtoReflect() protoreflect.Message {
mi := &file_proto_schema_proto_msgTypes[2]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use VehicleFeed_Vehicle.ProtoReflect.Descriptor instead.
func (*VehicleFeed_Vehicle) Descriptor() ([]byte, []int) {
return file_proto_schema_proto_rawDescGZIP(), []int{0, 1}
}
func (x *VehicleFeed_Vehicle) GetLat() float32 {
if x != nil {
return x.Lat
}
return 0
}
func (x *VehicleFeed_Vehicle) GetLon() float32 {
if x != nil {
return x.Lon
}
return 0
}
func (x *VehicleFeed_Vehicle) GetLine() VehicleFeed_Line {
if x != nil {
return x.Line
}
return VehicleFeed_LINE_UNSPECIFIED
}
func (x *VehicleFeed_Vehicle) GetDirection() int32 {
if x != nil {
return x.Direction
}
return 0
}
func (x *VehicleFeed_Vehicle) GetId() string {
if x != nil {
return x.Id
}
return ""
}
func (x *VehicleFeed_Vehicle) GetNearestStation() *VehicleFeed_Station {
if x != nil {
return x.NearestStation
}
return nil
}
func (x *VehicleFeed_Vehicle) GetHeadsign() string {
if x != nil {
return x.Headsign
}
return ""
}
var File_proto_schema_proto protoreflect.FileDescriptor
const file_proto_schema_proto_rawDesc = "" +
"\n" +
"\x12proto/schema.proto\"\xce\x03\n" +
"\vVehicleFeed\x120\n" +
"\bvehicles\x18\x01 \x03(\v2\x14.VehicleFeed.VehicleR\bvehicles\x1aQ\n" +
"\aStation\x12\x0e\n" +
"\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n" +
"\x04name\x18\x02 \x01(\tR\x04name\x12\x10\n" +
"\x03lat\x18\x03 \x01(\x02R\x03lat\x12\x10\n" +
"\x03lon\x18\x04 \x01(\x02R\x03lon\x1a\xdd\x01\n" +
"\aVehicle\x12\x10\n" +
"\x03lat\x18\x01 \x01(\x02R\x03lat\x12\x10\n" +
"\x03lon\x18\x02 \x01(\x02R\x03lon\x12%\n" +
"\x04line\x18\x03 \x01(\x0e2\x11.VehicleFeed.LineR\x04line\x12\x1c\n" +
"\tdirection\x18\x04 \x01(\x05R\tdirection\x12\x0e\n" +
"\x02id\x18\x05 \x01(\tR\x02id\x12=\n" +
"\x0fnearest_station\x18\x06 \x01(\v2\x14.VehicleFeed.StationR\x0enearestStation\x12\x1a\n" +
"\bheadsign\x18\a \x01(\tR\bheadsign\"Z\n" +
"\x04Line\x12\x14\n" +
"\x10LINE_UNSPECIFIED\x10\x00\x12\t\n" +
"\x05GREEN\x10\x01\x12\a\n" +
"\x03RED\x10\x02\x12\b\n" +
"\x04BLUE\x10\x03\x12\r\n" +
"\tSTREETCAR\x10\x04\x12\x0f\n" +
"\vFRONTRUNNER\x10\x05B'Z%github.com/cjdenio/uta-trax-api/protob\x06proto3"
var (
file_proto_schema_proto_rawDescOnce sync.Once
file_proto_schema_proto_rawDescData []byte
)
func file_proto_schema_proto_rawDescGZIP() []byte {
file_proto_schema_proto_rawDescOnce.Do(func() {
file_proto_schema_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_proto_schema_proto_rawDesc), len(file_proto_schema_proto_rawDesc)))
})
return file_proto_schema_proto_rawDescData
}
var file_proto_schema_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
var file_proto_schema_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
var file_proto_schema_proto_goTypes = []any{
(VehicleFeed_Line)(0), // 0: VehicleFeed.Line
(*VehicleFeed)(nil), // 1: VehicleFeed
(*VehicleFeed_Station)(nil), // 2: VehicleFeed.Station
(*VehicleFeed_Vehicle)(nil), // 3: VehicleFeed.Vehicle
}
var file_proto_schema_proto_depIdxs = []int32{
3, // 0: VehicleFeed.vehicles:type_name -> VehicleFeed.Vehicle
0, // 1: VehicleFeed.Vehicle.line:type_name -> VehicleFeed.Line
2, // 2: VehicleFeed.Vehicle.nearest_station:type_name -> VehicleFeed.Station
3, // [3:3] is the sub-list for method output_type
3, // [3:3] is the sub-list for method input_type
3, // [3:3] is the sub-list for extension type_name
3, // [3:3] is the sub-list for extension extendee
0, // [0:3] is the sub-list for field type_name
}
func init() { file_proto_schema_proto_init() }
func file_proto_schema_proto_init() {
if File_proto_schema_proto != nil {
return
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: unsafe.Slice(unsafe.StringData(file_proto_schema_proto_rawDesc), len(file_proto_schema_proto_rawDesc)),
NumEnums: 1,
NumMessages: 3,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_proto_schema_proto_goTypes,
DependencyIndexes: file_proto_schema_proto_depIdxs,
EnumInfos: file_proto_schema_proto_enumTypes,
MessageInfos: file_proto_schema_proto_msgTypes,
}.Build()
File_proto_schema_proto = out.File
file_proto_schema_proto_goTypes = nil
file_proto_schema_proto_depIdxs = nil
}