0cc5b21516
The metrics.proto needs to be imported to Google3 in order to unmarshal the build metrics data from bigstore. Cleaned up the enum names to use the Camel naming convention and renamed the build_metrics to soong_metrics to be more specific to soong and to allow quering soong_metrics files from bigstore. Bug: b/135280521 Test: lunch andf m -j. Checked if soong_metrics was generated correctly by using printproto command. Change-Id: I998c8d05db592e94a653d6ca32250b80df3c9b21
161 lines
4 KiB
Go
161 lines
4 KiB
Go
// Copyright 2018 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.
|
|
|
|
package metrics
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"strconv"
|
|
|
|
"android/soong/ui/metrics/metrics_proto"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
)
|
|
|
|
const (
|
|
RunSetupTool = "setup"
|
|
RunKati = "kati"
|
|
RunSoong = "soong"
|
|
PrimaryNinja = "ninja"
|
|
TestRun = "test"
|
|
)
|
|
|
|
type Metrics struct {
|
|
metrics soong_metrics_proto.MetricsBase
|
|
TimeTracer TimeTracer
|
|
}
|
|
|
|
func New() (metrics *Metrics) {
|
|
m := &Metrics{
|
|
metrics: soong_metrics_proto.MetricsBase{},
|
|
TimeTracer: &timeTracerImpl{},
|
|
}
|
|
return m
|
|
}
|
|
|
|
func (m *Metrics) SetTimeMetrics(perf soong_metrics_proto.PerfInfo) {
|
|
switch perf.GetName() {
|
|
case RunKati:
|
|
m.metrics.KatiRuns = append(m.metrics.KatiRuns, &perf)
|
|
break
|
|
case RunSoong:
|
|
m.metrics.SoongRuns = append(m.metrics.SoongRuns, &perf)
|
|
break
|
|
case PrimaryNinja:
|
|
m.metrics.NinjaRuns = append(m.metrics.NinjaRuns, &perf)
|
|
break
|
|
default:
|
|
// ignored
|
|
}
|
|
}
|
|
|
|
func (m *Metrics) SetMetadataMetrics(metadata map[string]string) {
|
|
for k, v := range metadata {
|
|
switch k {
|
|
case "BUILD_ID":
|
|
m.metrics.BuildId = proto.String(v)
|
|
break
|
|
case "PLATFORM_VERSION_CODENAME":
|
|
m.metrics.PlatformVersionCodename = proto.String(v)
|
|
break
|
|
case "TARGET_PRODUCT":
|
|
m.metrics.TargetProduct = proto.String(v)
|
|
break
|
|
case "TARGET_BUILD_VARIANT":
|
|
switch v {
|
|
case "user":
|
|
m.metrics.TargetBuildVariant = soong_metrics_proto.MetricsBase_USER.Enum()
|
|
case "userdebug":
|
|
m.metrics.TargetBuildVariant = soong_metrics_proto.MetricsBase_USERDEBUG.Enum()
|
|
case "eng":
|
|
m.metrics.TargetBuildVariant = soong_metrics_proto.MetricsBase_ENG.Enum()
|
|
default:
|
|
// ignored
|
|
}
|
|
case "TARGET_ARCH":
|
|
m.metrics.TargetArch = m.getArch(v)
|
|
case "TARGET_ARCH_VARIANT":
|
|
m.metrics.TargetArchVariant = proto.String(v)
|
|
case "TARGET_CPU_VARIANT":
|
|
m.metrics.TargetCpuVariant = proto.String(v)
|
|
case "HOST_ARCH":
|
|
m.metrics.HostArch = m.getArch(v)
|
|
case "HOST_2ND_ARCH":
|
|
m.metrics.Host_2NdArch = m.getArch(v)
|
|
case "HOST_OS":
|
|
m.metrics.HostOs = proto.String(v)
|
|
case "HOST_OS_EXTRA":
|
|
m.metrics.HostOsExtra = proto.String(v)
|
|
case "HOST_CROSS_OS":
|
|
m.metrics.HostCrossOs = proto.String(v)
|
|
case "HOST_CROSS_ARCH":
|
|
m.metrics.HostCrossArch = proto.String(v)
|
|
case "HOST_CROSS_2ND_ARCH":
|
|
m.metrics.HostCross_2NdArch = proto.String(v)
|
|
case "OUT_DIR":
|
|
m.metrics.OutDir = proto.String(v)
|
|
default:
|
|
// ignored
|
|
}
|
|
}
|
|
}
|
|
|
|
func (m *Metrics) getArch(arch string) *soong_metrics_proto.MetricsBase_Arch {
|
|
switch arch {
|
|
case "arm":
|
|
return soong_metrics_proto.MetricsBase_ARM.Enum()
|
|
case "arm64":
|
|
return soong_metrics_proto.MetricsBase_ARM64.Enum()
|
|
case "x86":
|
|
return soong_metrics_proto.MetricsBase_X86.Enum()
|
|
case "x86_64":
|
|
return soong_metrics_proto.MetricsBase_X86_64.Enum()
|
|
default:
|
|
return soong_metrics_proto.MetricsBase_UNKNOWN.Enum()
|
|
}
|
|
}
|
|
|
|
func (m *Metrics) SetBuildDateTime(date_time string) {
|
|
if date_time != "" {
|
|
date_time_timestamp, err := strconv.ParseInt(date_time, 10, 64)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
m.metrics.BuildDateTimestamp = &date_time_timestamp
|
|
}
|
|
}
|
|
|
|
func (m *Metrics) Serialize() (data []byte, err error) {
|
|
return proto.Marshal(&m.metrics)
|
|
}
|
|
|
|
// exports the output to the file at outputPath
|
|
func (m *Metrics) Dump(outputPath string) (err error) {
|
|
data, err := m.Serialize()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
tempPath := outputPath + ".tmp"
|
|
err = ioutil.WriteFile(tempPath, []byte(data), 0644)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = os.Rename(tempPath, outputPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|