helper

package
v0.34.0 Latest Latest
Warning

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

Go to latest
Published: Aug 29, 2017 License: MIT Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Unimplemented = grpc.Errorf(codes.Unimplemented, "this rpc is not implemented")

Unimplemented is a Go error with gRPC error code 'Unimplemented'

Functions

func ByteSliceHasAnyPrefix added in v0.3.0

func ByteSliceHasAnyPrefix(s []byte, prefixes ...string) bool

ByteSliceHasAnyPrefix tests whether the byte slice s begins with any of the prefixes.

func DecorateError added in v0.11.0

func DecorateError(code codes.Code, err error) error

DecorateError unless it's already a grpc error.

If given nil it will return nil.

func ExitStatus added in v0.4.0

func ExitStatus(err error) (int, bool)

ExitStatus will return the exit-code from an error

func GetPath added in v0.15.0

func GetPath(repo *pb.Repository) (string, error)

GetPath returns the path of the repo passed as first argument. An error is returned when either the storage can't be found or the path includes constructs trying to perform directory traversal.

func GetRepoPath added in v0.5.0

func GetRepoPath(repo *pb.Repository) (string, error)

GetRepoPath returns the full path of the repository referenced by an RPC Repository message. The errors returned are gRPC errors with relevant error codes and should be passed back to gRPC without further decoration.

func GitPath added in v0.18.0

func GitPath() string

GitPath returns the path to the `git` binary. See `SetGitPath` for details on how this is set

func IsGitDirectory added in v0.15.0

func IsGitDirectory(dir string) bool

IsGitDirectory checks if the directory passed as first argument looks like a valid git directory.

func IsNumber added in v0.4.0

func IsNumber(s []byte) bool

IsNumber tests whether the byte slice s contains only digits or not

func IsValidRef added in v0.23.0

func IsValidRef(ctx context.Context, path, ref string) bool

IsValidRef checks if a ref in a repo is valid

func UnquoteBytes added in v0.9.0

func UnquoteBytes(s []byte) []byte

UnquoteBytes removes surrounding double-quotes from a byte slice returning a new slice if they exist, otherwise it returns the same byte slice passed.

Types

type Command added in v0.3.0

type Command struct {
	io.Reader
	*exec.Cmd
	// contains filtered or unexported fields
}

Command encapsulates operations with commands creates with NewCommand

func GitCommandReader added in v0.3.0

func GitCommandReader(ctx context.Context, args ...string) (*Command, error)

GitCommandReader creates a git Command with the given args

func GitlabShellCommandReader added in v0.31.0

func GitlabShellCommandReader(ctx context.Context, envs []string, executable string, args ...string) (*Command, error)

GitlabShellCommandReader creates a gitlab-shell Command with the given args

func NewCommand added in v0.3.0

func NewCommand(ctx context.Context, cmd *exec.Cmd, stdin io.Reader, stdout, stderr io.Writer, env ...string) (*Command, error)

NewCommand creates a Command from an exec.Cmd

func (*Command) Close added in v0.31.0

func (c *Command) Close() error

Close will send a SIGTERM signal to the process group belonging to the `cmd` process

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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