/* 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 util import ( "fmt" "io" "os" "edge-infra.dev/third_party/gopherage/pkg/cov" "golang.org/x/tools/cover" ) // DumpProfile dumps the profile to the given file destination. // If the destination is "-", it instead writes to stdout. func DumpProfile(destination string, profile []*cover.Profile) error { var output io.Writer if destination == "-" { output = os.Stdout } else { f, err := os.Create(destination) if err != nil { return fmt.Errorf("failed to open %s: %v", destination, err) } defer f.Close() output = f } err := cov.DumpProfile(profile, output) if err != nil { return fmt.Errorf("failed to dump profile: %v", err) } return nil } // LoadProfile loads a profile from the given filename. // If the filename is "-", it instead reads from stdin. func LoadProfile(origin string) ([]*cover.Profile, error) { filename := origin if origin == "-" { // Annoyingly, ParseProfiles only accepts a filename, so we have to write the bytes to disk // so it can read them back. // We could probably also just give it /dev/stdin, but that'll break on Windows. tf, err := os.CreateTemp("", "") if err != nil { return nil, fmt.Errorf("failed to create temp file: %v", err) } defer tf.Close() defer os.Remove(tf.Name()) if _, err := io.Copy(tf, os.Stdin); err != nil { return nil, fmt.Errorf("failed to copy stdin to temp file: %v", err) } filename = tf.Name() } return cover.ParseProfiles(filename) }