2020-12-16 12:15:12 +00:00
|
|
|
package caching
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/matrix-org/dendrite/roomserver/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// WARNING: This cache is mutable because it's entirely possible that
|
|
|
|
// the IsStub or StateSnaphotNID fields can change, even though the
|
|
|
|
// room version and room NID fields will not. This is only safe because
|
|
|
|
// the RoomInfoCache is used ONLY within the roomserver and because it
|
|
|
|
// will be kept up-to-date by the latest events updater. It MUST NOT be
|
|
|
|
// used from other components as we currently have no way to invalidate
|
|
|
|
// the cache in downstream components.
|
|
|
|
|
|
|
|
// RoomInfosCache contains the subset of functions needed for
|
|
|
|
// a room Info cache. It must only be used from the roomserver only
|
|
|
|
// It is not safe for use from other components.
|
|
|
|
type RoomInfoCache interface {
|
2022-07-13 10:13:34 +01:00
|
|
|
GetRoomInfo(roomID string) (roomInfo *types.RoomInfo, ok bool)
|
|
|
|
StoreRoomInfo(roomID string, roomInfo *types.RoomInfo)
|
2020-12-16 12:15:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetRoomInfo must only be called from the roomserver only. It is not
|
|
|
|
// safe for use from other components.
|
2022-07-13 10:13:34 +01:00
|
|
|
func (c Caches) GetRoomInfo(roomID string) (*types.RoomInfo, bool) {
|
2022-07-11 14:31:31 +01:00
|
|
|
return c.RoomInfos.Get(roomID)
|
2020-12-16 12:15:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// StoreRoomInfo must only be called from the roomserver only. It is not
|
|
|
|
// safe for use from other components.
|
2022-07-13 10:13:34 +01:00
|
|
|
func (c Caches) StoreRoomInfo(roomID string, roomInfo *types.RoomInfo) {
|
2020-12-16 12:15:12 +00:00
|
|
|
c.RoomInfos.Set(roomID, roomInfo)
|
|
|
|
}
|