mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-28 01:03:10 -06:00
Dedupe a bit, add a template for the invite stream
This commit is contained in:
parent
954b36a74c
commit
aa0126f607
|
|
@ -35,6 +35,7 @@ type Database interface {
|
||||||
PDUTopology() types.TopologyProvider
|
PDUTopology() types.TopologyProvider
|
||||||
TypingStream() types.StreamProvider
|
TypingStream() types.StreamProvider
|
||||||
ReceiptStream() types.StreamProvider
|
ReceiptStream() types.StreamProvider
|
||||||
|
InviteStream() types.StreamProvider
|
||||||
|
|
||||||
// AllJoinedUsersInRooms returns a map of room ID to a list of all joined user IDs.
|
// AllJoinedUsersInRooms returns a map of room ID to a list of all joined user IDs.
|
||||||
AllJoinedUsersInRooms(ctx context.Context) (map[string][]string, error)
|
AllJoinedUsersInRooms(ctx context.Context) (map[string][]string, error)
|
||||||
|
|
|
||||||
31
syncapi/storage/shared/stream.go
Normal file
31
syncapi/storage/shared/stream.go
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
package shared
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sync"
|
||||||
|
|
||||||
|
"github.com/matrix-org/dendrite/syncapi/types"
|
||||||
|
)
|
||||||
|
|
||||||
|
type StreamProvider struct {
|
||||||
|
DB *Database
|
||||||
|
latest types.StreamPosition
|
||||||
|
latestMutex sync.RWMutex
|
||||||
|
update *sync.Cond
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *StreamProvider) StreamSetup() {
|
||||||
|
locker := &sync.Mutex{}
|
||||||
|
p.update = sync.NewCond(locker)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *StreamProvider) StreamAdvance(
|
||||||
|
latest types.StreamPosition,
|
||||||
|
) {
|
||||||
|
p.latestMutex.Lock()
|
||||||
|
defer p.latestMutex.Unlock()
|
||||||
|
|
||||||
|
if latest > p.latest {
|
||||||
|
p.latest = latest
|
||||||
|
p.update.Broadcast()
|
||||||
|
}
|
||||||
|
}
|
||||||
94
syncapi/storage/shared/stream_invite.go
Normal file
94
syncapi/storage/shared/stream_invite.go
Normal file
|
|
@ -0,0 +1,94 @@
|
||||||
|
package shared
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
"github.com/matrix-org/dendrite/syncapi/types"
|
||||||
|
)
|
||||||
|
|
||||||
|
type InviteStreamProvider struct {
|
||||||
|
StreamProvider
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *InviteStreamProvider) StreamSetup() {
|
||||||
|
p.StreamProvider.StreamSetup()
|
||||||
|
|
||||||
|
p.latestMutex.Lock()
|
||||||
|
defer p.latestMutex.Unlock()
|
||||||
|
|
||||||
|
p.latest = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *InviteStreamProvider) StreamLatestPosition(
|
||||||
|
ctx context.Context,
|
||||||
|
) types.StreamingToken {
|
||||||
|
p.latestMutex.RLock()
|
||||||
|
defer p.latestMutex.RUnlock()
|
||||||
|
|
||||||
|
return types.StreamingToken{
|
||||||
|
InvitePosition: p.latest,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// nolint:gocyclo
|
||||||
|
func (p *InviteStreamProvider) StreamRange(
|
||||||
|
ctx context.Context,
|
||||||
|
req *types.StreamRangeRequest,
|
||||||
|
from, to types.StreamingToken,
|
||||||
|
) (newPos types.StreamingToken) {
|
||||||
|
|
||||||
|
return types.StreamingToken{
|
||||||
|
InvitePosition: 0,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *InviteStreamProvider) StreamNotifyAfter(
|
||||||
|
ctx context.Context,
|
||||||
|
from types.StreamingToken,
|
||||||
|
) chan struct{} {
|
||||||
|
ch := make(chan struct{})
|
||||||
|
|
||||||
|
check := func() bool {
|
||||||
|
p.latestMutex.RLock()
|
||||||
|
defer p.latestMutex.RUnlock()
|
||||||
|
if p.latest > from.InvitePosition {
|
||||||
|
close(ch)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we've already advanced past the specified position
|
||||||
|
// then return straight away.
|
||||||
|
if check() {
|
||||||
|
return ch
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we haven't, then we'll subscribe to updates. The
|
||||||
|
// sync.Cond will fire every time the latest position
|
||||||
|
// updates, so we can check and see if we've advanced
|
||||||
|
// past it.
|
||||||
|
go func(p *InviteStreamProvider) {
|
||||||
|
p.update.L.Lock()
|
||||||
|
defer p.update.L.Unlock()
|
||||||
|
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
// The context has expired, so there's no point
|
||||||
|
// in continuing to wait for the update.
|
||||||
|
return
|
||||||
|
default:
|
||||||
|
// The latest position has been advanced. Let's
|
||||||
|
// see if it's advanced to the position we care
|
||||||
|
// about. If it has then we'll return.
|
||||||
|
p.update.Wait()
|
||||||
|
if check() {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}(p)
|
||||||
|
|
||||||
|
return ch
|
||||||
|
}
|
||||||
|
|
@ -2,22 +2,17 @@ package shared
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"sync"
|
|
||||||
|
|
||||||
"github.com/matrix-org/dendrite/syncapi/types"
|
"github.com/matrix-org/dendrite/syncapi/types"
|
||||||
"github.com/matrix-org/gomatrixserverlib"
|
"github.com/matrix-org/gomatrixserverlib"
|
||||||
)
|
)
|
||||||
|
|
||||||
type PDUStreamProvider struct {
|
type PDUStreamProvider struct {
|
||||||
DB *Database
|
StreamProvider
|
||||||
latest types.StreamPosition
|
|
||||||
latestMutex sync.RWMutex
|
|
||||||
update *sync.Cond
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *PDUStreamProvider) StreamSetup() {
|
func (p *PDUStreamProvider) StreamSetup() {
|
||||||
locker := &sync.Mutex{}
|
p.StreamProvider.StreamSetup()
|
||||||
p.update = sync.NewCond(locker)
|
|
||||||
|
|
||||||
p.latestMutex.Lock()
|
p.latestMutex.Lock()
|
||||||
defer p.latestMutex.Unlock()
|
defer p.latestMutex.Unlock()
|
||||||
|
|
@ -29,15 +24,14 @@ func (p *PDUStreamProvider) StreamSetup() {
|
||||||
p.latest = types.StreamPosition(id)
|
p.latest = types.StreamPosition(id)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *PDUStreamProvider) StreamAdvance(
|
func (p *PDUStreamProvider) StreamLatestPosition(
|
||||||
latest types.StreamPosition,
|
ctx context.Context,
|
||||||
) {
|
) types.StreamingToken {
|
||||||
p.latestMutex.Lock()
|
p.latestMutex.RLock()
|
||||||
defer p.latestMutex.Unlock()
|
defer p.latestMutex.RUnlock()
|
||||||
|
|
||||||
if latest > p.latest {
|
return types.StreamingToken{
|
||||||
p.latest = latest
|
PDUPosition: p.latest,
|
||||||
p.update.Broadcast()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -179,14 +173,3 @@ func (p *PDUStreamProvider) StreamNotifyAfter(
|
||||||
|
|
||||||
return ch
|
return ch
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *PDUStreamProvider) StreamLatestPosition(
|
|
||||||
ctx context.Context,
|
|
||||||
) types.StreamingToken {
|
|
||||||
p.latestMutex.RLock()
|
|
||||||
defer p.latestMutex.RUnlock()
|
|
||||||
|
|
||||||
return types.StreamingToken{
|
|
||||||
PDUPosition: p.latest,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ package shared
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"sync"
|
|
||||||
|
|
||||||
eduAPI "github.com/matrix-org/dendrite/eduserver/api"
|
eduAPI "github.com/matrix-org/dendrite/eduserver/api"
|
||||||
"github.com/matrix-org/dendrite/syncapi/types"
|
"github.com/matrix-org/dendrite/syncapi/types"
|
||||||
|
|
@ -11,15 +10,11 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type ReceiptStreamProvider struct {
|
type ReceiptStreamProvider struct {
|
||||||
DB *Database
|
StreamProvider
|
||||||
latest types.StreamPosition
|
|
||||||
latestMutex sync.RWMutex
|
|
||||||
update *sync.Cond
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *ReceiptStreamProvider) StreamSetup() {
|
func (p *ReceiptStreamProvider) StreamSetup() {
|
||||||
locker := &sync.Mutex{}
|
p.StreamProvider.StreamSetup()
|
||||||
p.update = sync.NewCond(locker)
|
|
||||||
|
|
||||||
latest, err := p.DB.Receipts.SelectMaxReceiptID(context.Background(), nil)
|
latest, err := p.DB.Receipts.SelectMaxReceiptID(context.Background(), nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
@ -29,15 +24,14 @@ func (p *ReceiptStreamProvider) StreamSetup() {
|
||||||
p.latest = types.StreamPosition(latest)
|
p.latest = types.StreamPosition(latest)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *ReceiptStreamProvider) StreamAdvance(
|
func (p *ReceiptStreamProvider) StreamLatestPosition(
|
||||||
latest types.StreamPosition,
|
ctx context.Context,
|
||||||
) {
|
) types.StreamingToken {
|
||||||
p.latestMutex.Lock()
|
p.latestMutex.RLock()
|
||||||
defer p.latestMutex.Unlock()
|
defer p.latestMutex.RUnlock()
|
||||||
|
|
||||||
if latest > p.latest {
|
return types.StreamingToken{
|
||||||
p.latest = latest
|
ReceiptPosition: p.latest,
|
||||||
p.update.Broadcast()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -151,14 +145,3 @@ func (p *ReceiptStreamProvider) StreamNotifyAfter(
|
||||||
|
|
||||||
return ch
|
return ch
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *ReceiptStreamProvider) StreamLatestPosition(
|
|
||||||
ctx context.Context,
|
|
||||||
) types.StreamingToken {
|
|
||||||
p.latestMutex.RLock()
|
|
||||||
defer p.latestMutex.RUnlock()
|
|
||||||
|
|
||||||
return types.StreamingToken{
|
|
||||||
ReceiptPosition: p.latest,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -3,33 +3,27 @@ package shared
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"sync"
|
|
||||||
|
|
||||||
"github.com/matrix-org/dendrite/syncapi/types"
|
"github.com/matrix-org/dendrite/syncapi/types"
|
||||||
"github.com/matrix-org/gomatrixserverlib"
|
"github.com/matrix-org/gomatrixserverlib"
|
||||||
)
|
)
|
||||||
|
|
||||||
type TypingStreamProvider struct {
|
type TypingStreamProvider struct {
|
||||||
DB *Database
|
StreamProvider
|
||||||
latest types.StreamPosition
|
|
||||||
latestMutex sync.RWMutex
|
|
||||||
update *sync.Cond
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *TypingStreamProvider) StreamSetup() {
|
func (p *TypingStreamProvider) StreamSetup() {
|
||||||
locker := &sync.Mutex{}
|
p.StreamProvider.StreamSetup()
|
||||||
p.update = sync.NewCond(locker)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *TypingStreamProvider) StreamAdvance(
|
func (p *TypingStreamProvider) StreamLatestPosition(
|
||||||
latest types.StreamPosition,
|
ctx context.Context,
|
||||||
) {
|
) types.StreamingToken {
|
||||||
p.latestMutex.Lock()
|
p.latestMutex.RLock()
|
||||||
defer p.latestMutex.Unlock()
|
defer p.latestMutex.RUnlock()
|
||||||
|
|
||||||
if latest > p.latest {
|
return types.StreamingToken{
|
||||||
p.latest = latest
|
TypingPosition: p.latest,
|
||||||
p.update.Broadcast()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -119,14 +113,3 @@ func (p *TypingStreamProvider) StreamNotifyAfter(
|
||||||
|
|
||||||
return ch
|
return ch
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *TypingStreamProvider) StreamLatestPosition(
|
|
||||||
ctx context.Context,
|
|
||||||
) types.StreamingToken {
|
|
||||||
p.latestMutex.RLock()
|
|
||||||
defer p.latestMutex.RUnlock()
|
|
||||||
|
|
||||||
return types.StreamingToken{
|
|
||||||
TypingPosition: p.latest,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -55,19 +55,22 @@ type Database struct {
|
||||||
PDUTopologyProvider types.TopologyProvider
|
PDUTopologyProvider types.TopologyProvider
|
||||||
TypingStreamProvider types.StreamProvider
|
TypingStreamProvider types.StreamProvider
|
||||||
ReceiptStreamProvider types.StreamProvider
|
ReceiptStreamProvider types.StreamProvider
|
||||||
|
InviteStreamProvider types.StreamProvider
|
||||||
}
|
}
|
||||||
|
|
||||||
// ConfigureProviders creates instances of the various
|
// ConfigureProviders creates instances of the various
|
||||||
// stream and topology providers provided by the storage
|
// stream and topology providers provided by the storage
|
||||||
// packages.
|
// packages.
|
||||||
func (d *Database) ConfigureProviders() {
|
func (d *Database) ConfigureProviders() {
|
||||||
d.PDUStreamProvider = &PDUStreamProvider{DB: d}
|
d.PDUStreamProvider = &PDUStreamProvider{StreamProvider{DB: d}}
|
||||||
d.TypingStreamProvider = &TypingStreamProvider{DB: d}
|
d.TypingStreamProvider = &TypingStreamProvider{StreamProvider{DB: d}}
|
||||||
d.ReceiptStreamProvider = &ReceiptStreamProvider{DB: d}
|
d.ReceiptStreamProvider = &ReceiptStreamProvider{StreamProvider{DB: d}}
|
||||||
|
d.InviteStreamProvider = &InviteStreamProvider{StreamProvider{DB: d}}
|
||||||
|
|
||||||
d.PDUStreamProvider.StreamSetup()
|
d.PDUStreamProvider.StreamSetup()
|
||||||
d.TypingStreamProvider.StreamSetup()
|
d.TypingStreamProvider.StreamSetup()
|
||||||
d.ReceiptStreamProvider.StreamSetup()
|
d.ReceiptStreamProvider.StreamSetup()
|
||||||
|
d.InviteStreamProvider.StreamSetup()
|
||||||
|
|
||||||
d.PDUTopologyProvider = &PDUTopologyProvider{DB: d}
|
d.PDUTopologyProvider = &PDUTopologyProvider{DB: d}
|
||||||
}
|
}
|
||||||
|
|
@ -88,6 +91,10 @@ func (d *Database) ReceiptStream() types.StreamProvider {
|
||||||
return d.ReceiptStreamProvider
|
return d.ReceiptStreamProvider
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (d *Database) InviteStream() types.StreamProvider {
|
||||||
|
return d.InviteStreamProvider
|
||||||
|
}
|
||||||
|
|
||||||
// Events lookups a list of event by their event ID.
|
// Events lookups a list of event by their event ID.
|
||||||
// Returns a list of events matching the requested IDs found in the database.
|
// Returns a list of events matching the requested IDs found in the database.
|
||||||
// If an event is not found in the database then it will be omitted from the list.
|
// If an event is not found in the database then it will be omitted from the list.
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,7 @@ func NewRequestPool(
|
||||||
typingStream: db.TypingStream(),
|
typingStream: db.TypingStream(),
|
||||||
receiptStream: db.ReceiptStream(),
|
receiptStream: db.ReceiptStream(),
|
||||||
sendToDeviceStream: nil, // TODO
|
sendToDeviceStream: nil, // TODO
|
||||||
inviteStream: nil, // TODO
|
inviteStream: db.InviteStream(),
|
||||||
deviceListStream: nil, // TODO
|
deviceListStream: nil, // TODO
|
||||||
}
|
}
|
||||||
go rp.cleanLastSeen()
|
go rp.cleanLastSeen()
|
||||||
|
|
@ -190,15 +190,19 @@ func (rp *RequestPool) OnIncomingSyncRequest(req *http.Request, device *userapi.
|
||||||
return util.JSONResponse{Code: http.StatusOK, JSON: syncData}
|
return util.JSONResponse{Code: http.StatusOK, JSON: syncData}
|
||||||
|
|
||||||
case <-rp.pduStream.StreamNotifyAfter(waitctx, syncReq.Since):
|
case <-rp.pduStream.StreamNotifyAfter(waitctx, syncReq.Since):
|
||||||
|
logger.Println("Responding to sync after PDU")
|
||||||
case <-rp.typingStream.StreamNotifyAfter(waitctx, syncReq.Since):
|
case <-rp.typingStream.StreamNotifyAfter(waitctx, syncReq.Since):
|
||||||
|
logger.Println("Responding to sync after typing event")
|
||||||
case <-rp.receiptStream.StreamNotifyAfter(waitctx, syncReq.Since):
|
case <-rp.receiptStream.StreamNotifyAfter(waitctx, syncReq.Since):
|
||||||
|
logger.Println("Responding to sync after read receipt")
|
||||||
|
case <-rp.inviteStream.StreamNotifyAfter(waitctx, syncReq.Since):
|
||||||
|
logger.Println("Responding to sync after invite")
|
||||||
|
|
||||||
// case <-rp.sendToDeviceStream.StreamNotifyAfter(waitctx, syncReq.Since):
|
// case <-rp.sendToDeviceStream.StreamNotifyAfter(waitctx, syncReq.Since):
|
||||||
// case <-rp.inviteStream.StreamNotifyAfter(waitctx, syncReq.Since):
|
|
||||||
// case <-rp.deviceListStream.StreamNotifyAfter(waitctx, syncReq.Since):
|
// case <-rp.deviceListStream.StreamNotifyAfter(waitctx, syncReq.Since):
|
||||||
}
|
}
|
||||||
|
|
||||||
waitcancel()
|
waitcancel()
|
||||||
logger.Println("Responding to sync after notify")
|
|
||||||
} else {
|
} else {
|
||||||
logger.Println("Responding to sync immediately")
|
logger.Println("Responding to sync immediately")
|
||||||
}
|
}
|
||||||
|
|
@ -208,15 +212,15 @@ func (rp *RequestPool) OnIncomingSyncRequest(req *http.Request, device *userapi.
|
||||||
latest.ApplyUpdates(rp.typingStream.StreamLatestPosition(syncReq.Context))
|
latest.ApplyUpdates(rp.typingStream.StreamLatestPosition(syncReq.Context))
|
||||||
latest.ApplyUpdates(rp.receiptStream.StreamLatestPosition(syncReq.Context))
|
latest.ApplyUpdates(rp.receiptStream.StreamLatestPosition(syncReq.Context))
|
||||||
// latest.ApplyUpdates(rp.sendToDeviceStream.StreamLatestPosition(syncReq.Context))
|
// latest.ApplyUpdates(rp.sendToDeviceStream.StreamLatestPosition(syncReq.Context))
|
||||||
// latest.ApplyUpdates(rp.inviteStream.StreamLatestPosition(syncReq.Context))
|
latest.ApplyUpdates(rp.inviteStream.StreamLatestPosition(syncReq.Context))
|
||||||
// latest.ApplyUpdates(rp.deviceListStream.StreamLatestPosition(syncReq.Context))
|
// latest.ApplyUpdates(rp.deviceListStream.StreamLatestPosition(syncReq.Context))
|
||||||
|
|
||||||
syncReq.Response.NextBatch.ApplyUpdates(rp.pduStream.StreamRange(syncReq.Context, syncReq, syncReq.Since, latest))
|
syncReq.Response.NextBatch.ApplyUpdates(rp.pduStream.StreamRange(syncReq.Context, syncReq, syncReq.Since, latest))
|
||||||
syncReq.Response.NextBatch.ApplyUpdates(rp.typingStream.StreamRange(syncReq.Context, syncReq, syncReq.Since, latest))
|
syncReq.Response.NextBatch.ApplyUpdates(rp.typingStream.StreamRange(syncReq.Context, syncReq, syncReq.Since, latest))
|
||||||
syncReq.Response.NextBatch.ApplyUpdates(rp.receiptStream.StreamRange(syncReq.Context, syncReq, syncReq.Since, latest))
|
syncReq.Response.NextBatch.ApplyUpdates(rp.receiptStream.StreamRange(syncReq.Context, syncReq, syncReq.Since, latest))
|
||||||
// syncReq.Response.NextBatch.ApplyUpdates(rp.sendToDeviceStream.StreamRange(syncReq.Context, syncReq, syncReq.Since, latest))
|
// syncReq.Response.NextBatch.ApplyUpdates(rp.sendToDeviceStream.StreamRange(syncReq.Context, syncReq, syncReq.Since, latest))
|
||||||
// syncReq.Response.NextBatch.ApplyUpdates(rp.inviteStream.StreamRange(syncReq.Context, syncReq, syncReq.Since, latest))
|
syncReq.Response.NextBatch.ApplyUpdates(rp.inviteStream.StreamRange(syncReq.Context, syncReq, syncReq.Since, latest))
|
||||||
// syncReq.Response.NextBatch.ApplyUpdates(rp.inviteStream.StreamRange(syncReq.Context, syncReq, syncReq.Since, latest))
|
// syncReq.Response.NextBatch.ApplyUpdates(rp.deviceListStream.StreamRange(syncReq.Context, syncReq, syncReq.Since, latest))
|
||||||
|
|
||||||
return util.JSONResponse{
|
return util.JSONResponse{
|
||||||
Code: http.StatusOK,
|
Code: http.StatusOK,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue