dont use slices

This commit is contained in:
thesayyn 2023-11-01 14:10:04 -07:00
parent 17374843eb
commit b062bc1c68
No known key found for this signature in database
GPG Key ID: D10C0AE203D0E4A8
2 changed files with 12 additions and 12 deletions

View File

@ -5,7 +5,6 @@ import (
"io" "io"
"math" "math"
"os" "os"
"slices"
"strings" "strings"
cli "github.com/urfave/cli/v2" cli "github.com/urfave/cli/v2"
@ -76,20 +75,21 @@ func mutateAction(c *cli.Context) error {
&tidyVisitor, &tidyVisitor,
} }
dropped := []int{} dropped := map[int]bool{}
entries := []mtree.Entry{} entries := []mtree.Entry{}
skip: skip:
for _, entry := range spec.Entries { for _, entry := range spec.Entries {
if entry.Parent != nil {
if entry.Parent != nil && slices.Contains(dropped, entry.Parent.Pos) { if _, ok := dropped[entry.Parent.Pos]; ok {
if entry.Type == mtree.DotDotType { if entry.Type == mtree.DotDotType {
// directory for this .. has been dropped so shall this // directory for this .. has been dropped so shall this
continue continue
}
entry.Parent = entry.Parent.Parent
// TODO: i am not sure if this is the correct behavior
entry.Raw = strings.TrimPrefix(entry.Raw, " ")
} }
entry.Parent = entry.Parent.Parent
// TODO: i am not sure if this is the correct behavior
entry.Raw = strings.TrimPrefix(entry.Raw, " ")
} }
for _, visitor := range visitors { for _, visitor := range visitors {
@ -99,7 +99,7 @@ skip:
} }
if drop { if drop {
dropped = append(dropped, entry.Pos) dropped[entry.Pos] = true
continue skip continue skip
} }
} }

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/vbatts/go-mtree module github.com/vbatts/go-mtree
go 1.18 go 1.17
require ( require (
github.com/davecgh/go-spew v1.1.1 github.com/davecgh/go-spew v1.1.1