1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 13:30:26 +00:00
mycorrhiza/hyphae/count.go

40 lines
899 B
Go
Raw Normal View History

package hyphae
import (
"sync"
)
2022-02-04 17:06:37 +00:00
// Its value is number of all existing hyphae. NonEmptyHypha mutators are expected to manipulate the value. It is concurrent-safe.
var count = struct {
value int
sync.Mutex
}{}
// ResetCount sets the value of hyphae count to zero. Use when reloading hyphae.
func ResetCount() {
2021-02-20 14:03:54 +00:00
count.Lock()
count.value = 0
count.Unlock()
}
2022-02-19 08:26:38 +00:00
// Count how many hyphae there are. This is a O(1), the number of hyphae is stored in memory.
2021-12-20 20:59:23 +00:00
func Count() int {
count.Lock()
defer count.Unlock()
return count.value
}
// incrementCount increments the value of the hyphae counter. Use when creating new hyphae or loading hyphae from disk.
func incrementCount() {
count.Lock()
count.value++
count.Unlock()
}
2021-12-20 20:59:23 +00:00
// decrementCount decrements the value of the hyphae counter. Use when deleting existing hyphae.
func decrementCount() {
count.Lock()
count.value--
count.Unlock()
}