2020-06-13 07:29:32 +00:00
|
|
|
package container
|
|
|
|
|
|
|
|
import (
|
2020-10-24 21:58:48 +00:00
|
|
|
"container/list"
|
2020-10-23 06:21:34 +00:00
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
"github.com/diamondburned/cchat"
|
|
|
|
"github.com/diamondburned/cchat-gtk/internal/log"
|
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/messages/input"
|
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/primitives"
|
|
|
|
"github.com/gotk3/gotk3/gtk"
|
2020-08-20 23:53:13 +00:00
|
|
|
"github.com/pkg/errors"
|
2020-06-13 07:29:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type GridStore struct {
|
2020-07-03 03:22:48 +00:00
|
|
|
*gtk.Grid
|
2020-06-13 07:29:32 +00:00
|
|
|
|
|
|
|
Construct Constructor
|
|
|
|
Controller Controller
|
|
|
|
|
2020-11-06 04:01:00 +00:00
|
|
|
resetMe bool
|
|
|
|
|
2020-10-24 21:58:48 +00:00
|
|
|
messages map[string]*gridMessage
|
|
|
|
messageList *list.List
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewGridStore(constr Constructor, ctrl Controller) *GridStore {
|
|
|
|
grid, _ := gtk.GridNew()
|
|
|
|
grid.SetColumnSpacing(ColumnSpacing)
|
|
|
|
grid.SetRowSpacing(5)
|
|
|
|
grid.SetMarginStart(5)
|
|
|
|
grid.SetMarginEnd(5)
|
|
|
|
grid.Show()
|
|
|
|
|
|
|
|
primitives.AddClass(grid, "message-grid")
|
|
|
|
|
|
|
|
return &GridStore{
|
2020-10-24 21:58:48 +00:00
|
|
|
Grid: grid,
|
|
|
|
Construct: constr,
|
|
|
|
Controller: ctrl,
|
2020-11-06 04:01:00 +00:00
|
|
|
messages: make(map[string]*gridMessage, BacklogLimit+1),
|
2020-10-24 21:58:48 +00:00
|
|
|
messageList: list.New(),
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-06 04:01:00 +00:00
|
|
|
func (c *GridStore) Reset() {
|
|
|
|
primitives.RemoveChildren(c.Grid)
|
|
|
|
c.messages = make(map[string]*gridMessage, BacklogLimit+1)
|
|
|
|
c.messageList = list.New()
|
|
|
|
}
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
func (c *GridStore) MessagesLen() int {
|
2020-10-24 21:58:48 +00:00
|
|
|
return c.messageList.Len()
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
|
2020-10-21 23:47:17 +00:00
|
|
|
func (c *GridStore) attachGrid(row int, widgets []gtk.IWidget) {
|
|
|
|
for i, w := range widgets {
|
|
|
|
c.Grid.Attach(w, i, row, 1, 1)
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-24 21:58:48 +00:00
|
|
|
func (c *GridStore) findElement(id cchat.ID) (*list.Element, *gridMessage, int) {
|
|
|
|
var index = c.messageList.Len() - 1
|
|
|
|
for elem := c.messageList.Back(); elem != nil; elem = elem.Prev() {
|
|
|
|
if gridMsg := elem.Value.(*gridMessage); gridMsg.ID() == id {
|
|
|
|
return elem, gridMsg, index
|
2020-10-23 06:21:34 +00:00
|
|
|
}
|
2020-10-24 21:58:48 +00:00
|
|
|
index--
|
2020-10-23 06:21:34 +00:00
|
|
|
}
|
2020-10-24 21:58:48 +00:00
|
|
|
return nil, nil, -1
|
|
|
|
}
|
|
|
|
|
|
|
|
// findIndex searches backwards for id.
|
|
|
|
func (c *GridStore) findIndex(id cchat.ID) (*gridMessage, int) {
|
|
|
|
_, gridMsg, ix := c.findElement(id)
|
|
|
|
return gridMsg, ix
|
2020-10-23 06:21:34 +00:00
|
|
|
}
|
|
|
|
|
2020-08-20 23:53:13 +00:00
|
|
|
type CoordinateTranslator interface {
|
|
|
|
TranslateCoordinates(dest gtk.IWidget, srcX int, srcY int) (destX int, destY int, e error)
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ CoordinateTranslator = (*gtk.Widget)(nil)
|
|
|
|
|
|
|
|
func (c *GridStore) TranslateCoordinates(parent gtk.IWidget, msg GridMessage) (y int) {
|
2020-10-24 21:58:48 +00:00
|
|
|
m, i := c.findIndex(msg.ID())
|
2020-10-23 06:21:34 +00:00
|
|
|
if i < 0 {
|
2020-08-20 23:53:13 +00:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
w, _ := m.Focusable().(CoordinateTranslator)
|
|
|
|
|
|
|
|
// x is not needed.
|
|
|
|
_, y, err := w.TranslateCoordinates(parent, 0, 0)
|
|
|
|
if err != nil {
|
|
|
|
log.Error(errors.Wrap(err, "Failed to translate coords while focusing"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return y
|
|
|
|
}
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
// Swap changes the message with the ID to the given message. This provides a
|
|
|
|
// low level API for edits that need a new Attach method.
|
|
|
|
//
|
|
|
|
// TODO: combine compact and full so they share the same attach method.
|
|
|
|
func (c *GridStore) SwapMessage(msg GridMessage) bool {
|
2020-10-24 21:58:48 +00:00
|
|
|
// Wrap msg inside a *gridMessage if it's not already.
|
|
|
|
m, ok := msg.(*gridMessage)
|
|
|
|
if !ok {
|
|
|
|
m = &gridMessage{GridMessage: msg}
|
|
|
|
}
|
|
|
|
|
2020-10-23 06:21:34 +00:00
|
|
|
// Get the current message's index.
|
2020-10-24 21:58:48 +00:00
|
|
|
_, ix := c.findIndex(msg.ID())
|
2020-10-23 06:21:34 +00:00
|
|
|
if ix == -1 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
// Add a row at index. The actual row we want to delete will be shifted
|
|
|
|
// downwards.
|
|
|
|
c.Grid.InsertRow(ix)
|
|
|
|
|
2020-10-25 01:13:33 +00:00
|
|
|
// Delete the to-be-replaced message, which we have shifted downwards
|
|
|
|
// earlier, so we add 1.
|
|
|
|
c.Grid.RemoveRow(ix + 1)
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
// Let the new message be attached on top of the to-be-replaced message.
|
2020-10-24 21:58:48 +00:00
|
|
|
c.attachGrid(ix, m.Attach())
|
2020-06-13 07:29:32 +00:00
|
|
|
|
2020-10-23 06:21:34 +00:00
|
|
|
// Set the message into the map.
|
2020-10-24 21:58:48 +00:00
|
|
|
c.messages[m.ID()] = m
|
2020-10-23 06:21:34 +00:00
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-10-24 21:58:48 +00:00
|
|
|
// Around returns the message before and after the given ID, or nil if none.
|
|
|
|
func (c *GridStore) Around(id cchat.ID) (before, after GridMessage) {
|
|
|
|
gridBefore, gridAfter := c.around(id)
|
|
|
|
|
|
|
|
if gridBefore != nil {
|
|
|
|
before = gridBefore.GridMessage
|
|
|
|
}
|
|
|
|
if gridAfter != nil {
|
|
|
|
after = gridAfter.GridMessage
|
|
|
|
}
|
2020-06-13 07:29:32 +00:00
|
|
|
|
2020-10-24 21:58:48 +00:00
|
|
|
return
|
2020-10-23 06:21:34 +00:00
|
|
|
}
|
|
|
|
|
2020-10-24 21:58:48 +00:00
|
|
|
func (c *GridStore) around(id cchat.ID) (before, after *gridMessage) {
|
|
|
|
var last *gridMessage
|
|
|
|
var next bool
|
2020-10-23 06:21:34 +00:00
|
|
|
|
2020-10-24 21:58:48 +00:00
|
|
|
for elem := c.messageList.Front(); elem != nil; elem = elem.Next() {
|
|
|
|
message := elem.Value.(*gridMessage)
|
|
|
|
if next {
|
|
|
|
after = message
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if message.ID() == id {
|
|
|
|
// The last message is the before.
|
|
|
|
before = last
|
|
|
|
next = true
|
|
|
|
continue
|
|
|
|
}
|
2020-10-23 06:21:34 +00:00
|
|
|
|
2020-10-24 21:58:48 +00:00
|
|
|
last = message
|
|
|
|
}
|
|
|
|
return
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
|
2020-06-17 22:58:38 +00:00
|
|
|
// LatestMessageFrom returns the latest message with the given user ID. This is
|
|
|
|
// used for the input prompt.
|
|
|
|
func (c *GridStore) LatestMessageFrom(userID string) (msgID string, ok bool) {
|
2020-10-23 06:21:34 +00:00
|
|
|
// FindMessage already looks from the latest messages.
|
|
|
|
var msg = c.FindMessage(func(msg GridMessage) bool {
|
|
|
|
return msg.AuthorID() == userID
|
|
|
|
})
|
|
|
|
|
2020-06-17 22:58:38 +00:00
|
|
|
if msg == nil {
|
|
|
|
return "", false
|
|
|
|
}
|
2020-10-23 06:21:34 +00:00
|
|
|
|
2020-06-17 22:58:38 +00:00
|
|
|
return msg.ID(), true
|
|
|
|
}
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
// FindMessage iterates backwards and returns the message if isMessage() returns
|
|
|
|
// true on that message.
|
|
|
|
func (c *GridStore) FindMessage(isMessage func(msg GridMessage) bool) GridMessage {
|
2020-10-24 21:58:48 +00:00
|
|
|
for elem := c.messageList.Back(); elem != nil; elem = elem.Prev() {
|
|
|
|
gridMsg := elem.Value.(*gridMessage)
|
2020-10-23 06:21:34 +00:00
|
|
|
// Ignore sending messages.
|
2020-10-24 21:58:48 +00:00
|
|
|
if gridMsg.presend != nil {
|
2020-10-23 06:21:34 +00:00
|
|
|
continue
|
|
|
|
}
|
2020-10-24 21:58:48 +00:00
|
|
|
if gridMsg := gridMsg.GridMessage; isMessage(gridMsg) {
|
|
|
|
return gridMsg
|
2020-10-23 06:21:34 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-24 21:58:48 +00:00
|
|
|
|
2020-10-23 06:21:34 +00:00
|
|
|
return nil
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
|
2020-08-20 23:53:13 +00:00
|
|
|
// NthMessage returns the nth message.
|
|
|
|
func (c *GridStore) NthMessage(n int) GridMessage {
|
2020-10-24 21:58:48 +00:00
|
|
|
var index = 0
|
|
|
|
for elem := c.messageList.Front(); elem != nil; elem = elem.Next() {
|
|
|
|
if index == n {
|
|
|
|
return elem.Value.(*gridMessage).GridMessage
|
|
|
|
}
|
|
|
|
index++
|
2020-10-23 06:21:34 +00:00
|
|
|
}
|
2020-10-24 21:58:48 +00:00
|
|
|
|
2020-10-23 06:21:34 +00:00
|
|
|
return nil
|
2020-06-13 21:51:03 +00:00
|
|
|
}
|
|
|
|
|
2020-08-20 23:53:13 +00:00
|
|
|
// FirstMessage returns the first message.
|
|
|
|
func (c *GridStore) FirstMessage() GridMessage {
|
2020-11-05 19:08:30 +00:00
|
|
|
if c.messageList.Len() == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// Long unwrap.
|
|
|
|
return c.messageList.Front().Value.(*gridMessage).GridMessage
|
2020-08-20 23:53:13 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
// LastMessage returns the latest message.
|
|
|
|
func (c *GridStore) LastMessage() GridMessage {
|
2020-11-05 19:08:30 +00:00
|
|
|
if c.messageList.Len() == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// Long unwrap.
|
|
|
|
return c.messageList.Back().Value.(*gridMessage).GridMessage
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Message finds the message state in the container. It is not thread-safe. This
|
|
|
|
// exists for backwards compatibility.
|
2020-10-15 06:32:11 +00:00
|
|
|
func (c *GridStore) Message(msgID cchat.ID, nonce string) GridMessage {
|
2020-10-23 06:21:34 +00:00
|
|
|
if m := c.message(msgID, nonce); m != nil {
|
|
|
|
return m.GridMessage
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *GridStore) message(msgID cchat.ID, nonce string) *gridMessage {
|
|
|
|
// Search using the ID first.
|
|
|
|
m, ok := c.messages[msgID]
|
|
|
|
if ok {
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
// Is this an existing message?
|
|
|
|
if nonce != "" {
|
|
|
|
// Things in this map are guaranteed to have presend != nil.
|
|
|
|
m, ok := c.messages[nonce]
|
|
|
|
if ok {
|
|
|
|
// Replace the nonce key with ID.
|
|
|
|
delete(c.messages, nonce)
|
|
|
|
c.messages[msgID] = m
|
|
|
|
|
|
|
|
// Set the right ID.
|
|
|
|
m.presend.SetDone(msgID)
|
|
|
|
// Destroy the presend struct.
|
|
|
|
m.presend = nil
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AddPresendMessage inserts an input.PresendMessage into the container and
|
|
|
|
// returning a wrapped widget interface.
|
|
|
|
func (c *GridStore) AddPresendMessage(msg input.PresendMessage) PresendGridMessage {
|
|
|
|
presend := c.Construct.NewPresendMessage(msg)
|
|
|
|
|
|
|
|
msgc := &gridMessage{
|
|
|
|
GridMessage: presend,
|
|
|
|
presend: presend,
|
|
|
|
}
|
|
|
|
|
2020-10-21 23:47:17 +00:00
|
|
|
// Set the message into the grid.
|
2020-10-23 06:21:34 +00:00
|
|
|
c.attachGrid(c.MessagesLen(), msgc.Attach())
|
2020-10-24 21:58:48 +00:00
|
|
|
// Append the message.
|
|
|
|
c.messageList.PushBack(msgc)
|
2020-10-23 06:21:34 +00:00
|
|
|
// Set the NONCE into the message map.
|
|
|
|
c.messages[msgc.Nonce()] = msgc
|
2020-08-20 23:53:13 +00:00
|
|
|
|
2020-10-21 23:47:17 +00:00
|
|
|
return presend
|
2020-08-20 23:53:13 +00:00
|
|
|
}
|
|
|
|
|
2020-11-05 19:08:30 +00:00
|
|
|
// Many attempts were made to have CreateMessageUnsafe return an index. That is
|
|
|
|
// unreliable. The index might be off if the message buffer is cleaned up. Don't
|
|
|
|
// rely on it.
|
|
|
|
|
2020-10-23 06:21:34 +00:00
|
|
|
func (c *GridStore) CreateMessageUnsafe(msg cchat.MessageCreate) {
|
2020-07-04 04:41:12 +00:00
|
|
|
// Call the event handler last.
|
2020-10-23 06:21:34 +00:00
|
|
|
defer c.Controller.AuthorEvent(msg.Author())
|
2020-07-04 04:41:12 +00:00
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
// Attempt to update before insertion (aka upsert).
|
2020-11-05 19:08:30 +00:00
|
|
|
if msgc := c.message(msg.ID(), msg.Nonce()); msgc != nil {
|
2020-06-13 07:29:32 +00:00
|
|
|
msgc.UpdateAuthor(msg.Author())
|
|
|
|
msgc.UpdateContent(msg.Content(), false)
|
|
|
|
msgc.UpdateTimestamp(msg.Time())
|
|
|
|
|
2020-11-05 19:08:30 +00:00
|
|
|
c.Controller.BindMenu(msgc.GridMessage)
|
2020-10-23 06:21:34 +00:00
|
|
|
return
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
msgc := &gridMessage{
|
|
|
|
GridMessage: c.Construct.NewMessage(msg),
|
|
|
|
}
|
2020-10-24 21:58:48 +00:00
|
|
|
msgTime := msg.Time()
|
2020-06-13 07:29:32 +00:00
|
|
|
|
2020-10-24 21:58:48 +00:00
|
|
|
var index = c.messageList.Len() - 1
|
|
|
|
var after = c.messageList.Back()
|
|
|
|
|
|
|
|
// Iterate and compare timestamp to find where to insert a message.
|
|
|
|
for after != nil {
|
|
|
|
if msgTime.After(after.Value.(*gridMessage).Time()) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
index--
|
|
|
|
after = after.Prev()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append the message. If after is nil, then that means the message is the
|
|
|
|
// oldest, so we add it to the front of the list.
|
|
|
|
if after != nil {
|
|
|
|
index++ // insert right after
|
|
|
|
c.messageList.InsertAfter(msgc, after)
|
|
|
|
} else {
|
|
|
|
index = 0
|
|
|
|
c.messageList.PushFront(msgc)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the message into the grid.
|
|
|
|
c.Grid.InsertRow(index)
|
|
|
|
c.attachGrid(index, msgc.Attach())
|
|
|
|
|
|
|
|
// Set the NONCE into the message map.
|
|
|
|
c.messages[msgc.Nonce()] = msgc
|
2020-06-13 07:29:32 +00:00
|
|
|
|
|
|
|
c.Controller.BindMenu(msgc)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *GridStore) UpdateMessageUnsafe(msg cchat.MessageUpdate) {
|
2020-07-04 04:41:12 +00:00
|
|
|
// Call the event handler last.
|
2020-10-23 06:21:34 +00:00
|
|
|
defer c.Controller.AuthorEvent(msg.Author())
|
2020-07-04 04:41:12 +00:00
|
|
|
|
2020-10-15 06:32:11 +00:00
|
|
|
if msgc := c.Message(msg.ID(), ""); msgc != nil {
|
2020-06-13 07:29:32 +00:00
|
|
|
if author := msg.Author(); author != nil {
|
|
|
|
msgc.UpdateAuthor(author)
|
|
|
|
}
|
2020-10-15 06:32:11 +00:00
|
|
|
if content := msg.Content(); !content.IsEmpty() {
|
2020-06-13 07:29:32 +00:00
|
|
|
msgc.UpdateContent(content, true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *GridStore) DeleteMessageUnsafe(msg cchat.MessageDelete) {
|
2020-10-23 06:21:34 +00:00
|
|
|
c.PopMessage(msg.ID())
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PopMessage deletes a message off of the list and return the deleted message.
|
2020-10-24 21:58:48 +00:00
|
|
|
func (c *GridStore) PopMessage(id cchat.ID) (msg GridMessage) {
|
|
|
|
// Get the raw element to delete it off the list.
|
|
|
|
elem, gridMsg, ix := c.findElement(id)
|
|
|
|
if elem == nil {
|
2020-06-13 07:29:32 +00:00
|
|
|
return nil
|
|
|
|
}
|
2020-10-24 21:58:48 +00:00
|
|
|
msg = gridMsg.GridMessage
|
2020-10-23 06:21:34 +00:00
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
// Remove off of the Gtk grid.
|
|
|
|
c.Grid.RemoveRow(ix)
|
2020-10-23 06:21:34 +00:00
|
|
|
// Pop off the slice.
|
2020-10-24 21:58:48 +00:00
|
|
|
c.messageList.Remove(elem)
|
2020-10-23 06:21:34 +00:00
|
|
|
// Delete off the map.
|
|
|
|
delete(c.messages, id)
|
2020-06-13 07:29:32 +00:00
|
|
|
|
2020-10-23 06:21:34 +00:00
|
|
|
return
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
2020-10-24 21:58:48 +00:00
|
|
|
|
|
|
|
// DeleteEarliest deletes the n earliest messages. It does nothing if n is or
|
|
|
|
// less than 0.
|
|
|
|
func (c *GridStore) DeleteEarliest(n int) {
|
|
|
|
if n <= 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Since container/list nils out the next element, we can't just call Next
|
|
|
|
// after deleting, so we have to call Next manually before Removing.
|
|
|
|
for elem := c.messageList.Front(); elem != nil && n != 0; n-- {
|
|
|
|
gridMsg := elem.Value.(*gridMessage)
|
|
|
|
delete(c.messages, gridMsg.ID())
|
|
|
|
delete(c.messages, gridMsg.Nonce()) // superfluous delete
|
|
|
|
c.Grid.RemoveRow(0)
|
|
|
|
|
|
|
|
next := elem.Next()
|
|
|
|
c.messageList.Remove(elem)
|
|
|
|
elem = next
|
|
|
|
}
|
|
|
|
}
|