piperutils

package
v1.59.0 Latest Latest
Warning

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

Go to latest
Published: Jul 20, 2020 License: Apache-2.0 Imports: 14 Imported by: 52

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ContainsInt added in v1.11.0

func ContainsInt(s []int, e int) bool

ContainsInt check whether the element is part of the slice

func ContainsString added in v1.24.0

func ContainsString(s []string, e string) bool

ContainsString check whether the element is part of the slice

func ContainsStringPart added in v1.38.0

func ContainsStringPart(s []string, part string) bool

ContainsStringPart check wether the element is contained as part of one of the elements of the slice

func Copy added in v1.3.0

func Copy(src, dst string) (int64, error)

Copy ...

func ExecuteTemplate added in v1.38.0

func ExecuteTemplate(txtTemplate string, context interface{}) (string, error)

ExecuteTemplate parses the provided template, substitutes values and returns the output

func ExecuteTemplateFunctions added in v1.38.0

func ExecuteTemplateFunctions(txtTemplate string, functionMap template.FuncMap, context interface{}) (string, error)

ExecuteTemplateFunctions parses the provided template, applies the transformation functions, substitutes values and returns the output

func FileExists

func FileExists(filename string) (bool, error)

FileExists returns true if the file system entry for the given path exists and is not a directory.

func PersistReportsAndLinks(stepName, workspace string, reports, links []Path)

PersistReportsAndLinks stores the report paths and links in JSON format in the workspace for processing outside

func Prefix added in v1.19.0

func Prefix(in []string, prefix string) []string

Prefix adds a prefix to each element of the slice

func PrefixIfNeeded added in v1.22.0

func PrefixIfNeeded(in []string, prefix string) []string

PrefixIfNeeded adds a prefix to each element of the slice if not already prefixed

func SplitAndTrim added in v1.25.0

func SplitAndTrim(in []string, separator string) (out []string)

SplitAndTrim iterates over the strings in the given slice and splits each on the provided separator. Each resulting sub-string is then a separate entry in the returned array.

func Trim added in v1.19.0

func Trim(in []string) (out []string)

Trim removes dangling whitespaces from each element of the slice, empty elements are dropped

func Unzip added in v1.19.0

func Unzip(src, dest string) ([]string, error)

Unzip will decompress a zip archive, moving all files and folders within the zip file (parameter 1) to an output directory (parameter 2). from https://golangcode.com/unzip-files-in-go/ with the following license: MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Types

type FileUtils added in v1.15.0

type FileUtils interface {
	FileExists(filename string) (bool, error)
	Copy(src, dest string) (int64, error)
	FileRead(path string) ([]byte, error)
	FileWrite(path string, content []byte, perm os.FileMode) error
	MkdirAll(path string, perm os.FileMode) error
	Chmod(path string, mode os.FileMode) error
}

FileUtils ...

type Files added in v1.15.0

type Files struct {
}

Files ...

func (Files) Chdir added in v1.43.0

func (f Files) Chdir(path string) error

Chdir is a wrapper for os.Chdir().

func (Files) Chmod added in v1.57.0

func (f Files) Chmod(path string, mode os.FileMode) error

Chmod ...

func (Files) Copy added in v1.15.0

func (f Files) Copy(src, dst string) (int64, error)

Copy ...

func (Files) DirExists added in v1.43.0

func (f Files) DirExists(path string) (bool, error)

DirExists returns true if the file system entry for the given path exists and is a directory.

func (Files) FileExists added in v1.15.0

func (f Files) FileExists(filename string) (bool, error)

FileExists returns true if the file system entry for the given path exists and is not a directory.

func (Files) FileRead added in v1.15.0

func (f Files) FileRead(path string) ([]byte, error)

FileRead is a wrapper for ioutil.ReadFile().

func (Files) FileRemove added in v1.43.0

func (f Files) FileRemove(path string) error

FileRemove is a wrapper for os.FileRemove().

func (Files) FileWrite added in v1.15.0

func (f Files) FileWrite(path string, content []byte, perm os.FileMode) error

FileWrite is a wrapper for ioutil.WriteFile().

func (Files) Getwd added in v1.43.0

func (f Files) Getwd() (string, error)

Getwd is a wrapper for os.Getwd().

func (Files) Glob added in v1.43.0

func (f Files) Glob(pattern string) (matches []string, err error)

Glob is a wrapper for doublestar.Glob().

func (Files) MkdirAll added in v1.15.0

func (f Files) MkdirAll(path string, perm os.FileMode) error

MkdirAll is a wrapper for os.MkdirAll().

func (Files) Stat added in v1.57.0

func (f Files) Stat(path string) (os.FileInfo, error)

Stat is a wrapper for os.Stat()

type Path added in v1.11.0

type Path struct {
	Name      string `json:"name"`
	Target    string `json:"target"`
	Mandatory bool   `json:"mandatory"`
	Scope     string `json:"scope"`
}

Path - struct to serialize paths and some metadata back to the invoker

type ProjectStructure added in v1.14.0

type ProjectStructure struct {
	// contains filtered or unexported fields
}

ProjectStructure describes a directory containing source code

func (*ProjectStructure) UsesMaven added in v1.14.0

func (projectStructure *ProjectStructure) UsesMaven() bool

UsesMaven returns `true` if the project structure directory contains a pom.xml file, false otherwise

func (*ProjectStructure) UsesMta added in v1.14.0

func (projectStructure *ProjectStructure) UsesMta() bool

UsesMta returns `true` if the project structure directory contains typical files for mta projects (mta.yaml, mta.yml), `false` otherwise

func (*ProjectStructure) UsesNpm added in v1.14.0

func (projectStructure *ProjectStructure) UsesNpm() bool

UsesNpm returns `true` if the project structure directory contains a package.json file, false otherwise

Jump to

Keyboard shortcuts

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