2017-04-21 00:40:52 +02:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
2020-02-05 19:06:39 +01:00
|
|
|
// Copyright 2018 New Vector Ltd
|
|
|
|
// Copyright 2019-2020 The Matrix.org Foundation C.I.C.
|
2017-04-21 00:40:52 +02:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2020-09-02 18:13:15 +02:00
|
|
|
package input
|
2017-02-21 15:50:30 +01:00
|
|
|
|
|
|
|
import (
|
2017-09-13 17:30:19 +02:00
|
|
|
"context"
|
2020-06-11 20:50:40 +02:00
|
|
|
"fmt"
|
2017-07-12 11:46:29 +02:00
|
|
|
|
2022-09-05 18:25:11 +02:00
|
|
|
"github.com/getsentry/sentry-go"
|
2022-08-05 11:12:41 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/matrix-org/util"
|
|
|
|
"github.com/opentracing/opentracing-go"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
2022-02-23 16:41:32 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2017-02-27 12:25:35 +01:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2017-03-08 16:10:26 +01:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/state"
|
2020-08-19 14:24:54 +02:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/storage/shared"
|
2017-02-21 15:50:30 +01:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/types"
|
|
|
|
)
|
|
|
|
|
2017-02-27 12:25:35 +01:00
|
|
|
// updateLatestEvents updates the list of latest events for this room in the database and writes the
|
|
|
|
// event to the output log.
|
2017-02-21 15:50:30 +01:00
|
|
|
// The latest events are the events that aren't referenced by another event in the database:
|
|
|
|
//
|
2022-08-05 11:12:41 +02:00
|
|
|
// Time goes down the page. 1 is the m.room.create event (root).
|
|
|
|
// 1 After storing 1 the latest events are {1}
|
|
|
|
// | After storing 2 the latest events are {2}
|
|
|
|
// 2 After storing 3 the latest events are {3}
|
|
|
|
// / \ After storing 4 the latest events are {3,4}
|
|
|
|
// 3 4 After storing 5 the latest events are {5,4}
|
|
|
|
// | | After storing 6 the latest events are {5,6}
|
|
|
|
// 5 6 <--- latest After storing 7 the latest events are {6,7}
|
|
|
|
// |
|
|
|
|
// 7 <----- latest
|
2017-02-21 15:50:30 +01:00
|
|
|
//
|
2017-12-15 16:22:06 +01:00
|
|
|
// Can only be called once at a time
|
2020-09-02 18:13:15 +02:00
|
|
|
func (r *Inputer) updateLatestEvents(
|
2017-09-13 17:30:19 +02:00
|
|
|
ctx context.Context,
|
2020-09-02 11:02:48 +02:00
|
|
|
roomInfo *types.RoomInfo,
|
2017-06-27 16:28:44 +02:00
|
|
|
stateAtEvent types.StateAtEvent,
|
2020-11-16 16:44:53 +01:00
|
|
|
event *gomatrixserverlib.Event,
|
2017-06-27 16:28:44 +02:00
|
|
|
sendAsServer string,
|
2017-12-04 19:07:52 +01:00
|
|
|
transactionID *api.TransactionID,
|
2020-09-15 12:17:46 +02:00
|
|
|
rewritesState bool,
|
2022-06-13 16:11:10 +02:00
|
|
|
historyVisibility gomatrixserverlib.HistoryVisibility,
|
2017-02-21 15:50:30 +01:00
|
|
|
) (err error) {
|
2022-06-07 15:23:26 +02:00
|
|
|
span, ctx := opentracing.StartSpanFromContext(ctx, "updateLatestEvents")
|
|
|
|
defer span.Finish()
|
|
|
|
|
2022-02-23 16:41:32 +01:00
|
|
|
var succeeded bool
|
|
|
|
updater, err := r.DB.GetRoomUpdater(ctx, roomInfo)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("r.DB.GetRoomUpdater: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
defer sqlutil.EndTransactionWithCheck(updater, &succeeded, &err)
|
|
|
|
|
2017-08-08 17:38:03 +02:00
|
|
|
u := latestEventsUpdater{
|
2022-06-13 16:11:10 +02:00
|
|
|
ctx: ctx,
|
|
|
|
api: r,
|
|
|
|
updater: updater,
|
|
|
|
roomInfo: roomInfo,
|
|
|
|
stateAtEvent: stateAtEvent,
|
|
|
|
event: event,
|
|
|
|
sendAsServer: sendAsServer,
|
|
|
|
transactionID: transactionID,
|
|
|
|
rewritesState: rewritesState,
|
|
|
|
historyVisibility: historyVisibility,
|
2017-08-08 17:38:03 +02:00
|
|
|
}
|
2020-05-18 18:49:24 +02:00
|
|
|
|
2017-08-21 17:37:11 +02:00
|
|
|
if err = u.doUpdateLatestEvents(); err != nil {
|
2020-08-19 16:38:27 +02:00
|
|
|
return fmt.Errorf("u.doUpdateLatestEvents: %w", err)
|
2017-08-21 17:37:11 +02:00
|
|
|
}
|
|
|
|
|
2022-02-23 16:41:32 +01:00
|
|
|
succeeded = true
|
2017-08-21 17:37:11 +02:00
|
|
|
return
|
2017-02-21 15:50:30 +01:00
|
|
|
}
|
|
|
|
|
2017-08-08 17:38:03 +02:00
|
|
|
// latestEventsUpdater tracks the state used to update the latest events in the
|
|
|
|
// room. It mostly just ferries state between the various function calls.
|
|
|
|
// The state could be passed using function arguments, but it becomes impractical
|
|
|
|
// when there are so many variables to pass around.
|
|
|
|
type latestEventsUpdater struct {
|
2017-12-04 19:07:52 +01:00
|
|
|
ctx context.Context
|
2020-09-02 18:13:15 +02:00
|
|
|
api *Inputer
|
2022-02-04 11:39:34 +01:00
|
|
|
updater *shared.RoomUpdater
|
2020-09-02 11:02:48 +02:00
|
|
|
roomInfo *types.RoomInfo
|
2017-12-04 19:07:52 +01:00
|
|
|
stateAtEvent types.StateAtEvent
|
2020-11-16 16:44:53 +01:00
|
|
|
event *gomatrixserverlib.Event
|
2017-12-04 19:07:52 +01:00
|
|
|
transactionID *api.TransactionID
|
2020-09-15 12:17:46 +02:00
|
|
|
rewritesState bool
|
2017-08-08 17:38:03 +02:00
|
|
|
// Which server to send this event as.
|
|
|
|
sendAsServer string
|
|
|
|
// The eventID of the event that was processed before this one.
|
|
|
|
lastEventIDSent string
|
|
|
|
// The latest events in the room after processing this event.
|
2022-05-26 11:38:46 +02:00
|
|
|
oldLatest types.StateAtEventAndReferences
|
|
|
|
latest types.StateAtEventAndReferences
|
2017-08-08 17:38:03 +02:00
|
|
|
// The state entries removed from and added to the current state of the
|
|
|
|
// room as a result of processing this event. They are sorted lists.
|
|
|
|
removed []types.StateEntry
|
|
|
|
added []types.StateEntry
|
|
|
|
// The state entries that are removed and added to recover the state before
|
|
|
|
// the event being processed. They are sorted lists.
|
|
|
|
stateBeforeEventRemoves []types.StateEntry
|
|
|
|
stateBeforeEventAdds []types.StateEntry
|
|
|
|
// The snapshots of current state before and after processing this event
|
|
|
|
oldStateNID types.StateSnapshotNID
|
|
|
|
newStateNID types.StateSnapshotNID
|
2022-06-13 16:11:10 +02:00
|
|
|
// The history visibility of the event itself (from the state before the event).
|
|
|
|
historyVisibility gomatrixserverlib.HistoryVisibility
|
2017-08-08 17:38:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (u *latestEventsUpdater) doUpdateLatestEvents() error {
|
|
|
|
u.lastEventIDSent = u.updater.LastEventIDSent()
|
2017-02-21 15:50:30 +01:00
|
|
|
|
2020-05-18 18:49:24 +02:00
|
|
|
// If we are doing a regular event update then we will get the
|
|
|
|
// previous latest events to use as a part of the calculation. If
|
|
|
|
// we are overwriting the latest events because we have a complete
|
|
|
|
// state snapshot from somewhere else, e.g. a federated room join,
|
|
|
|
// then start with an empty set - none of the forward extremities
|
|
|
|
// that we knew about before matter anymore.
|
2022-05-26 11:38:46 +02:00
|
|
|
u.oldLatest = types.StateAtEventAndReferences{}
|
2020-10-22 11:39:16 +02:00
|
|
|
if !u.rewritesState {
|
|
|
|
u.oldStateNID = u.updater.CurrentStateSnapshotNID()
|
2021-01-18 14:21:33 +01:00
|
|
|
u.oldLatest = u.updater.LatestEvents()
|
2020-05-18 18:49:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// If the event has already been written to the output log then we
|
|
|
|
// don't need to do anything, as we've handled it already.
|
2020-10-14 13:39:37 +02:00
|
|
|
if hasBeenSent, err := u.updater.HasEventBeenSent(u.stateAtEvent.EventNID); err != nil {
|
2020-08-19 16:38:27 +02:00
|
|
|
return fmt.Errorf("u.updater.HasEventBeenSent: %w", err)
|
2017-02-27 12:25:35 +01:00
|
|
|
} else if hasBeenSent {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-10-07 15:05:33 +02:00
|
|
|
// Work out what the latest events are. This will include the new
|
|
|
|
// event if it is not already referenced.
|
2020-10-21 16:37:07 +02:00
|
|
|
extremitiesChanged, err := u.calculateLatest(
|
2021-01-18 14:21:33 +01:00
|
|
|
u.oldLatest, u.event,
|
2020-05-18 18:49:24 +02:00
|
|
|
types.StateAtEventAndReference{
|
2020-10-07 15:05:33 +02:00
|
|
|
EventReference: u.event.EventReference(),
|
2020-05-18 18:49:24 +02:00
|
|
|
StateAtEvent: u.stateAtEvent,
|
|
|
|
},
|
2020-10-21 16:37:07 +02:00
|
|
|
)
|
|
|
|
if err != nil {
|
2020-10-14 13:39:37 +02:00
|
|
|
return fmt.Errorf("u.calculateLatest: %w", err)
|
|
|
|
}
|
2017-02-27 12:25:35 +01:00
|
|
|
|
2020-05-18 18:49:24 +02:00
|
|
|
// Now that we know what the latest events are, it's time to get the
|
|
|
|
// latest state.
|
2020-10-21 16:37:07 +02:00
|
|
|
var updates []api.OutputEvent
|
2020-10-22 11:39:16 +02:00
|
|
|
if extremitiesChanged || u.rewritesState {
|
2020-10-21 16:37:07 +02:00
|
|
|
if err = u.latestState(); err != nil {
|
|
|
|
return fmt.Errorf("u.latestState: %w", err)
|
|
|
|
}
|
2017-03-07 11:25:01 +01:00
|
|
|
|
2020-10-21 16:37:07 +02:00
|
|
|
// If we need to generate any output events then here's where we do it.
|
|
|
|
// TODO: Move this!
|
|
|
|
if updates, err = u.api.updateMemberships(u.ctx, u.updater, u.removed, u.added); err != nil {
|
|
|
|
return fmt.Errorf("u.api.updateMemberships: %w", err)
|
|
|
|
}
|
2020-10-21 17:21:36 +02:00
|
|
|
} else {
|
|
|
|
u.newStateNID = u.oldStateNID
|
2017-03-07 11:25:01 +01:00
|
|
|
}
|
|
|
|
|
2022-09-05 14:16:14 +02:00
|
|
|
if err = u.updater.SetLatestEvents(u.roomInfo.RoomNID, u.latest, u.stateAtEvent.EventNID, u.newStateNID); err != nil {
|
|
|
|
return fmt.Errorf("u.updater.SetLatestEvents: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-10-19 15:59:13 +02:00
|
|
|
update, err := u.makeOutputNewRoomEvent()
|
2017-06-27 14:20:04 +02:00
|
|
|
if err != nil {
|
2020-08-19 16:38:27 +02:00
|
|
|
return fmt.Errorf("u.makeOutputNewRoomEvent: %w", err)
|
2017-06-27 14:20:04 +02:00
|
|
|
}
|
2017-08-08 17:38:03 +02:00
|
|
|
updates = append(updates, *update)
|
2017-06-27 14:20:04 +02:00
|
|
|
|
2017-02-27 12:25:35 +01:00
|
|
|
// Send the event to the output logs.
|
|
|
|
// We do this inside the database transaction to ensure that we only mark an event as sent if we sent it.
|
|
|
|
// (n.b. this means that it's possible that the same event will be sent twice if the transaction fails but
|
|
|
|
// the write to the output log succeeds)
|
|
|
|
// TODO: This assumes that writing the event to the output log is synchronous. It should be possible to
|
|
|
|
// send the event asynchronously but we would need to ensure that 1) the events are written to the log in
|
|
|
|
// the correct order, 2) that pending writes are resent across restarts. In order to avoid writing all the
|
|
|
|
// necessary bookkeeping we'll keep the event sending synchronous for now.
|
2022-07-01 11:54:07 +02:00
|
|
|
if err = u.api.OutputProducer.ProduceRoomEvents(u.event.RoomID(), updates); err != nil {
|
2020-08-19 16:38:27 +02:00
|
|
|
return fmt.Errorf("u.api.WriteOutputEvents: %w", err)
|
2017-02-27 12:25:35 +01:00
|
|
|
}
|
|
|
|
|
2020-08-19 16:38:27 +02:00
|
|
|
if err = u.updater.MarkEventAsSent(u.stateAtEvent.EventNID); err != nil {
|
|
|
|
return fmt.Errorf("u.updater.MarkEventAsSent: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2017-02-27 12:25:35 +01:00
|
|
|
}
|
|
|
|
|
2017-08-08 17:38:03 +02:00
|
|
|
func (u *latestEventsUpdater) latestState() error {
|
2022-06-07 15:23:26 +02:00
|
|
|
span, ctx := opentracing.StartSpanFromContext(u.ctx, "processEventWithMissingState")
|
|
|
|
defer span.Finish()
|
|
|
|
|
2017-08-08 17:38:03 +02:00
|
|
|
var err error
|
2022-02-04 11:39:34 +01:00
|
|
|
roomState := state.NewStateResolution(u.updater, u.roomInfo)
|
2017-08-08 17:38:03 +02:00
|
|
|
|
2021-01-18 14:21:33 +01:00
|
|
|
// Work out if the state at the extremities has actually changed
|
|
|
|
// or not. If they haven't then we won't bother doing all of the
|
|
|
|
// hard work.
|
2022-06-01 10:46:21 +02:00
|
|
|
if !u.stateAtEvent.IsStateEvent() {
|
2021-01-18 14:21:33 +01:00
|
|
|
stateChanged := false
|
|
|
|
oldStateNIDs := make([]types.StateSnapshotNID, 0, len(u.oldLatest))
|
|
|
|
newStateNIDs := make([]types.StateSnapshotNID, 0, len(u.latest))
|
|
|
|
for _, old := range u.oldLatest {
|
|
|
|
oldStateNIDs = append(oldStateNIDs, old.BeforeStateSnapshotNID)
|
|
|
|
}
|
|
|
|
for _, new := range u.latest {
|
|
|
|
newStateNIDs = append(newStateNIDs, new.BeforeStateSnapshotNID)
|
|
|
|
}
|
|
|
|
oldStateNIDs = state.UniqueStateSnapshotNIDs(oldStateNIDs)
|
|
|
|
newStateNIDs = state.UniqueStateSnapshotNIDs(newStateNIDs)
|
|
|
|
if len(oldStateNIDs) != len(newStateNIDs) {
|
|
|
|
stateChanged = true
|
|
|
|
} else {
|
|
|
|
for i := range oldStateNIDs {
|
|
|
|
if oldStateNIDs[i] != newStateNIDs[i] {
|
|
|
|
stateChanged = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !stateChanged {
|
|
|
|
u.newStateNID = u.oldStateNID
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-01 11:09:27 +02:00
|
|
|
// Get a list of the current latest events. This may or may not
|
|
|
|
// include the new event from the input path, depending on whether
|
|
|
|
// it is a forward extremity or not.
|
|
|
|
latestStateAtEvents := make([]types.StateAtEvent, len(u.latest))
|
|
|
|
for i := range u.latest {
|
|
|
|
latestStateAtEvents[i] = u.latest[i].StateAtEvent
|
2017-08-08 17:38:03 +02:00
|
|
|
}
|
2020-05-18 18:49:24 +02:00
|
|
|
|
|
|
|
// Takes the NIDs of the latest events and creates a state snapshot
|
|
|
|
// of the state after the events. The snapshot state will be resolved
|
|
|
|
// using the correct state resolution algorithm for the room.
|
2020-02-05 19:06:39 +01:00
|
|
|
u.newStateNID, err = roomState.CalculateAndStoreStateAfterEvents(
|
2022-06-07 15:23:26 +02:00
|
|
|
ctx, latestStateAtEvents,
|
2017-09-13 17:30:19 +02:00
|
|
|
)
|
2017-08-08 17:38:03 +02:00
|
|
|
if err != nil {
|
2020-08-19 16:38:27 +02:00
|
|
|
return fmt.Errorf("roomState.CalculateAndStoreStateAfterEvents: %w", err)
|
2017-08-08 17:38:03 +02:00
|
|
|
}
|
|
|
|
|
2022-09-16 11:35:32 +02:00
|
|
|
// Include information about what changed in the state transition. If the
|
|
|
|
// event rewrites the state (i.e. is a federated join) then we will simply
|
|
|
|
// include the entire state snapshot as added events, as the "RewritesState"
|
|
|
|
// flag in the output event signals downstream components to purge their
|
|
|
|
// room state first. If it doesn't rewrite the state then we will work out
|
|
|
|
// what the difference is between the state snapshots and send that. In all
|
|
|
|
// cases where a state event is being replaced, the old state event will
|
|
|
|
// appear in "removed" and the replacement will appear in "added".
|
|
|
|
if u.rewritesState {
|
|
|
|
u.removed = []types.StateEntry{}
|
|
|
|
u.added, err = roomState.LoadStateAtSnapshot(ctx, u.newStateNID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("roomState.LoadStateAtSnapshot: %w", err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
u.removed, u.added, err = roomState.DifferenceBetweeenStateSnapshots(
|
|
|
|
ctx, u.oldStateNID, u.newStateNID,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("roomState.DifferenceBetweenStateSnapshots: %w", err)
|
|
|
|
}
|
2017-08-08 17:38:03 +02:00
|
|
|
}
|
|
|
|
|
2022-09-05 18:08:54 +02:00
|
|
|
if removed := len(u.removed) - len(u.added); !u.rewritesState && removed > 0 {
|
2022-05-25 17:40:31 +02:00
|
|
|
logrus.WithFields(logrus.Fields{
|
|
|
|
"event_id": u.event.EventID(),
|
|
|
|
"room_id": u.event.RoomID(),
|
|
|
|
"old_state_nid": u.oldStateNID,
|
|
|
|
"new_state_nid": u.newStateNID,
|
2022-05-26 11:38:46 +02:00
|
|
|
"old_latest": u.oldLatest.EventIDs(),
|
|
|
|
"new_latest": u.latest.EventIDs(),
|
2022-09-05 18:08:54 +02:00
|
|
|
}).Warnf("State reset detected (removing %d events)", removed)
|
2022-09-05 18:25:11 +02:00
|
|
|
sentry.WithScope(func(scope *sentry.Scope) {
|
|
|
|
scope.SetLevel("warning")
|
2022-09-07 17:24:43 +02:00
|
|
|
scope.SetContext("State reset", map[string]interface{}{
|
2022-09-07 17:23:22 +02:00
|
|
|
"Event ID": u.event.EventID(),
|
|
|
|
"Old state NID": fmt.Sprintf("%d", u.oldStateNID),
|
|
|
|
"New state NID": fmt.Sprintf("%d", u.newStateNID),
|
|
|
|
"Old latest": u.oldLatest.EventIDs(),
|
|
|
|
"New latest": u.latest.EventIDs(),
|
|
|
|
"State removed": removed,
|
|
|
|
})
|
2022-09-05 18:25:11 +02:00
|
|
|
sentry.CaptureMessage("State reset detected")
|
|
|
|
})
|
2022-05-25 17:40:31 +02:00
|
|
|
}
|
|
|
|
|
2020-05-18 18:49:24 +02:00
|
|
|
// Also work out the state before the event removes and the event
|
|
|
|
// adds.
|
2020-02-05 19:06:39 +01:00
|
|
|
u.stateBeforeEventRemoves, u.stateBeforeEventAdds, err = roomState.DifferenceBetweeenStateSnapshots(
|
2022-06-07 15:23:26 +02:00
|
|
|
ctx, u.newStateNID, u.stateAtEvent.BeforeStateSnapshotNID,
|
2017-08-08 17:38:03 +02:00
|
|
|
)
|
2020-08-19 16:38:27 +02:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("roomState.DifferenceBetweeenStateSnapshots: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2017-08-08 17:38:03 +02:00
|
|
|
}
|
|
|
|
|
2020-10-19 15:59:13 +02:00
|
|
|
// calculateLatest works out the new set of forward extremities. Returns
|
|
|
|
// true if the new event is included in those extremites, false otherwise.
|
2020-10-07 15:05:33 +02:00
|
|
|
func (u *latestEventsUpdater) calculateLatest(
|
2017-09-13 17:30:19 +02:00
|
|
|
oldLatest []types.StateAtEventAndReference,
|
2020-10-21 16:37:07 +02:00
|
|
|
newEvent *gomatrixserverlib.Event,
|
|
|
|
newStateAndRef types.StateAtEventAndReference,
|
|
|
|
) (bool, error) {
|
2022-06-07 15:23:26 +02:00
|
|
|
span, _ := opentracing.StartSpanFromContext(u.ctx, "calculateLatest")
|
|
|
|
defer span.Finish()
|
|
|
|
|
2020-10-21 16:37:07 +02:00
|
|
|
// First of all, get a list of all of the events in our current
|
|
|
|
// set of forward extremities.
|
|
|
|
existingRefs := make(map[string]*types.StateAtEventAndReference)
|
|
|
|
for i, old := range oldLatest {
|
|
|
|
existingRefs[old.EventID] = &oldLatest[i]
|
|
|
|
}
|
|
|
|
|
2021-01-11 13:47:25 +01:00
|
|
|
// If the "new" event is already a forward extremity then stop, as
|
|
|
|
// nothing changes.
|
|
|
|
if _, ok := existingRefs[newEvent.EventID()]; ok {
|
|
|
|
u.latest = oldLatest
|
|
|
|
return false, nil
|
2017-02-21 15:50:30 +01:00
|
|
|
}
|
|
|
|
|
2021-01-11 13:47:25 +01:00
|
|
|
// If the "new" event is already referenced by an existing event
|
2020-10-21 16:37:07 +02:00
|
|
|
// then do nothing - it's not a candidate to be a new extremity if
|
|
|
|
// it has been referenced.
|
2021-01-11 13:47:25 +01:00
|
|
|
if referenced, err := u.updater.IsReferenced(newEvent.EventReference()); err != nil {
|
|
|
|
return false, fmt.Errorf("u.updater.IsReferenced(new): %w", err)
|
|
|
|
} else if referenced {
|
2020-12-09 14:34:37 +01:00
|
|
|
u.latest = oldLatest
|
2020-10-21 16:37:07 +02:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2021-01-11 13:47:25 +01:00
|
|
|
// Then let's see if any of the existing forward extremities now
|
|
|
|
// have entries in the previous events table. If they do then we
|
|
|
|
// will no longer include them as forward extremities.
|
2022-05-06 16:52:44 +02:00
|
|
|
for k, l := range existingRefs {
|
2021-01-11 13:47:25 +01:00
|
|
|
referenced, err := u.updater.IsReferenced(l.EventReference)
|
|
|
|
if err != nil {
|
|
|
|
return false, fmt.Errorf("u.updater.IsReferenced: %w", err)
|
|
|
|
} else if referenced {
|
2022-05-06 16:52:44 +02:00
|
|
|
delete(existingRefs, k)
|
2021-01-11 13:47:25 +01:00
|
|
|
}
|
2020-10-07 15:05:33 +02:00
|
|
|
}
|
|
|
|
|
2022-05-06 16:52:44 +02:00
|
|
|
// Start off with our new unreferenced event. We're reusing the backing
|
|
|
|
// array here rather than allocating a new one.
|
|
|
|
u.latest = append(u.latest[:0], newStateAndRef)
|
2020-10-21 16:37:07 +02:00
|
|
|
|
2022-05-06 16:52:44 +02:00
|
|
|
// If our new event references any of the existing forward extremities
|
|
|
|
// then they are no longer forward extremities, so remove them.
|
2020-10-21 16:37:07 +02:00
|
|
|
for _, prevEventID := range newEvent.PrevEventIDs() {
|
|
|
|
delete(existingRefs, prevEventID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Then re-add any old extremities that are still valid after all.
|
|
|
|
for _, old := range existingRefs {
|
2022-05-06 16:52:44 +02:00
|
|
|
u.latest = append(u.latest, *old)
|
2017-02-21 15:50:30 +01:00
|
|
|
}
|
|
|
|
|
2020-10-21 16:37:07 +02:00
|
|
|
return true, nil
|
2017-02-27 12:25:35 +01:00
|
|
|
}
|
|
|
|
|
2017-08-08 17:38:03 +02:00
|
|
|
func (u *latestEventsUpdater) makeOutputNewRoomEvent() (*api.OutputEvent, error) {
|
|
|
|
latestEventIDs := make([]string, len(u.latest))
|
|
|
|
for i := range u.latest {
|
|
|
|
latestEventIDs[i] = u.latest[i].EventID
|
2017-02-21 15:50:30 +01:00
|
|
|
}
|
|
|
|
|
2017-07-12 11:46:29 +02:00
|
|
|
ore := api.OutputNewRoomEvent{
|
2022-06-13 16:11:10 +02:00
|
|
|
Event: u.event.Headered(u.roomInfo.RoomVersion),
|
|
|
|
RewritesState: u.rewritesState,
|
|
|
|
LastSentEventID: u.lastEventIDSent,
|
|
|
|
LatestEventIDs: latestEventIDs,
|
|
|
|
TransactionID: u.transactionID,
|
|
|
|
SendAsServer: u.sendAsServer,
|
|
|
|
HistoryVisibility: u.historyVisibility,
|
2017-03-07 11:25:01 +01:00
|
|
|
}
|
|
|
|
|
2020-06-11 20:50:40 +02:00
|
|
|
eventIDMap, err := u.stateEventMap()
|
2017-03-07 11:25:01 +01:00
|
|
|
if err != nil {
|
2017-08-08 17:38:03 +02:00
|
|
|
return nil, err
|
2017-03-07 11:25:01 +01:00
|
|
|
}
|
2017-08-08 17:38:03 +02:00
|
|
|
for _, entry := range u.added {
|
2017-03-07 11:25:01 +01:00
|
|
|
ore.AddsStateEventIDs = append(ore.AddsStateEventIDs, eventIDMap[entry.EventNID])
|
|
|
|
}
|
2017-08-08 17:38:03 +02:00
|
|
|
for _, entry := range u.removed {
|
2017-03-07 11:25:01 +01:00
|
|
|
ore.RemovesStateEventIDs = append(ore.RemovesStateEventIDs, eventIDMap[entry.EventNID])
|
|
|
|
}
|
2017-08-08 17:38:03 +02:00
|
|
|
for _, entry := range u.stateBeforeEventRemoves {
|
2017-06-27 14:20:04 +02:00
|
|
|
ore.StateBeforeRemovesEventIDs = append(ore.StateBeforeRemovesEventIDs, eventIDMap[entry.EventNID])
|
|
|
|
}
|
2017-08-08 17:38:03 +02:00
|
|
|
for _, entry := range u.stateBeforeEventAdds {
|
2017-06-27 14:20:04 +02:00
|
|
|
ore.StateBeforeAddsEventIDs = append(ore.StateBeforeAddsEventIDs, eventIDMap[entry.EventNID])
|
|
|
|
}
|
2020-10-19 15:59:13 +02:00
|
|
|
|
2017-08-08 17:38:03 +02:00
|
|
|
return &api.OutputEvent{
|
|
|
|
Type: api.OutputTypeNewRoomEvent,
|
|
|
|
NewRoomEvent: &ore,
|
|
|
|
}, nil
|
2017-02-21 15:50:30 +01:00
|
|
|
}
|
2017-06-27 14:20:04 +02:00
|
|
|
|
2020-06-11 20:50:40 +02:00
|
|
|
// retrieve an event nid -> event ID map for all events that need updating
|
|
|
|
func (u *latestEventsUpdater) stateEventMap() (map[types.EventNID]string, error) {
|
2022-03-07 18:17:16 +01:00
|
|
|
cap := len(u.added) + len(u.removed) + len(u.stateBeforeEventRemoves) + len(u.stateBeforeEventAdds)
|
|
|
|
stateEventNIDs := make(types.EventNIDs, 0, cap)
|
|
|
|
allStateEntries := make([]types.StateEntry, 0, cap)
|
2020-06-11 20:50:40 +02:00
|
|
|
allStateEntries = append(allStateEntries, u.added...)
|
|
|
|
allStateEntries = append(allStateEntries, u.removed...)
|
|
|
|
allStateEntries = append(allStateEntries, u.stateBeforeEventRemoves...)
|
|
|
|
allStateEntries = append(allStateEntries, u.stateBeforeEventAdds...)
|
|
|
|
for _, entry := range allStateEntries {
|
|
|
|
stateEventNIDs = append(stateEventNIDs, entry.EventNID)
|
|
|
|
}
|
2022-03-07 18:17:16 +01:00
|
|
|
stateEventNIDs = stateEventNIDs[:util.SortAndUnique(stateEventNIDs)]
|
2022-02-04 11:39:34 +01:00
|
|
|
return u.updater.EventIDs(u.ctx, stateEventNIDs)
|
2020-06-11 20:50:40 +02:00
|
|
|
}
|