mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-13 05:50:27 +00:00
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)
|
||
|
}
|