catbase/plugins/babbler/babbler.go

872 lines
20 KiB
Go
Raw Normal View History

2016-05-09 20:45:02 +00:00
// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
package babbler
import (
"database/sql"
"errors"
2016-05-09 20:45:02 +00:00
"fmt"
2021-12-20 17:40:10 +00:00
bh "github.com/timshannon/bolthold"
"github.com/velour/catbase/plugins/remember"
2016-05-09 20:45:02 +00:00
"math/rand"
2021-02-01 15:45:41 +00:00
"regexp"
2016-05-09 20:45:02 +00:00
"strings"
2019-03-07 16:35:42 +00:00
"github.com/rs/zerolog/log"
2016-05-09 20:45:02 +00:00
"github.com/velour/catbase/bot"
"github.com/velour/catbase/bot/msg"
)
var (
NO_BABBLER = errors.New("babbler not found")
SAID_NOTHING = errors.New("hasn't said anything yet")
NEVER_SAID = errors.New("never said that")
)
2016-05-09 20:45:02 +00:00
type BabblerPlugin struct {
Bot bot.Bot
2021-12-20 17:40:10 +00:00
store *bh.Store
WithGoRoutines bool
2021-02-01 15:45:41 +00:00
handlers bot.HandlerTable
2016-05-09 20:45:02 +00:00
}
type Babbler struct {
2021-12-20 17:40:10 +00:00
BabblerId int64 `db:"id" boltholdid:"BabblerId"`
Name string `db:"babbler"`
}
2021-12-20 17:40:10 +00:00
func getBabbler(store *bh.Store, id int64) (*Babbler, error) {
res := &Babbler{}
err := store.Get(id, res)
return res, err
}
type BabblerWord struct {
2021-12-20 17:40:10 +00:00
WordId int64 `db:"id" boltholdid:"WordId"`
Word string `db:"word"`
}
2021-12-20 17:40:10 +00:00
func getWord(store *bh.Store, id int64) (*BabblerWord, error) {
res := &BabblerWord{}
err := store.Get(id, res)
return res, err
}
type BabblerNode struct {
2021-12-20 17:40:10 +00:00
NodeId int64 `db:"id" boltholdid:"NodeId"`
BabblerId int64 `db:"babblerId"`
WordId int64 `db:"wordId"`
Root int64 `db:"root"`
RootFrequency int64 `db:"rootFrequency"`
}
2021-12-20 17:40:10 +00:00
func getNode(store *bh.Store, id int64) (*BabblerNode, error) {
res := &BabblerNode{}
err := store.Get(id, res)
return res, err
}
type BabblerArc struct {
2021-12-20 17:40:10 +00:00
ArcId int64 `db:"id" boltholdid:"ArcId"`
FromNodeId int64 `db:"fromNodeId"`
ToNodeId int64 `db:"toNodeId"`
Frequency int64 `db:"frequency"`
}
2021-12-20 17:40:10 +00:00
func getArc(store *bh.Store, id int64) (*BabblerArc, error) {
res := &BabblerArc{}
err := store.Get(id, res)
return res, err
}
2016-05-09 20:45:02 +00:00
2021-12-20 17:40:10 +00:00
func New(b bot.Bot) *BabblerPlugin {
2016-05-09 20:45:02 +00:00
plugin := &BabblerPlugin{
Bot: b,
2021-12-20 17:40:10 +00:00
store: b.Store(),
WithGoRoutines: true,
2016-05-09 20:45:02 +00:00
}
plugin.createNewWord("")
2021-02-01 15:45:41 +00:00
plugin.register()
return plugin
}
2021-02-01 15:45:41 +00:00
func (p *BabblerPlugin) register() {
p.handlers = bot.HandlerTable{
bot.HandlerSpec{Kind: bot.Message, IsCmd: false,
Regex: regexp.MustCompile(`(?i)^(?P<who>\S+) says-bridge (?P<start>.+)\|(?P<end>.+)$`),
Handler: func(r bot.Request) bool {
who := r.Values["who"]
start := strings.Fields(strings.ToLower(r.Values["start"]))
end := strings.Fields(strings.ToLower(r.Values["end"]))
return p.sayIt(r, p.getBabbleWithBookends(who, start, end))
}},
bot.HandlerSpec{Kind: bot.Message, IsCmd: false,
Regex: regexp.MustCompile(`(?i)^(?P<who>\S+) says-tail (?P<what>.*)$`),
Handler: func(r bot.Request) bool {
who := r.Values["who"]
what := strings.Fields(strings.ToLower(r.Values["what"]))
return p.sayIt(r, p.getBabbleWithSuffix(who, what))
}},
bot.HandlerSpec{Kind: bot.Message, IsCmd: false,
Regex: regexp.MustCompile(`(?i)^(?P<who>\S+) says-middle-out (?P<what>.*)$`),
Handler: func(r bot.Request) bool {
who := r.Values["who"]
what := strings.ToLower(r.Values["what"])
tokens := strings.Fields(what)
saidSomething := false
saidWhat := ""
saidWhatStart := p.getBabbleWithSuffix(who, tokens)
saidSomethingStart := saidWhatStart != ""
neverSaidLooksLike := fmt.Sprintf("%s never said", who)
if !saidSomethingStart || strings.HasPrefix(saidWhatStart, neverSaidLooksLike) {
saidSomething = saidSomethingStart
saidWhat = saidWhatStart
} else {
saidWhatEnd := p.getBabble(who, tokens)
saidSomethingEnd := saidWhatEnd != ""
saidSomething = saidSomethingStart && saidSomethingEnd
if saidSomething {
saidWhat = saidWhatStart + strings.TrimPrefix(saidWhatEnd, what)
}
}
return p.sayIt(r, saidWhat)
}},
bot.HandlerSpec{Kind: bot.Message, IsCmd: false, Regex: regexp.MustCompile(`(?i)^(?P<who>\S+) (says (?P<what>.*)?|says)$`),
Handler: func(r bot.Request) bool {
who := r.Values["who"]
what := strings.Fields(strings.ToLower(r.Values["what"]))
return p.sayIt(r, p.getBabble(who, what))
}},
bot.HandlerSpec{Kind: bot.Message, IsCmd: false,
Regex: regexp.MustCompile(`(?i)^initialize babbler for (?P<who>\S+)$`),
Handler: func(r bot.Request) bool {
who := r.Values["who"]
return p.sayIt(r, p.initializeBabbler(who))
}},
bot.HandlerSpec{Kind: bot.Message, IsCmd: false,
Regex: regexp.MustCompile(`(?i)^merge babbler (?P<from>\S+) into (?P<to>\S+)$`),
Handler: func(r bot.Request) bool {
from, to := r.Values["from"], r.Values["to"]
return p.sayIt(r, p.merge(from, to))
}},
bot.HandlerSpec{Kind: bot.Message, IsCmd: false,
Regex: regexp.MustCompile(`.*`),
Handler: func(r bot.Request) bool {
p.addToBabbler(r.Msg.User.Name, strings.ToLower(r.Msg.Body))
return false
}},
2016-05-09 20:45:02 +00:00
}
2021-02-01 15:45:41 +00:00
p.Bot.RegisterTable(p, p.handlers)
p.Bot.Register(p, bot.Help, p.help)
}
2016-05-09 20:45:02 +00:00
2021-02-01 15:45:41 +00:00
func (p *BabblerPlugin) sayIt(r bot.Request, what string) bool {
if what != "" {
p.Bot.Send(r.Conn, bot.Message, r.Msg.Channel, what)
}
2021-02-01 15:45:41 +00:00
return what != ""
2016-05-09 20:45:02 +00:00
}
2019-05-27 23:21:53 +00:00
func (p *BabblerPlugin) help(c bot.Connector, kind bot.Kind, msg msg.Message, args ...interface{}) bool {
2017-06-08 00:02:18 +00:00
commands := []string{
"initialize babbler for seabass",
"merge babbler drseabass into seabass",
"seabass says ...",
"seabass says-tail ...",
"seabass says-middle-out ...",
2017-06-08 00:02:18 +00:00
"seabass says-bridge ... | ...",
}
2019-05-27 23:21:53 +00:00
p.Bot.Send(c, bot.Message, msg.Channel, strings.Join(commands, "\n\n"))
return true
2016-05-09 20:45:02 +00:00
}
func (p *BabblerPlugin) makeBabbler(name string) (*Babbler, error) {
2021-12-20 17:40:10 +00:00
b := &Babbler{
Name: name,
}
2021-12-20 17:40:10 +00:00
err := p.store.Insert(bh.NextSequence(), b)
if err != nil {
log.Error().Err(err)
return nil, err
}
return b, err
}
2016-05-09 20:45:02 +00:00
func (p *BabblerPlugin) getBabbler(name string) (*Babbler, error) {
var bblr Babbler
2021-12-20 17:40:10 +00:00
err := p.store.FindOne(&bblr, bh.Where("babbler").Eq(name))
if err != nil {
if err == sql.ErrNoRows {
2019-03-07 16:35:42 +00:00
log.Error().Msg("failed to find babbler")
return nil, NO_BABBLER
}
2019-03-07 16:35:42 +00:00
log.Error().Err(err).Msg("encountered problem in babbler lookup")
return nil, err
}
return &bblr, nil
}
2016-05-09 20:45:02 +00:00
func (p *BabblerPlugin) getOrCreateBabbler(name string) (*Babbler, error) {
babbler, err := p.getBabbler(name)
if err == NO_BABBLER {
babbler, err = p.makeBabbler(name)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, err
}
2021-12-20 17:40:10 +00:00
quotes := remember.AllQuotesFrom(p.store, babbler.Name)
for _, q := range quotes {
if err = p.addToMarkovChain(babbler, q.Tidbit); err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
}
2016-05-09 20:45:02 +00:00
}
}
return babbler, err
}
2016-05-09 20:45:02 +00:00
func (p *BabblerPlugin) getWord(word string) (*BabblerWord, error) {
var w BabblerWord
2021-12-20 17:40:10 +00:00
err := p.store.FindOne(&w, bh.Where("word").Eq(word).Limit(1))
if err != nil {
2021-12-20 17:40:10 +00:00
if err == bh.ErrNotFound {
return nil, NEVER_SAID
}
return nil, err
}
return &w, nil
}
func (p *BabblerPlugin) createNewWord(word string) (*BabblerWord, error) {
2021-12-20 17:40:10 +00:00
w := &BabblerWord{Word: word}
err := p.store.Insert(bh.NextSequence(), w)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, err
}
2021-12-20 17:40:10 +00:00
return w, nil
}
func (p *BabblerPlugin) getOrCreateWord(word string) (*BabblerWord, error) {
if w, err := p.getWord(word); err == NEVER_SAID {
return p.createNewWord(word)
} else {
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
}
return w, err
}
}
func (p *BabblerPlugin) getBabblerNode(babbler *Babbler, word string) (*BabblerNode, error) {
w, err := p.getWord(word)
if err != nil {
return nil, err
}
var node BabblerNode
2021-12-20 17:40:10 +00:00
err = p.store.FindOne(&node, bh.Where("babblerId").Eq(babbler.BabblerId).And("wordId").Eq(w.WordId))
if err != nil {
2021-12-20 17:40:10 +00:00
if err == bh.ErrNotFound {
return nil, NEVER_SAID
}
return nil, err
}
return &node, nil
}
func (p *BabblerPlugin) createBabblerNode(babbler *Babbler, word string) (*BabblerNode, error) {
w, err := p.getOrCreateWord(word)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, err
}
2021-12-20 17:40:10 +00:00
bn := &BabblerNode{
WordId: w.WordId,
Root: 0,
RootFrequency: 0,
}
2021-12-20 17:40:10 +00:00
err = p.store.Insert(bh.NextSequence(), bn)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, err
}
2021-12-20 17:40:10 +00:00
return bn, nil
}
func (p *BabblerPlugin) getOrCreateBabblerNode(babbler *Babbler, word string) (*BabblerNode, error) {
node, err := p.getBabblerNode(babbler, word)
if err != nil {
return p.createBabblerNode(babbler, word)
}
return node, nil
}
func (p *BabblerPlugin) incrementRootWordFrequency(babbler *Babbler, word string) (*BabblerNode, error) {
node, err := p.getOrCreateBabblerNode(babbler, word)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, err
}
2021-12-20 17:40:10 +00:00
err = p.store.UpdateMatching(BabblerNode{}, bh.Where("id").Eq(node.NodeId), func(record interface{}) error {
r := record.(BabblerNode)
r.RootFrequency += 1
r.Root = 1
return p.store.Update(r.NodeId, r)
})
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, err
}
node.RootFrequency += 1
return node, nil
}
func (p *BabblerPlugin) getBabblerArc(fromNode, toNode *BabblerNode) (*BabblerArc, error) {
var arc BabblerArc
2021-12-20 17:40:10 +00:00
err := p.store.FindOne(&arc, bh.Where("fromNodeId").Eq(fromNode.NodeId).And("toNodeId").Eq(toNode.NodeId))
if err != nil {
2021-12-20 17:40:10 +00:00
if err == bh.ErrNotFound {
return nil, NEVER_SAID
}
return nil, err
}
return &arc, nil
}
func (p *BabblerPlugin) incrementWordArc(fromNode, toNode *BabblerNode) (*BabblerArc, error) {
2021-12-20 17:40:10 +00:00
affectedRows := 0
err := p.store.UpdateMatching(BabblerArc{},
bh.Where("fromNodeId").Eq(fromNode.NodeId).And("toNodeId").Eq(toNode.NodeId),
func(record interface{}) error {
affectedRows++
r := record.(BabblerArc)
r.Frequency += 1
return p.store.Update(r.ArcId, r)
})
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, err
}
if affectedRows == 0 {
2021-12-20 17:40:10 +00:00
p.store.Insert(bh.NextSequence(), BabblerArc{
FromNodeId: fromNode.NodeId,
ToNodeId: toNode.NodeId,
Frequency: 1,
})
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, err
2016-05-09 20:45:02 +00:00
}
}
2021-12-20 17:40:10 +00:00
return p.getBabblerArc(fromNode, toNode)
2016-05-09 20:45:02 +00:00
}
func (p *BabblerPlugin) incrementFinalWordArcHelper(babbler *Babbler, node *BabblerNode) (*BabblerArc, error) {
nextNode, err := p.getOrCreateBabblerNode(babbler, " ")
if err != nil {
return nil, err
2016-05-09 20:45:02 +00:00
}
return p.incrementWordArc(node, nextNode)
2016-05-09 20:45:02 +00:00
}
func (p *BabblerPlugin) addToMarkovChain(babbler *Babbler, phrase string) error {
words := strings.Fields(strings.ToLower(phrase))
if len(words) <= 0 {
return nil
}
curNode, err := p.incrementRootWordFrequency(babbler, words[0])
2016-05-09 20:45:02 +00:00
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return err
2016-05-09 20:45:02 +00:00
}
for i := 1; i < len(words); i++ {
nextNode, err := p.getOrCreateBabblerNode(babbler, words[i])
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return err
}
_, err = p.incrementWordArc(curNode, nextNode)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return err
}
curNode = nextNode
}
2016-05-09 20:45:02 +00:00
_, err = p.incrementFinalWordArcHelper(babbler, curNode)
return err
}
2016-05-09 20:45:02 +00:00
func (p *BabblerPlugin) getWeightedRootNode(babbler *Babbler) (*BabblerNode, *BabblerWord, error) {
2021-12-20 17:40:10 +00:00
rootNodes := []*BabblerNode{}
err := p.store.Find(&rootNodes, bh.Where("babblerId").Eq(babbler.BabblerId).And("root").Eq(1))
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, nil, err
}
total := int64(0)
2021-12-20 17:40:10 +00:00
for _, n := range rootNodes {
total += n.RootFrequency
2016-05-09 20:45:02 +00:00
}
if len(rootNodes) == 0 {
return nil, nil, SAID_NOTHING
}
which := rand.Int63n(total)
total = 0
for _, node := range rootNodes {
total += node.RootFrequency
if total >= which {
2021-12-20 17:40:10 +00:00
w, err := getWord(p.store, node.WordId)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, nil, err
}
2021-12-20 17:40:10 +00:00
return node, w, nil
}
}
2019-03-07 16:35:42 +00:00
log.Fatal().Msg("failed to find weighted root word")
return nil, nil, nil
2016-10-19 23:34:16 +00:00
}
func (p *BabblerPlugin) getWeightedNextWord(fromNode *BabblerNode) (*BabblerNode, *BabblerWord, error) {
2021-12-20 17:40:10 +00:00
arcs := []BabblerArc{}
err := p.store.Find(&arcs, bh.Where("fromNodeId").Eq(fromNode.NodeId))
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, nil, err
}
total := int64(0)
2021-12-20 17:40:10 +00:00
for _, a := range arcs {
total += a.Frequency
}
if len(arcs) == 0 {
return nil, nil, errors.New("missing arcs")
}
which := rand.Int63n(total)
total = 0
for _, arc := range arcs {
total += arc.Frequency
if total >= which {
2021-12-20 17:40:10 +00:00
node, err := getNode(p.store, arc.ToNodeId)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, nil, err
}
2021-12-20 17:40:10 +00:00
w, err := getWord(p.store, node.WordId)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, nil, err
}
2021-12-20 17:40:10 +00:00
return node, w, nil
}
}
2019-03-07 16:35:42 +00:00
log.Fatal().Msg("failed to find weighted next word")
return nil, nil, nil
}
func (p *BabblerPlugin) getWeightedPreviousWord(toNode *BabblerNode) (*BabblerNode, *BabblerWord, bool, error) {
2021-12-20 17:40:10 +00:00
arcs := []*BabblerArc{}
err := p.store.Find(&arcs, bh.Where("toNodeId").Eq(toNode.NodeId))
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, nil, false, err
}
total := int64(0)
2021-12-20 17:40:10 +00:00
for _, arc := range arcs {
total += arc.Frequency
}
if len(arcs) == 0 {
return nil, nil, true, nil
}
which := rand.Int63n(total + toNode.RootFrequency)
//terminate the babble
if which >= total {
return nil, nil, true, nil
}
total = 0
for _, arc := range arcs {
total += arc.Frequency
if total >= which {
2021-12-20 17:40:10 +00:00
node, err := getNode(p.store, arc.FromNodeId)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, nil, false, err
}
2021-12-20 17:40:10 +00:00
w, err := getWord(p.store, node.WordId)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, nil, false, err
}
2021-12-20 17:40:10 +00:00
return node, w, false, nil
}
}
2019-03-07 16:35:42 +00:00
log.Fatal().Msg("failed to find weighted previous word")
return nil, nil, false, nil
}
func (p *BabblerPlugin) verifyPhrase(babbler *Babbler, phrase []string) (*BabblerNode, *BabblerNode, error) {
curNode, err := p.getBabblerNode(babbler, phrase[0])
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, nil, err
}
firstNode := curNode
for i := 1; i < len(phrase); i++ {
nextNode, err := p.getBabblerNode(babbler, phrase[i])
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, nil, err
}
_, err = p.getBabblerArc(curNode, nextNode)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, nil, err
}
curNode = nextNode
}
return firstNode, curNode, nil
}
func (p *BabblerPlugin) babble(who string) (string, error) {
return p.babbleSeed(who, []string{})
}
func (p *BabblerPlugin) babbleSeed(babblerName string, seed []string) (string, error) {
babbler, err := p.getBabbler(babblerName)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return "", nil
}
words := seed
var curNode *BabblerNode
var curWord *BabblerWord
if len(seed) == 0 {
curNode, curWord, err = p.getWeightedRootNode(babbler)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return "", err
}
words = append(words, curWord.Word)
} else {
_, curNode, err = p.verifyPhrase(babbler, seed)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return "", err
}
}
2016-05-09 20:45:02 +00:00
for {
curNode, curWord, err = p.getWeightedNextWord(curNode)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return "", err
}
if curWord.Word == " " {
break
}
words = append(words, curWord.Word)
if len(words) >= 250 {
break
}
2016-05-09 20:45:02 +00:00
}
return strings.TrimSpace(strings.Join(words, " ")), nil
}
2016-05-26 15:06:22 +00:00
func (p *BabblerPlugin) mergeBabblers(intoBabbler, otherBabbler *Babbler, intoName, otherName string) error {
intoNode, err := p.getOrCreateBabblerNode(intoBabbler, "<"+intoName+">")
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return err
}
otherNode, err := p.getOrCreateBabblerNode(otherBabbler, "<"+otherName+">")
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return err
}
mapping := map[int64]*BabblerNode{}
2016-05-26 15:06:22 +00:00
2021-12-20 17:40:10 +00:00
nodes := []*BabblerNode{}
err = p.store.Find(&nodes, bh.Where("babblerId").Eq(otherBabbler.BabblerId))
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return err
}
2016-05-26 15:06:22 +00:00
for _, node := range nodes {
if node.NodeId == otherNode.NodeId {
node.WordId = intoNode.WordId
2016-05-26 15:06:22 +00:00
}
2021-12-20 17:40:10 +00:00
affected := 0
if node.Root > 0 {
2021-12-20 17:40:10 +00:00
err = p.store.UpdateMatching(BabblerNode{},
bh.Where("babblerId").Eq(intoBabbler.BabblerId).And("wordId").Eq(node.WordId),
func(record interface{}) error {
affected++
r := record.(BabblerNode)
r.RootFrequency += node.RootFrequency
r.Root = 1
return p.store.Update(r.BabblerId, r)
})
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
}
} else {
2021-12-20 17:40:10 +00:00
err = p.store.UpdateMatching(BabblerNode{},
bh.Where("babblerId").Eq(intoBabbler.BabblerId).And("wordId").Eq(node.WordId),
func(record interface{}) error {
affected++
r := record.(BabblerNode)
r.RootFrequency += node.RootFrequency
return p.store.Update(r.BabblerId, r)
})
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
}
}
2016-05-26 15:06:22 +00:00
2021-12-20 17:40:10 +00:00
if err != nil || affected == 0 {
node.BabblerId = intoBabbler.BabblerId
err = p.store.Insert(bh.NextSequence(), &node)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return err
2016-05-26 15:06:22 +00:00
}
}
var updatedNode BabblerNode
2021-12-20 17:40:10 +00:00
err = p.store.FindOne(&updatedNode,
bh.Where("babblerId").Eq(intoBabbler.BabblerId).And("wordId").Eq(node.WordId))
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return err
}
2016-05-26 15:06:22 +00:00
mapping[node.NodeId] = &updatedNode
}
for oldNodeId, newNode := range mapping {
2021-12-20 17:40:10 +00:00
arcs := []*BabblerArc{}
err = p.store.Find(&arcs, bh.Where("fromNodeId").Eq(oldNodeId))
if err != nil {
return err
}
for _, arc := range arcs {
_, err := p.incrementWordArc(newNode, mapping[arc.ToNodeId])
if err != nil {
return err
2016-05-26 15:06:22 +00:00
}
}
}
return err
2016-05-26 15:06:22 +00:00
}
func (p *BabblerPlugin) babbleSeedSuffix(babblerName string, seed []string) (string, error) {
babbler, err := p.getBabbler(babblerName)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return "", nil
}
firstNode, curNode, err := p.verifyPhrase(babbler, seed)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return "", err
}
words := []string{}
var curWord *BabblerWord
var shouldTerminate bool
curNode = firstNode
for {
curNode, curWord, shouldTerminate, err = p.getWeightedPreviousWord(curNode)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return "", err
}
if shouldTerminate {
break
}
words = append(words, curWord.Word)
if len(words) >= 250 {
break
}
}
2017-10-25 22:45:45 +00:00
for i := 0; i < len(words)/2; i++ {
index := len(words) - (i + 1)
words[i], words[index] = words[index], words[i]
}
words = append(words, seed...)
return strings.TrimSpace(strings.Join(words, " ")), nil
}
func (p *BabblerPlugin) getNextArcs(babblerNodeId int64) ([]*BabblerArc, error) {
arcs := []*BabblerArc{}
2021-12-20 17:40:10 +00:00
err := p.store.Find(&arcs, bh.Where("fromNodeId").Eq(babblerNodeId))
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return arcs, err
}
return arcs, nil
}
func (p *BabblerPlugin) getBabblerNodeById(nodeId int64) (*BabblerNode, error) {
2021-12-20 17:40:10 +00:00
node, err := getNode(p.store, nodeId)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return nil, err
}
2021-12-20 17:40:10 +00:00
return node, nil
}
func shuffle(a []*BabblerArc) {
2017-10-25 22:45:45 +00:00
for i := range a {
j := rand.Intn(i + 1)
a[i], a[j] = a[j], a[i]
}
}
func (p *BabblerPlugin) babbleSeedBookends(babblerName string, start, end []string) (string, error) {
babbler, err := p.getBabbler(babblerName)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return "", nil
}
_, startWordNode, err := p.verifyPhrase(babbler, start)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return "", err
}
endWordNode, _, err := p.verifyPhrase(babbler, end)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return "", err
}
type searchNode struct {
babblerNodeId int64
2017-10-25 22:45:45 +00:00
previous *searchNode
}
2019-05-27 23:21:53 +00:00
open := []*searchNode{{startWordNode.NodeId, nil}}
2017-10-25 22:45:45 +00:00
closed := map[int64]*searchNode{startWordNode.NodeId: open[0]}
goalNodeId := int64(-1)
for i := 0; i < len(open) && i < 1000; i++ {
cur := open[i]
arcs, err := p.getNextArcs(cur.babblerNodeId)
if err != nil {
return "", err
}
//add a little randomization in through child ordering
shuffle(arcs)
for _, arc := range arcs {
if _, ok := closed[arc.ToNodeId]; !ok {
child := &searchNode{arc.ToNodeId, cur}
open = append(open, child)
closed[arc.ToNodeId] = child
if arc.ToNodeId == endWordNode.NodeId {
goalNodeId = cur.babblerNodeId
//add a little randomization in through maybe searching beyond this solution?
if rand.Intn(4) == 0 {
break
}
}
}
}
}
if goalNodeId == -1 {
return "", errors.New("couldn't find path")
} else if closed[goalNodeId].previous == nil {
seeds := append(start, end...)
return strings.Join(seeds, " "), nil
}
words := []string{}
curSearchNode := closed[goalNodeId]
for {
cur, err := p.getBabblerNodeById(curSearchNode.babblerNodeId)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return "", err
}
2021-12-20 17:40:10 +00:00
w, err := getWord(p.store, cur.WordId)
if err != nil {
2019-03-07 16:35:42 +00:00
log.Error().Err(err)
return "", err
}
words = append(words, w.Word)
curSearchNode = closed[curSearchNode.previous.babblerNodeId]
if curSearchNode.previous == nil {
break
}
}
2017-10-25 22:45:45 +00:00
for i := 0; i < len(words)/2; i++ {
index := len(words) - (i + 1)
words[i], words[index] = words[index], words[i]
}
words = append(start, words...)
words = append(words, end...)
return strings.Join(words, " "), nil
}