2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2025-05-07 12:22:57 +00:00
esiur-dart/lib/src/Core/AsyncReply.dart

220 lines
5.3 KiB
Dart

/*
Copyright (c) 2019 Ahmed Kh. Zamil
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
import 'dart:async';
import 'dart:core';
import 'AsyncException.dart';
import 'ProgressType.dart';
class AsyncReply<T> implements Future<T> {
List<Function(T)> _callbacks = <Function(T)>[];
late T _result;
late StackTrace _stackTrace;
List<Function> _errorCallbacks = <Function>[];
List<Function(ProgressType, int, int)> _progressCallbacks =
<Function(ProgressType, int, int)>[];
List<Function(T)> _chunkCallbacks = <Function(T)>[];
bool _resultReady = false;
AsyncException? _exception;
bool get ready {
return _resultReady;
}
set ready(bool value) {
_resultReady = value;
}
T? get result {
return _result;
}
void setResultReady(bool val) {
_resultReady = val;
}
AsyncReply<T> next(Function(T) callback) {
then(callback);
return this;
}
AsyncReply<R> then<R>(FutureOr<R> onValue(T value), {Function? onError}) {
_stackTrace = StackTrace.current;
_callbacks.add(onValue);
if (onError != null) {
_errorCallbacks.add(onError);
}
if (_resultReady) {
if (_exception != null) {
if (onError != null) {
onError(_exception, _stackTrace);
} else {
throw _exception as AsyncException;
}
} else {
onValue(result as T);
}
}
//if (R == Null)
return AsyncReply<R>();
//else if (R == T) return (AsyncReply<R>)this;
}
@override
Future<T> whenComplete(FutureOr action()) {
return this;
}
// AsyncReply<T> whenComplete(FutureOr action()) {
// return this;
// //_callbacks.add(action);
// }
Stream<T> asStream() {
return Stream.empty();
//return null;
}
@override
AsyncReply<T> catchError(Function onError,
{bool Function(Object error)? test}) {
_errorCallbacks.add(onError);
if (_exception != null) {
if (onError is Function(dynamic, dynamic)) {
onError(_exception, _stackTrace);
} else if (onError is Function(dynamic)) {
onError(_exception);
} else if (onError is Function()) {
onError();
} else if (onError is Function(Object, StackTrace)) {
onError(_exception as Object, _stackTrace);
}
}
return this;
}
AsyncReply<T> timeout(Duration timeLimit, {FutureOr<T?> onTimeout()?}) {
return this;
}
AsyncReply<T> error(callback(AsyncException ex)) {
_errorCallbacks.add(callback);
if (_exception != null) callback(_exception as AsyncException);
return this;
}
AsyncReply<T> progress(Function(ProgressType, int, int) callback) {
_progressCallbacks.add(callback);
return this;
}
AsyncReply<T> chunk(Function(T) callback) {
_chunkCallbacks.add(callback);
return this;
}
AsyncReply<T> trigger(T result) {
if (_resultReady) return this;
_result = result;
_resultReady = true;
_callbacks.forEach((x) {
x(result);
});
return this;
}
AsyncReply<T> triggerError(Exception exception) {
if (_resultReady) return this;
if (exception is AsyncException)
_exception = exception;
else
_exception = AsyncException.toAsyncException(exception);
if (this._errorCallbacks.length == 0)
throw _exception as AsyncException;
else
_errorCallbacks.forEach((x) {
if (x is Function(dynamic, dynamic)) {
x(_exception, _stackTrace);
} else if (x is Function(dynamic)) {
x(_exception);
} else if (x is Function()) {
x();
} else if (x is Function(Object, StackTrace)) {
x(_exception as Object, _stackTrace);
} else if (x is Function(AsyncException)) {
x(_exception!);
} else {
throw Exception("Unknown error handler $x");
}
//x(_exception as AsyncException);
});
//}
return this;
}
AsyncReply<T> triggerProgress(ProgressType type, int value, int max) {
_progressCallbacks.forEach((x) {
x(type, value, max);
});
return this;
}
AsyncReply<T> triggerChunk(T value) {
_chunkCallbacks.forEach((x) {
x(value);
});
return this;
}
AsyncReply.ready(T result) {
_stackTrace = StackTrace.current;
_resultReady = true;
_result = result;
}
AsyncReply() {
_stackTrace = StackTrace.current;
}
}