Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix web database not respecting lock timeouts #88

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/sqlite_async/lib/src/web/database.dart
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class WebDatabase
Future<T> readLock<T>(Future<T> Function(SqliteReadContext tx) callback,
{Duration? lockTimeout, String? debugContext}) async {
if (_mutex case var mutex?) {
return await mutex.lock(() async {
return await mutex.lock(timeout: lockTimeout, () async {
final context = _SharedContext(this);
try {
return await callback(context);
Expand Down Expand Up @@ -135,7 +135,7 @@ class WebDatabase
Future<T> writeLock<T>(Future<T> Function(SqliteWriteContext tx) callback,
{Duration? lockTimeout, String? debugContext, bool? flush}) async {
if (_mutex case var mutex?) {
return await mutex.lock(() async {
return await mutex.lock(timeout: lockTimeout, () async {
final context = _ExclusiveContext(this);
try {
return await callback(context);
Expand Down
5 changes: 2 additions & 3 deletions packages/sqlite_async/lib/src/web/web_mutex.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@ external Navigator get _navigator;
/// Web implementation of [Mutex]
class MutexImpl implements Mutex {
late final mutex.Mutex fallback;
String? identifier;
final String resolvedIdentifier;

MutexImpl({this.identifier})
MutexImpl({String? identifier})

/// On web a lock name is required for Navigator locks.
/// Having exclusive Mutex instances requires a somewhat unique lock name.
Expand All @@ -40,7 +39,7 @@ class MutexImpl implements Mutex {

@override
Future<T> lock<T>(Future<T> Function() callback, {Duration? timeout}) {
if ((_navigator as JSObject).hasProperty('locks'.toJS).toDart) {
if (_navigator.has('locks')) {
return _webLock(callback, timeout: timeout);
} else {
return _fallbackLock(callback, timeout: timeout);
Expand Down
21 changes: 21 additions & 0 deletions packages/sqlite_async/test/basic_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,27 @@ void main() {
expect(await db.get('SELECT description FROM test_data'),
{'description': 'test'});
});

test('respects lock timeouts', () async {
// Unfortunately this test can't use fakeAsync because it uses actual
// lock APIs on the web.
final db = await testUtils.setupDatabase(path: path);
final lockAcquired = Completer();

final completion = db.writeLock((context) async {
lockAcquired.complete();
await Future.delayed(const Duration(seconds: 1));
});

await lockAcquired.future;
await expectLater(
() => db.writeLock(
lockTimeout: Duration(milliseconds: 200), (_) async => {}),
throwsA(isA<TimeoutException>()),
);

await completion;
});
});
}

Expand Down