bufconfig

package
v0.53.0 Latest Latest
Warning

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

Go to latest
Published: Aug 25, 2021 License: Apache-2.0 Imports: 18 Imported by: 0

Documentation

Overview

Package bufconfig contains the configuration functionality.

Index

Constants

View Source
const (
	// ExternalConfigFilePath is the default configuration file path.
	ExternalConfigV1FilePath = "buf.yaml"

	// ExternalConfigV1Beta1FilePath is the v1beta1 file path.
	ExternalConfigV1Beta1FilePath = "buf.yaml"

	// V1Version is the v1 version.
	V1Version = "v1"

	// V1Beta1Version is the v1beta1 version.
	V1Beta1Version = "v1beta1"
)

Variables

View Source
var (
	// All versions are all the versions in order.
	AllVersions = []string{
		V1Beta1Version,
		V1Version,
	}
)

Functions

func ExistingConfigFilePath added in v0.45.0

func ExistingConfigFilePath(ctx context.Context, readBucket storage.ReadBucket) (string, error)

ExistingConfigFilePath checks if a configuration file exists, and if so, returns the path within the ReadBucket of this configuration file.

Returns empty string and no error if no configuration file exists.

func WriteConfig added in v0.34.0

func WriteConfig(
	ctx context.Context,
	writeBucket storage.WriteBucket,
	options ...WriteConfigOption,
) error

WriteConfig writes an initial configuration file into the bucket.

Types

type Config

type Config struct {
	Version        string
	ModuleIdentity bufmodule.ModuleIdentity
	Build          *bufmodulebuild.Config
	Breaking       *bufbreaking.Config
	Lint           *buflint.Config
}

Config is the user config.

func ReadConfig added in v0.27.0

func ReadConfig(
	ctx context.Context,
	provider Provider,
	readBucket storage.ReadBucket,
	options ...ReadConfigOption,
) (*Config, error)

ReadConfig reads the configuration from the OS or an override, if any.

Only use in CLI tools.

type ExternalConfigV1 added in v0.44.0

type ExternalConfigV1 struct {
	Version  string                          `json:"version,omitempty" yaml:"version,omitempty"`
	Name     string                          `json:"name,omitempty" yaml:"name,omitempty"`
	Deps     []string                        `json:"deps,omitempty" yaml:"deps,omitempty"`
	Build    bufmodulebuild.ExternalConfigV1 `json:"build,omitempty" yaml:"build,omitempty"`
	Breaking bufbreaking.ExternalConfigV1    `json:"breaking,omitempty" yaml:"breaking,omitempty"`
	Lint     buflint.ExternalConfigV1        `json:"lint,omitempty" yaml:"lint,omitempty"`
}

ExternalConfigV1 represents the on-disk representation of the Config at version v1.

type ExternalConfigV1Beta1 added in v0.44.0

type ExternalConfigV1Beta1 struct {
	Version  string                               `json:"version,omitempty" yaml:"version,omitempty"`
	Name     string                               `json:"name,omitempty" yaml:"name,omitempty"`
	Deps     []string                             `json:"deps,omitempty" yaml:"deps,omitempty"`
	Build    bufmodulebuild.ExternalConfigV1Beta1 `json:"build,omitempty" yaml:"build,omitempty"`
	Breaking bufbreaking.ExternalConfigV1Beta1    `json:"breaking,omitempty" yaml:"breaking,omitempty"`
	Lint     buflint.ExternalConfigV1Beta1        `json:"lint,omitempty" yaml:"lint,omitempty"`
}

ExternalConfigV1Beta1 represents the on-disk representation of the Config at version v1beta1.

type ExternalConfigVersion added in v0.44.0

type ExternalConfigVersion struct {
	Version string `json:"version,omitempty" yaml:"version,omitempty"`
}

ExternalConfigVersion defines the subset of all config file versions that is used to determine the configuration version.

type Provider

type Provider interface {
	// GetConfig gets the Config for the YAML data at ConfigFilePath.
	//
	// If the data is of length 0, returns the default config.
	GetConfig(ctx context.Context, readBucket storage.ReadBucket) (*Config, error)
	// GetConfig gets the Config for the given JSON or YAML data.
	//
	// If the data is of length 0, returns the default config.
	GetConfigForData(ctx context.Context, data []byte) (*Config, error)
}

Provider is a provider.

func NewProvider

func NewProvider(logger *zap.Logger) Provider

NewProvider returns a new Provider.

type ReadConfigOption added in v0.34.0

type ReadConfigOption func(*readConfigOptions)

ReadConfigOption is an option for ReadConfig.

func ReadConfigWithOverride added in v0.34.0

func ReadConfigWithOverride(override string) ReadConfigOption

ReadConfigWithOverride sets the override.

If override is set, this will first check if the override ends in .json or .yaml, if so, this reads the file at this path and uses it. Otherwise, this assumes this is configuration data in either JSON or YAML format, and unmarshals it.

If no override is set, this reads ExternalConfigFilePath in the bucket.

type WriteConfigOption added in v0.34.0

type WriteConfigOption func(*writeConfigOptions)

WriteConfigOption is an option for WriteConfig.

func WriteConfigWithDependencyModuleReferences added in v0.34.0

func WriteConfigWithDependencyModuleReferences(dependencyModuleReferences ...bufmodule.ModuleReference) WriteConfigOption

WriteConfigWithDependencyModuleReferences returns a new WriteConfigOption that sets the dependencies of the module.

The default is to not have any dependencies.

If this option is used, WriteConfigWithModuleIdentity must also be used.

func WriteConfigWithDocumentationComments added in v0.34.0

func WriteConfigWithDocumentationComments() WriteConfigOption

WriteConfigWithDocumentationComments returns a new WriteConfigOption that documents the resulting configuration file.

func WriteConfigWithModuleIdentity added in v0.34.0

func WriteConfigWithModuleIdentity(moduleIdentity bufmodule.ModuleIdentity) WriteConfigOption

WriteConfigWithModuleIdentity returns a new WriteConfigOption that sets the name of the module to the given ModuleIdentity.

The default is to not set the name.

func WriteConfigWithUncomment added in v0.34.0

func WriteConfigWithUncomment() WriteConfigOption

WriteConfigWithUncomment returns a new WriteConfigOption that uncomments the resulting configuration file options that are commented out by default.

If this option is used, WriteConfigWithDocumentationComments must also be used.

Jump to

Keyboard shortcuts

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