/* Copyright 2018 The Kubernetes Authors. 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 aggregate import ( "fmt" "os" "github.com/spf13/cobra" "golang.org/x/tools/cover" "edge-infra.dev/third_party/gopherage/pkg/cov" "edge-infra.dev/third_party/gopherage/pkg/util" ) type flags struct { OutputFile string } // MakeCommand returns an `aggregate` command. func MakeCommand() *cobra.Command { flags := &flags{} cmd := &cobra.Command{ Use: "aggregate [files...]", Short: "Aggregates multiple Go coverage files.", Long: `Given multiple Go coverage files from identical binaries recorded in "count" or "atomic" mode, produces a new Go coverage file in the same mode that counts how many of those coverage profiles hit a block at least once.`, Run: func(cmd *cobra.Command, args []string) { run(flags, cmd, args) }, } cmd.Flags().StringVarP(&flags.OutputFile, "output", "o", "-", "output file") return cmd } func run(flags *flags, cmd *cobra.Command, args []string) { if len(args) == 0 { fmt.Println("Expected at least one file.") cmd.Usage() os.Exit(2) } profiles := make([][]*cover.Profile, 0, len(args)) for _, path := range args { profile, err := util.LoadProfile(path) if err != nil { fmt.Fprintf(os.Stderr, "failed to open %s: %v", path, err) os.Exit(1) } profiles = append(profiles, profile) } aggregated, err := cov.AggregateProfiles(profiles) if err != nil { fmt.Fprintf(os.Stderr, "failed to aggregate files: %v", err) os.Exit(1) } if err := util.DumpProfile(flags.OutputFile, aggregated); err != nil { fmt.Fprintln(os.Stderr, err) os.Exit(1) } }