go-commons

module
v0.17.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 14, 2023 License: MIT

README

WARNING: THIS REPO IS AN AUTO-GENERATED COPY. This repo has been copied from Gruntwork’s GitHub repositories so that you can consume it from your company’s own internal Git repositories. This copy is automatically created and updated by the repo-copier CLI tool. If you need to make changes to this repo, you should make the changes in a separate fork, and NOT make changes directly in this repo, as otherwise, the repo-copier will overwrite your changes! Please see the repo-copier documentation for more information on how the code is copied, how cross-references are updated, how the changelog is handled, etc.


Maintained by Gruntwork.io Go Report Card go.dev reference go.mod version

Gruntwork Go Commons

This repo contains common libraries and helpers used by Gruntwork for building CLI tools in Go.

NOTE: This repo was renamed from gruntwork-cli starting v0.8.0. Update your gruntwork-cli references to go-commons.

Packages

This repo contains the following packages:

  • collections
  • entrypoint
  • errors
  • files
  • logging
  • shell
  • ssh
  • retry
  • awscommons

Each of these packages is described below.

collections

This package contains useful helper methods for working with collections such as lists and maps, as Go has very few of these built-in.

entrypoint

Most CLI apps built by Gruntwork should use this package to run their app, as it takes care of common tasks such as setting the proper exit code, rendering stack traces, handling panics, and rendering help text in a standard format. Note that this package assumes you are using urfave/cli, which is currently our library of choice for CLI apps.

Here is the typical usage pattern in main.go:

package main

import (
        "github.com/urfave/cli/v2"
        "github.com/biptec/go-commons/entrypoint"
        "github.com/biptec/go-commons/version"
)

func main() {
      // Create a new CLI app. This will return a urfave/cli App with some
      // common initialization.
      // Set the version number from your app from the Version variable that is passed in at build time in `version` package
      // for more understanding see github.com/gruntwork-io/go-commons/version
      app := entrypoint.NewApp("my-app-name", version.GetVersion())

      app.Authors = []*cli.Author{
            {
                Name: "Gruntwork",
                Email: "www.gruntwork.io",
            },
      }

      app.Action = func(cliContext *cli.Context) error {
        // ( fill in your app details)
        return nil
      }

      // Run your app using the entrypoint package, which will take care of exit codes, stack traces, and panics
      entrypoint.RunApp(app)
}
errors

In our CLI apps, we should try to ensure that:

  1. Every error has a stacktrace. This makes debugging easier.
  2. Every error generated by our own code (as opposed to errors from Go built-in functions or errors from 3rd party libraries) has a custom type. This makes error handling more precise, as we can decide to handle different types of errors differently.

To accomplish these two goals, we have created an errors package that has several helper methods, such as errors.WithStackTrace(err error), which wraps the given error in an Error object that contains a stacktrace. Under the hood, the errors package is using the go-errors library, but this may change in the future, so the rest of the code should not depend on go-errors directly.

Here is how the errors package should be used:

  1. Any time you want to create your own error, create a custom type for it, and when instantiating that type, wrap it with a call to errors.WithStackTrace. That way, any time you call a method defined in our own code, you know the error it returns already has a stacktrace and you don't have to wrap it yourself.
  2. Any time you get back an error object from a function built into Go or a 3rd party library, immediately wrap it with errors.WithStackTrace. This gives us a stacktrace as close to the source as possible.
  3. If you need to get back the underlying error, you can use the errors.IsError and errors.Unwrap functions.
  4. If you want to return an error that forces a specific exit code, wrap it with errors.ErrorWithExitCode.

Note that entrypoint.RunApp takes care of showing stack traces and handling exit codes.

files

This package has a number of helpers for working with files and file paths, including one-liners for checking if a given path is a file or a directory, reading a file as a string, and building relative and canonical file paths.

logging

This package contains utilities for logging from our CLI apps. Instead of using Go's built-in logging library, we are using logrus, as it supports log levels (INFO, WARN, DEBUG, etc), structured logging (making key=value pairs easier to parse), log formatting (including text and JSON), hooks to connect logging to a variety of external systems (e.g. syslog, airbrake, papertrail), and even hooks for automated testing.

To get a Logger, call the logging.GetLogger method:

logger := logging.GetLogger("my-app", "v0.0.1")
logger.Info("Something happened!")

To change the logging level globally, call the SetGlobalLogLevel function:

logging.SetGlobalLogLevel(logrus.DebugLevel)

Note that this ONLY affects loggers created using the GetLogger function AFTER you call SetGlobalLogLevel, so you need to call this as early in the life of your CLI app as possible!

To change the logging format globally, call the SetGlobalLogFormatter function:

//Valid options are "json" or "text"
logging.SetGlobalLogFormatter("json")
shell

This package contains two types of helpers:

  • cmd.go: This file contains helpers for running shell commands.
  • prompt.go: This file contains helpers for prompting the user for input (e.g. yes/no).
ssh

This package contains helper methods for initiating SSH connections and running commands over the connection.

retry

This package contains helper methods for retrying an action up to a limit.

awscommons

This package contains routines for interacting with AWS. Meant to provide high level interfaces used throughout various Gruntwork CLIs.

Note that the routines in this package are adapted for aws-sdk-go-v2, not v1 (aws-sdk-go).

Running tests

go test -v ./...

License

This code is released under the MIT License. See LICENSE.txt.

Directories

Path Synopsis
awscommons
v2
Package awscommons contains routines for interacting with AWS.
Package awscommons contains routines for interacting with AWS.
Package collections contains helper functions for interacting with collection structs like Slices and Maps.
Package collections contains helper functions for interacting with collection structs like Slices and Maps.
Package entrypoint contains helper functions for setting up a urfave/cli application that can be used as the CLI entrypoint.
Package entrypoint contains helper functions for setting up a urfave/cli application that can be used as the CLI entrypoint.
Package errors contains helper functions for returning errors from a CLI.
Package errors contains helper functions for returning errors from a CLI.
Package files contains helper functions related to the file system.
Package files contains helper functions related to the file system.
Package git contains routines for interacting with git over the CLI.
Package git contains routines for interacting with git over the CLI.
Package github contains routines for interacting with GitHub.
Package github contains routines for interacting with GitHub.
Package lock contains helper functions for maintaining a lock table and utilizing it to guard critical sections in the code.
Package lock contains helper functions for maintaining a lock table and utilizing it to guard critical sections in the code.
Package logging contains helper functions for setting up a CLI wide logger that can be used to log output at various levels.
Package logging contains helper functions for setting up a CLI wide logger that can be used to log output at various levels.
Package random provides utilities and functions for generating random data.
Package random provides utilities and functions for generating random data.
Package retry contains helper functions that allow you to retry functions on error.
Package retry contains helper functions that allow you to retry functions on error.
Package shell contains helper functions for starting and interacting with subprocesses.
Package shell contains helper functions for starting and interacting with subprocesses.
Package ssh allows to manage SSH connections and send commands through them.
Package ssh allows to manage SSH connections and send commands through them.
Package telemetry contains helper functions that allow you to instrument applications with telemetry
Package telemetry contains helper functions that allow you to instrument applications with telemetry
Package url contains helper functions for dealing with URL strings.
Package url contains helper functions for dealing with URL strings.
Package version contains helper functions for setting and managing CLI versions.
Package version contains helper functions for setting and managing CLI versions.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL