mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
* fix: FormatException: Unexpected extension byte (at offset 8) error * fix: PowerShell script error repair, Windows data parsing repair * fix: Unable to obtain network card information * fix: Unable to obtain system startup time * fix conversation as resolved.
82 lines
1.6 KiB
Dart
82 lines
1.6 KiB
Dart
import 'dart:collection';
|
|
|
|
class Fifo<T> extends ListBase<T> {
|
|
final int capacity;
|
|
late final List<T> _list;
|
|
var _count = 0;
|
|
|
|
Fifo({this.capacity = 30, List<T>? list}) : _list = list ?? <T>[];
|
|
|
|
@override
|
|
void add(element) {
|
|
_count++;
|
|
if (_list.length == capacity) {
|
|
_list.removeAt(0);
|
|
}
|
|
_list.add(element);
|
|
}
|
|
|
|
@override
|
|
int get length => _list.length;
|
|
|
|
int get count => _count;
|
|
|
|
@override
|
|
set length(int newLength) {
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
@override
|
|
T operator [](int index) {
|
|
return _list[index];
|
|
}
|
|
|
|
@override
|
|
void operator []=(int index, value) {
|
|
_list[index] = value;
|
|
}
|
|
}
|
|
|
|
abstract class TimeSeq<T extends TimeSeqIface<T>> extends Fifo<List<T>> {
|
|
/// Due to the design, at least two elements are required, otherwise [pre] /
|
|
/// [now] will throw.
|
|
TimeSeq(List<T> init1, List<T> init2, {super.capacity}) : super(list: [init1, init2]);
|
|
|
|
List<T> get pre {
|
|
return _list[length - 2];
|
|
}
|
|
|
|
List<T> get now {
|
|
return _list[length - 1];
|
|
}
|
|
|
|
void onUpdate();
|
|
|
|
void update(List<T> new_) {
|
|
add(new_);
|
|
|
|
if (pre.length != now.length) {
|
|
final previous = pre.toList(growable: false);
|
|
final remaining = previous.toList(growable: true);
|
|
final aligned = <T>[];
|
|
|
|
for (final current in now) {
|
|
final matchIndex = remaining.indexWhere((item) => item.same(current));
|
|
if (matchIndex >= 0) {
|
|
aligned.add(remaining.removeAt(matchIndex));
|
|
} else {
|
|
aligned.add(current);
|
|
}
|
|
}
|
|
|
|
_list[length - 2] = aligned;
|
|
}
|
|
|
|
onUpdate();
|
|
}
|
|
}
|
|
|
|
abstract class TimeSeqIface<T> {
|
|
bool same(T other);
|
|
}
|