Skip to content

Commit

Permalink
storage: fix concurrent map read/write
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Sep 7, 2023
1 parent 71fde81 commit a2e7902
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
- name: Test
run: mkdir .cover && CARAPACE_COVERDIR="$(pwd)/.cover" go test -v -coverpkg ./... -coverprofile=unit.cov ./... ./example-nonposix/...

- name: Bench
run: go test -bench ./...

- name: Convert coverage
run: go tool covdata textfmt -i .cover/ -o integration.cov

Expand Down
6 changes: 5 additions & 1 deletion carapace.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ func (c Carapace) DashAnyCompletion(action Action) {

// FlagCompletion defines completion for flags using a map consisting of name and Action.
func (c Carapace) FlagCompletion(actions ActionMap) {
if e := storage.get(c.cmd); e.flag == nil {
e := storage.get(c.cmd)
e.flagMutex.Lock()
defer e.flagMutex.Unlock()

if e.flag == nil {
e.flag = actions
} else {
for name, action := range actions {
Expand Down
15 changes: 9 additions & 6 deletions storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (

type entry struct {
flag ActionMap
flagMutex sync.RWMutex
positional []Action
positionalAny Action
dash []Action
Expand All @@ -27,20 +28,22 @@ type entry struct {

type _storage map[*cobra.Command]*entry

var storageMutex sync.Mutex
var storageMutex sync.RWMutex

func (s _storage) get(cmd *cobra.Command) (e *entry) {
var ok bool
if e, ok = s[cmd]; !ok {
func (s _storage) get(cmd *cobra.Command) *entry {
storageMutex.RLock()
e, ok := s[cmd]
storageMutex.RUnlock()

if !ok {
storageMutex.Lock()
defer storageMutex.Unlock()

if e, ok = s[cmd]; !ok {
e = &entry{}
s[cmd] = e
}
}
return
return e
}

var bridgeMutex sync.Mutex
Expand Down
20 changes: 20 additions & 0 deletions storage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,23 @@ func TestCheck(t *testing.T) {
t.Error("check should fail")
}
}

// BenchmarkStorage tests for concurrent map read/write
func BenchmarkStorage(b *testing.B) {
cmd := &cobra.Command{}
cmd2 := &cobra.Command{}
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
Gen(cmd).FlagCompletion(ActionMap{
"flag1": ActionValues("a", "b"),
})
Gen(cmd).PositionalCompletion(ActionValues("a", "b"))

Gen(cmd2).FlagCompletion(ActionMap{
"flag2": ActionValues("a", "b"),
})
Gen(cmd2).PositionalCompletion(ActionValues("a", "b"))
}
})

}

0 comments on commit a2e7902

Please sign in to comment.