mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-04 15:08:59 +01:00
9d53351dc2
* Offset updates take place using TransactionWriter * Refactor TransactionWriter in current state server * Refactor TransactionWriter in federation sender * Refactor TransactionWriter in key server * Refactor TransactionWriter in media API * Refactor TransactionWriter in server key API * Refactor TransactionWriter in sync API * Refactor TransactionWriter in user API * Fix deadlocking Sync API tests * Un-deadlock device database * Fix appservice API * Rename TransactionWriters to Writers * Move writers up a layer in sync API * Document sqlutil.Writer interface * Add note to Writer documentation
28 lines
685 B
Go
28 lines
685 B
Go
package sqlutil
|
|
|
|
import (
|
|
"database/sql"
|
|
)
|
|
|
|
// DummyWriter implements sqlutil.Writer.
|
|
// The DummyWriter is designed to allow reuse of the sqlutil.Writer
|
|
// interface but, unlike ExclusiveWriter, it will not guarantee
|
|
// writer exclusivity. This is fine in PostgreSQL where overlapping
|
|
// transactions and writes are acceptable.
|
|
type DummyWriter struct {
|
|
}
|
|
|
|
// NewDummyWriter returns a new dummy writer.
|
|
func NewDummyWriter() Writer {
|
|
return &DummyWriter{}
|
|
}
|
|
|
|
func (w *DummyWriter) Do(db *sql.DB, txn *sql.Tx, f func(txn *sql.Tx) error) error {
|
|
if db != nil && txn == nil {
|
|
return WithTransaction(db, func(txn *sql.Tx) error {
|
|
return f(txn)
|
|
})
|
|
} else {
|
|
return f(txn)
|
|
}
|
|
}
|