blob: 273c0ef23d658c19d88a9e4c685a4f7ef4e42cb3 [file] [log] [blame]
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.27.1
// protoc v3.17.1
// source: chromite/api/portage_explorer.proto
package api
import (
chromiumos "go.chromium.org/chromiumos/infra/proto/go/chromiumos"
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 RunSpidersRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// The chroot to use to execute the endpoint.
Chroot *chromiumos.Chroot `protobuf:"bytes,1,opt,name=chroot,proto3" json:"chroot,omitempty"`
}
func (x *RunSpidersRequest) Reset() {
*x = RunSpidersRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_chromite_api_portage_explorer_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RunSpidersRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RunSpidersRequest) ProtoMessage() {}
func (x *RunSpidersRequest) ProtoReflect() protoreflect.Message {
mi := &file_chromite_api_portage_explorer_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 RunSpidersRequest.ProtoReflect.Descriptor instead.
func (*RunSpidersRequest) Descriptor() ([]byte, []int) {
return file_chromite_api_portage_explorer_proto_rawDescGZIP(), []int{0}
}
func (x *RunSpidersRequest) GetChroot() *chromiumos.Chroot {
if x != nil {
return x.Chroot
}
return nil
}
// All output from all the spiders. The unique ids are set in messages for
// entities that are contained within other entities and listed in the output.
type RunSpidersResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// List of the current build targets (or boards).
BuildTargets []*RunSpidersResponse_BuildTarget `protobuf:"bytes,1,rep,name=build_targets,json=buildTargets,proto3" json:"build_targets,omitempty"`
// List of the current overlays.
Overlays []*RunSpidersResponse_Overlay `protobuf:"bytes,2,rep,name=overlays,proto3" json:"overlays,omitempty"`
}
func (x *RunSpidersResponse) Reset() {
*x = RunSpidersResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_chromite_api_portage_explorer_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RunSpidersResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RunSpidersResponse) ProtoMessage() {}
func (x *RunSpidersResponse) ProtoReflect() protoreflect.Message {
mi := &file_chromite_api_portage_explorer_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 RunSpidersResponse.ProtoReflect.Descriptor instead.
func (*RunSpidersResponse) Descriptor() ([]byte, []int) {
return file_chromite_api_portage_explorer_proto_rawDescGZIP(), []int{1}
}
func (x *RunSpidersResponse) GetBuildTargets() []*RunSpidersResponse_BuildTarget {
if x != nil {
return x.BuildTargets
}
return nil
}
func (x *RunSpidersResponse) GetOverlays() []*RunSpidersResponse_Overlay {
if x != nil {
return x.Overlays
}
return nil
}
// A build target (or board).
type RunSpidersResponse_BuildTarget struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Name of the build target (or board).
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// Profile id that this build target is directly inheriting from.
ProfileId *RunSpidersResponse_Profile `protobuf:"bytes,2,opt,name=profile_id,json=profileId,proto3" json:"profile_id,omitempty"`
}
func (x *RunSpidersResponse_BuildTarget) Reset() {
*x = RunSpidersResponse_BuildTarget{}
if protoimpl.UnsafeEnabled {
mi := &file_chromite_api_portage_explorer_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RunSpidersResponse_BuildTarget) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RunSpidersResponse_BuildTarget) ProtoMessage() {}
func (x *RunSpidersResponse_BuildTarget) ProtoReflect() protoreflect.Message {
mi := &file_chromite_api_portage_explorer_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 RunSpidersResponse_BuildTarget.ProtoReflect.Descriptor instead.
func (*RunSpidersResponse_BuildTarget) Descriptor() ([]byte, []int) {
return file_chromite_api_portage_explorer_proto_rawDescGZIP(), []int{1, 0}
}
func (x *RunSpidersResponse_BuildTarget) GetName() string {
if x != nil {
return x.Name
}
return ""
}
func (x *RunSpidersResponse_BuildTarget) GetProfileId() *RunSpidersResponse_Profile {
if x != nil {
return x.ProfileId
}
return nil
}
// A profile.
type RunSpidersResponse_Profile struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Unique ID for each profile in the form overlay_name:profile_name. Matches
// with build targets and profile inheritance.
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
// Source path of the profile.
Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
// Name of the profile.
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
// List of USE flags enabled or disabled in the profile.
UseFlags []*RunSpidersResponse_ProfileUse `protobuf:"bytes,4,rep,name=use_flags,json=useFlags,proto3" json:"use_flags,omitempty"`
// List of profiles this profile inherits from.
ParentProfiles []*RunSpidersResponse_Profile `protobuf:"bytes,5,rep,name=parent_profiles,json=parentProfiles,proto3" json:"parent_profiles,omitempty"`
}
func (x *RunSpidersResponse_Profile) Reset() {
*x = RunSpidersResponse_Profile{}
if protoimpl.UnsafeEnabled {
mi := &file_chromite_api_portage_explorer_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RunSpidersResponse_Profile) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RunSpidersResponse_Profile) ProtoMessage() {}
func (x *RunSpidersResponse_Profile) ProtoReflect() protoreflect.Message {
mi := &file_chromite_api_portage_explorer_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 RunSpidersResponse_Profile.ProtoReflect.Descriptor instead.
func (*RunSpidersResponse_Profile) Descriptor() ([]byte, []int) {
return file_chromite_api_portage_explorer_proto_rawDescGZIP(), []int{1, 1}
}
func (x *RunSpidersResponse_Profile) GetId() string {
if x != nil {
return x.Id
}
return ""
}
func (x *RunSpidersResponse_Profile) GetPath() string {
if x != nil {
return x.Path
}
return ""
}
func (x *RunSpidersResponse_Profile) GetName() string {
if x != nil {
return x.Name
}
return ""
}
func (x *RunSpidersResponse_Profile) GetUseFlags() []*RunSpidersResponse_ProfileUse {
if x != nil {
return x.UseFlags
}
return nil
}
func (x *RunSpidersResponse_Profile) GetParentProfiles() []*RunSpidersResponse_Profile {
if x != nil {
return x.ParentProfiles
}
return nil
}
// An overlay.
type RunSpidersResponse_Overlay struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Source path of the overlay.
Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
// Name of the overlay.
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
// List of profiles in the overlay.
Profiles []*RunSpidersResponse_Profile `protobuf:"bytes,3,rep,name=profiles,proto3" json:"profiles,omitempty"`
// List of ebuilds in the overlay.
Ebuilds []*RunSpidersResponse_Ebuild `protobuf:"bytes,4,rep,name=ebuilds,proto3" json:"ebuilds,omitempty"`
// List of eclasses in the overlay.
Eclasses []*RunSpidersResponse_Eclass `protobuf:"bytes,5,rep,name=eclasses,proto3" json:"eclasses,omitempty"`
}
func (x *RunSpidersResponse_Overlay) Reset() {
*x = RunSpidersResponse_Overlay{}
if protoimpl.UnsafeEnabled {
mi := &file_chromite_api_portage_explorer_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RunSpidersResponse_Overlay) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RunSpidersResponse_Overlay) ProtoMessage() {}
func (x *RunSpidersResponse_Overlay) ProtoReflect() protoreflect.Message {
mi := &file_chromite_api_portage_explorer_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 RunSpidersResponse_Overlay.ProtoReflect.Descriptor instead.
func (*RunSpidersResponse_Overlay) Descriptor() ([]byte, []int) {
return file_chromite_api_portage_explorer_proto_rawDescGZIP(), []int{1, 2}
}
func (x *RunSpidersResponse_Overlay) GetPath() string {
if x != nil {
return x.Path
}
return ""
}
func (x *RunSpidersResponse_Overlay) GetName() string {
if x != nil {
return x.Name
}
return ""
}
func (x *RunSpidersResponse_Overlay) GetProfiles() []*RunSpidersResponse_Profile {
if x != nil {
return x.Profiles
}
return nil
}
func (x *RunSpidersResponse_Overlay) GetEbuilds() []*RunSpidersResponse_Ebuild {
if x != nil {
return x.Ebuilds
}
return nil
}
func (x *RunSpidersResponse_Overlay) GetEclasses() []*RunSpidersResponse_Eclass {
if x != nil {
return x.Eclasses
}
return nil
}
// An ebuild.
type RunSpidersResponse_Ebuild struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Source path of the ebuild.
Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
// Store the package category/name the ebuild satisfies.
PackageInfo *chromiumos.PackageInfo `protobuf:"bytes,2,opt,name=package_info,json=packageInfo,proto3" json:"package_info,omitempty"`
// Version of the ebuild, excluding revision.
Version string `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
// Revision number of the ebuild.
Revision int32 `protobuf:"varint,4,opt,name=revision,proto3" json:"revision,omitempty"`
// EAPI of the ebuild.
Eapi int32 `protobuf:"varint,5,opt,name=eapi,proto3" json:"eapi,omitempty"`
// Description of the ebuild.
Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
// Homepage of the ebuild.
Homepage string `protobuf:"bytes,7,opt,name=homepage,proto3" json:"homepage,omitempty"`
// License of the ebuild.
License string `protobuf:"bytes,8,opt,name=license,proto3" json:"license,omitempty"`
// Slot the ebuild is compatible with.
Slot string `protobuf:"bytes,9,opt,name=slot,proto3" json:"slot,omitempty"`
// SRC_URI for the ebuild.
SrcUri string `protobuf:"bytes,10,opt,name=src_uri,json=srcUri,proto3" json:"src_uri,omitempty"`
// Portage features the ebuild restricts.
Restrict string `protobuf:"bytes,11,opt,name=restrict,proto3" json:"restrict,omitempty"`
// Build time dependencies.
Depend string `protobuf:"bytes,12,opt,name=depend,proto3" json:"depend,omitempty"`
// Run time dependencies.
Rdepend string `protobuf:"bytes,13,opt,name=rdepend,proto3" json:"rdepend,omitempty"`
// Build time dependencies needed during the build.
Bdepend string `protobuf:"bytes,14,opt,name=bdepend,proto3" json:"bdepend,omitempty"`
// Post time dependencies.
Pdepend string `protobuf:"bytes,15,opt,name=pdepend,proto3" json:"pdepend,omitempty"`
// List of USE flags used in the ebuild. Can be default enabled.
UseFlags []*RunSpidersResponse_EbuildUse `protobuf:"bytes,16,rep,name=use_flags,json=useFlags,proto3" json:"use_flags,omitempty"`
// List of eclass names the ebuild inherits from.
EclassInherits []string `protobuf:"bytes,17,rep,name=eclass_inherits,json=eclassInherits,proto3" json:"eclass_inherits,omitempty"`
}
func (x *RunSpidersResponse_Ebuild) Reset() {
*x = RunSpidersResponse_Ebuild{}
if protoimpl.UnsafeEnabled {
mi := &file_chromite_api_portage_explorer_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RunSpidersResponse_Ebuild) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RunSpidersResponse_Ebuild) ProtoMessage() {}
func (x *RunSpidersResponse_Ebuild) ProtoReflect() protoreflect.Message {
mi := &file_chromite_api_portage_explorer_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 RunSpidersResponse_Ebuild.ProtoReflect.Descriptor instead.
func (*RunSpidersResponse_Ebuild) Descriptor() ([]byte, []int) {
return file_chromite_api_portage_explorer_proto_rawDescGZIP(), []int{1, 3}
}
func (x *RunSpidersResponse_Ebuild) GetPath() string {
if x != nil {
return x.Path
}
return ""
}
func (x *RunSpidersResponse_Ebuild) GetPackageInfo() *chromiumos.PackageInfo {
if x != nil {
return x.PackageInfo
}
return nil
}
func (x *RunSpidersResponse_Ebuild) GetVersion() string {
if x != nil {
return x.Version
}
return ""
}
func (x *RunSpidersResponse_Ebuild) GetRevision() int32 {
if x != nil {
return x.Revision
}
return 0
}
func (x *RunSpidersResponse_Ebuild) GetEapi() int32 {
if x != nil {
return x.Eapi
}
return 0
}
func (x *RunSpidersResponse_Ebuild) GetDescription() string {
if x != nil {
return x.Description
}
return ""
}
func (x *RunSpidersResponse_Ebuild) GetHomepage() string {
if x != nil {
return x.Homepage
}
return ""
}
func (x *RunSpidersResponse_Ebuild) GetLicense() string {
if x != nil {
return x.License
}
return ""
}
func (x *RunSpidersResponse_Ebuild) GetSlot() string {
if x != nil {
return x.Slot
}
return ""
}
func (x *RunSpidersResponse_Ebuild) GetSrcUri() string {
if x != nil {
return x.SrcUri
}
return ""
}
func (x *RunSpidersResponse_Ebuild) GetRestrict() string {
if x != nil {
return x.Restrict
}
return ""
}
func (x *RunSpidersResponse_Ebuild) GetDepend() string {
if x != nil {
return x.Depend
}
return ""
}
func (x *RunSpidersResponse_Ebuild) GetRdepend() string {
if x != nil {
return x.Rdepend
}
return ""
}
func (x *RunSpidersResponse_Ebuild) GetBdepend() string {
if x != nil {
return x.Bdepend
}
return ""
}
func (x *RunSpidersResponse_Ebuild) GetPdepend() string {
if x != nil {
return x.Pdepend
}
return ""
}
func (x *RunSpidersResponse_Ebuild) GetUseFlags() []*RunSpidersResponse_EbuildUse {
if x != nil {
return x.UseFlags
}
return nil
}
func (x *RunSpidersResponse_Ebuild) GetEclassInherits() []string {
if x != nil {
return x.EclassInherits
}
return nil
}
// An eclass.
type RunSpidersResponse_Eclass struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Source path of the eclass.
Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
// Name of eclass.
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
// List of eclass names the eclass inherits from.
EclassInherits []string `protobuf:"bytes,3,rep,name=eclass_inherits,json=eclassInherits,proto3" json:"eclass_inherits,omitempty"`
}
func (x *RunSpidersResponse_Eclass) Reset() {
*x = RunSpidersResponse_Eclass{}
if protoimpl.UnsafeEnabled {
mi := &file_chromite_api_portage_explorer_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RunSpidersResponse_Eclass) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RunSpidersResponse_Eclass) ProtoMessage() {}
func (x *RunSpidersResponse_Eclass) ProtoReflect() protoreflect.Message {
mi := &file_chromite_api_portage_explorer_proto_msgTypes[6]
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 RunSpidersResponse_Eclass.ProtoReflect.Descriptor instead.
func (*RunSpidersResponse_Eclass) Descriptor() ([]byte, []int) {
return file_chromite_api_portage_explorer_proto_rawDescGZIP(), []int{1, 4}
}
func (x *RunSpidersResponse_Eclass) GetPath() string {
if x != nil {
return x.Path
}
return ""
}
func (x *RunSpidersResponse_Eclass) GetName() string {
if x != nil {
return x.Name
}
return ""
}
func (x *RunSpidersResponse_Eclass) GetEclassInherits() []string {
if x != nil {
return x.EclassInherits
}
return nil
}
// USE flags used in profiles. Can be enabled or disabled.
type RunSpidersResponse_ProfileUse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Name of USE flag.
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// True for if a use flag is enabled in profile, False for disabled.
Enabled bool `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
}
func (x *RunSpidersResponse_ProfileUse) Reset() {
*x = RunSpidersResponse_ProfileUse{}
if protoimpl.UnsafeEnabled {
mi := &file_chromite_api_portage_explorer_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RunSpidersResponse_ProfileUse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RunSpidersResponse_ProfileUse) ProtoMessage() {}
func (x *RunSpidersResponse_ProfileUse) ProtoReflect() protoreflect.Message {
mi := &file_chromite_api_portage_explorer_proto_msgTypes[7]
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 RunSpidersResponse_ProfileUse.ProtoReflect.Descriptor instead.
func (*RunSpidersResponse_ProfileUse) Descriptor() ([]byte, []int) {
return file_chromite_api_portage_explorer_proto_rawDescGZIP(), []int{1, 5}
}
func (x *RunSpidersResponse_ProfileUse) GetName() string {
if x != nil {
return x.Name
}
return ""
}
func (x *RunSpidersResponse_ProfileUse) GetEnabled() bool {
if x != nil {
return x.Enabled
}
return false
}
// USE flags used in ebuilds. Can be default enabled for ebuilds.
type RunSpidersResponse_EbuildUse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Name of USE flag.
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// True for if use flag is default enabled in the ebuild, False for not.
DefaultEnabled bool `protobuf:"varint,2,opt,name=default_enabled,json=defaultEnabled,proto3" json:"default_enabled,omitempty"`
}
func (x *RunSpidersResponse_EbuildUse) Reset() {
*x = RunSpidersResponse_EbuildUse{}
if protoimpl.UnsafeEnabled {
mi := &file_chromite_api_portage_explorer_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RunSpidersResponse_EbuildUse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RunSpidersResponse_EbuildUse) ProtoMessage() {}
func (x *RunSpidersResponse_EbuildUse) ProtoReflect() protoreflect.Message {
mi := &file_chromite_api_portage_explorer_proto_msgTypes[8]
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 RunSpidersResponse_EbuildUse.ProtoReflect.Descriptor instead.
func (*RunSpidersResponse_EbuildUse) Descriptor() ([]byte, []int) {
return file_chromite_api_portage_explorer_proto_rawDescGZIP(), []int{1, 6}
}
func (x *RunSpidersResponse_EbuildUse) GetName() string {
if x != nil {
return x.Name
}
return ""
}
func (x *RunSpidersResponse_EbuildUse) GetDefaultEnabled() bool {
if x != nil {
return x.DefaultEnabled
}
return false
}
var File_chromite_api_portage_explorer_proto protoreflect.FileDescriptor
var file_chromite_api_portage_explorer_proto_rawDesc = []byte{
0x0a, 0x23, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x74, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
0x6f, 0x72, 0x74, 0x61, 0x67, 0x65, 0x5f, 0x65, 0x78, 0x70, 0x6c, 0x6f, 0x72, 0x65, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0c, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x74, 0x65, 0x2e,
0x61, 0x70, 0x69, 0x1a, 0x1c, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x74, 0x65, 0x2f, 0x61, 0x70,
0x69, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x17, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2f, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x3f, 0x0a, 0x11, 0x52, 0x75,
0x6e, 0x53, 0x70, 0x69, 0x64, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
0x2a, 0x0a, 0x06, 0x63, 0x68, 0x72, 0x6f, 0x6f, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x12, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2e, 0x43, 0x68, 0x72,
0x6f, 0x6f, 0x74, 0x52, 0x06, 0x63, 0x68, 0x72, 0x6f, 0x6f, 0x74, 0x22, 0xfb, 0x0b, 0x0a, 0x12,
0x52, 0x75, 0x6e, 0x53, 0x70, 0x69, 0x64, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
0x73, 0x65, 0x12, 0x51, 0x0a, 0x0d, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x74, 0x61, 0x72, 0x67,
0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x63, 0x68, 0x72, 0x6f,
0x6d, 0x69, 0x74, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x52, 0x75, 0x6e, 0x53, 0x70, 0x69, 0x64,
0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x42, 0x75, 0x69, 0x6c,
0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x0c, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x54, 0x61,
0x72, 0x67, 0x65, 0x74, 0x73, 0x12, 0x44, 0x0a, 0x08, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79,
0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69,
0x74, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x52, 0x75, 0x6e, 0x53, 0x70, 0x69, 0x64, 0x65, 0x72,
0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61,
0x79, 0x52, 0x08, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x73, 0x1a, 0x6a, 0x0a, 0x0b, 0x42,
0x75, 0x69, 0x6c, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x47,
0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x74, 0x65, 0x2e, 0x61, 0x70,
0x69, 0x2e, 0x52, 0x75, 0x6e, 0x53, 0x70, 0x69, 0x64, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x09, 0x70, 0x72,
0x6f, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x1a, 0xde, 0x01, 0x0a, 0x07, 0x50, 0x72, 0x6f, 0x66,
0x69, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28,
0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x48, 0x0a, 0x09, 0x75,
0x73, 0x65, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b,
0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x74, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x52, 0x75,
0x6e, 0x53, 0x70, 0x69, 0x64, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
0x2e, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x52, 0x08, 0x75, 0x73, 0x65,
0x46, 0x6c, 0x61, 0x67, 0x73, 0x12, 0x51, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f,
0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28,
0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x74, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x52, 0x75,
0x6e, 0x53, 0x70, 0x69, 0x64, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
0x2e, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x1a, 0xff, 0x01, 0x0a, 0x07, 0x4f, 0x76, 0x65,
0x72, 0x6c, 0x61, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01,
0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x44, 0x0a, 0x08,
0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28,
0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x74, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x52, 0x75,
0x6e, 0x53, 0x70, 0x69, 0x64, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
0x2e, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c,
0x65, 0x73, 0x12, 0x41, 0x0a, 0x07, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x73, 0x18, 0x04, 0x20,
0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x74, 0x65, 0x2e, 0x61,
0x70, 0x69, 0x2e, 0x52, 0x75, 0x6e, 0x53, 0x70, 0x69, 0x64, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73,
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x07, 0x65, 0x62,
0x75, 0x69, 0x6c, 0x64, 0x73, 0x12, 0x43, 0x0a, 0x08, 0x65, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x65,
0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69,
0x74, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x52, 0x75, 0x6e, 0x53, 0x70, 0x69, 0x64, 0x65, 0x72,
0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x63, 0x6c, 0x61, 0x73, 0x73,
0x52, 0x08, 0x65, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x65, 0x73, 0x1a, 0x9b, 0x04, 0x0a, 0x06, 0x45,
0x62, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20,
0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x3a, 0x0a, 0x0c, 0x70, 0x61, 0x63,
0x6b, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x17, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2e, 0x50, 0x61, 0x63,
0x6b, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67,
0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12,
0x1a, 0x0a, 0x08, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
0x05, 0x52, 0x08, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x65,
0x61, 0x70, 0x69, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x65, 0x61, 0x70, 0x69, 0x12,
0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06,
0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x68, 0x6f, 0x6d, 0x65, 0x70, 0x61, 0x67, 0x65, 0x18, 0x07, 0x20,
0x01, 0x28, 0x09, 0x52, 0x08, 0x68, 0x6f, 0x6d, 0x65, 0x70, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a,
0x07, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x6c, 0x6f, 0x74, 0x18,
0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x6c, 0x6f, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73,
0x72, 0x63, 0x5f, 0x75, 0x72, 0x69, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x72,
0x63, 0x55, 0x72, 0x69, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74,
0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74,
0x12, 0x16, 0x0a, 0x06, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09,
0x52, 0x06, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x64, 0x65, 0x70,
0x65, 0x6e, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x64, 0x65, 0x70, 0x65,
0x6e, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x18, 0x0e, 0x20,
0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x12, 0x18, 0x0a, 0x07,
0x70, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70,
0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x12, 0x47, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x5f, 0x66, 0x6c,
0x61, 0x67, 0x73, 0x18, 0x10, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, 0x68, 0x72, 0x6f,
0x6d, 0x69, 0x74, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x52, 0x75, 0x6e, 0x53, 0x70, 0x69, 0x64,
0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x62, 0x75, 0x69,
0x6c, 0x64, 0x55, 0x73, 0x65, 0x52, 0x08, 0x75, 0x73, 0x65, 0x46, 0x6c, 0x61, 0x67, 0x73, 0x12,
0x27, 0x0a, 0x0f, 0x65, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x68, 0x65, 0x72, 0x69,
0x74, 0x73, 0x18, 0x11, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x65, 0x63, 0x6c, 0x61, 0x73, 0x73,
0x49, 0x6e, 0x68, 0x65, 0x72, 0x69, 0x74, 0x73, 0x1a, 0x59, 0x0a, 0x06, 0x45, 0x63, 0x6c, 0x61,
0x73, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x65, 0x63,
0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x68, 0x65, 0x72, 0x69, 0x74, 0x73, 0x18, 0x03, 0x20,
0x03, 0x28, 0x09, 0x52, 0x0e, 0x65, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x49, 0x6e, 0x68, 0x65, 0x72,
0x69, 0x74, 0x73, 0x1a, 0x3a, 0x0a, 0x0a, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x55, 0x73,
0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x1a,
0x48, 0x0a, 0x09, 0x45, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x55, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04,
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
0x12, 0x27, 0x0a, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x65, 0x6e, 0x61, 0x62,
0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75,
0x6c, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x32, 0x83, 0x01, 0x0a, 0x16, 0x50, 0x6f,
0x72, 0x74, 0x61, 0x67, 0x65, 0x45, 0x78, 0x70, 0x6c, 0x6f, 0x72, 0x65, 0x72, 0x53, 0x65, 0x72,
0x76, 0x69, 0x63, 0x65, 0x12, 0x4f, 0x0a, 0x0a, 0x52, 0x75, 0x6e, 0x53, 0x70, 0x69, 0x64, 0x65,
0x72, 0x73, 0x12, 0x1f, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x74, 0x65, 0x2e, 0x61, 0x70,
0x69, 0x2e, 0x52, 0x75, 0x6e, 0x53, 0x70, 0x69, 0x64, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x74, 0x65, 0x2e, 0x61,
0x70, 0x69, 0x2e, 0x52, 0x75, 0x6e, 0x53, 0x70, 0x69, 0x64, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73,
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x1a, 0x18, 0xc2, 0xed, 0x1a, 0x14, 0x0a, 0x10, 0x70, 0x6f, 0x72,
0x74, 0x61, 0x67, 0x65, 0x5f, 0x65, 0x78, 0x70, 0x6c, 0x6f, 0x72, 0x65, 0x72, 0x10, 0x01, 0x42,
0x38, 0x5a, 0x36, 0x67, 0x6f, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2f, 0x69, 0x6e,
0x66, 0x72, 0x61, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x2f, 0x63, 0x68, 0x72,
0x6f, 0x6d, 0x69, 0x74, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
file_chromite_api_portage_explorer_proto_rawDescOnce sync.Once
file_chromite_api_portage_explorer_proto_rawDescData = file_chromite_api_portage_explorer_proto_rawDesc
)
func file_chromite_api_portage_explorer_proto_rawDescGZIP() []byte {
file_chromite_api_portage_explorer_proto_rawDescOnce.Do(func() {
file_chromite_api_portage_explorer_proto_rawDescData = protoimpl.X.CompressGZIP(file_chromite_api_portage_explorer_proto_rawDescData)
})
return file_chromite_api_portage_explorer_proto_rawDescData
}
var file_chromite_api_portage_explorer_proto_msgTypes = make([]protoimpl.MessageInfo, 9)
var file_chromite_api_portage_explorer_proto_goTypes = []interface{}{
(*RunSpidersRequest)(nil), // 0: chromite.api.RunSpidersRequest
(*RunSpidersResponse)(nil), // 1: chromite.api.RunSpidersResponse
(*RunSpidersResponse_BuildTarget)(nil), // 2: chromite.api.RunSpidersResponse.BuildTarget
(*RunSpidersResponse_Profile)(nil), // 3: chromite.api.RunSpidersResponse.Profile
(*RunSpidersResponse_Overlay)(nil), // 4: chromite.api.RunSpidersResponse.Overlay
(*RunSpidersResponse_Ebuild)(nil), // 5: chromite.api.RunSpidersResponse.Ebuild
(*RunSpidersResponse_Eclass)(nil), // 6: chromite.api.RunSpidersResponse.Eclass
(*RunSpidersResponse_ProfileUse)(nil), // 7: chromite.api.RunSpidersResponse.ProfileUse
(*RunSpidersResponse_EbuildUse)(nil), // 8: chromite.api.RunSpidersResponse.EbuildUse
(*chromiumos.Chroot)(nil), // 9: chromiumos.Chroot
(*chromiumos.PackageInfo)(nil), // 10: chromiumos.PackageInfo
}
var file_chromite_api_portage_explorer_proto_depIdxs = []int32{
9, // 0: chromite.api.RunSpidersRequest.chroot:type_name -> chromiumos.Chroot
2, // 1: chromite.api.RunSpidersResponse.build_targets:type_name -> chromite.api.RunSpidersResponse.BuildTarget
4, // 2: chromite.api.RunSpidersResponse.overlays:type_name -> chromite.api.RunSpidersResponse.Overlay
3, // 3: chromite.api.RunSpidersResponse.BuildTarget.profile_id:type_name -> chromite.api.RunSpidersResponse.Profile
7, // 4: chromite.api.RunSpidersResponse.Profile.use_flags:type_name -> chromite.api.RunSpidersResponse.ProfileUse
3, // 5: chromite.api.RunSpidersResponse.Profile.parent_profiles:type_name -> chromite.api.RunSpidersResponse.Profile
3, // 6: chromite.api.RunSpidersResponse.Overlay.profiles:type_name -> chromite.api.RunSpidersResponse.Profile
5, // 7: chromite.api.RunSpidersResponse.Overlay.ebuilds:type_name -> chromite.api.RunSpidersResponse.Ebuild
6, // 8: chromite.api.RunSpidersResponse.Overlay.eclasses:type_name -> chromite.api.RunSpidersResponse.Eclass
10, // 9: chromite.api.RunSpidersResponse.Ebuild.package_info:type_name -> chromiumos.PackageInfo
8, // 10: chromite.api.RunSpidersResponse.Ebuild.use_flags:type_name -> chromite.api.RunSpidersResponse.EbuildUse
0, // 11: chromite.api.PortageExplorerService.RunSpiders:input_type -> chromite.api.RunSpidersRequest
1, // 12: chromite.api.PortageExplorerService.RunSpiders:output_type -> chromite.api.RunSpidersResponse
12, // [12:13] is the sub-list for method output_type
11, // [11:12] is the sub-list for method input_type
11, // [11:11] is the sub-list for extension type_name
11, // [11:11] is the sub-list for extension extendee
0, // [0:11] is the sub-list for field type_name
}
func init() { file_chromite_api_portage_explorer_proto_init() }
func file_chromite_api_portage_explorer_proto_init() {
if File_chromite_api_portage_explorer_proto != nil {
return
}
file_chromite_api_build_api_proto_init()
if !protoimpl.UnsafeEnabled {
file_chromite_api_portage_explorer_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RunSpidersRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_chromite_api_portage_explorer_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RunSpidersResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_chromite_api_portage_explorer_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RunSpidersResponse_BuildTarget); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_chromite_api_portage_explorer_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RunSpidersResponse_Profile); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_chromite_api_portage_explorer_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RunSpidersResponse_Overlay); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_chromite_api_portage_explorer_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RunSpidersResponse_Ebuild); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_chromite_api_portage_explorer_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RunSpidersResponse_Eclass); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_chromite_api_portage_explorer_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RunSpidersResponse_ProfileUse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_chromite_api_portage_explorer_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RunSpidersResponse_EbuildUse); 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_chromite_api_portage_explorer_proto_rawDesc,
NumEnums: 0,
NumMessages: 9,
NumExtensions: 0,
NumServices: 1,
},
GoTypes: file_chromite_api_portage_explorer_proto_goTypes,
DependencyIndexes: file_chromite_api_portage_explorer_proto_depIdxs,
MessageInfos: file_chromite_api_portage_explorer_proto_msgTypes,
}.Build()
File_chromite_api_portage_explorer_proto = out.File
file_chromite_api_portage_explorer_proto_rawDesc = nil
file_chromite_api_portage_explorer_proto_goTypes = nil
file_chromite_api_portage_explorer_proto_depIdxs = nil
}