2011-10-08 09:57:10 +00:00
|
|
|
package state
|
2009-12-17 17:22:31 +00:00
|
|
|
|
|
|
|
import (
|
2011-11-13 14:02:12 +00:00
|
|
|
"github.com/fluffle/golog/logging"
|
2009-12-17 17:22:31 +00:00
|
|
|
)
|
|
|
|
|
2011-09-28 19:48:58 +00:00
|
|
|
// The state manager interface
|
2013-02-16 11:29:56 +00:00
|
|
|
type Tracker interface {
|
2011-10-19 23:10:33 +00:00
|
|
|
// Nick methods
|
2011-09-28 19:48:58 +00:00
|
|
|
NewNick(nick string) *Nick
|
|
|
|
GetNick(nick string) *Nick
|
2011-10-06 22:54:34 +00:00
|
|
|
ReNick(old, neu string)
|
|
|
|
DelNick(nick string)
|
2011-10-19 23:10:33 +00:00
|
|
|
// Channel methods
|
2011-09-28 19:48:58 +00:00
|
|
|
NewChannel(channel string) *Channel
|
|
|
|
GetChannel(channel string) *Channel
|
2011-10-06 22:54:34 +00:00
|
|
|
DelChannel(channel string)
|
2011-10-19 23:10:33 +00:00
|
|
|
// Information about ME!
|
|
|
|
Me() *Nick
|
|
|
|
// And the tracking operations
|
2011-10-27 16:03:01 +00:00
|
|
|
IsOn(channel, nick string) (*ChanPrivs, bool)
|
|
|
|
Associate(channel *Channel, nick *Nick) *ChanPrivs
|
2011-10-19 23:10:33 +00:00
|
|
|
Dissociate(channel *Channel, nick *Nick)
|
2011-11-05 02:25:25 +00:00
|
|
|
Wipe()
|
2011-11-05 09:30:32 +00:00
|
|
|
// The state tracker can output a debugging string
|
|
|
|
String() string
|
2011-09-28 19:48:58 +00:00
|
|
|
}
|
|
|
|
|
2011-10-19 23:10:33 +00:00
|
|
|
// ... and a struct to implement it ...
|
2011-09-28 19:48:58 +00:00
|
|
|
type stateTracker struct {
|
|
|
|
// Map of channels we're on
|
|
|
|
chans map[string]*Channel
|
|
|
|
// Map of nicks we know about
|
|
|
|
nicks map[string]*Nick
|
|
|
|
|
2011-10-19 23:10:33 +00:00
|
|
|
// We need to keep state on who we are :-)
|
|
|
|
me *Nick
|
|
|
|
}
|
2009-12-18 22:39:22 +00:00
|
|
|
|
2011-11-05 02:25:25 +00:00
|
|
|
// ... and a constructor to make it ...
|
2013-01-23 22:33:01 +00:00
|
|
|
func NewTracker(mynick string) *stateTracker {
|
2011-10-19 23:10:33 +00:00
|
|
|
st := &stateTracker{
|
2011-10-13 21:48:04 +00:00
|
|
|
chans: make(map[string]*Channel),
|
|
|
|
nicks: make(map[string]*Nick),
|
|
|
|
}
|
2011-10-19 23:10:33 +00:00
|
|
|
st.me = st.NewNick(mynick)
|
|
|
|
return st
|
2011-10-08 09:40:58 +00:00
|
|
|
}
|
|
|
|
|
2011-11-05 02:25:25 +00:00
|
|
|
// ... and a method to wipe the state clean.
|
|
|
|
func (st *stateTracker) Wipe() {
|
|
|
|
// Deleting all the channels implicitly deletes every nick but me.
|
|
|
|
for _, ch := range st.chans {
|
|
|
|
st.delChannel(ch)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-19 23:10:33 +00:00
|
|
|
/******************************************************************************\
|
|
|
|
* tracker methods to create/look up nicks/channels
|
|
|
|
\******************************************************************************/
|
|
|
|
|
2011-10-08 09:57:10 +00:00
|
|
|
// Creates a new Nick, initialises it, and stores it so it
|
2009-12-18 22:39:22 +00:00
|
|
|
// can be properly tracked for state management purposes.
|
2011-10-19 23:10:33 +00:00
|
|
|
func (st *stateTracker) NewNick(n string) *Nick {
|
|
|
|
if _, ok := st.nicks[n]; ok {
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Warn("Tracker.NewNick(): %s already tracked.", n)
|
2011-10-12 21:59:52 +00:00
|
|
|
return nil
|
|
|
|
}
|
2013-01-23 22:33:01 +00:00
|
|
|
st.nicks[n] = NewNick(n)
|
2011-10-19 23:10:33 +00:00
|
|
|
return st.nicks[n]
|
2009-12-17 17:22:31 +00:00
|
|
|
}
|
|
|
|
|
2011-10-08 09:57:10 +00:00
|
|
|
// Returns a Nick for the nick n, if we're tracking it.
|
2011-09-28 19:48:58 +00:00
|
|
|
func (st *stateTracker) GetNick(n string) *Nick {
|
2011-10-19 23:10:33 +00:00
|
|
|
if nk, ok := st.nicks[n]; ok {
|
|
|
|
return nk
|
2009-12-17 17:22:31 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2011-10-08 09:57:10 +00:00
|
|
|
// Signals to the tracker that a Nick should be tracked
|
2011-10-06 22:54:34 +00:00
|
|
|
// under a "neu" nick rather than the old one.
|
|
|
|
func (st *stateTracker) ReNick(old, neu string) {
|
2011-10-19 23:10:33 +00:00
|
|
|
if nk, ok := st.nicks[old]; ok {
|
2011-10-13 19:44:44 +00:00
|
|
|
if _, ok := st.nicks[neu]; !ok {
|
2011-10-19 23:10:33 +00:00
|
|
|
nk.Nick = neu
|
2011-11-13 13:32:53 +00:00
|
|
|
delete(st.nicks, old)
|
2011-10-19 23:10:33 +00:00
|
|
|
st.nicks[neu] = nk
|
2011-10-19 23:23:54 +00:00
|
|
|
for ch, _ := range nk.chans {
|
|
|
|
// We also need to update the lookup maps of all the channels
|
|
|
|
// the nick is on, to keep things in sync.
|
2011-11-13 13:32:53 +00:00
|
|
|
delete(ch.lookup, old)
|
2011-10-19 23:23:54 +00:00
|
|
|
ch.lookup[neu] = nk
|
|
|
|
}
|
2011-10-13 19:44:44 +00:00
|
|
|
} else {
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Warn("Tracker.ReNick(): %s already exists.", neu)
|
2011-10-13 19:44:44 +00:00
|
|
|
}
|
2011-10-12 21:59:52 +00:00
|
|
|
} else {
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Warn("Tracker.ReNick(): %s not tracked.", old)
|
2011-10-06 22:54:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-08 09:57:10 +00:00
|
|
|
// Removes a Nick from being tracked.
|
2011-10-06 22:54:34 +00:00
|
|
|
func (st *stateTracker) DelNick(n string) {
|
2011-10-19 23:10:33 +00:00
|
|
|
if nk, ok := st.nicks[n]; ok {
|
|
|
|
if nk != st.me {
|
|
|
|
st.delNick(nk)
|
|
|
|
} else {
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Warn("Tracker.DelNick(): won't delete myself.")
|
2011-10-19 23:10:33 +00:00
|
|
|
}
|
2011-10-12 21:59:52 +00:00
|
|
|
} else {
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Warn("Tracker.DelNick(): %s not tracked.", n)
|
2011-10-06 22:54:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-19 23:10:33 +00:00
|
|
|
func (st *stateTracker) delNick(nk *Nick) {
|
|
|
|
if nk == st.me {
|
|
|
|
// Shouldn't get here => internal state tracking code is fubar.
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Error("Tracker.DelNick(): TRYING TO DELETE ME :-(")
|
2011-10-19 23:10:33 +00:00
|
|
|
return
|
|
|
|
}
|
2011-11-13 13:32:53 +00:00
|
|
|
delete(st.nicks, nk.Nick)
|
2011-10-19 23:10:33 +00:00
|
|
|
for ch, _ := range nk.chans {
|
|
|
|
nk.delChannel(ch)
|
|
|
|
ch.delNick(nk)
|
|
|
|
if len(ch.nicks) == 0 {
|
|
|
|
// Deleting a nick from tracking shouldn't empty any channels as
|
|
|
|
// *we* should be on the channel with them to be tracking them.
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Error("Tracker.delNick(): deleting nick %s emptied "+
|
2011-10-22 22:57:22 +00:00
|
|
|
"channel %s, this shouldn't happen!", nk.Nick, ch.Name)
|
2011-10-19 23:10:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-08 09:57:10 +00:00
|
|
|
// Creates a new Channel, initialises it, and stores it so it
|
2009-12-18 22:39:22 +00:00
|
|
|
// can be properly tracked for state management purposes.
|
2011-09-28 19:48:58 +00:00
|
|
|
func (st *stateTracker) NewChannel(c string) *Channel {
|
2011-10-13 21:31:09 +00:00
|
|
|
if _, ok := st.chans[c]; ok {
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Warn("Tracker.NewChannel(): %s already tracked.", c)
|
2011-10-13 21:31:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
2013-01-23 22:33:01 +00:00
|
|
|
st.chans[c] = NewChannel(c)
|
2011-10-13 21:48:04 +00:00
|
|
|
return st.chans[c]
|
2009-12-17 17:22:31 +00:00
|
|
|
}
|
|
|
|
|
2011-10-08 09:57:10 +00:00
|
|
|
// Returns a Channel for the channel c, if we're tracking it.
|
2011-09-28 19:48:58 +00:00
|
|
|
func (st *stateTracker) GetChannel(c string) *Channel {
|
|
|
|
if ch, ok := st.chans[c]; ok {
|
2009-12-17 17:22:31 +00:00
|
|
|
return ch
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2011-10-08 09:57:10 +00:00
|
|
|
// Removes a Channel from being tracked.
|
2011-10-06 22:54:34 +00:00
|
|
|
func (st *stateTracker) DelChannel(c string) {
|
2011-10-19 23:10:33 +00:00
|
|
|
if ch, ok := st.chans[c]; ok {
|
|
|
|
st.delChannel(ch)
|
|
|
|
} else {
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Warn("Tracker.DelChannel(): %s not tracked.", c)
|
2011-10-06 22:54:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-19 23:10:33 +00:00
|
|
|
func (st *stateTracker) delChannel(ch *Channel) {
|
2011-11-13 13:32:53 +00:00
|
|
|
delete(st.chans, ch.Name)
|
2011-10-19 23:10:33 +00:00
|
|
|
for nk, _ := range ch.nicks {
|
|
|
|
ch.delNick(nk)
|
|
|
|
nk.delChannel(ch)
|
|
|
|
if len(nk.chans) == 0 && nk != st.me {
|
|
|
|
// We're no longer in any channels with this nick.
|
|
|
|
st.delNick(nk)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the Nick the state tracker thinks is Me.
|
|
|
|
func (st *stateTracker) Me() *Nick {
|
|
|
|
return st.me
|
|
|
|
}
|
|
|
|
|
2011-10-08 09:57:10 +00:00
|
|
|
// Returns true if both the channel c and the nick n are tracked
|
|
|
|
// and the nick is associated with the channel.
|
2011-10-27 16:03:01 +00:00
|
|
|
func (st *stateTracker) IsOn(c, n string) (*ChanPrivs, bool) {
|
2011-10-06 22:54:34 +00:00
|
|
|
nk := st.GetNick(n)
|
|
|
|
ch := st.GetChannel(c)
|
|
|
|
if nk != nil && ch != nil {
|
|
|
|
return nk.IsOn(ch)
|
|
|
|
}
|
2011-10-27 16:03:01 +00:00
|
|
|
return nil, false
|
2011-10-06 22:54:34 +00:00
|
|
|
}
|
2011-10-19 23:10:33 +00:00
|
|
|
|
|
|
|
// Associates an already known nick with an already known channel.
|
2011-10-27 16:03:01 +00:00
|
|
|
func (st *stateTracker) Associate(ch *Channel, nk *Nick) *ChanPrivs {
|
2011-10-19 23:10:33 +00:00
|
|
|
if ch == nil || nk == nil {
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Error("Tracker.Associate(): passed nil values :-(")
|
2011-10-27 16:03:01 +00:00
|
|
|
return nil
|
2011-10-27 16:54:23 +00:00
|
|
|
} else if _ch, ok := st.chans[ch.Name]; !ok || ch != _ch {
|
|
|
|
// As we can implicitly delete both nicks and channels from being
|
|
|
|
// tracked by dissociating one from the other, we should verify that
|
|
|
|
// we're not being passed an old Nick or Channel.
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Error("Tracker.Associate(): channel %s not found in "+
|
2011-10-27 16:54:23 +00:00
|
|
|
"(or differs from) internal state.", ch.Name)
|
2013-01-23 22:33:01 +00:00
|
|
|
return nil
|
2011-10-27 16:54:23 +00:00
|
|
|
} else if _nk, ok := st.nicks[nk.Nick]; !ok || nk != _nk {
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Error("Tracker.Associate(): nick %s not found in "+
|
2011-10-27 16:54:23 +00:00
|
|
|
"(or differs from) internal state.", nk.Nick)
|
2013-01-23 22:33:01 +00:00
|
|
|
return nil
|
2011-10-27 16:54:23 +00:00
|
|
|
} else if _, ok := nk.IsOn(ch); ok {
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Warn("Tracker.Associate(): %s already on %s.",
|
2011-10-19 23:10:33 +00:00
|
|
|
nk.Nick, ch.Name)
|
2011-10-27 16:03:01 +00:00
|
|
|
return nil
|
2011-10-19 23:10:33 +00:00
|
|
|
}
|
|
|
|
cp := new(ChanPrivs)
|
|
|
|
ch.addNick(nk, cp)
|
|
|
|
nk.addChannel(ch, cp)
|
2011-10-27 16:03:01 +00:00
|
|
|
return cp
|
2011-10-19 23:10:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Dissociates an already known nick from an already known channel.
|
|
|
|
// Does some tidying up to stop tracking nicks we're no longer on
|
|
|
|
// any common channels with, and channels we're no longer on.
|
|
|
|
func (st *stateTracker) Dissociate(ch *Channel, nk *Nick) {
|
2011-10-27 16:03:01 +00:00
|
|
|
if ch == nil || nk == nil {
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Error("Tracker.Dissociate(): passed nil values :-(")
|
2011-10-27 16:54:23 +00:00
|
|
|
} else if _ch, ok := st.chans[ch.Name]; !ok || ch != _ch {
|
|
|
|
// As we can implicitly delete both nicks and channels from being
|
|
|
|
// tracked by dissociating one from the other, we should verify that
|
|
|
|
// we're not being passed an old Nick or Channel.
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Error("Tracker.Dissociate(): channel %s not found in "+
|
2011-10-27 16:54:23 +00:00
|
|
|
"(or differs from) internal state.", ch.Name)
|
|
|
|
} else if _nk, ok := st.nicks[nk.Nick]; !ok || nk != _nk {
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Error("Tracker.Dissociate(): nick %s not found in "+
|
2011-10-27 16:54:23 +00:00
|
|
|
"(or differs from) internal state.", nk.Nick)
|
2011-10-27 16:03:01 +00:00
|
|
|
} else if _, ok := nk.IsOn(ch); !ok {
|
2013-02-16 11:29:56 +00:00
|
|
|
logging.Warn("Tracker.Dissociate(): %s not on %s.",
|
2011-10-19 23:10:33 +00:00
|
|
|
nk.Nick, ch.Name)
|
2011-10-27 16:03:01 +00:00
|
|
|
} else if nk == st.me {
|
2011-10-19 23:10:33 +00:00
|
|
|
// I'm leaving the channel for some reason, so it won't be tracked.
|
|
|
|
st.delChannel(ch)
|
2011-10-27 16:03:01 +00:00
|
|
|
} else {
|
2011-10-19 23:10:33 +00:00
|
|
|
// Remove the nick from the channel and the channel from the nick.
|
|
|
|
ch.delNick(nk)
|
|
|
|
nk.delChannel(ch)
|
|
|
|
if len(nk.chans) == 0 {
|
|
|
|
// We're no longer in any channels with this nick.
|
|
|
|
st.delNick(nk)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-11-05 06:06:59 +00:00
|
|
|
|
|
|
|
func (st *stateTracker) String() string {
|
|
|
|
str := "GoIRC Channels\n"
|
|
|
|
str += "--------------\n\n"
|
|
|
|
for _, ch := range st.chans {
|
|
|
|
str += ch.String() + "\n"
|
|
|
|
}
|
|
|
|
str += "GoIRC NickNames\n"
|
|
|
|
str += "---------------\n\n"
|
|
|
|
for _, n := range st.nicks {
|
|
|
|
if n != st.me {
|
|
|
|
str += n.String() + "\n"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return str
|
|
|
|
}
|