blob: aba9a8e48271ea07d3cf66f0ebba7b161e09c34b [file] [log] [blame]
// Copyright (C) 2016 The Android Open Source Project
//
// 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 main
import (
"flag"
"fmt"
"android.googlesource.com/platform/tools/gpu/framework/app"
"android.googlesource.com/platform/tools/gpu/framework/log"
)
func init() {
verb := &app.Verb{
Name: "rm",
ShortHelp: "Removes a benchmark from a .perfz file",
Run: rmVerb,
ShortUsage: "<perfz> <benchmark>",
}
verb.Flags.StringVar(&flagPerfzOutput, "o", "", "output .perfz file, same as input if empty")
app.AddVerb(verb)
}
func rmVerb(ctx log.Context, flags flag.FlagSet) error {
if flags.NArg() != 2 {
app.Usage(ctx, "Two arguments expected, got %d", flags.NArg())
return nil
}
perfzFile := flags.Arg(0)
perfz, err := LoadPerfz(ctx, perfzFile, flagVerifyHashes)
if err != nil {
return err
}
benchmarkName := flags.Arg(1)
_, found := perfz.Benchmarks[benchmarkName]
if !found {
return fmt.Errorf("Benchmark not found: %s", benchmarkName)
}
delete(perfz.Benchmarks, benchmarkName)
if flagPerfzOutput == "" {
flagPerfzOutput = perfzFile
}
err = perfz.WriteTo(ctx, flagPerfzOutput)
if err != nil {
return ctx.WrapError(err, "perfz.WriteTo")
}
return nil
}