mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 13:30:26 +00:00
30 lines
843 B
Go
30 lines
843 B
Go
package shroom
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/bouncepaw/mycorrhiza/hyphae"
|
|
"github.com/bouncepaw/mycorrhiza/util"
|
|
)
|
|
|
|
// YieldHyphaNamesContainingString picks hyphae with have a string in their title, sorts and iterates over them in alphabetical order.
|
|
func YieldHyphaNamesContainingString(query string) <-chan string {
|
|
query = util.CanonicalName(strings.TrimSpace(query))
|
|
out := make(chan string)
|
|
sorted := hyphae.PathographicSort(out)
|
|
go func() {
|
|
for h := range hyphae.YieldExistingHyphae() {
|
|
if hyphaNameMatchesString(h.CanonicalName(), query) {
|
|
out <- h.CanonicalName()
|
|
}
|
|
}
|
|
close(out)
|
|
}()
|
|
return sorted
|
|
}
|
|
|
|
// 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)
|
|
}
|