mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-10 07:04:24 +00:00
ec716793eb
* Initial federation sender -> federation API refactoring * Move base into own package, avoids import cycle * Fix build errors * Fix tests * Add signing key server tables * Try to fold signing key server into federation API * Fix dendritejs builds * Update embedded interfaces * Fix panic, fix lint error * Update configs, docker * Rename some things * Reuse same keyring on the implementing side * Fix federation tests, `NewBaseDendrite` can accept freeform options * Fix build * Update create_db, configs * Name tables back * Don't rename federationsender consumer for now
67 lines
2 KiB
Go
67 lines
2 KiB
Go
package caching
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
)
|
|
|
|
const (
|
|
FederationEventCacheName = "federation_event"
|
|
FederationEventCacheMaxEntries = 256
|
|
FederationEventCacheMutable = true // to allow use of Unset only
|
|
)
|
|
|
|
// FederationCache contains the subset of functions needed for
|
|
// a federation event cache.
|
|
type FederationCache interface {
|
|
GetFederationQueuedPDU(eventNID int64) (event *gomatrixserverlib.HeaderedEvent, ok bool)
|
|
StoreFederationQueuedPDU(eventNID int64, event *gomatrixserverlib.HeaderedEvent)
|
|
EvictFederationQueuedPDU(eventNID int64)
|
|
|
|
GetFederationQueuedEDU(eventNID int64) (event *gomatrixserverlib.EDU, ok bool)
|
|
StoreFederationQueuedEDU(eventNID int64, event *gomatrixserverlib.EDU)
|
|
EvictFederationQueuedEDU(eventNID int64)
|
|
}
|
|
|
|
func (c Caches) GetFederationQueuedPDU(eventNID int64) (*gomatrixserverlib.HeaderedEvent, bool) {
|
|
key := fmt.Sprintf("%d", eventNID)
|
|
val, found := c.FederationEvents.Get(key)
|
|
if found && val != nil {
|
|
if event, ok := val.(*gomatrixserverlib.HeaderedEvent); ok {
|
|
return event, true
|
|
}
|
|
}
|
|
return nil, false
|
|
}
|
|
|
|
func (c Caches) StoreFederationQueuedPDU(eventNID int64, event *gomatrixserverlib.HeaderedEvent) {
|
|
key := fmt.Sprintf("%d", eventNID)
|
|
c.FederationEvents.Set(key, event)
|
|
}
|
|
|
|
func (c Caches) EvictFederationQueuedPDU(eventNID int64) {
|
|
key := fmt.Sprintf("%d", eventNID)
|
|
c.FederationEvents.Unset(key)
|
|
}
|
|
|
|
func (c Caches) GetFederationQueuedEDU(eventNID int64) (*gomatrixserverlib.EDU, bool) {
|
|
key := fmt.Sprintf("%d", eventNID)
|
|
val, found := c.FederationEvents.Get(key)
|
|
if found && val != nil {
|
|
if event, ok := val.(*gomatrixserverlib.EDU); ok {
|
|
return event, true
|
|
}
|
|
}
|
|
return nil, false
|
|
}
|
|
|
|
func (c Caches) StoreFederationQueuedEDU(eventNID int64, event *gomatrixserverlib.EDU) {
|
|
key := fmt.Sprintf("%d", eventNID)
|
|
c.FederationEvents.Set(key, event)
|
|
}
|
|
|
|
func (c Caches) EvictFederationQueuedEDU(eventNID int64) {
|
|
key := fmt.Sprintf("%d", eventNID)
|
|
c.FederationEvents.Unset(key)
|
|
}
|