2020-02-13 17:27:33 +00:00
|
|
|
// Copyright 2017-2018 New Vector Ltd
|
|
|
|
// Copyright 2019-2020 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
package sqlite3
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
"strings"
|
|
|
|
|
2020-05-21 13:40:13 +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 14:42:42 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/storage/tables"
|
2020-02-13 17:27:33 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
const eventStateKeysSchema = `
|
|
|
|
CREATE TABLE IF NOT EXISTS roomserver_event_state_keys (
|
|
|
|
event_state_key_nid INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
|
|
event_state_key TEXT NOT NULL UNIQUE
|
|
|
|
);
|
|
|
|
INSERT INTO roomserver_event_state_keys (event_state_key_nid, event_state_key)
|
|
|
|
VALUES (1, '')
|
|
|
|
ON CONFLICT DO NOTHING;
|
|
|
|
`
|
|
|
|
|
|
|
|
// Same as insertEventTypeNIDSQL
|
|
|
|
const insertEventStateKeyNIDSQL = `
|
|
|
|
INSERT INTO roomserver_event_state_keys (event_state_key) VALUES ($1)
|
|
|
|
ON CONFLICT DO NOTHING;
|
|
|
|
`
|
|
|
|
|
|
|
|
const selectEventStateKeyNIDSQL = `
|
|
|
|
SELECT event_state_key_nid FROM roomserver_event_state_keys
|
|
|
|
WHERE event_state_key = $1
|
|
|
|
`
|
|
|
|
|
|
|
|
// Bulk lookup from string state key to numeric ID for that state key.
|
|
|
|
// Takes an array of strings as the query parameter.
|
2020-05-04 17:34:09 +00:00
|
|
|
const bulkSelectEventStateKeySQL = `
|
2020-02-13 17:27:33 +00:00
|
|
|
SELECT event_state_key, event_state_key_nid FROM roomserver_event_state_keys
|
|
|
|
WHERE event_state_key IN ($1)
|
|
|
|
`
|
|
|
|
|
|
|
|
// Bulk lookup from numeric ID to string state key for that state key.
|
|
|
|
// Takes an array of strings as the query parameter.
|
2020-05-04 17:34:09 +00:00
|
|
|
const bulkSelectEventStateKeyNIDSQL = `
|
2020-02-13 17:27:33 +00:00
|
|
|
SELECT event_state_key, event_state_key_nid FROM roomserver_event_state_keys
|
|
|
|
WHERE event_state_key_nid IN ($1)
|
|
|
|
`
|
|
|
|
|
|
|
|
type eventStateKeyStatements struct {
|
|
|
|
db *sql.DB
|
|
|
|
insertEventStateKeyNIDStmt *sql.Stmt
|
|
|
|
selectEventStateKeyNIDStmt *sql.Stmt
|
|
|
|
bulkSelectEventStateKeyNIDStmt *sql.Stmt
|
|
|
|
bulkSelectEventStateKeyStmt *sql.Stmt
|
|
|
|
}
|
|
|
|
|
2020-08-19 14:38:27 +00:00
|
|
|
func NewSqliteEventStateKeysTable(db *sql.DB) (tables.EventStateKeys, error) {
|
2020-07-21 09:48:49 +00:00
|
|
|
s := &eventStateKeyStatements{
|
2020-08-19 14:38:27 +00:00
|
|
|
db: db,
|
2020-07-21 09:48:49 +00:00
|
|
|
}
|
2020-05-26 14:42:42 +00:00
|
|
|
_, err := db.Exec(eventStateKeysSchema)
|
2020-02-13 17:27:33 +00:00
|
|
|
if err != nil {
|
2020-05-26 14:42:42 +00:00
|
|
|
return nil, err
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
2020-05-27 10:03:47 +00:00
|
|
|
return s, shared.StatementList{
|
2020-02-13 17:27:33 +00:00
|
|
|
{&s.insertEventStateKeyNIDStmt, insertEventStateKeyNIDSQL},
|
|
|
|
{&s.selectEventStateKeyNIDStmt, selectEventStateKeyNIDSQL},
|
|
|
|
{&s.bulkSelectEventStateKeyNIDStmt, bulkSelectEventStateKeyNIDSQL},
|
|
|
|
{&s.bulkSelectEventStateKeyStmt, bulkSelectEventStateKeySQL},
|
2020-05-27 10:03:47 +00:00
|
|
|
}.Prepare(db)
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
|
|
|
|
2020-05-26 14:42:42 +00:00
|
|
|
func (s *eventStateKeyStatements) InsertEventStateKeyNID(
|
2020-02-13 17:27:33 +00:00
|
|
|
ctx context.Context, txn *sql.Tx, eventStateKey string,
|
|
|
|
) (types.EventStateKeyNID, error) {
|
2020-08-19 14:38:27 +00:00
|
|
|
insertStmt := sqlutil.TxStmt(txn, s.insertEventStateKeyNIDStmt)
|
|
|
|
res, err := insertStmt.ExecContext(ctx, eventStateKey)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
eventStateKeyNID, err := res.LastInsertId()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2020-02-13 17:27:33 +00:00
|
|
|
return types.EventStateKeyNID(eventStateKeyNID), err
|
|
|
|
}
|
|
|
|
|
2020-05-26 14:42:42 +00:00
|
|
|
func (s *eventStateKeyStatements) SelectEventStateKeyNID(
|
2020-02-13 17:27:33 +00:00
|
|
|
ctx context.Context, txn *sql.Tx, eventStateKey string,
|
|
|
|
) (types.EventStateKeyNID, error) {
|
|
|
|
var eventStateKeyNID int64
|
2020-06-12 13:55:57 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.selectEventStateKeyNIDStmt)
|
2020-02-13 17:27:33 +00:00
|
|
|
err := stmt.QueryRowContext(ctx, eventStateKey).Scan(&eventStateKeyNID)
|
|
|
|
return types.EventStateKeyNID(eventStateKeyNID), err
|
|
|
|
}
|
|
|
|
|
2020-05-26 14:42:42 +00:00
|
|
|
func (s *eventStateKeyStatements) BulkSelectEventStateKeyNID(
|
|
|
|
ctx context.Context, eventStateKeys []string,
|
2020-02-13 17:27:33 +00:00
|
|
|
) (map[string]types.EventStateKeyNID, error) {
|
|
|
|
iEventStateKeys := make([]interface{}, len(eventStateKeys))
|
|
|
|
for k, v := range eventStateKeys {
|
|
|
|
iEventStateKeys[k] = v
|
|
|
|
}
|
2020-06-12 13:55:57 +00:00
|
|
|
selectOrig := strings.Replace(bulkSelectEventStateKeySQL, "($1)", sqlutil.QueryVariadic(len(eventStateKeys)), 1)
|
2020-02-13 17:27:33 +00:00
|
|
|
|
2020-05-26 14:42:42 +00:00
|
|
|
rows, err := s.db.QueryContext(ctx, selectOrig, iEventStateKeys...)
|
2020-02-13 17:27:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-21 13:40:13 +00:00
|
|
|
defer internal.CloseAndLogIfError(ctx, rows, "bulkSelectEventStateKeyNID: rows.close() failed")
|
2020-02-13 17:27:33 +00:00
|
|
|
result := make(map[string]types.EventStateKeyNID, len(eventStateKeys))
|
|
|
|
for rows.Next() {
|
|
|
|
var stateKey string
|
|
|
|
var stateKeyNID int64
|
|
|
|
if err := rows.Scan(&stateKey, &stateKeyNID); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
result[stateKey] = types.EventStateKeyNID(stateKeyNID)
|
|
|
|
}
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2020-05-26 14:42:42 +00:00
|
|
|
func (s *eventStateKeyStatements) BulkSelectEventStateKey(
|
|
|
|
ctx context.Context, eventStateKeyNIDs []types.EventStateKeyNID,
|
2020-02-13 17:27:33 +00:00
|
|
|
) (map[types.EventStateKeyNID]string, error) {
|
|
|
|
iEventStateKeyNIDs := make([]interface{}, len(eventStateKeyNIDs))
|
|
|
|
for k, v := range eventStateKeyNIDs {
|
|
|
|
iEventStateKeyNIDs[k] = v
|
|
|
|
}
|
2020-06-12 13:55:57 +00:00
|
|
|
selectOrig := strings.Replace(bulkSelectEventStateKeyNIDSQL, "($1)", sqlutil.QueryVariadic(len(eventStateKeyNIDs)), 1)
|
2020-02-13 17:27:33 +00:00
|
|
|
|
2020-05-26 14:42:42 +00:00
|
|
|
rows, err := s.db.QueryContext(ctx, selectOrig, iEventStateKeyNIDs...)
|
2020-02-13 17:27:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-21 13:40:13 +00:00
|
|
|
defer internal.CloseAndLogIfError(ctx, rows, "bulkSelectEventStateKey: rows.close() failed")
|
2020-02-13 17:27:33 +00:00
|
|
|
result := make(map[types.EventStateKeyNID]string, len(eventStateKeyNIDs))
|
|
|
|
for rows.Next() {
|
|
|
|
var stateKey string
|
|
|
|
var stateKeyNID int64
|
|
|
|
if err := rows.Scan(&stateKey, &stateKeyNID); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
result[types.EventStateKeyNID(stateKeyNID)] = stateKey
|
|
|
|
}
|
|
|
|
return result, nil
|
|
|
|
}
|