Created
May 18, 2024 15:02
-
-
Save lukepighetti/17d3eef82fa8849354e6bece736d22f6 to your computer and use it in GitHub Desktop.
Errors as values in dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:io'; | |
Future<void> main(List<String> arguments) async { | |
final x1 = tryOrNull(() => throwing()); | |
print(x1); | |
final (v1, e1) = tryTuple(() => throwing()); | |
print("$v1, $e1"); | |
final (v2, e2) = tryTuple(() => nonThrowing()); | |
print("$v2, $e2"); | |
final x2 = await tryOrNullAsync(() => timeout(), Duration(seconds: 1)); | |
print(x2); | |
final (v3, e3) = await tryTupleAsync(() => timeout(), Duration(seconds: 1)); | |
print("$v3, $e3"); | |
final (v4, e4) = await tryTupleAsync(() => throwingAsync()); | |
print("$v4, $e4"); | |
final (v5, e5) = await tryTupleAsync(() => nonThrowingAsync()); | |
print("$v5, $e5"); | |
exit(0); | |
} | |
String throwing() { | |
throw Exception('error message'); | |
} | |
String nonThrowing() { | |
return "foo"; | |
} | |
Future<String> timeout() async { | |
await Future.delayed(Duration(minutes: 30)); | |
return "foo"; | |
} | |
Future<String> throwingAsync() async { | |
await Future.delayed(Duration(milliseconds: 500)); | |
throw Exception('error message'); | |
} | |
Future<String> nonThrowingAsync() async { | |
await Future.delayed(Duration(milliseconds: 500)); | |
return "foo"; | |
} | |
T? tryOrNull<T>(T Function() fn) { | |
try { | |
return fn(); | |
} catch (_) { | |
return null; | |
} | |
} | |
Future<T?> tryOrNullAsync<T>(Future<T> Function() fn, | |
[Duration timeout = const Duration(minutes: 1)]) async { | |
try { | |
final x = await fn().timeout(timeout); | |
return x; | |
} catch (_) { | |
return null; | |
} | |
} | |
(T?, Object?) tryTuple<T>(T Function() fn) { | |
try { | |
return (fn(), null); | |
} catch (e) { | |
return (null, e); | |
} | |
} | |
Future<(T?, Object?)> tryTupleAsync<T>(Future<T> Function() fn, | |
[Duration timeout = const Duration(minutes: 1)]) async { | |
try { | |
final x = await fn().timeout(timeout); | |
return (x, null); | |
} catch (e) { | |
return (null, e); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment