1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
// This file is part of PathsHelper library.
//
// Copyright 2018-2025 Arduino AG (http://www.arduino.cc/)
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//
// You can be released from the requirements of the above licenses by purchasing
// a commercial license. Buying such a license is mandatory if you want to
// modify or otherwise use the software for commercial activities involving the
// Arduino software without disclosing the source code of your own applications.
// To purchase a commercial license, send an email to license@arduino.cc.
package paths
import (
"sort"
)
// PathList is a list of Path
type PathList []*Path
// NewPathList creates a new PathList with the given paths
func NewPathList(paths ...string) PathList {
res := PathList{}
for _, path := range paths {
res = append(res, New(path))
}
return res
}
// Clone returns a copy of the current PathList
func (p *PathList) Clone() PathList {
res := PathList{}
for _, path := range *p {
res.Add(path.Clone())
}
return res
}
// AsStrings return this path list as a string array
func (p *PathList) AsStrings() []string {
res := []string{}
for _, path := range *p {
res = append(res, path.String())
}
return res
}
// Equals returns true if the current PathList is equal to the
// PathList passed as argument
func (p *PathList) Equals(other PathList) bool {
if len(*p) != len(other) {
return false
}
for i, path := range *p {
if !path.EqualsTo(other[i]) {
return false
}
}
return true
}
// FilterDirs remove all entries except directories
func (p *PathList) FilterDirs() {
res := (*p)[:0]
for _, path := range *p {
if path.IsDir() {
res = append(res, path)
}
}
*p = res
}
// FilterOutDirs remove all directories entries
func (p *PathList) FilterOutDirs() {
res := (*p)[:0]
for _, path := range *p {
if !path.IsDir() {
res = append(res, path)
}
}
*p = res
}
// FilterOutHiddenFiles remove all hidden files (files with the name
// starting with ".")
func (p *PathList) FilterOutHiddenFiles() {
p.FilterOutPrefix(".")
}
// Filter will remove all the elements of the list that do not match
// the specified acceptor function
func (p *PathList) Filter(acceptorFunc func(*Path) bool) {
res := (*p)[:0]
for _, path := range *p {
if acceptorFunc(path) {
res = append(res, path)
}
}
*p = res
}
// FilterOutPrefix remove all entries having one of the specified prefixes
func (p *PathList) FilterOutPrefix(prefixes ...string) {
filterFunction := func(path *Path) bool {
return !path.HasPrefix(prefixes...)
}
p.Filter(filterFunction)
}
// FilterPrefix remove all entries not having one of the specified prefixes
func (p *PathList) FilterPrefix(prefixes ...string) {
filterFunction := func(path *Path) bool {
return path.HasPrefix(prefixes...)
}
p.Filter(filterFunction)
}
// FilterOutSuffix remove all entries having one of the specified suffixes
func (p *PathList) FilterOutSuffix(suffixies ...string) {
filterFunction := func(path *Path) bool {
return !path.HasSuffix(suffixies...)
}
p.Filter(filterFunction)
}
// FilterSuffix remove all entries not having one of the specified suffixes
func (p *PathList) FilterSuffix(suffixies ...string) {
filterFunction := func(path *Path) bool {
return path.HasSuffix(suffixies...)
}
p.Filter(filterFunction)
}
// Add adds a Path to the PathList
func (p *PathList) Add(path *Path) {
*p = append(*p, path)
}
// AddAll adds all Paths in the list passed as argument
func (p *PathList) AddAll(paths PathList) {
*p = append(*p, paths...)
}
// AddIfMissing adds a Path to the PathList if the path is not already
// in the list
func (p *PathList) AddIfMissing(path *Path) {
if (*p).Contains(path) {
return
}
(*p).Add(path)
}
// AddAllMissing adds all paths to the PathList excluding the paths already
// in the list
func (p *PathList) AddAllMissing(pathsToAdd PathList) {
for _, pathToAdd := range pathsToAdd {
(*p).AddIfMissing(pathToAdd)
}
}
// ToAbs calls Path.ToAbs() method on each path of the list.
// It stops at the first error and returns it. If all ToAbs calls
// are successful nil is returned.
func (p *PathList) ToAbs() error {
for _, path := range *p {
if err := path.ToAbs(); err != nil {
return err
}
}
return nil
}
// Contains check if the list contains a path that match
// exactly (EqualsTo) to the specified path
func (p *PathList) Contains(pathToSearch *Path) bool {
for _, path := range *p {
if path.EqualsTo(pathToSearch) {
return true
}
}
return false
}
// ContainsEquivalentTo check if the list contains a path
// that is equivalent (EquivalentTo) to the specified path
func (p *PathList) ContainsEquivalentTo(pathToSearch *Path) bool {
for _, path := range *p {
if path.EquivalentTo(pathToSearch) {
return true
}
}
return false
}
// Sort sorts this pathlist
func (p *PathList) Sort() {
sort.Sort(p)
}
func (p *PathList) Len() int {
return len(*p)
}
func (p *PathList) Less(i, j int) bool {
return (*p)[i].path < (*p)[j].path
}
func (p *PathList) Swap(i, j int) {
(*p)[i], (*p)[j] = (*p)[j], (*p)[i]
}
|