mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-01-16 18:43:10 -06:00
Early pagination
This commit is contained in:
parent
25c8655497
commit
6811998611
|
|
@ -68,8 +68,6 @@ func Relations(req *http.Request, device *api.Device, syncDB storage.Database, r
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
res := &RelationsResponse{}
|
|
||||||
|
|
||||||
snapshot, err := syncDB.NewDatabaseSnapshot(req.Context())
|
snapshot, err := syncDB.NewDatabaseSnapshot(req.Context())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return jsonerror.InternalServerError()
|
return jsonerror.InternalServerError()
|
||||||
|
|
@ -83,6 +81,7 @@ func Relations(req *http.Request, device *api.Device, syncDB storage.Database, r
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
res := &RelationsResponse{}
|
||||||
res.Chunk, res.PrevBatch, res.NextBatch, err = snapshot.RelationsFor(
|
res.Chunk, res.PrevBatch, res.NextBatch, err = snapshot.RelationsFor(
|
||||||
req.Context(), roomID, eventID, relType, eventType, from, to, limit,
|
req.Context(), roomID, eventID, relType, eventType, from, to, limit,
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@ func (s *relationsStatements) DeleteRelation(
|
||||||
func (s *relationsStatements) SelectRelationsInRange(
|
func (s *relationsStatements) SelectRelationsInRange(
|
||||||
ctx context.Context, txn *sql.Tx, roomID, eventID, relType string,
|
ctx context.Context, txn *sql.Tx, roomID, eventID, relType string,
|
||||||
r types.Range, limit int,
|
r types.Range, limit int,
|
||||||
) (map[string][]string, types.StreamPosition, error) {
|
) (map[string][]types.RelationEntry, types.StreamPosition, error) {
|
||||||
var lastPos types.StreamPosition
|
var lastPos types.StreamPosition
|
||||||
var rows *sql.Rows
|
var rows *sql.Rows
|
||||||
var err error
|
var err error
|
||||||
|
|
@ -134,7 +134,7 @@ func (s *relationsStatements) SelectRelationsInRange(
|
||||||
return nil, lastPos, err
|
return nil, lastPos, err
|
||||||
}
|
}
|
||||||
defer internal.CloseAndLogIfError(ctx, rows, "selectRelationsInRange: rows.close() failed")
|
defer internal.CloseAndLogIfError(ctx, rows, "selectRelationsInRange: rows.close() failed")
|
||||||
result := map[string][]string{}
|
result := map[string][]types.RelationEntry{}
|
||||||
for rows.Next() {
|
for rows.Next() {
|
||||||
var (
|
var (
|
||||||
id types.StreamPosition
|
id types.StreamPosition
|
||||||
|
|
@ -148,7 +148,10 @@ func (s *relationsStatements) SelectRelationsInRange(
|
||||||
if id > lastPos {
|
if id > lastPos {
|
||||||
lastPos = id
|
lastPos = id
|
||||||
}
|
}
|
||||||
result[relType] = append(result[relType], childEventID)
|
result[relType] = append(result[relType], types.RelationEntry{
|
||||||
|
Position: id,
|
||||||
|
EventID: childEventID,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
if lastPos == 0 {
|
if lastPos == 0 {
|
||||||
lastPos = r.To
|
lastPos = r.To
|
||||||
|
|
|
||||||
|
|
@ -598,28 +598,47 @@ func (d *DatabaseTransaction) MaxStreamPositionForRelations(ctx context.Context)
|
||||||
func (d *DatabaseTransaction) RelationsFor(ctx context.Context, roomID, eventID, relType, eventType string, from, to types.StreamPosition, limit int) (
|
func (d *DatabaseTransaction) RelationsFor(ctx context.Context, roomID, eventID, relType, eventType string, from, to types.StreamPosition, limit int) (
|
||||||
clientEvents []gomatrixserverlib.ClientEvent, prevBatch, nextBatch string, err error,
|
clientEvents []gomatrixserverlib.ClientEvent, prevBatch, nextBatch string, err error,
|
||||||
) {
|
) {
|
||||||
// TODO: Nothing here is limited or setting prev_batch or next_batch
|
|
||||||
var eventIDs []string
|
var eventIDs []string
|
||||||
r := types.Range{
|
r := types.Range{
|
||||||
From: from,
|
From: from,
|
||||||
To: to,
|
To: to,
|
||||||
Backwards: from > to,
|
Backwards: from > to,
|
||||||
}
|
}
|
||||||
rels, _, err := d.Relations.SelectRelationsInRange(ctx, d.txn, roomID, eventID, relType, r, limit+1)
|
relations, _, err := d.Relations.SelectRelationsInRange(ctx, d.txn, roomID, eventID, relType, r, limit+1)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, "", "", fmt.Errorf("d.Relations.SelectRelationsInRange: %w", err)
|
return nil, "", "", fmt.Errorf("d.Relations.SelectRelationsInRange: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
entries := []types.RelationEntry{}
|
||||||
if relType != "" {
|
if relType != "" {
|
||||||
eventIDs = rels[relType]
|
entries = relations[relType]
|
||||||
} else {
|
} else {
|
||||||
for _, ids := range rels {
|
for _, e := range relations {
|
||||||
eventIDs = append(eventIDs, ids...)
|
entries = append(entries, e...)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if len(entries) == 0 {
|
||||||
|
return nil, "", "", nil
|
||||||
|
}
|
||||||
|
|
||||||
|
if from > 0 {
|
||||||
|
prevBatch = fmt.Sprintf("%d", entries[0].Position-1)
|
||||||
|
}
|
||||||
|
if len(entries) > limit {
|
||||||
|
nextBatch = fmt.Sprintf("%d", entries[len(entries)-1].Position)
|
||||||
|
entries = entries[:len(entries)-1]
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, entry := range entries {
|
||||||
|
eventIDs = append(eventIDs, entry.EventID)
|
||||||
|
}
|
||||||
|
|
||||||
events, err := d.OutputEvents.SelectEvents(ctx, d.txn, eventIDs, nil, true)
|
events, err := d.OutputEvents.SelectEvents(ctx, d.txn, eventIDs, nil, true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, "", "", fmt.Errorf("d.OutputEvents.SelectEvents: %w", err)
|
return nil, "", "", fmt.Errorf("d.OutputEvents.SelectEvents: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, event := range events {
|
for _, event := range events {
|
||||||
if eventType != "" && event.Type() != eventType {
|
if eventType != "" && event.Type() != eventType {
|
||||||
continue
|
continue
|
||||||
|
|
@ -629,5 +648,6 @@ func (d *DatabaseTransaction) RelationsFor(ctx context.Context, roomID, eventID,
|
||||||
gomatrixserverlib.ToClientEvent(event.Event, gomatrixserverlib.FormatAll),
|
gomatrixserverlib.ToClientEvent(event.Event, gomatrixserverlib.FormatAll),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
return clientEvents, prevBatch, nextBatch, nil
|
return clientEvents, prevBatch, nextBatch, nil
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -123,7 +123,7 @@ func (s *relationsStatements) DeleteRelation(
|
||||||
func (s *relationsStatements) SelectRelationsInRange(
|
func (s *relationsStatements) SelectRelationsInRange(
|
||||||
ctx context.Context, txn *sql.Tx, roomID, eventID, relType string,
|
ctx context.Context, txn *sql.Tx, roomID, eventID, relType string,
|
||||||
r types.Range, limit int,
|
r types.Range, limit int,
|
||||||
) (map[string][]string, types.StreamPosition, error) {
|
) (map[string][]types.RelationEntry, types.StreamPosition, error) {
|
||||||
var lastPos types.StreamPosition
|
var lastPos types.StreamPosition
|
||||||
var rows *sql.Rows
|
var rows *sql.Rows
|
||||||
var err error
|
var err error
|
||||||
|
|
@ -138,7 +138,7 @@ func (s *relationsStatements) SelectRelationsInRange(
|
||||||
return nil, lastPos, err
|
return nil, lastPos, err
|
||||||
}
|
}
|
||||||
defer internal.CloseAndLogIfError(ctx, rows, "selectRelationsInRange: rows.close() failed")
|
defer internal.CloseAndLogIfError(ctx, rows, "selectRelationsInRange: rows.close() failed")
|
||||||
result := map[string][]string{}
|
result := map[string][]types.RelationEntry{}
|
||||||
for rows.Next() {
|
for rows.Next() {
|
||||||
var (
|
var (
|
||||||
id types.StreamPosition
|
id types.StreamPosition
|
||||||
|
|
@ -152,7 +152,10 @@ func (s *relationsStatements) SelectRelationsInRange(
|
||||||
if id > lastPos {
|
if id > lastPos {
|
||||||
lastPos = id
|
lastPos = id
|
||||||
}
|
}
|
||||||
result[relType] = append(result[relType], childEventID)
|
result[relType] = append(result[relType], types.RelationEntry{
|
||||||
|
Position: id,
|
||||||
|
EventID: childEventID,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
if lastPos == 0 {
|
if lastPos == 0 {
|
||||||
lastPos = r.To
|
lastPos = r.To
|
||||||
|
|
|
||||||
|
|
@ -210,6 +210,6 @@ type Presence interface {
|
||||||
type Relations interface {
|
type Relations interface {
|
||||||
InsertRelation(ctx context.Context, txn *sql.Tx, roomID, eventID, childEventID, relType string) (streamPos types.StreamPosition, err error)
|
InsertRelation(ctx context.Context, txn *sql.Tx, roomID, eventID, childEventID, relType string) (streamPos types.StreamPosition, err error)
|
||||||
DeleteRelation(ctx context.Context, txn *sql.Tx, roomID, childEventID string) error
|
DeleteRelation(ctx context.Context, txn *sql.Tx, roomID, childEventID string) error
|
||||||
SelectRelationsInRange(ctx context.Context, txn *sql.Tx, roomID, eventID, relType string, r types.Range, limit int) (map[string][]string, types.StreamPosition, error)
|
SelectRelationsInRange(ctx context.Context, txn *sql.Tx, roomID, eventID, relType string, r types.Range, limit int) (map[string][]types.RelationEntry, types.StreamPosition, error)
|
||||||
SelectMaxRelationID(ctx context.Context, txn *sql.Tx) (id int64, err error)
|
SelectMaxRelationID(ctx context.Context, txn *sql.Tx) (id int64, err error)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -607,3 +607,8 @@ type OutputSendToDeviceEvent struct {
|
||||||
type IgnoredUsers struct {
|
type IgnoredUsers struct {
|
||||||
List map[string]interface{} `json:"ignored_users"`
|
List map[string]interface{} `json:"ignored_users"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RelationEntry struct {
|
||||||
|
Position StreamPosition
|
||||||
|
EventID string
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue