Documentation ¶
Index ¶
- func CopyFile(src, dst string) (int64, error)
- func CreateIfNotExists(path string, isDir bool) error
- func GetTotalUsedFds() int
- func Matches(file string, patterns []string) (bool, error)
- func ReadSymlinkedDirectory(path string) (string, error)
- func ReadSymlinkedPath(path string) (realPath string, err error)
- type MatchResult
- type Pattern
- type PatternMatcher
- func (pm *PatternMatcher) Exclusions() bool
- func (pm *PatternMatcher) IsMatch(file string) (matched bool, err error)
- func (pm *PatternMatcher) Matches(file string) (bool, error)deprecated
- func (pm *PatternMatcher) MatchesResult(file string) (res *MatchResult, err error)
- func (pm *PatternMatcher) Patterns() []*Pattern
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CopyFile ¶
CopyFile copies from src to dst until either EOF is reached on src or an error occurs. It verifies src exists and removes the dst if it exists.
func CreateIfNotExists ¶
CreateIfNotExists creates a file or a directory only if it does not already exist.
func GetTotalUsedFds ¶
func GetTotalUsedFds() int
GetTotalUsedFds Returns the number of used File Descriptors by reading it via /proc filesystem.
func Matches ¶
Matches returns true if file matches any of the patterns and isn't excluded by any of the subsequent patterns.
func ReadSymlinkedDirectory ¶
ReadSymlinkedDirectory returns the target directory of a symlink. The target of the symbolic link may not be a file.
func ReadSymlinkedPath ¶
ReadSymlinkedPath returns the target directory of a symlink. The target of the symbolic link can be a file and a directory.
Types ¶
type MatchResult ¶
type MatchResult struct {
// contains filtered or unexported fields
}
func (*MatchResult) Excludes ¶
func (m *MatchResult) Excludes() uint
Excludes returns the amount of excludes of an MatchResult
func (*MatchResult) IsMatched ¶
func (m *MatchResult) IsMatched() bool
Excludes returns true if the overall result is matched
func (*MatchResult) Matches ¶
func (m *MatchResult) Matches() uint
Excludes returns the amount of matches of an MatchResult
type Pattern ¶
type Pattern struct {
// contains filtered or unexported fields
}
Pattern defines a single regexp used used to filter file paths.
type PatternMatcher ¶
type PatternMatcher struct {
// contains filtered or unexported fields
}
PatternMatcher allows checking paths against a list of patterns
func NewPatternMatcher ¶
func NewPatternMatcher(patterns []string) (*PatternMatcher, error)
NewPatternMatcher creates a new matcher object for specific patterns that can be used later to match against patterns against paths
func (*PatternMatcher) Exclusions ¶
func (pm *PatternMatcher) Exclusions() bool
Exclusions returns true if any of the patterns define exclusions
func (*PatternMatcher) IsMatch ¶
func (pm *PatternMatcher) IsMatch(file string) (matched bool, err error)
IsMatch verifies the provided filepath against all patterns and returns true if it matches. A match is valid if the last match is a positive one. It returns an error on failure and is not safe to be called concurrently.
func (*PatternMatcher) Matches
deprecated
func (pm *PatternMatcher) Matches(file string) (bool, error)
Deprecated: Please use the `MatchesResult` method instead. Matches matches path against all the patterns. Matches is not safe to be called concurrently
func (*PatternMatcher) MatchesResult ¶
func (pm *PatternMatcher) MatchesResult(file string) (res *MatchResult, err error)
MatchesResult verifies the provided filepath against all patterns. It returns the `*MatchResult` result for the patterns on success, otherwise an error. This method is not safe to be called concurrently.
func (*PatternMatcher) Patterns ¶
func (pm *PatternMatcher) Patterns() []*Pattern
Patterns returns array of active patterns