2018-07-05 16:34:59 +00:00
|
|
|
// Copyright 2018 New Vector Ltd
|
2020-02-14 14:12:33 +00:00
|
|
|
// Copyright 2019-2020 The Matrix.org Foundation C.I.C.
|
2018-07-05 16:34:59 +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-02-14 14:12:33 +00:00
|
|
|
package sqlite3
|
2018-07-05 16:34:59 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
2020-07-21 14:48:21 +00:00
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2018-07-05 16:34:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const txnIDSchema = `
|
|
|
|
-- Keeps a count of the current transaction ID
|
2020-02-14 14:12:33 +00:00
|
|
|
CREATE TABLE IF NOT EXISTS appservice_counters (
|
|
|
|
name TEXT PRIMARY KEY NOT NULL,
|
|
|
|
last_id INTEGER DEFAULT 1
|
|
|
|
);
|
|
|
|
INSERT OR IGNORE INTO appservice_counters (name, last_id) VALUES('txn_id', 1);
|
2018-07-05 16:34:59 +00:00
|
|
|
`
|
|
|
|
|
2020-02-14 14:12:33 +00:00
|
|
|
const selectTxnIDSQL = `
|
|
|
|
SELECT last_id FROM appservice_counters WHERE name='txn_id';
|
|
|
|
UPDATE appservice_counters SET last_id=last_id+1 WHERE name='txn_id';
|
|
|
|
`
|
2018-07-05 16:34:59 +00:00
|
|
|
|
|
|
|
type txnStatements struct {
|
2020-07-21 14:48:21 +00:00
|
|
|
db *sql.DB
|
2020-08-21 09:42:08 +00:00
|
|
|
writer sqlutil.Writer
|
2018-07-05 16:34:59 +00:00
|
|
|
selectTxnIDStmt *sql.Stmt
|
|
|
|
}
|
|
|
|
|
2020-08-21 09:42:08 +00:00
|
|
|
func (s *txnStatements) prepare(db *sql.DB, writer sqlutil.Writer) (err error) {
|
2020-07-21 14:48:21 +00:00
|
|
|
s.db = db
|
2020-08-21 09:42:08 +00:00
|
|
|
s.writer = writer
|
2018-07-05 16:34:59 +00:00
|
|
|
_, err = db.Exec(txnIDSchema)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.selectTxnIDStmt, err = db.Prepare(selectTxnIDSQL); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// selectTxnID selects the latest ascending transaction ID
|
|
|
|
func (s *txnStatements) selectTxnID(
|
|
|
|
ctx context.Context,
|
|
|
|
) (txnID int, err error) {
|
2020-07-21 14:48:21 +00:00
|
|
|
err = s.writer.Do(s.db, nil, func(txn *sql.Tx) error {
|
|
|
|
err := s.selectTxnIDStmt.QueryRowContext(ctx).Scan(&txnID)
|
|
|
|
return err
|
|
|
|
})
|
2018-07-05 16:34:59 +00:00
|
|
|
return
|
|
|
|
}
|