BREAKING: add id column to account data table

This will be used for optimising which events we send back.
This commit is contained in:
Kegan Dougal 2023-01-09 15:37:51 +00:00
parent 95a5af3abe
commit 92a24a14c9
2 changed files with 96 additions and 26 deletions

View File

@ -11,6 +11,7 @@ import (
const AccountDataGlobalRoom = "" const AccountDataGlobalRoom = ""
type AccountData struct { type AccountData struct {
ID int64 `db:"id"`
UserID string `db:"user_id"` UserID string `db:"user_id"`
RoomID string `db:"room_id"` RoomID string `db:"room_id"`
Type string `db:"type"` Type string `db:"type"`
@ -23,7 +24,9 @@ type AccountDataTable struct{}
func NewAccountDataTable(db *sqlx.DB) *AccountDataTable { func NewAccountDataTable(db *sqlx.DB) *AccountDataTable {
// make sure tables are made // make sure tables are made
db.MustExec(` db.MustExec(`
CREATE SEQUENCE IF NOT EXISTS syncv3_account_data_seq;
CREATE TABLE IF NOT EXISTS syncv3_account_data ( CREATE TABLE IF NOT EXISTS syncv3_account_data (
id BIGINT NOT NULL DEFAULT nextval('syncv3_account_data_seq'),
user_id TEXT NOT NULL, user_id TEXT NOT NULL,
room_id TEXT NOT NULL, -- optional if global room_id TEXT NOT NULL, -- optional if global
type TEXT NOT NULL, type TEXT NOT NULL,
@ -54,7 +57,7 @@ func (t *AccountDataTable) Insert(txn *sqlx.Tx, accDatas []AccountData) ([]Accou
for _, chunk := range chunks { for _, chunk := range chunks {
_, err := txn.NamedExec(` _, err := txn.NamedExec(`
INSERT INTO syncv3_account_data (user_id, room_id, type, data) INSERT INTO syncv3_account_data (user_id, room_id, type, data)
VALUES (:user_id, :room_id, :type, :data) ON CONFLICT (user_id, room_id, type) DO UPDATE SET data = EXCLUDED.data`, chunk) VALUES (:user_id, :room_id, :type, :data) ON CONFLICT (user_id, room_id, type) DO UPDATE SET data = EXCLUDED.data, id=nextval('syncv3_account_data_seq')`, chunk)
if err != nil { if err != nil {
return nil, err return nil, err
} }
@ -63,24 +66,24 @@ func (t *AccountDataTable) Insert(txn *sqlx.Tx, accDatas []AccountData) ([]Accou
} }
func (t *AccountDataTable) Select(txn *sqlx.Tx, userID string, eventTypes []string, roomID string) (datas []AccountData, err error) { func (t *AccountDataTable) Select(txn *sqlx.Tx, userID string, eventTypes []string, roomID string) (datas []AccountData, err error) {
err = txn.Select(&datas, `SELECT user_id, room_id, type, data FROM syncv3_account_data err = txn.Select(&datas, `SELECT id, user_id, room_id, type, data FROM syncv3_account_data
WHERE user_id=$1 AND type=ANY($2) AND room_id=$3`, userID, pq.StringArray(eventTypes), roomID) WHERE user_id=$1 AND type=ANY($2) AND room_id=$3`, userID, pq.StringArray(eventTypes), roomID)
return return
} }
func (t *AccountDataTable) SelectWithType(txn *sqlx.Tx, userID, evType string) (datas []AccountData, err error) { func (t *AccountDataTable) SelectWithType(txn *sqlx.Tx, userID, evType string) (datas []AccountData, err error) {
err = txn.Select(&datas, `SELECT user_id, room_id, type, data FROM syncv3_account_data err = txn.Select(&datas, `SELECT id, user_id, room_id, type, data FROM syncv3_account_data
WHERE user_id=$1 AND type=$2 AND room_id != ''`, userID, evType) WHERE user_id=$1 AND type=$2 AND room_id != ''`, userID, evType)
return return
} }
func (t *AccountDataTable) SelectMany(txn *sqlx.Tx, userID string, roomIDs ...string) (datas []AccountData, err error) { func (t *AccountDataTable) SelectMany(txn *sqlx.Tx, userID string, roomIDs ...string) (datas []AccountData, err error) {
if len(roomIDs) == 0 { if len(roomIDs) == 0 {
err = txn.Select(&datas, `SELECT user_id, room_id, type, data FROM syncv3_account_data err = txn.Select(&datas, `SELECT id, user_id, room_id, type, data FROM syncv3_account_data
WHERE user_id=$1 AND room_id = $2`, userID, AccountDataGlobalRoom) WHERE user_id=$1 AND room_id = $2`, userID, AccountDataGlobalRoom)
return return
} }
err = txn.Select(&datas, `SELECT user_id, room_id, type, data FROM syncv3_account_data err = txn.Select(&datas, `SELECT id, user_id, room_id, type, data FROM syncv3_account_data
WHERE user_id=$1 AND room_id=ANY($2)`, userID, pq.StringArray(roomIDs)) WHERE user_id=$1 AND room_id=ANY($2)`, userID, pq.StringArray(roomIDs))
return return
} }

View File

@ -1,7 +1,7 @@
package state package state
import ( import (
"reflect" "bytes"
"sort" "sort"
"testing" "testing"
@ -9,7 +9,8 @@ import (
"github.com/matrix-org/sliding-sync/sync2" "github.com/matrix-org/sliding-sync/sync2"
) )
func accountDatasEqual(gots, wants []AccountData) bool { func assertAccountDatasEqual(t *testing.T, msg string, gots, wants []AccountData) {
t.Helper()
key := func(a AccountData) string { key := func(a AccountData) string {
return a.UserID + a.RoomID + a.Type return a.UserID + a.RoomID + a.Type
} }
@ -19,7 +20,26 @@ func accountDatasEqual(gots, wants []AccountData) bool {
sort.Slice(wants, func(i, j int) bool { sort.Slice(wants, func(i, j int) bool {
return key(wants[i]) < key(wants[j]) return key(wants[i]) < key(wants[j])
}) })
return reflect.DeepEqual(gots, wants) if len(gots) != len(wants) {
t.Fatalf("%s: got %v want %v", msg, gots, wants)
}
for i := range wants {
if gots[i].RoomID != wants[i].RoomID {
t.Errorf("%s[%d]: got room id %v want %v", msg, i, gots[i].RoomID, wants[i].RoomID)
}
if gots[i].Type != wants[i].Type {
t.Errorf("%s[%d]: got type %v want %v", msg, i, gots[i].Type, wants[i].Type)
}
if gots[i].UserID != wants[i].UserID {
t.Errorf("%s[%d]: got user id %v want %v", msg, i, gots[i].UserID, wants[i].UserID)
}
if !bytes.Equal(gots[i].Data, wants[i].Data) {
t.Errorf("%s[%d]: got data %v want %v", msg, i, string(gots[i].Data), string(wants[i].Data))
}
if wants[i].ID > 0 && gots[i].ID != wants[i].ID {
t.Errorf("%s[%d]: got id %v want %v", msg, i, gots[i].ID, wants[i].ID)
}
}
} }
func TestAccountData(t *testing.T) { func TestAccountData(t *testing.T) {
@ -94,18 +114,14 @@ func TestAccountData(t *testing.T) {
if err != nil { if err != nil {
t.Fatalf("Select: %s", err) t.Fatalf("Select: %s", err)
} }
if !reflect.DeepEqual(gotData[0], accountData[len(accountData)-1]) { assertAccountDatasEqual(t, "Select: expected updated event to be returned but wasn't", []AccountData{gotData[0]}, []AccountData{accountData[len(accountData)-1]})
t.Fatalf("Select: expected updated event to be returned but wasn't. Got %+v want %+v", gotData, accountData[len(accountData)-1])
}
// Select the global event // Select the global event
gotData, err = table.Select(txn, alice, []string{eventType}, sync2.AccountDataGlobalRoom) gotData, err = table.Select(txn, alice, []string{eventType}, sync2.AccountDataGlobalRoom)
if err != nil { if err != nil {
t.Fatalf("Select: %s", err) t.Fatalf("Select: %s", err)
} }
if !reflect.DeepEqual(gotData[0], accountData[len(accountData)-3]) { assertAccountDatasEqual(t, "Select: expected global event to be returned but wasn't", []AccountData{gotData[0]}, []AccountData{accountData[len(accountData)-3]})
t.Fatalf("Select: expected global event to be returned but wasn't. Got %+v want %+v", gotData, accountData[len(accountData)-3])
}
// Select all global events for alice // Select all global events for alice
wantDatas := []AccountData{ wantDatas := []AccountData{
@ -115,9 +131,7 @@ func TestAccountData(t *testing.T) {
if err != nil { if err != nil {
t.Fatalf("SelectMany: %s", err) t.Fatalf("SelectMany: %s", err)
} }
if !accountDatasEqual(gotDatas, wantDatas) { assertAccountDatasEqual(t, "SelectMany", gotDatas, wantDatas)
t.Fatalf("SelectMany: got %v want %v", gotDatas, wantDatas)
}
// Select all room events for alice // Select all room events for alice
wantDatas = []AccountData{ wantDatas = []AccountData{
@ -127,9 +141,7 @@ func TestAccountData(t *testing.T) {
if err != nil { if err != nil {
t.Fatalf("SelectMany: %s", err) t.Fatalf("SelectMany: %s", err)
} }
if !accountDatasEqual(gotDatas, wantDatas) { assertAccountDatasEqual(t, "SelectMany", gotDatas, wantDatas)
t.Fatalf("SelectMany: got %v want %v", gotDatas, wantDatas)
}
// Select all room events for unknown user // Select all room events for unknown user
gotDatas, err = table.SelectMany(txn, "@someone-else:localhost", roomA) gotDatas, err = table.SelectMany(txn, "@someone-else:localhost", roomA)
@ -148,9 +160,7 @@ func TestAccountData(t *testing.T) {
wantDatas = []AccountData{ wantDatas = []AccountData{
accountData[1], accountData[6], accountData[1], accountData[6],
} }
if !accountDatasEqual(gotDatas, wantDatas) { assertAccountDatasEqual(t, "SelectWithType", gotDatas, wantDatas)
t.Fatalf("SelectWithType: got %v want %v", gotDatas, wantDatas)
}
// Select all types in this room // Select all types in this room
gotDatas, err = table.Select(txn, alice, []string{eventType, "dummy"}, roomB) gotDatas, err = table.Select(txn, alice, []string{eventType, "dummy"}, roomB)
@ -160,8 +170,65 @@ func TestAccountData(t *testing.T) {
wantDatas = []AccountData{ wantDatas = []AccountData{
accountData[1], accountData[2], accountData[1], accountData[2],
} }
if !accountDatasEqual(gotDatas, wantDatas) { assertAccountDatasEqual(t, "Select(multi-types)", gotDatas, wantDatas)
t.Fatalf("Select(multi-types): got %v want %v", gotDatas, wantDatas)
}
} }
func TestAccountDataIDIncrements(t *testing.T) {
db, err := sqlx.Open("postgres", postgresConnectionString)
if err != nil {
t.Fatalf("failed to open SQL db: %s", err)
}
txn, err := db.Beginx()
if err != nil {
t.Fatalf("failed to start txn: %s", err)
}
alice := "@alice_TestAccountDataIDIncrements:localhost"
roomA := "!TestAccountData_A:localhost"
//roomB := "!TestAccountData_B:localhost"
eventType := "the_event_type"
data := AccountData{
UserID: alice,
RoomID: roomA,
Type: eventType,
Data: []byte(`{"foo":"bar"}`),
}
table := NewAccountDataTable(db)
_, err = table.Insert(txn, []AccountData{
data,
})
assertNoError(t, err)
// make sure all selects return an id
gots, err := table.SelectWithType(txn, alice, eventType)
assertNoError(t, err)
assertAccountDatasEqual(t, "SelectWithType", gots, []AccountData{data})
if gots[0].ID == 0 {
t.Fatalf("missing id field")
}
data.ID = gots[0].ID
gots, err = table.Select(txn, alice, []string{eventType}, roomA)
assertNoError(t, err)
assertAccountDatasEqual(t, "Select", gots, []AccountData{data})
gots, err = table.SelectMany(txn, alice, roomA)
assertNoError(t, err)
assertAccountDatasEqual(t, "SelectMany", gots, []AccountData{data})
// now replace the data, which should update the id
data.Data = []byte(`{"foo":"bar2"}`)
_, err = table.Insert(txn, []AccountData{
data,
})
assertNoError(t, err)
gots, err = table.Select(txn, alice, []string{eventType}, roomA)
assertNoError(t, err)
if gots[0].ID < data.ID {
t.Fatalf("id was not incremented, got %d want %d", gots[0].ID, data.ID)
}
data.ID = gots[0].ID
assertAccountDatasEqual(t, "Select", gots, []AccountData{data})
gots, err = table.SelectMany(txn, alice, roomA)
assertNoError(t, err)
assertAccountDatasEqual(t, "SelectMany", gots, []AccountData{data})
gots, err = table.SelectWithType(txn, alice, eventType)
assertNoError(t, err)
assertAccountDatasEqual(t, "SelectWithType", gots, []AccountData{data})
}