summaryrefslogtreecommitdiff
path: root/kythe/go/extractors/bazel/extutil/extutil.go
blob: 82d853391e5039af2b8a42dd366d7db351b5678f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * Copyright 2018 The Kythe Authors. 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 extutil implements shared code for extracting and writing output
// from Bazel actions to .kzip files. This is a temporary
// measure to support migrating to .kzip output.
package extutil // import "kythe.io/kythe/go/extractors/bazel/extutil"

import (
	"context"
	"fmt"
	"path/filepath"

	"kythe.io/kythe/go/extractors/bazel"
)

// ExtractAndWrite extracts a spawn action through c and writes the results to
// the specified output file. The output format is based on the file extension:
//
//   .kzip     -- writes a kzip file
//   otherwise -- reports an error
//
// Deprecated: use bazel.ExtractToKzip
func ExtractAndWrite(ctx context.Context, c *bazel.Config, ai *bazel.ActionInfo, outputPath string) error {
	switch ext := filepath.Ext(outputPath); ext {
	case ".kzip":
		w, err := bazel.NewKZIP(outputPath)
		if err != nil {
			return fmt.Errorf("creating kzip writer: %v", err)
		}
		if _, err := c.ExtractToFile(ctx, ai, w); err != nil {
			return fmt.Errorf("extracting: %v", err)
		}
		if err := w.Close(); err != nil {
			return fmt.Errorf("closing output: %v", err)
		}

	default:
		return fmt.Errorf("unknown output extension %q", ext)
	}
	return nil
}