Merge "Upgrade to golang protobuf api v2"
This commit is contained in:
@@ -25,7 +25,7 @@ import (
|
||||
|
||||
"android/soong/shared"
|
||||
|
||||
"github.com/golang/protobuf/proto"
|
||||
"google.golang.org/protobuf/proto"
|
||||
|
||||
smpb "android/soong/ui/metrics/metrics_proto"
|
||||
)
|
||||
|
@@ -29,7 +29,7 @@ import (
|
||||
smpb "android/soong/ui/metrics/metrics_proto"
|
||||
"android/soong/ui/status"
|
||||
|
||||
"github.com/golang/protobuf/proto"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
func testContext() Context {
|
||||
|
@@ -20,7 +20,7 @@ import (
|
||||
|
||||
"android/soong/ui/logger"
|
||||
"android/soong/ui/metrics"
|
||||
"android/soong/ui/metrics/metrics_proto"
|
||||
soong_metrics_proto "android/soong/ui/metrics/metrics_proto"
|
||||
"android/soong/ui/status"
|
||||
"android/soong/ui/tracer"
|
||||
)
|
||||
|
@@ -20,18 +20,18 @@ import (
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
|
||||
"android/soong/shared"
|
||||
"github.com/google/blueprint/deptools"
|
||||
|
||||
"android/soong/ui/metrics"
|
||||
soong_metrics_proto "android/soong/ui/metrics/metrics_proto"
|
||||
"android/soong/ui/status"
|
||||
|
||||
"android/soong/shared"
|
||||
|
||||
"github.com/google/blueprint"
|
||||
"github.com/google/blueprint/bootstrap"
|
||||
|
||||
"github.com/golang/protobuf/proto"
|
||||
"github.com/google/blueprint/deptools"
|
||||
"github.com/google/blueprint/microfactory"
|
||||
|
||||
"android/soong/ui/metrics"
|
||||
"android/soong/ui/status"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
const (
|
||||
|
@@ -24,7 +24,8 @@ import (
|
||||
"time"
|
||||
|
||||
"android/soong/ui/metrics"
|
||||
"github.com/golang/protobuf/proto"
|
||||
|
||||
"google.golang.org/protobuf/proto"
|
||||
|
||||
upload_proto "android/soong/ui/metrics/upload_proto"
|
||||
)
|
||||
|
@@ -37,7 +37,10 @@ bootstrap_go_package {
|
||||
bootstrap_go_package {
|
||||
name: "soong-ui-metrics_proto",
|
||||
pkgPath: "android/soong/ui/metrics/metrics_proto",
|
||||
deps: ["golang-protobuf-proto"],
|
||||
deps: [
|
||||
"golang-protobuf-reflect-protoreflect",
|
||||
"golang-protobuf-runtime-protoimpl",
|
||||
],
|
||||
srcs: [
|
||||
"metrics_proto/metrics.pb.go",
|
||||
],
|
||||
@@ -46,7 +49,10 @@ bootstrap_go_package {
|
||||
bootstrap_go_package {
|
||||
name: "soong-ui-metrics_upload_proto",
|
||||
pkgPath: "android/soong/ui/metrics/upload_proto",
|
||||
deps: ["golang-protobuf-proto"],
|
||||
deps: [
|
||||
"golang-protobuf-reflect-protoreflect",
|
||||
"golang-protobuf-runtime-protoimpl",
|
||||
],
|
||||
srcs: [
|
||||
"upload_proto/upload.pb.go",
|
||||
],
|
||||
|
@@ -30,10 +30,10 @@ import (
|
||||
"syscall"
|
||||
"time"
|
||||
|
||||
"android/soong/ui/metrics/metrics_proto"
|
||||
soong_metrics_proto "android/soong/ui/metrics/metrics_proto"
|
||||
"android/soong/ui/tracer"
|
||||
|
||||
"github.com/golang/protobuf/proto"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
// _now wraps the time.Now() function. _now is declared for unit testing purpose.
|
||||
|
@@ -43,9 +43,9 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/golang/protobuf/proto"
|
||||
"google.golang.org/protobuf/proto"
|
||||
|
||||
"android/soong/ui/metrics/metrics_proto"
|
||||
soong_metrics_proto "android/soong/ui/metrics/metrics_proto"
|
||||
)
|
||||
|
||||
const (
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -15,7 +15,7 @@
|
||||
syntax = "proto2";
|
||||
|
||||
package soong_build_metrics;
|
||||
option go_package = "soong_metrics_proto";
|
||||
option go_package = "android/soong/ui/metrics/metrics_proto";
|
||||
|
||||
message MetricsBase {
|
||||
// Timestamp generated when the build starts.
|
||||
|
@@ -1,26 +1,44 @@
|
||||
// Copyright 2020 Google Inc. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// versions:
|
||||
// protoc-gen-go v1.26.0
|
||||
// protoc v3.9.1
|
||||
// source: upload.proto
|
||||
|
||||
package soong_metrics_upload_proto
|
||||
package upload_proto
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
math "math"
|
||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
reflect "reflect"
|
||||
sync "sync"
|
||||
)
|
||||
|
||||
// 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.ProtoPackageIsVersion3 // please upgrade the proto package
|
||||
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 Upload struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
// The timestamp in milliseconds that the build was created.
|
||||
CreationTimestampMs *uint64 `protobuf:"varint,1,opt,name=creation_timestamp_ms,json=creationTimestampMs" json:"creation_timestamp_ms,omitempty"`
|
||||
// The timestamp in milliseconds when the build was completed.
|
||||
@@ -33,102 +51,169 @@ type Upload struct {
|
||||
MetricsFiles []string `protobuf:"bytes,5,rep,name=metrics_files,json=metricsFiles" json:"metrics_files,omitempty"`
|
||||
// A list of directories to delete after the copy of metrics files
|
||||
// is completed for uploading.
|
||||
DirectoriesToDelete []string `protobuf:"bytes,6,rep,name=directories_to_delete,json=directoriesToDelete" json:"directories_to_delete,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
DirectoriesToDelete []string `protobuf:"bytes,6,rep,name=directories_to_delete,json=directoriesToDelete" json:"directories_to_delete,omitempty"`
|
||||
}
|
||||
|
||||
func (m *Upload) Reset() { *m = Upload{} }
|
||||
func (m *Upload) String() string { return proto.CompactTextString(m) }
|
||||
func (*Upload) ProtoMessage() {}
|
||||
func (x *Upload) Reset() {
|
||||
*x = Upload{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_upload_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *Upload) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*Upload) ProtoMessage() {}
|
||||
|
||||
func (x *Upload) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_upload_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 Upload.ProtoReflect.Descriptor instead.
|
||||
func (*Upload) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_91b94b655bd2a7e5, []int{0}
|
||||
return file_upload_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (m *Upload) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Upload.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Upload) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Upload.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Upload) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Upload.Merge(m, src)
|
||||
}
|
||||
func (m *Upload) XXX_Size() int {
|
||||
return xxx_messageInfo_Upload.Size(m)
|
||||
}
|
||||
func (m *Upload) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Upload.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Upload proto.InternalMessageInfo
|
||||
|
||||
func (m *Upload) GetCreationTimestampMs() uint64 {
|
||||
if m != nil && m.CreationTimestampMs != nil {
|
||||
return *m.CreationTimestampMs
|
||||
func (x *Upload) GetCreationTimestampMs() uint64 {
|
||||
if x != nil && x.CreationTimestampMs != nil {
|
||||
return *x.CreationTimestampMs
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Upload) GetCompletionTimestampMs() uint64 {
|
||||
if m != nil && m.CompletionTimestampMs != nil {
|
||||
return *m.CompletionTimestampMs
|
||||
func (x *Upload) GetCompletionTimestampMs() uint64 {
|
||||
if x != nil && x.CompletionTimestampMs != nil {
|
||||
return *x.CompletionTimestampMs
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Upload) GetBranchName() string {
|
||||
if m != nil && m.BranchName != nil {
|
||||
return *m.BranchName
|
||||
func (x *Upload) GetBranchName() string {
|
||||
if x != nil && x.BranchName != nil {
|
||||
return *x.BranchName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Upload) GetTargetName() string {
|
||||
if m != nil && m.TargetName != nil {
|
||||
return *m.TargetName
|
||||
func (x *Upload) GetTargetName() string {
|
||||
if x != nil && x.TargetName != nil {
|
||||
return *x.TargetName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Upload) GetMetricsFiles() []string {
|
||||
if m != nil {
|
||||
return m.MetricsFiles
|
||||
func (x *Upload) GetMetricsFiles() []string {
|
||||
if x != nil {
|
||||
return x.MetricsFiles
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Upload) GetDirectoriesToDelete() []string {
|
||||
if m != nil {
|
||||
return m.DirectoriesToDelete
|
||||
func (x *Upload) GetDirectoriesToDelete() []string {
|
||||
if x != nil {
|
||||
return x.DirectoriesToDelete
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*Upload)(nil), "soong_metrics_upload.Upload")
|
||||
var File_upload_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_upload_proto_rawDesc = []byte{
|
||||
0x0a, 0x0c, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x14,
|
||||
0x73, 0x6f, 0x6f, 0x6e, 0x67, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x5f, 0x75, 0x70,
|
||||
0x6c, 0x6f, 0x61, 0x64, 0x22, 0x8f, 0x02, 0x0a, 0x06, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x12,
|
||||
0x32, 0x0a, 0x15, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x69, 0x6d, 0x65,
|
||||
0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x13,
|
||||
0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
|
||||
0x70, 0x4d, 0x73, 0x12, 0x36, 0x0a, 0x17, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x69, 0x6f,
|
||||
0x6e, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x6d, 0x73, 0x18, 0x02,
|
||||
0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e,
|
||||
0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x4d, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x62,
|
||||
0x72, 0x61, 0x6e, 0x63, 0x68, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
|
||||
0x52, 0x0a, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b,
|
||||
0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a,
|
||||
0x0d, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x05,
|
||||
0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x46, 0x69, 0x6c,
|
||||
0x65, 0x73, 0x12, 0x32, 0x0a, 0x15, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x69, 0x65,
|
||||
0x73, 0x5f, 0x74, 0x6f, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x18, 0x06, 0x20, 0x03, 0x28,
|
||||
0x09, 0x52, 0x13, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x54, 0x6f,
|
||||
0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x42, 0x27, 0x5a, 0x25, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69,
|
||||
0x64, 0x2f, 0x73, 0x6f, 0x6f, 0x6e, 0x67, 0x2f, 0x75, 0x69, 0x2f, 0x6d, 0x65, 0x74, 0x72, 0x69,
|
||||
0x63, 0x73, 0x2f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("upload.proto", fileDescriptor_91b94b655bd2a7e5)
|
||||
var (
|
||||
file_upload_proto_rawDescOnce sync.Once
|
||||
file_upload_proto_rawDescData = file_upload_proto_rawDesc
|
||||
)
|
||||
|
||||
func file_upload_proto_rawDescGZIP() []byte {
|
||||
file_upload_proto_rawDescOnce.Do(func() {
|
||||
file_upload_proto_rawDescData = protoimpl.X.CompressGZIP(file_upload_proto_rawDescData)
|
||||
})
|
||||
return file_upload_proto_rawDescData
|
||||
}
|
||||
|
||||
var fileDescriptor_91b94b655bd2a7e5 = []byte{
|
||||
// 230 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x90, 0xb1, 0x4a, 0x04, 0x31,
|
||||
0x10, 0x86, 0xd9, 0xbb, 0xf3, 0xe0, 0xe2, 0xd9, 0xec, 0x79, 0x18, 0x44, 0x70, 0xd1, 0x66, 0x2b,
|
||||
0x0b, 0x0b, 0x1f, 0x40, 0xc4, 0x4e, 0x8b, 0xe5, 0x6c, 0x6c, 0x86, 0x98, 0x1d, 0xd7, 0x40, 0x92,
|
||||
0x09, 0xc9, 0xf8, 0x1c, 0xbe, 0xb2, 0x6c, 0xe2, 0xe2, 0x82, 0x76, 0xc3, 0xff, 0x7d, 0x7f, 0x31,
|
||||
0xbf, 0xd8, 0x7e, 0x06, 0x4b, 0xaa, 0xbf, 0x09, 0x91, 0x98, 0xea, 0xd3, 0x44, 0xe4, 0x07, 0x70,
|
||||
0xc8, 0xd1, 0xe8, 0x04, 0x85, 0x5d, 0x7d, 0x2d, 0xc4, 0xfa, 0x25, 0x9f, 0xf5, 0xad, 0xd8, 0xeb,
|
||||
0x88, 0x8a, 0x0d, 0x79, 0x60, 0xe3, 0x30, 0xb1, 0x72, 0x01, 0x5c, 0x92, 0x55, 0x53, 0xb5, 0xab,
|
||||
0x6e, 0x37, 0xc1, 0xc3, 0xc4, 0x9e, 0x52, 0x7d, 0x27, 0xce, 0x34, 0xb9, 0x60, 0xf1, 0x6f, 0x6b,
|
||||
0x91, 0x5b, 0xfb, 0x5f, 0x3c, 0xef, 0x5d, 0x8a, 0xe3, 0xb7, 0xa8, 0xbc, 0xfe, 0x00, 0xaf, 0x1c,
|
||||
0xca, 0x65, 0x53, 0xb5, 0x9b, 0x4e, 0x94, 0xe8, 0x59, 0x39, 0x1c, 0x05, 0x56, 0x71, 0x40, 0x2e,
|
||||
0xc2, 0xaa, 0x08, 0x25, 0xca, 0xc2, 0xb5, 0x38, 0x99, 0x5e, 0x79, 0x37, 0x16, 0x93, 0x3c, 0x6a,
|
||||
0x96, 0xed, 0xa6, 0xdb, 0xfe, 0x84, 0x8f, 0x63, 0x36, 0xbe, 0xd4, 0x9b, 0x88, 0x9a, 0x29, 0x1a,
|
||||
0x4c, 0xc0, 0x04, 0x3d, 0x5a, 0x64, 0x94, 0xeb, 0x2c, 0xef, 0x66, 0xf0, 0x40, 0x0f, 0x19, 0xdd,
|
||||
0x5f, 0xbc, 0x9e, 0xff, 0xb7, 0x14, 0xe4, 0x15, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x64, 0x04,
|
||||
0xa8, 0xf4, 0x54, 0x01, 0x00, 0x00,
|
||||
var file_upload_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||
var file_upload_proto_goTypes = []interface{}{
|
||||
(*Upload)(nil), // 0: soong_metrics_upload.Upload
|
||||
}
|
||||
var file_upload_proto_depIdxs = []int32{
|
||||
0, // [0:0] is the sub-list for method output_type
|
||||
0, // [0:0] is the sub-list for method input_type
|
||||
0, // [0:0] is the sub-list for extension type_name
|
||||
0, // [0:0] is the sub-list for extension extendee
|
||||
0, // [0:0] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_upload_proto_init() }
|
||||
func file_upload_proto_init() {
|
||||
if File_upload_proto != nil {
|
||||
return
|
||||
}
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_upload_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*Upload); 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_upload_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 1,
|
||||
NumExtensions: 0,
|
||||
NumServices: 0,
|
||||
},
|
||||
GoTypes: file_upload_proto_goTypes,
|
||||
DependencyIndexes: file_upload_proto_depIdxs,
|
||||
MessageInfos: file_upload_proto_msgTypes,
|
||||
}.Build()
|
||||
File_upload_proto = out.File
|
||||
file_upload_proto_rawDesc = nil
|
||||
file_upload_proto_goTypes = nil
|
||||
file_upload_proto_depIdxs = nil
|
||||
}
|
||||
|
@@ -15,7 +15,7 @@
|
||||
syntax = "proto2";
|
||||
|
||||
package soong_metrics_upload;
|
||||
option go_package = "soong_metrics_upload_proto";
|
||||
option go_package = "android/soong/ui/metrics/upload_proto";
|
||||
|
||||
message Upload {
|
||||
// The timestamp in milliseconds that the build was created.
|
||||
|
@@ -44,7 +44,10 @@ bootstrap_go_package {
|
||||
bootstrap_go_package {
|
||||
name: "soong-ui-status-ninja_frontend",
|
||||
pkgPath: "android/soong/ui/status/ninja_frontend",
|
||||
deps: ["golang-protobuf-proto"],
|
||||
deps: [
|
||||
"golang-protobuf-reflect-protoreflect",
|
||||
"golang-protobuf-runtime-protoimpl",
|
||||
],
|
||||
srcs: [
|
||||
"ninja_frontend/frontend.pb.go",
|
||||
],
|
||||
@@ -53,7 +56,10 @@ bootstrap_go_package {
|
||||
bootstrap_go_package {
|
||||
name: "soong-ui-status-build_error_proto",
|
||||
pkgPath: "android/soong/ui/status/build_error_proto",
|
||||
deps: ["golang-protobuf-proto"],
|
||||
deps: [
|
||||
"golang-protobuf-reflect-protoreflect",
|
||||
"golang-protobuf-runtime-protoimpl",
|
||||
],
|
||||
srcs: [
|
||||
"build_error_proto/build_error.pb.go",
|
||||
],
|
||||
@@ -62,7 +68,10 @@ bootstrap_go_package {
|
||||
bootstrap_go_package {
|
||||
name: "soong-ui-status-build_progress_proto",
|
||||
pkgPath: "android/soong/ui/status/build_progress_proto",
|
||||
deps: ["golang-protobuf-proto"],
|
||||
deps: [
|
||||
"golang-protobuf-reflect-protoreflect",
|
||||
"golang-protobuf-runtime-protoimpl",
|
||||
],
|
||||
srcs: [
|
||||
"build_progress_proto/build_progress.pb.go",
|
||||
],
|
||||
|
@@ -1,71 +1,93 @@
|
||||
// Copyright 2019 Google Inc. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// versions:
|
||||
// protoc-gen-go v1.26.0
|
||||
// protoc v3.9.1
|
||||
// source: build_error.proto
|
||||
|
||||
package soong_build_error_proto
|
||||
package build_error_proto
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
math "math"
|
||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
reflect "reflect"
|
||||
sync "sync"
|
||||
)
|
||||
|
||||
// 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.ProtoPackageIsVersion3 // please upgrade the proto package
|
||||
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 BuildError struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
// List of error messages of the overall build. The error messages
|
||||
// are not associated with a build action.
|
||||
ErrorMessages []string `protobuf:"bytes,1,rep,name=error_messages,json=errorMessages" json:"error_messages,omitempty"`
|
||||
// List of build action errors.
|
||||
ActionErrors []*BuildActionError `protobuf:"bytes,2,rep,name=action_errors,json=actionErrors" json:"action_errors,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
ActionErrors []*BuildActionError `protobuf:"bytes,2,rep,name=action_errors,json=actionErrors" json:"action_errors,omitempty"`
|
||||
}
|
||||
|
||||
func (m *BuildError) Reset() { *m = BuildError{} }
|
||||
func (m *BuildError) String() string { return proto.CompactTextString(m) }
|
||||
func (*BuildError) ProtoMessage() {}
|
||||
func (x *BuildError) Reset() {
|
||||
*x = BuildError{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_build_error_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *BuildError) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*BuildError) ProtoMessage() {}
|
||||
|
||||
func (x *BuildError) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_build_error_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 BuildError.ProtoReflect.Descriptor instead.
|
||||
func (*BuildError) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_a2e15b05802a5501, []int{0}
|
||||
return file_build_error_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (m *BuildError) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BuildError.Unmarshal(m, b)
|
||||
}
|
||||
func (m *BuildError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_BuildError.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *BuildError) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_BuildError.Merge(m, src)
|
||||
}
|
||||
func (m *BuildError) XXX_Size() int {
|
||||
return xxx_messageInfo_BuildError.Size(m)
|
||||
}
|
||||
func (m *BuildError) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_BuildError.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_BuildError proto.InternalMessageInfo
|
||||
|
||||
func (m *BuildError) GetErrorMessages() []string {
|
||||
if m != nil {
|
||||
return m.ErrorMessages
|
||||
func (x *BuildError) GetErrorMessages() []string {
|
||||
if x != nil {
|
||||
return x.ErrorMessages
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *BuildError) GetActionErrors() []*BuildActionError {
|
||||
if m != nil {
|
||||
return m.ActionErrors
|
||||
func (x *BuildError) GetActionErrors() []*BuildActionError {
|
||||
if x != nil {
|
||||
return x.ActionErrors
|
||||
}
|
||||
return nil
|
||||
}
|
||||
@@ -73,6 +95,10 @@ func (m *BuildError) GetActionErrors() []*BuildActionError {
|
||||
// Build is composed of a list of build action. There can be a set of build
|
||||
// actions that can failed.
|
||||
type BuildActionError struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
// Description of the command.
|
||||
Description *string `protobuf:"bytes,1,opt,name=description" json:"description,omitempty"`
|
||||
// The command name that raised the error.
|
||||
@@ -82,94 +108,177 @@ type BuildActionError struct {
|
||||
// List of artifacts (i.e. files) that was produced by the command.
|
||||
Artifacts []string `protobuf:"bytes,4,rep,name=artifacts" json:"artifacts,omitempty"`
|
||||
// The error string produced by the build action.
|
||||
Error *string `protobuf:"bytes,5,opt,name=error" json:"error,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
Error *string `protobuf:"bytes,5,opt,name=error" json:"error,omitempty"`
|
||||
}
|
||||
|
||||
func (m *BuildActionError) Reset() { *m = BuildActionError{} }
|
||||
func (m *BuildActionError) String() string { return proto.CompactTextString(m) }
|
||||
func (*BuildActionError) ProtoMessage() {}
|
||||
func (x *BuildActionError) Reset() {
|
||||
*x = BuildActionError{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_build_error_proto_msgTypes[1]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *BuildActionError) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*BuildActionError) ProtoMessage() {}
|
||||
|
||||
func (x *BuildActionError) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_build_error_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 BuildActionError.ProtoReflect.Descriptor instead.
|
||||
func (*BuildActionError) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_a2e15b05802a5501, []int{1}
|
||||
return file_build_error_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
func (m *BuildActionError) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BuildActionError.Unmarshal(m, b)
|
||||
}
|
||||
func (m *BuildActionError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_BuildActionError.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *BuildActionError) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_BuildActionError.Merge(m, src)
|
||||
}
|
||||
func (m *BuildActionError) XXX_Size() int {
|
||||
return xxx_messageInfo_BuildActionError.Size(m)
|
||||
}
|
||||
func (m *BuildActionError) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_BuildActionError.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_BuildActionError proto.InternalMessageInfo
|
||||
|
||||
func (m *BuildActionError) GetDescription() string {
|
||||
if m != nil && m.Description != nil {
|
||||
return *m.Description
|
||||
func (x *BuildActionError) GetDescription() string {
|
||||
if x != nil && x.Description != nil {
|
||||
return *x.Description
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *BuildActionError) GetCommand() string {
|
||||
if m != nil && m.Command != nil {
|
||||
return *m.Command
|
||||
func (x *BuildActionError) GetCommand() string {
|
||||
if x != nil && x.Command != nil {
|
||||
return *x.Command
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *BuildActionError) GetOutput() string {
|
||||
if m != nil && m.Output != nil {
|
||||
return *m.Output
|
||||
func (x *BuildActionError) GetOutput() string {
|
||||
if x != nil && x.Output != nil {
|
||||
return *x.Output
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *BuildActionError) GetArtifacts() []string {
|
||||
if m != nil {
|
||||
return m.Artifacts
|
||||
func (x *BuildActionError) GetArtifacts() []string {
|
||||
if x != nil {
|
||||
return x.Artifacts
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *BuildActionError) GetError() string {
|
||||
if m != nil && m.Error != nil {
|
||||
return *m.Error
|
||||
func (x *BuildActionError) GetError() string {
|
||||
if x != nil && x.Error != nil {
|
||||
return *x.Error
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*BuildError)(nil), "soong_build_error.BuildError")
|
||||
proto.RegisterType((*BuildActionError)(nil), "soong_build_error.BuildActionError")
|
||||
var File_build_error_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_build_error_proto_rawDesc = []byte{
|
||||
0x0a, 0x11, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
|
||||
0x6f, 0x74, 0x6f, 0x12, 0x11, 0x73, 0x6f, 0x6f, 0x6e, 0x67, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
||||
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x7d, 0x0a, 0x0a, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x45,
|
||||
0x72, 0x72, 0x6f, 0x72, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x65,
|
||||
0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x72,
|
||||
0x72, 0x6f, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x48, 0x0a, 0x0d, 0x61,
|
||||
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03,
|
||||
0x28, 0x0b, 0x32, 0x23, 0x2e, 0x73, 0x6f, 0x6f, 0x6e, 0x67, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
||||
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x74, 0x69,
|
||||
0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45,
|
||||
0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x9a, 0x01, 0x0a, 0x10, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x41,
|
||||
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65,
|
||||
0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||
0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07,
|
||||
0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63,
|
||||
0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74,
|
||||
0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x1c,
|
||||
0x0a, 0x09, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28,
|
||||
0x09, 0x52, 0x09, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x12, 0x14, 0x0a, 0x05,
|
||||
0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72,
|
||||
0x6f, 0x72, 0x42, 0x2b, 0x5a, 0x29, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x2f, 0x73, 0x6f,
|
||||
0x6f, 0x6e, 0x67, 0x2f, 0x75, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2f, 0x62, 0x75,
|
||||
0x69, 0x6c, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("build_error.proto", fileDescriptor_a2e15b05802a5501) }
|
||||
var (
|
||||
file_build_error_proto_rawDescOnce sync.Once
|
||||
file_build_error_proto_rawDescData = file_build_error_proto_rawDesc
|
||||
)
|
||||
|
||||
var fileDescriptor_a2e15b05802a5501 = []byte{
|
||||
// 229 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x90, 0xc1, 0x4a, 0xc3, 0x40,
|
||||
0x10, 0x86, 0x49, 0x63, 0x95, 0x4c, 0xad, 0xd8, 0x41, 0x74, 0x04, 0x0f, 0xa1, 0x22, 0xe4, 0x94,
|
||||
0x83, 0x6f, 0x60, 0x41, 0xf0, 0xe2, 0x25, 0x47, 0x2f, 0x61, 0xdd, 0xac, 0x65, 0xc1, 0x64, 0xc2,
|
||||
0xce, 0xe6, 0xe8, 0x8b, 0xf8, 0xb4, 0x92, 0x69, 0xa5, 0xa5, 0x39, 0x7e, 0xdf, 0x3f, 0xfb, 0xef,
|
||||
0xce, 0xc2, 0xea, 0x73, 0xf0, 0xdf, 0x4d, 0xed, 0x42, 0xe0, 0x50, 0xf6, 0x81, 0x23, 0xe3, 0x4a,
|
||||
0x98, 0xbb, 0x6d, 0x7d, 0x14, 0xac, 0x7f, 0x00, 0x36, 0x23, 0xbe, 0x8e, 0x84, 0x4f, 0x70, 0xa5,
|
||||
0xba, 0x6e, 0x9d, 0x88, 0xd9, 0x3a, 0xa1, 0x24, 0x4f, 0x8b, 0xac, 0x5a, 0xaa, 0x7d, 0xdf, 0x4b,
|
||||
0x7c, 0x83, 0xa5, 0xb1, 0xd1, 0x73, 0xb7, 0x2b, 0x11, 0x9a, 0xe5, 0x69, 0xb1, 0x78, 0x7e, 0x2c,
|
||||
0x27, 0xfd, 0xa5, 0x96, 0xbf, 0xe8, 0xb0, 0x5e, 0x51, 0x5d, 0x9a, 0x03, 0xc8, 0xfa, 0x37, 0x81,
|
||||
0xeb, 0xd3, 0x11, 0xcc, 0x61, 0xd1, 0x38, 0xb1, 0xc1, 0xf7, 0xa3, 0xa3, 0x24, 0x4f, 0x8a, 0xac,
|
||||
0x3a, 0x56, 0x48, 0x70, 0x61, 0xb9, 0x6d, 0x4d, 0xd7, 0xd0, 0x4c, 0xd3, 0x7f, 0xc4, 0x5b, 0x38,
|
||||
0xe7, 0x21, 0xf6, 0x43, 0xa4, 0x54, 0x83, 0x3d, 0xe1, 0x03, 0x64, 0x26, 0x44, 0xff, 0x65, 0x6c,
|
||||
0x14, 0x3a, 0xd3, 0xa5, 0x0e, 0x02, 0x6f, 0x60, 0xae, 0xcf, 0xa5, 0xb9, 0x1e, 0xda, 0xc1, 0xe6,
|
||||
0xfe, 0xe3, 0x6e, 0xb2, 0x50, 0xad, 0x3f, 0xf9, 0x17, 0x00, 0x00, 0xff, 0xff, 0xb6, 0x18, 0x9e,
|
||||
0x17, 0x5d, 0x01, 0x00, 0x00,
|
||||
func file_build_error_proto_rawDescGZIP() []byte {
|
||||
file_build_error_proto_rawDescOnce.Do(func() {
|
||||
file_build_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_build_error_proto_rawDescData)
|
||||
})
|
||||
return file_build_error_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_build_error_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
||||
var file_build_error_proto_goTypes = []interface{}{
|
||||
(*BuildError)(nil), // 0: soong_build_error.BuildError
|
||||
(*BuildActionError)(nil), // 1: soong_build_error.BuildActionError
|
||||
}
|
||||
var file_build_error_proto_depIdxs = []int32{
|
||||
1, // 0: soong_build_error.BuildError.action_errors:type_name -> soong_build_error.BuildActionError
|
||||
1, // [1:1] is the sub-list for method output_type
|
||||
1, // [1:1] is the sub-list for method input_type
|
||||
1, // [1:1] is the sub-list for extension type_name
|
||||
1, // [1:1] is the sub-list for extension extendee
|
||||
0, // [0:1] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_build_error_proto_init() }
|
||||
func file_build_error_proto_init() {
|
||||
if File_build_error_proto != nil {
|
||||
return
|
||||
}
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_build_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BuildError); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
return &v.sizeCache
|
||||
case 2:
|
||||
return &v.unknownFields
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_build_error_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BuildActionError); 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_build_error_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 2,
|
||||
NumExtensions: 0,
|
||||
NumServices: 0,
|
||||
},
|
||||
GoTypes: file_build_error_proto_goTypes,
|
||||
DependencyIndexes: file_build_error_proto_depIdxs,
|
||||
MessageInfos: file_build_error_proto_msgTypes,
|
||||
}.Build()
|
||||
File_build_error_proto = out.File
|
||||
file_build_error_proto_rawDesc = nil
|
||||
file_build_error_proto_goTypes = nil
|
||||
file_build_error_proto_depIdxs = nil
|
||||
}
|
||||
|
@@ -15,7 +15,7 @@
|
||||
syntax = "proto2";
|
||||
|
||||
package soong_build_error;
|
||||
option go_package = "soong_build_error_proto";
|
||||
option go_package = "android/soong/ui/status/build_error_proto";
|
||||
|
||||
message BuildError {
|
||||
// List of error messages of the overall build. The error messages
|
||||
|
@@ -1,26 +1,44 @@
|
||||
// Copyright 2020 Google Inc. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// versions:
|
||||
// protoc-gen-go v1.26.0
|
||||
// protoc v3.9.1
|
||||
// source: build_progress.proto
|
||||
|
||||
package soong_build_progress_proto
|
||||
package build_progress_proto
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
math "math"
|
||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
reflect "reflect"
|
||||
sync "sync"
|
||||
)
|
||||
|
||||
// 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.ProtoPackageIsVersion3 // please upgrade the proto package
|
||||
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 BuildProgress struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
// Total number of actions in a build. The total actions will increase
|
||||
// and might decrease during the course of a build.
|
||||
TotalActions *uint64 `protobuf:"varint,1,opt,name=total_actions,json=totalActions" json:"total_actions,omitempty"`
|
||||
@@ -34,82 +52,150 @@ type BuildProgress struct {
|
||||
// build and current_actions + finished_actions <= total_actions.
|
||||
CurrentActions *uint64 `protobuf:"varint,3,opt,name=current_actions,json=currentActions" json:"current_actions,omitempty"`
|
||||
// Total number of actions that reported as a failure.
|
||||
FailedActions *uint64 `protobuf:"varint,4,opt,name=failed_actions,json=failedActions" json:"failed_actions,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
FailedActions *uint64 `protobuf:"varint,4,opt,name=failed_actions,json=failedActions" json:"failed_actions,omitempty"`
|
||||
}
|
||||
|
||||
func (m *BuildProgress) Reset() { *m = BuildProgress{} }
|
||||
func (m *BuildProgress) String() string { return proto.CompactTextString(m) }
|
||||
func (*BuildProgress) ProtoMessage() {}
|
||||
func (x *BuildProgress) Reset() {
|
||||
*x = BuildProgress{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_build_progress_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *BuildProgress) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*BuildProgress) ProtoMessage() {}
|
||||
|
||||
func (x *BuildProgress) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_build_progress_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 BuildProgress.ProtoReflect.Descriptor instead.
|
||||
func (*BuildProgress) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_a8a463f8e30dab2e, []int{0}
|
||||
return file_build_progress_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (m *BuildProgress) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BuildProgress.Unmarshal(m, b)
|
||||
}
|
||||
func (m *BuildProgress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_BuildProgress.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *BuildProgress) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_BuildProgress.Merge(m, src)
|
||||
}
|
||||
func (m *BuildProgress) XXX_Size() int {
|
||||
return xxx_messageInfo_BuildProgress.Size(m)
|
||||
}
|
||||
func (m *BuildProgress) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_BuildProgress.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_BuildProgress proto.InternalMessageInfo
|
||||
|
||||
func (m *BuildProgress) GetTotalActions() uint64 {
|
||||
if m != nil && m.TotalActions != nil {
|
||||
return *m.TotalActions
|
||||
func (x *BuildProgress) GetTotalActions() uint64 {
|
||||
if x != nil && x.TotalActions != nil {
|
||||
return *x.TotalActions
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *BuildProgress) GetFinishedActions() uint64 {
|
||||
if m != nil && m.FinishedActions != nil {
|
||||
return *m.FinishedActions
|
||||
func (x *BuildProgress) GetFinishedActions() uint64 {
|
||||
if x != nil && x.FinishedActions != nil {
|
||||
return *x.FinishedActions
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *BuildProgress) GetCurrentActions() uint64 {
|
||||
if m != nil && m.CurrentActions != nil {
|
||||
return *m.CurrentActions
|
||||
func (x *BuildProgress) GetCurrentActions() uint64 {
|
||||
if x != nil && x.CurrentActions != nil {
|
||||
return *x.CurrentActions
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *BuildProgress) GetFailedActions() uint64 {
|
||||
if m != nil && m.FailedActions != nil {
|
||||
return *m.FailedActions
|
||||
func (x *BuildProgress) GetFailedActions() uint64 {
|
||||
if x != nil && x.FailedActions != nil {
|
||||
return *x.FailedActions
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*BuildProgress)(nil), "soong_build_progress.BuildProgress")
|
||||
var File_build_progress_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_build_progress_proto_rawDesc = []byte{
|
||||
0x0a, 0x14, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73,
|
||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x14, 0x73, 0x6f, 0x6f, 0x6e, 0x67, 0x5f, 0x62, 0x75,
|
||||
0x69, 0x6c, 0x64, 0x5f, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x22, 0xaf, 0x01, 0x0a,
|
||||
0x0d, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, 0x23,
|
||||
0x0a, 0x0d, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18,
|
||||
0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x41, 0x63, 0x74, 0x69,
|
||||
0x6f, 0x6e, 0x73, 0x12, 0x29, 0x0a, 0x10, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f,
|
||||
0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0f, 0x66,
|
||||
0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27,
|
||||
0x0a, 0x0f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
|
||||
0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74,
|
||||
0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x66, 0x61, 0x69, 0x6c, 0x65,
|
||||
0x64, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52,
|
||||
0x0d, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x2e,
|
||||
0x5a, 0x2c, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x2f, 0x73, 0x6f, 0x6f, 0x6e, 0x67, 0x2f,
|
||||
0x75, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f,
|
||||
0x70, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("build_progress.proto", fileDescriptor_a8a463f8e30dab2e) }
|
||||
var (
|
||||
file_build_progress_proto_rawDescOnce sync.Once
|
||||
file_build_progress_proto_rawDescData = file_build_progress_proto_rawDesc
|
||||
)
|
||||
|
||||
var fileDescriptor_a8a463f8e30dab2e = []byte{
|
||||
// 165 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x49, 0x2a, 0xcd, 0xcc,
|
||||
0x49, 0x89, 0x2f, 0x28, 0xca, 0x4f, 0x2f, 0x4a, 0x2d, 0x2e, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9,
|
||||
0x17, 0x12, 0x29, 0xce, 0xcf, 0xcf, 0x4b, 0x8f, 0x47, 0x95, 0x53, 0x5a, 0xcf, 0xc8, 0xc5, 0xeb,
|
||||
0x04, 0x12, 0x0a, 0x80, 0x8a, 0x08, 0x29, 0x73, 0xf1, 0x96, 0xe4, 0x97, 0x24, 0xe6, 0xc4, 0x27,
|
||||
0x26, 0x97, 0x64, 0xe6, 0xe7, 0x15, 0x4b, 0x30, 0x2a, 0x30, 0x6a, 0xb0, 0x04, 0xf1, 0x80, 0x05,
|
||||
0x1d, 0x21, 0x62, 0x42, 0x9a, 0x5c, 0x02, 0x69, 0x99, 0x79, 0x99, 0xc5, 0x19, 0xa9, 0x29, 0x70,
|
||||
0x75, 0x4c, 0x60, 0x75, 0xfc, 0x30, 0x71, 0x98, 0x52, 0x75, 0x2e, 0xfe, 0xe4, 0xd2, 0xa2, 0xa2,
|
||||
0xd4, 0xbc, 0x12, 0xb8, 0x4a, 0x66, 0xb0, 0x4a, 0x3e, 0xa8, 0x30, 0x4c, 0xa1, 0x2a, 0x17, 0x5f,
|
||||
0x5a, 0x62, 0x66, 0x0e, 0x92, 0x89, 0x2c, 0x60, 0x75, 0xbc, 0x10, 0x51, 0xa8, 0x32, 0x27, 0x99,
|
||||
0x28, 0x29, 0x6c, 0x3e, 0x89, 0x07, 0xfb, 0x12, 0x10, 0x00, 0x00, 0xff, 0xff, 0x3f, 0x6e, 0xc1,
|
||||
0xef, 0xfc, 0x00, 0x00, 0x00,
|
||||
func file_build_progress_proto_rawDescGZIP() []byte {
|
||||
file_build_progress_proto_rawDescOnce.Do(func() {
|
||||
file_build_progress_proto_rawDescData = protoimpl.X.CompressGZIP(file_build_progress_proto_rawDescData)
|
||||
})
|
||||
return file_build_progress_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_build_progress_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||
var file_build_progress_proto_goTypes = []interface{}{
|
||||
(*BuildProgress)(nil), // 0: soong_build_progress.BuildProgress
|
||||
}
|
||||
var file_build_progress_proto_depIdxs = []int32{
|
||||
0, // [0:0] is the sub-list for method output_type
|
||||
0, // [0:0] is the sub-list for method input_type
|
||||
0, // [0:0] is the sub-list for extension type_name
|
||||
0, // [0:0] is the sub-list for extension extendee
|
||||
0, // [0:0] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_build_progress_proto_init() }
|
||||
func file_build_progress_proto_init() {
|
||||
if File_build_progress_proto != nil {
|
||||
return
|
||||
}
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_build_progress_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BuildProgress); 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_build_progress_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 1,
|
||||
NumExtensions: 0,
|
||||
NumServices: 0,
|
||||
},
|
||||
GoTypes: file_build_progress_proto_goTypes,
|
||||
DependencyIndexes: file_build_progress_proto_depIdxs,
|
||||
MessageInfos: file_build_progress_proto_msgTypes,
|
||||
}.Build()
|
||||
File_build_progress_proto = out.File
|
||||
file_build_progress_proto_rawDesc = nil
|
||||
file_build_progress_proto_goTypes = nil
|
||||
file_build_progress_proto_depIdxs = nil
|
||||
}
|
||||
|
@@ -15,7 +15,7 @@
|
||||
syntax = "proto2";
|
||||
|
||||
package soong_build_progress;
|
||||
option go_package = "soong_build_progress_proto";
|
||||
option go_package = "android/soong/ui/status/build_progress_proto";
|
||||
|
||||
message BuildProgress {
|
||||
// Total number of actions in a build. The total actions will increase
|
||||
|
@@ -23,11 +23,11 @@ import (
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/golang/protobuf/proto"
|
||||
"google.golang.org/protobuf/proto"
|
||||
|
||||
"android/soong/ui/logger"
|
||||
"android/soong/ui/status/build_error_proto"
|
||||
"android/soong/ui/status/build_progress_proto"
|
||||
soong_build_error_proto "android/soong/ui/status/build_error_proto"
|
||||
soong_build_progress_proto "android/soong/ui/status/build_progress_proto"
|
||||
)
|
||||
|
||||
type verboseLog struct {
|
||||
|
@@ -24,7 +24,7 @@ import (
|
||||
"syscall"
|
||||
"time"
|
||||
|
||||
"github.com/golang/protobuf/proto"
|
||||
"google.golang.org/protobuf/proto"
|
||||
|
||||
"android/soong/ui/logger"
|
||||
"android/soong/ui/status/ninja_frontend"
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -17,7 +17,7 @@ syntax = "proto2";
|
||||
option optimize_for = LITE_RUNTIME;
|
||||
|
||||
package ninja;
|
||||
option go_package = "ninja_frontend";
|
||||
option go_package = "android/soong/ui/status/ninja_frontend";
|
||||
|
||||
message Status {
|
||||
message TotalEdges {
|
||||
|
Reference in New Issue
Block a user