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"
|
|
|
|
"fmt"
|
2017-08-07 10:51:46 +00:00
|
|
|
"sort"
|
|
|
|
|
2017-02-15 14:43:19 +00:00
|
|
|
"github.com/lib/pq"
|
2020-06-12 13:55:57 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal"
|
2020-05-27 10:03:47 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/storage/shared"
|
2020-05-27 08:36:09 +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"
|
2017-03-09 15:07:18 +00:00
|
|
|
"github.com/matrix-org/util"
|
2017-02-15 14:43:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const stateDataSchema = `
|
|
|
|
-- The state data map.
|
|
|
|
-- Designed to give enough information to run the state resolution algorithm
|
2020-05-21 13:40:13 +00:00
|
|
|
-- without hitting the database in the internal case.
|
2017-02-15 14:43:19 +00:00
|
|
|
-- TODO: Is it worth replacing the unique btree index with a covering index so
|
|
|
|
-- that postgres could lookup the state using an index-only scan?
|
|
|
|
-- The type and state_key are included in the index to make it easier to
|
|
|
|
-- lookup a specific (type, state_key) pair for an event. It also makes it easy
|
|
|
|
-- to read the state for a given state_block_nid ordered by (type, state_key)
|
|
|
|
-- which in turn makes it easier to merge state data blocks.
|
2017-08-07 10:51:46 +00:00
|
|
|
CREATE SEQUENCE IF NOT EXISTS roomserver_state_block_nid_seq;
|
|
|
|
CREATE TABLE IF NOT EXISTS roomserver_state_block (
|
2021-04-26 12:25:57 +00:00
|
|
|
-- The state snapshot NID that identifies this snapshot.
|
|
|
|
state_block_nid bigint PRIMARY KEY DEFAULT nextval('roomserver_state_block_nid_seq'),
|
|
|
|
-- The hash of the state block, which is used to enforce uniqueness. The hash is
|
|
|
|
-- generated in Dendrite and passed through to the database, as a btree index over
|
|
|
|
-- this column is cheap and fits within the maximum index size.
|
|
|
|
state_block_hash BYTEA UNIQUE,
|
|
|
|
-- The event NIDs contained within the state block.
|
|
|
|
event_nids bigint[] NOT NULL
|
2017-02-15 14:43:19 +00:00
|
|
|
);
|
|
|
|
`
|
|
|
|
|
2021-04-26 12:25:57 +00:00
|
|
|
// Insert a new state block. If we conflict on the hash column then
|
|
|
|
// we must perform an update so that the RETURNING statement returns the
|
|
|
|
// ID of the row that we conflicted with, so that we can then refer to
|
|
|
|
// the original block.
|
2017-02-15 14:43:19 +00:00
|
|
|
const insertStateDataSQL = "" +
|
2021-04-26 12:25:57 +00:00
|
|
|
"INSERT INTO roomserver_state_block (state_block_hash, event_nids)" +
|
|
|
|
" VALUES ($1, $2)" +
|
|
|
|
" ON CONFLICT (state_block_hash) DO UPDATE SET event_nids=$2" +
|
|
|
|
" RETURNING state_block_nid"
|
2017-02-15 14:43:19 +00:00
|
|
|
|
2017-03-09 15:07:18 +00:00
|
|
|
const bulkSelectStateBlockEntriesSQL = "" +
|
2021-04-26 12:25:57 +00:00
|
|
|
"SELECT state_block_nid, event_nids" +
|
|
|
|
" FROM roomserver_state_block WHERE state_block_nid = ANY($1)"
|
2017-03-09 15:07:18 +00:00
|
|
|
|
2017-02-15 14:43:19 +00:00
|
|
|
type stateBlockStatements struct {
|
2021-04-26 12:25:57 +00:00
|
|
|
insertStateDataStmt *sql.Stmt
|
|
|
|
bulkSelectStateBlockEntriesStmt *sql.Stmt
|
2017-02-15 14:43:19 +00:00
|
|
|
}
|
|
|
|
|
2021-04-26 12:25:57 +00:00
|
|
|
func createStateBlockTable(db *sql.DB) error {
|
2020-05-27 08:36:09 +00:00
|
|
|
_, err := db.Exec(stateDataSchema)
|
2021-04-26 12:25:57 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func prepareStateBlockTable(db *sql.DB) (tables.StateBlock, error) {
|
|
|
|
s := &stateBlockStatements{}
|
2017-03-07 10:37:41 +00:00
|
|
|
|
2020-05-27 10:03:47 +00:00
|
|
|
return s, shared.StatementList{
|
2017-03-07 10:37:41 +00:00
|
|
|
{&s.insertStateDataStmt, insertStateDataSQL},
|
2017-03-09 15:07:18 +00:00
|
|
|
{&s.bulkSelectStateBlockEntriesStmt, bulkSelectStateBlockEntriesSQL},
|
2020-05-27 10:03:47 +00:00
|
|
|
}.Prepare(db)
|
2017-02-15 14:43:19 +00:00
|
|
|
}
|
|
|
|
|
2020-05-27 08:36:09 +00:00
|
|
|
func (s *stateBlockStatements) BulkInsertStateData(
|
2017-09-13 15:30:19 +00:00
|
|
|
ctx context.Context,
|
2020-05-27 08:36:09 +00:00
|
|
|
txn *sql.Tx,
|
2021-04-26 12:25:57 +00:00
|
|
|
entries types.StateEntries,
|
|
|
|
) (id types.StateBlockNID, err error) {
|
|
|
|
entries = entries[:util.SortAndUnique(entries)]
|
|
|
|
var nids types.EventNIDs
|
|
|
|
for _, e := range entries {
|
|
|
|
nids = append(nids, e.EventNID)
|
2017-02-15 14:43:19 +00:00
|
|
|
}
|
2021-04-26 12:25:57 +00:00
|
|
|
err = s.insertStateDataStmt.QueryRowContext(
|
|
|
|
ctx, nids.Hash(), eventNIDsAsArray(nids),
|
|
|
|
).Scan(&id)
|
|
|
|
return
|
2017-02-15 14:43:19 +00:00
|
|
|
}
|
|
|
|
|
2020-05-27 08:36:09 +00:00
|
|
|
func (s *stateBlockStatements) BulkSelectStateBlockEntries(
|
2021-04-26 12:25:57 +00:00
|
|
|
ctx context.Context, stateBlockNIDs types.StateBlockNIDs,
|
|
|
|
) ([][]types.EventNID, error) {
|
|
|
|
rows, err := s.bulkSelectStateBlockEntriesStmt.QueryContext(ctx, stateBlockNIDsAsArray(stateBlockNIDs))
|
2017-02-15 14:43:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-21 13:40:13 +00:00
|
|
|
defer internal.CloseAndLogIfError(ctx, rows, "bulkSelectStateBlockEntries: rows.close() failed")
|
2017-02-15 14:43:19 +00:00
|
|
|
|
2021-04-26 12:25:57 +00:00
|
|
|
results := make([][]types.EventNID, len(stateBlockNIDs))
|
2017-02-15 14:43:19 +00:00
|
|
|
i := 0
|
2021-04-26 12:25:57 +00:00
|
|
|
for ; rows.Next(); i++ {
|
|
|
|
var stateBlockNID types.StateBlockNID
|
|
|
|
var result pq.Int64Array
|
|
|
|
if err = rows.Scan(&stateBlockNID, &result); err != nil {
|
2017-02-15 14:43:19 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-04-26 12:25:57 +00:00
|
|
|
r := []types.EventNID{}
|
|
|
|
for _, e := range result {
|
|
|
|
r = append(r, types.EventNID(e))
|
2017-02-15 14:43:19 +00:00
|
|
|
}
|
2021-04-26 12:25:57 +00:00
|
|
|
results[i] = r
|
2017-02-15 14:43:19 +00:00
|
|
|
}
|
2020-02-11 14:12:21 +00:00
|
|
|
if err = rows.Err(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-15 14:43:19 +00:00
|
|
|
if i != len(stateBlockNIDs) {
|
|
|
|
return nil, fmt.Errorf("storage: state data NIDs missing from the database (%d != %d)", i, len(stateBlockNIDs))
|
|
|
|
}
|
2020-02-11 14:12:21 +00:00
|
|
|
return results, err
|
2017-02-15 14:43:19 +00:00
|
|
|
}
|
2017-03-09 15:07:18 +00:00
|
|
|
|
|
|
|
func stateBlockNIDsAsArray(stateBlockNIDs []types.StateBlockNID) pq.Int64Array {
|
|
|
|
nids := make([]int64, len(stateBlockNIDs))
|
|
|
|
for i := range stateBlockNIDs {
|
|
|
|
nids[i] = int64(stateBlockNIDs[i])
|
|
|
|
}
|
|
|
|
return pq.Int64Array(nids)
|
|
|
|
}
|
|
|
|
|
|
|
|
type stateKeyTupleSorter []types.StateKeyTuple
|
|
|
|
|
|
|
|
func (s stateKeyTupleSorter) Len() int { return len(s) }
|
|
|
|
func (s stateKeyTupleSorter) Less(i, j int) bool { return s[i].LessThan(s[j]) }
|
|
|
|
func (s stateKeyTupleSorter) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
|
|
|
|
|
|
|
|
// Check whether a tuple is in the list. Assumes that the list is sorted.
|
|
|
|
func (s stateKeyTupleSorter) contains(value types.StateKeyTuple) bool {
|
|
|
|
i := sort.Search(len(s), func(i int) bool { return !s[i].LessThan(value) })
|
|
|
|
return i < len(s) && s[i] == value
|
|
|
|
}
|
|
|
|
|
|
|
|
// List the unique eventTypeNIDs and eventStateKeyNIDs.
|
|
|
|
// Assumes that the list is sorted.
|
|
|
|
func (s stateKeyTupleSorter) typesAndStateKeysAsArrays() (eventTypeNIDs pq.Int64Array, eventStateKeyNIDs pq.Int64Array) {
|
|
|
|
eventTypeNIDs = make(pq.Int64Array, len(s))
|
|
|
|
eventStateKeyNIDs = make(pq.Int64Array, len(s))
|
|
|
|
for i := range s {
|
|
|
|
eventTypeNIDs[i] = int64(s[i].EventTypeNID)
|
|
|
|
eventStateKeyNIDs[i] = int64(s[i].EventStateKeyNID)
|
|
|
|
}
|
|
|
|
eventTypeNIDs = eventTypeNIDs[:util.SortAndUnique(int64Sorter(eventTypeNIDs))]
|
|
|
|
eventStateKeyNIDs = eventStateKeyNIDs[:util.SortAndUnique(int64Sorter(eventStateKeyNIDs))]
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type int64Sorter []int64
|
|
|
|
|
|
|
|
func (s int64Sorter) Len() int { return len(s) }
|
|
|
|
func (s int64Sorter) Less(i, j int) bool { return s[i] < s[j] }
|
|
|
|
func (s int64Sorter) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
|