aboutsummaryrefslogtreecommitdiff
path: root/matrix/room
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2018-03-22 17:36:06 +0200
committerTulir Asokan <tulir@maunium.net>2018-03-22 17:37:35 +0200
commitc32fffda15e98dd753fbcfed2d475f04de8669cf (patch)
tree4106a8c7bdcf67828c9b38ca00704cd8f9a85f1b /matrix/room
parent516ea4231768a659e38ea4e46053636446ec971c (diff)
Move history mutex to rooms.Room
Diffstat (limited to 'matrix/room')
-rw-r--r--matrix/room/room.go32
1 files changed, 25 insertions, 7 deletions
diff --git a/matrix/room/room.go b/matrix/room/room.go
index 264ee3b..c006bd3 100644
--- a/matrix/room/room.go
+++ b/matrix/room/room.go
@@ -18,6 +18,7 @@ package rooms
import (
"fmt"
+ "sync"
"maunium.net/go/gomatrix"
)
@@ -28,17 +29,33 @@ type Room struct {
// The first batch of events that has been fetched for this room.
// Used for fetching additional history.
- PrevBatch string
+ PrevBatch string
// The MXID of the user whose session this room was created for.
- SessionUserID string
+ SessionUserID string
// MXID -> Member cache calculated from membership events.
- memberCache map[string]*Member
+ memberCache map[string]*Member
// The first non-SessionUserID member in the room. Calculated at the same time as memberCache.
firstMemberCache string
// The name of the room. Calculated from the state event name, canonical_alias or alias or the member cache.
- nameCache string
+ nameCache string
// The topic of the room. Directly fetched from the m.room.topic state event.
- topicCache string
+ topicCache string
+
+ // fetchHistoryLock is used to make sure multiple goroutines don't fetch history for this room at the same time.
+ fetchHistoryLock *sync.Mutex `json:"-"`
+}
+
+func (room *Room) LockHistory() {
+ if room.fetchHistoryLock == nil {
+ room.fetchHistoryLock = &sync.Mutex{}
+ }
+ room.fetchHistoryLock.Lock()
+}
+
+func (room *Room) UnlockHistory() {
+ if room.fetchHistoryLock != nil {
+ room.fetchHistoryLock.Unlock()
+ }
}
// UpdateState updates the room's current state with the given Event. This will clobber events based
@@ -211,7 +228,8 @@ func (room *Room) GetMember(userID string) *Member {
// NewRoom creates a new Room with the given ID
func NewRoom(roomID, owner string) *Room {
return &Room{
- Room: gomatrix.NewRoom(roomID),
- SessionUserID: owner,
+ Room: gomatrix.NewRoom(roomID),
+ fetchHistoryLock: &sync.Mutex{},
+ SessionUserID: owner,
}
}