2020-01-03 14:07:05 +00:00
|
|
|
// Copyright 2017-2018 New Vector Ltd
|
|
|
|
// Copyright 2019-2020 The Matrix.org Foundation C.I.C.
|
2017-04-20 22:40:52 +00: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-01-03 14:07:05 +00:00
|
|
|
package postgres
|
2017-02-15 14:43:19 +00:00
|
|
|
|
|
|
|
import (
|
2017-09-13 15:30:19 +00:00
|
|
|
"context"
|
2017-02-15 14:43:19 +00:00
|
|
|
"database/sql"
|
2017-08-07 10:51:46 +00:00
|
|
|
|
2017-02-21 14:50:30 +00:00
|
|
|
"github.com/lib/pq"
|
2020-09-03 16:20:54 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal"
|
2020-06-12 13:55:57 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2020-05-27 10:03:47 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/storage/shared"
|
2020-05-26 17:23:39 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/storage/tables"
|
2017-02-15 14:43:19 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/types"
|
2020-03-16 16:05:29 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-02-15 14:43:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const roomsSchema = `
|
2017-08-07 10:51:46 +00:00
|
|
|
CREATE SEQUENCE IF NOT EXISTS roomserver_room_nid_seq;
|
|
|
|
CREATE TABLE IF NOT EXISTS roomserver_rooms (
|
2017-02-15 14:43:19 +00:00
|
|
|
-- Local numeric ID for the room.
|
2017-08-07 10:51:46 +00:00
|
|
|
room_nid BIGINT PRIMARY KEY DEFAULT nextval('roomserver_room_nid_seq'),
|
2017-02-15 14:43:19 +00:00
|
|
|
-- Textual ID for the room.
|
2017-08-07 10:51:46 +00:00
|
|
|
room_id TEXT NOT NULL CONSTRAINT roomserver_room_id_unique UNIQUE,
|
2017-02-21 14:50:30 +00:00
|
|
|
-- The most recent events in the room that aren't referenced by another event.
|
|
|
|
-- This list may empty if the server hasn't joined the room yet.
|
|
|
|
-- (The server will be in that state while it stores the events for the initial state of the room)
|
2017-02-27 11:25:35 +00:00
|
|
|
latest_event_nids BIGINT[] NOT NULL DEFAULT '{}'::BIGINT[],
|
|
|
|
-- The last event written to the output log for this room.
|
2017-03-07 10:25:01 +00:00
|
|
|
last_event_sent_nid BIGINT NOT NULL DEFAULT 0,
|
|
|
|
-- The state of the room after the current set of latest events.
|
|
|
|
-- This will be 0 if there are no latest events in the room.
|
2020-02-05 16:25:58 +00:00
|
|
|
state_snapshot_nid BIGINT NOT NULL DEFAULT 0,
|
|
|
|
-- The version of the room, which will assist in determining the state resolution
|
|
|
|
-- algorithm, event ID format, etc.
|
2020-03-16 16:05:29 +00:00
|
|
|
room_version TEXT NOT NULL
|
2017-02-15 14:43:19 +00:00
|
|
|
);
|
|
|
|
`
|
|
|
|
|
|
|
|
// Same as insertEventTypeNIDSQL
|
|
|
|
const insertRoomNIDSQL = "" +
|
2020-03-16 16:05:29 +00:00
|
|
|
"INSERT INTO roomserver_rooms (room_id, room_version) VALUES ($1, $2)" +
|
2017-08-07 10:51:46 +00:00
|
|
|
" ON CONFLICT ON CONSTRAINT roomserver_room_id_unique" +
|
2017-02-22 16:51:10 +00:00
|
|
|
" DO NOTHING RETURNING (room_nid)"
|
2017-02-15 14:43:19 +00:00
|
|
|
|
|
|
|
const selectRoomNIDSQL = "" +
|
2017-08-07 10:51:46 +00:00
|
|
|
"SELECT room_nid FROM roomserver_rooms WHERE room_id = $1"
|
2017-02-15 14:43:19 +00:00
|
|
|
|
2017-02-21 14:50:30 +00:00
|
|
|
const selectLatestEventNIDsSQL = "" +
|
2017-08-07 10:51:46 +00:00
|
|
|
"SELECT latest_event_nids, state_snapshot_nid FROM roomserver_rooms WHERE room_nid = $1"
|
2017-03-06 14:29:39 +00:00
|
|
|
|
|
|
|
const selectLatestEventNIDsForUpdateSQL = "" +
|
2017-08-07 10:51:46 +00:00
|
|
|
"SELECT latest_event_nids, last_event_sent_nid, state_snapshot_nid FROM roomserver_rooms WHERE room_nid = $1 FOR UPDATE"
|
2017-02-21 14:50:30 +00:00
|
|
|
|
|
|
|
const updateLatestEventNIDsSQL = "" +
|
2017-08-07 10:51:46 +00:00
|
|
|
"UPDATE roomserver_rooms SET latest_event_nids = $2, last_event_sent_nid = $3, state_snapshot_nid = $4 WHERE room_nid = $1"
|
2017-02-21 14:50:30 +00:00
|
|
|
|
2020-12-16 10:33:28 +00:00
|
|
|
const selectRoomVersionsForRoomNIDsSQL = "" +
|
|
|
|
"SELECT room_nid, room_version FROM roomserver_rooms WHERE room_nid = ANY($1)"
|
2020-03-19 18:33:04 +00:00
|
|
|
|
2020-09-01 11:40:49 +00:00
|
|
|
const selectRoomInfoSQL = "" +
|
|
|
|
"SELECT room_version, room_nid, state_snapshot_nid, latest_event_nids FROM roomserver_rooms WHERE room_id = $1"
|
|
|
|
|
2020-09-03 16:20:54 +00:00
|
|
|
const selectRoomIDsSQL = "" +
|
|
|
|
"SELECT room_id FROM roomserver_rooms"
|
|
|
|
|
|
|
|
const bulkSelectRoomIDsSQL = "" +
|
2020-09-04 13:25:01 +00:00
|
|
|
"SELECT room_id FROM roomserver_rooms WHERE room_nid = ANY($1)"
|
2020-09-03 16:20:54 +00:00
|
|
|
|
2020-09-03 17:27:02 +00:00
|
|
|
const bulkSelectRoomNIDsSQL = "" +
|
2020-09-04 13:25:01 +00:00
|
|
|
"SELECT room_nid FROM roomserver_rooms WHERE room_id = ANY($1)"
|
2020-09-03 17:27:02 +00:00
|
|
|
|
2017-02-15 14:43:19 +00:00
|
|
|
type roomStatements struct {
|
2017-03-06 14:29:39 +00:00
|
|
|
insertRoomNIDStmt *sql.Stmt
|
|
|
|
selectRoomNIDStmt *sql.Stmt
|
|
|
|
selectLatestEventNIDsStmt *sql.Stmt
|
|
|
|
selectLatestEventNIDsForUpdateStmt *sql.Stmt
|
|
|
|
updateLatestEventNIDsStmt *sql.Stmt
|
2020-12-16 10:33:28 +00:00
|
|
|
selectRoomVersionsForRoomNIDsStmt *sql.Stmt
|
2020-09-01 11:40:49 +00:00
|
|
|
selectRoomInfoStmt *sql.Stmt
|
2020-09-03 16:20:54 +00:00
|
|
|
selectRoomIDsStmt *sql.Stmt
|
|
|
|
bulkSelectRoomIDsStmt *sql.Stmt
|
2020-09-03 17:27:02 +00:00
|
|
|
bulkSelectRoomNIDsStmt *sql.Stmt
|
2017-02-15 14:43:19 +00:00
|
|
|
}
|
|
|
|
|
2021-04-26 12:25:57 +00:00
|
|
|
func createRoomsTable(db *sql.DB) error {
|
2020-05-26 17:23:39 +00:00
|
|
|
_, err := db.Exec(roomsSchema)
|
2021-04-26 12:25:57 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func prepareRoomsTable(db *sql.DB) (tables.Rooms, error) {
|
|
|
|
s := &roomStatements{}
|
|
|
|
|
2020-05-27 10:03:47 +00:00
|
|
|
return s, shared.StatementList{
|
2017-03-07 10:37:41 +00:00
|
|
|
{&s.insertRoomNIDStmt, insertRoomNIDSQL},
|
|
|
|
{&s.selectRoomNIDStmt, selectRoomNIDSQL},
|
|
|
|
{&s.selectLatestEventNIDsStmt, selectLatestEventNIDsSQL},
|
|
|
|
{&s.selectLatestEventNIDsForUpdateStmt, selectLatestEventNIDsForUpdateSQL},
|
|
|
|
{&s.updateLatestEventNIDsStmt, updateLatestEventNIDsSQL},
|
2020-12-16 10:33:28 +00:00
|
|
|
{&s.selectRoomVersionsForRoomNIDsStmt, selectRoomVersionsForRoomNIDsSQL},
|
2020-09-01 11:40:49 +00:00
|
|
|
{&s.selectRoomInfoStmt, selectRoomInfoSQL},
|
2020-09-03 16:20:54 +00:00
|
|
|
{&s.selectRoomIDsStmt, selectRoomIDsSQL},
|
|
|
|
{&s.bulkSelectRoomIDsStmt, bulkSelectRoomIDsSQL},
|
2020-09-03 17:27:02 +00:00
|
|
|
{&s.bulkSelectRoomNIDsStmt, bulkSelectRoomNIDsSQL},
|
2020-05-27 10:03:47 +00:00
|
|
|
}.Prepare(db)
|
2017-02-15 14:43:19 +00:00
|
|
|
}
|
|
|
|
|
2020-09-03 16:20:54 +00:00
|
|
|
func (s *roomStatements) SelectRoomIDs(ctx context.Context) ([]string, error) {
|
|
|
|
rows, err := s.selectRoomIDsStmt.QueryContext(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer internal.CloseAndLogIfError(ctx, rows, "selectRoomIDsStmt: rows.close() failed")
|
|
|
|
var roomIDs []string
|
|
|
|
for rows.Next() {
|
|
|
|
var roomID string
|
|
|
|
if err = rows.Scan(&roomID); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
roomIDs = append(roomIDs, roomID)
|
|
|
|
}
|
|
|
|
return roomIDs, nil
|
|
|
|
}
|
2020-05-26 17:23:39 +00:00
|
|
|
func (s *roomStatements) InsertRoomNID(
|
2020-03-16 16:05:29 +00:00
|
|
|
ctx context.Context, txn *sql.Tx,
|
|
|
|
roomID string, roomVersion gomatrixserverlib.RoomVersion,
|
2017-09-13 15:30:19 +00:00
|
|
|
) (types.RoomNID, error) {
|
2017-02-15 14:43:19 +00:00
|
|
|
var roomNID int64
|
2020-06-12 13:55:57 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.insertRoomNIDStmt)
|
2020-03-16 16:05:29 +00:00
|
|
|
err := stmt.QueryRowContext(ctx, roomID, roomVersion).Scan(&roomNID)
|
2017-02-15 14:43:19 +00:00
|
|
|
return types.RoomNID(roomNID), err
|
|
|
|
}
|
|
|
|
|
2020-09-01 11:40:49 +00:00
|
|
|
func (s *roomStatements) SelectRoomInfo(ctx context.Context, roomID string) (*types.RoomInfo, error) {
|
|
|
|
var info types.RoomInfo
|
|
|
|
var latestNIDs pq.Int64Array
|
|
|
|
err := s.selectRoomInfoStmt.QueryRowContext(ctx, roomID).Scan(
|
|
|
|
&info.RoomVersion, &info.RoomNID, &info.StateSnapshotNID, &latestNIDs,
|
|
|
|
)
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
info.IsStub = len(latestNIDs) == 0
|
|
|
|
return &info, err
|
|
|
|
}
|
|
|
|
|
2020-05-26 17:23:39 +00:00
|
|
|
func (s *roomStatements) SelectRoomNID(
|
2017-09-13 15:30:19 +00:00
|
|
|
ctx context.Context, txn *sql.Tx, roomID string,
|
|
|
|
) (types.RoomNID, error) {
|
2017-02-15 14:43:19 +00:00
|
|
|
var roomNID int64
|
2020-06-12 13:55:57 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.selectRoomNIDStmt)
|
2017-09-13 15:30:19 +00:00
|
|
|
err := stmt.QueryRowContext(ctx, roomID).Scan(&roomNID)
|
2017-02-15 14:43:19 +00:00
|
|
|
return types.RoomNID(roomNID), err
|
|
|
|
}
|
2017-02-21 14:50:30 +00:00
|
|
|
|
2020-05-26 17:23:39 +00:00
|
|
|
func (s *roomStatements) SelectLatestEventNIDs(
|
|
|
|
ctx context.Context, txn *sql.Tx, roomNID types.RoomNID,
|
2017-09-13 15:30:19 +00:00
|
|
|
) ([]types.EventNID, types.StateSnapshotNID, error) {
|
2017-03-06 14:29:39 +00:00
|
|
|
var nids pq.Int64Array
|
2017-03-09 15:07:18 +00:00
|
|
|
var stateSnapshotNID int64
|
2017-09-13 15:30:19 +00:00
|
|
|
stmt := s.selectLatestEventNIDsStmt
|
|
|
|
err := stmt.QueryRowContext(ctx, int64(roomNID)).Scan(&nids, &stateSnapshotNID)
|
2017-03-06 14:29:39 +00:00
|
|
|
if err != nil {
|
2017-03-09 15:07:18 +00:00
|
|
|
return nil, 0, err
|
2017-03-06 14:29:39 +00:00
|
|
|
}
|
|
|
|
eventNIDs := make([]types.EventNID, len(nids))
|
|
|
|
for i := range nids {
|
|
|
|
eventNIDs[i] = types.EventNID(nids[i])
|
|
|
|
}
|
2017-03-09 15:07:18 +00:00
|
|
|
return eventNIDs, types.StateSnapshotNID(stateSnapshotNID), nil
|
2017-03-06 14:29:39 +00:00
|
|
|
}
|
|
|
|
|
2020-05-26 17:23:39 +00:00
|
|
|
func (s *roomStatements) SelectLatestEventsNIDsForUpdate(
|
2017-09-13 15:30:19 +00:00
|
|
|
ctx context.Context, txn *sql.Tx, roomNID types.RoomNID,
|
|
|
|
) ([]types.EventNID, types.EventNID, types.StateSnapshotNID, error) {
|
2017-02-21 14:50:30 +00:00
|
|
|
var nids pq.Int64Array
|
2017-02-27 11:25:35 +00:00
|
|
|
var lastEventSentNID int64
|
2017-03-07 10:25:01 +00:00
|
|
|
var stateSnapshotNID int64
|
2020-06-12 13:55:57 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.selectLatestEventNIDsForUpdateStmt)
|
2017-09-13 15:30:19 +00:00
|
|
|
err := stmt.QueryRowContext(ctx, int64(roomNID)).Scan(&nids, &lastEventSentNID, &stateSnapshotNID)
|
2017-02-21 14:50:30 +00:00
|
|
|
if err != nil {
|
2017-03-07 10:25:01 +00:00
|
|
|
return nil, 0, 0, err
|
2017-02-21 14:50:30 +00:00
|
|
|
}
|
|
|
|
eventNIDs := make([]types.EventNID, len(nids))
|
|
|
|
for i := range nids {
|
|
|
|
eventNIDs[i] = types.EventNID(nids[i])
|
|
|
|
}
|
2017-03-07 10:25:01 +00:00
|
|
|
return eventNIDs, types.EventNID(lastEventSentNID), types.StateSnapshotNID(stateSnapshotNID), nil
|
2017-02-21 14:50:30 +00:00
|
|
|
}
|
|
|
|
|
2020-05-26 17:23:39 +00:00
|
|
|
func (s *roomStatements) UpdateLatestEventNIDs(
|
2017-09-13 15:30:19 +00:00
|
|
|
ctx context.Context,
|
|
|
|
txn *sql.Tx,
|
|
|
|
roomNID types.RoomNID,
|
|
|
|
eventNIDs []types.EventNID,
|
|
|
|
lastEventSentNID types.EventNID,
|
2017-03-07 10:25:01 +00:00
|
|
|
stateSnapshotNID types.StateSnapshotNID,
|
|
|
|
) error {
|
2020-06-12 13:55:57 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.updateLatestEventNIDsStmt)
|
2017-09-13 15:30:19 +00:00
|
|
|
_, err := stmt.ExecContext(
|
|
|
|
ctx,
|
|
|
|
roomNID,
|
|
|
|
eventNIDsAsArray(eventNIDs),
|
|
|
|
int64(lastEventSentNID),
|
|
|
|
int64(stateSnapshotNID),
|
2017-03-07 10:25:01 +00:00
|
|
|
)
|
2017-02-21 14:50:30 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-02-05 16:25:58 +00:00
|
|
|
|
2020-12-16 10:33:28 +00:00
|
|
|
func (s *roomStatements) SelectRoomVersionsForRoomNIDs(
|
|
|
|
ctx context.Context, roomNIDs []types.RoomNID,
|
|
|
|
) (map[types.RoomNID]gomatrixserverlib.RoomVersion, error) {
|
|
|
|
rows, err := s.selectRoomVersionsForRoomNIDsStmt.QueryContext(ctx, roomNIDsAsArray(roomNIDs))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2020-03-27 16:28:22 +00:00
|
|
|
}
|
2020-12-16 10:33:28 +00:00
|
|
|
defer internal.CloseAndLogIfError(ctx, rows, "selectRoomVersionsForRoomNIDsStmt: rows.close() failed")
|
|
|
|
result := make(map[types.RoomNID]gomatrixserverlib.RoomVersion)
|
|
|
|
for rows.Next() {
|
|
|
|
var roomNID types.RoomNID
|
|
|
|
var roomVersion gomatrixserverlib.RoomVersion
|
|
|
|
if err = rows.Scan(&roomNID, &roomVersion); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
result[roomNID] = roomVersion
|
|
|
|
}
|
|
|
|
return result, nil
|
2020-03-19 18:33:04 +00:00
|
|
|
}
|
2020-09-03 16:20:54 +00:00
|
|
|
|
|
|
|
func (s *roomStatements) BulkSelectRoomIDs(ctx context.Context, roomNIDs []types.RoomNID) ([]string, error) {
|
|
|
|
var array pq.Int64Array
|
|
|
|
for _, nid := range roomNIDs {
|
|
|
|
array = append(array, int64(nid))
|
|
|
|
}
|
|
|
|
rows, err := s.bulkSelectRoomIDsStmt.QueryContext(ctx, array)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer internal.CloseAndLogIfError(ctx, rows, "bulkSelectRoomIDsStmt: rows.close() failed")
|
|
|
|
var roomIDs []string
|
|
|
|
for rows.Next() {
|
|
|
|
var roomID string
|
|
|
|
if err = rows.Scan(&roomID); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
roomIDs = append(roomIDs, roomID)
|
|
|
|
}
|
|
|
|
return roomIDs, nil
|
|
|
|
}
|
2020-09-03 17:27:02 +00:00
|
|
|
|
|
|
|
func (s *roomStatements) BulkSelectRoomNIDs(ctx context.Context, roomIDs []string) ([]types.RoomNID, error) {
|
|
|
|
var array pq.StringArray
|
|
|
|
for _, roomID := range roomIDs {
|
|
|
|
array = append(array, roomID)
|
|
|
|
}
|
|
|
|
rows, err := s.bulkSelectRoomNIDsStmt.QueryContext(ctx, array)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer internal.CloseAndLogIfError(ctx, rows, "bulkSelectRoomNIDsStmt: rows.close() failed")
|
|
|
|
var roomNIDs []types.RoomNID
|
|
|
|
for rows.Next() {
|
|
|
|
var roomNID types.RoomNID
|
|
|
|
if err = rows.Scan(&roomNID); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
roomNIDs = append(roomNIDs, roomNID)
|
|
|
|
}
|
|
|
|
return roomNIDs, nil
|
|
|
|
}
|
2020-12-16 10:33:28 +00:00
|
|
|
|
|
|
|
func roomNIDsAsArray(roomNIDs []types.RoomNID) pq.Int64Array {
|
|
|
|
nids := make([]int64, len(roomNIDs))
|
|
|
|
for i := range roomNIDs {
|
|
|
|
nids[i] = int64(roomNIDs[i])
|
|
|
|
}
|
|
|
|
return nids
|
|
|
|
}
|