package irc import ( "fmt" ) // // simple types // // a string with wildcards type Mask string // add, remove, list modes type ModeOp rune // user mode flags type UserMode rune func (mode UserMode) String() string { return fmt.Sprintf("%c", mode) } // channel mode flags type ChannelMode rune func (mode ChannelMode) String() string { return fmt.Sprintf("%c", mode) } // user-channel mode flags type UserChannelMode rune type ChannelNameMap map[string]*Channel func (channels ChannelNameMap) Add(channel *Channel) error { if channels[channel.name] != nil { return fmt.Errorf("%s: already set", channel.name) } channels[channel.name] = channel return nil } func (channels ChannelNameMap) Remove(channel *Channel) error { if channel != channels[channel.name] { return fmt.Errorf("%s: mismatch", channel.name) } delete(channels, channel.name) return nil } type ClientNameMap map[string]*Client func (clients ClientNameMap) Add(client *Client) error { if clients[client.nick] != nil { return fmt.Errorf("%s: already set", client.nick) } clients[client.nick] = client return nil } func (clients ClientNameMap) Remove(client *Client) error { if clients[client.nick] != client { return fmt.Errorf("%s: mismatch", client.nick) } delete(clients, client.nick) return nil } type ClientSet map[*Client]bool func (clients ClientSet) Add(client *Client) { clients[client] = true } func (clients ClientSet) Remove(client *Client) { delete(clients, client) } func (clients ClientSet) Has(client *Client) bool { return clients[client] } type ChannelSet map[*Channel]bool func (channels ChannelSet) Add(channel *Channel) { channels[channel] = true } func (channels ChannelSet) Remove(channel *Channel) { delete(channels, channel) } func (channels ChannelSet) First() *Channel { for channel := range channels { return channel } return nil } // // interfaces // type Identifier interface { Id() string Nick() string } type Replier interface { Reply(Reply) error } type Reply interface { Format(*Client, chan<- string) Source() Identifier } // commands the server understands // TODO rename ServerCommand type Command interface { Client() *Client Source() Identifier Reply(Reply) HandleServer(*Server) } type ChannelCommand interface { Command HandleChannel(channel *Channel) } // // structs // type UserMask struct { nickname Mask username Mask hostname Mask } func (mask *UserMask) String() string { return fmt.Sprintf("%s!%s@%s", mask.nickname, mask.username, mask.hostname) }