aboutsummaryrefslogtreecommitdiff
path: root/go/tools/releaser/releaser.go
blob: e8ba95c12427f83330798827d77ac6eb619f68ce (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// Copyright 2021 The Bazel 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.

// releaser is a tool for maintaining rules_go and Gazelle. It automates
// multiple tasks related to preparing releases, like upgrading dependencies,
// and uploading release artifacts.
package main

import (
	"context"
	"errors"
	"fmt"
	"io"
	"os"
	"os/signal"
)

func main() {
	ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt)
	defer cancel()
	if err := run(ctx, os.Stderr, os.Args[1:]); err != nil {
		fmt.Fprintln(os.Stderr, err)
		os.Exit(1)
	}
}

type command struct {
	name, description, help string
	run                     func(context.Context, io.Writer, []string) error
}

var commands = []*command{
	&helpCmd,
	&prepareCmd,
	&upgradeDepCmd,
}

func run(ctx context.Context, stderr io.Writer, args []string) error {
	if len(args) == 0 {
		return errors.New("no command specified. For a list of commands, run:\n\treleaser help")
	}
	name, args := args[0], args[1:]
	for _, arg := range args {
		if arg == "-h" || name == "-help" || name == "--help" {
			return helpCmd.run(ctx, stderr, args)
		}
	}
	for _, cmd := range commands {
		if cmd.name == name {
			return cmd.run(ctx, stderr, args)
		}
	}
	return fmt.Errorf("unknown command %q. For a list of commands, run:\n\treleaser help", name)
}

var helpCmd = command{
	name:        "help",
	description: "prints information on how to use any subcommand",
	help: `releaser help [subcommand]

The help sub-command prints information on how to use any subcommand. Run help
without arguments for a list of all subcommands.
`,
}

func init() {
	// break init cycle
	helpCmd.run = runHelp
}

func runHelp(ctx context.Context, stderr io.Writer, args []string) error {
	if len(args) > 1 {
		return usageErrorf(&helpCmd, "help accepts at most one argument.")
	}

	if len(args) == 1 {
		name := args[0]
		for _, cmd := range commands {
			if cmd.name == name {
				fmt.Fprintf(stderr, "%s\n\n%s\n", cmd.description, cmd.help)
				return nil
			}
		}
		return fmt.Errorf("Unknown command %s. For a list of supported subcommands, run:\n\treleaser help", name)
	}

	fmt.Fprint(stderr, "releaser supports the following subcommands:\n\n")
	maxNameLen := 0
	for _, cmd := range commands {
		if len(cmd.name) > maxNameLen {
			maxNameLen = len(cmd.name)
		}
	}
	for _, cmd := range commands {
		fmt.Fprintf(stderr, "\t%-*s    %s\n", maxNameLen, cmd.name, cmd.description)
	}
	fmt.Fprintf(stderr, "\nRun 'releaser help <subcommand>' for more information on any command.\n")
	return nil
}

type usageError struct {
	cmd *command
	err error
}

func (e *usageError) Error() string {
	return fmt.Sprintf("%v. For usage info, run:\n\treleaser help %s", e.err, e.cmd.name)
}

func (e *usageError) Unwrap() error {
	return e.err
}

func usageErrorf(cmd *command, format string, args ...interface{}) error {
	return &usageError{cmd: cmd, err: fmt.Errorf(format, args...)}
}