mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 13:30:26 +00:00
938a9e832d
Basically, it looks if the query is a substring of hypha names
28 lines
624 B
Go
28 lines
624 B
Go
package shroom
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/bouncepaw/mycorrhiza/hyphae"
|
|
"github.com/bouncepaw/mycorrhiza/util"
|
|
)
|
|
|
|
func YieldHyphaNamesContainingString(query string) <-chan string {
|
|
query = util.CanonicalName(query)
|
|
out := make(chan string)
|
|
go func() {
|
|
for h := range hyphae.YieldExistingHyphae() {
|
|
if hyphaNameMatchesString(h.Name, query) {
|
|
out <- h.Name
|
|
}
|
|
}
|
|
close(out)
|
|
}()
|
|
return out
|
|
}
|
|
|
|
// This thing gotta be changed one day, when a hero has time to implement a good searching algorithm.
|
|
func hyphaNameMatchesString(hyphaName, query string) bool {
|
|
return strings.Contains(hyphaName, query)
|
|
}
|