|
@@ -74,8 +74,11 @@ class VidUsImageData {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+///Raised when getting data from the downloaded data timeout. depends on the readHeaderTimeout and
|
|
|
+///readImageTimeout parameters.
|
|
|
class ReadTimeoutException implements Exception {}
|
|
|
|
|
|
+///Raised when the Http operation already closed.
|
|
|
class AlreadyClosedException implements Exception {}
|
|
|
|
|
|
///Only suport read for now.
|
|
@@ -90,6 +93,7 @@ class HttpVidUsImageData {
|
|
|
late Uint8List _extendedData;
|
|
|
late int _readHeaderTimeout;
|
|
|
late int _readImageTimeout;
|
|
|
+ late bool _initialized;
|
|
|
late bool _closed;
|
|
|
|
|
|
final Duration delayDuration = const Duration(milliseconds: 10);
|
|
@@ -107,45 +111,60 @@ class HttpVidUsImageData {
|
|
|
/// Gets the image format of this image data.
|
|
|
VidUsImageFormat get imageFormat => _imageFormat;
|
|
|
|
|
|
- /// Gets or sets the extended data.
|
|
|
+ /// Gets the extended data.
|
|
|
Uint8List get extendedData => _extendedData;
|
|
|
|
|
|
+ /// Gets the initialized state.
|
|
|
+ bool get initialized => _initialized;
|
|
|
+
|
|
|
/// Create a VINNO Image Data.
|
|
|
- /// [readHeaderTimeout] is the timeout value of reading header and probe information etc...
|
|
|
+ /// [readHeaderTimeout] is the timeout value of reading header and probe information etc..., we need give as much time as possible
|
|
|
+ /// to let the reader read the header.
|
|
|
/// [readImageTimeout] is the timeout value of reading one frame.
|
|
|
- HttpVidUsImageData(String url, {DownloadCallback? downloadCallback, int readHeaderTimeout = 1000, int readImageTimeout = 300}) {
|
|
|
+ /// [minChunkSize] The min download chunk size, set to a large value may speedup the download speed, but will cause the progress not smooth.
|
|
|
+ HttpVidUsImageData(String url, {DownloadCallback? downloadCallback, int minChunkSize = 65536, int readHeaderTimeout = 3000, int readImageTimeout = 500}) {
|
|
|
+ _initialized = false;
|
|
|
_closed = false;
|
|
|
_readHeaderTimeout = readHeaderTimeout;
|
|
|
_readImageTimeout = readImageTimeout;
|
|
|
- _reader = VidUsDataHttpReader(url, downloadCallback: downloadCallback);
|
|
|
+ _reader = VidUsDataHttpReader(url, downloadCallback: downloadCallback, minChunkSize: minChunkSize);
|
|
|
+ }
|
|
|
+
|
|
|
+ ///Get the downloaded data of this HttpVidUsImageData
|
|
|
+ Uint8List getDownloadedData() {
|
|
|
+ return _reader.toBytes();
|
|
|
}
|
|
|
|
|
|
- //Initialize the StreamedVidUsImageData
|
|
|
+ ///Initialize the HttpVidUsImageData, must be called firstly.
|
|
|
Future initialize() async {
|
|
|
- var header = await _readHeader();
|
|
|
- if (header != header) {
|
|
|
- throw Exception("The input data is not a VID data.");
|
|
|
- }
|
|
|
- _version = await _readVersion();
|
|
|
- //Get probe info
|
|
|
- _probe = await _readProbe();
|
|
|
- _imageFormat = await _readImageFormat();
|
|
|
- _extendedData = await _readExtendedData();
|
|
|
- _imagePositionList = [];
|
|
|
- var imagePositionListData = await _readImagePositionListData();
|
|
|
- _imageCount = imagePositionListData.length ~/ 8;
|
|
|
- var imagePositionReader = VidUsDataReader(imagePositionListData);
|
|
|
- for (var i = 0; i < _imageCount; i++) {
|
|
|
- _imagePositionList.add(imagePositionReader.readInt64V2());
|
|
|
+ if (!_initialized) {
|
|
|
+ var header = await _readHeader();
|
|
|
+ if (header != header) {
|
|
|
+ throw Exception("The input data is not a VID data.");
|
|
|
+ }
|
|
|
+ _version = await _readVersion();
|
|
|
+ //Get probe info
|
|
|
+ _probe = await _readProbe();
|
|
|
+ _imageFormat = await _readImageFormat();
|
|
|
+ _extendedData = await _readExtendedData();
|
|
|
+ _imagePositionList = [];
|
|
|
+ var imagePositionListData = await _readImagePositionListData();
|
|
|
+ _imageCount = imagePositionListData.length ~/ 8;
|
|
|
+ var imagePositionReader = VidUsDataReader(imagePositionListData);
|
|
|
+ for (var i = 0; i < _imageCount; i++) {
|
|
|
+ _imagePositionList.add(imagePositionReader.readInt64V2());
|
|
|
+ }
|
|
|
+ _initialized = true;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ ///Close the HttpVidUsImageData, it will force close the download operation and reading operation.
|
|
|
void close() {
|
|
|
_closed = true;
|
|
|
_reader.close();
|
|
|
}
|
|
|
|
|
|
- //Read header from http data.
|
|
|
+ ///Read header from http data.
|
|
|
Future<String> _readHeader() async {
|
|
|
var timeout = 0;
|
|
|
while (!_closed) {
|
|
@@ -167,7 +186,7 @@ class HttpVidUsImageData {
|
|
|
throw AlreadyClosedException();
|
|
|
}
|
|
|
|
|
|
- //Read the version from http data.
|
|
|
+ ///Read the version from http data.
|
|
|
Future<int> _readVersion() async {
|
|
|
var timeout = 0;
|
|
|
while (!_closed) {
|
|
@@ -189,7 +208,7 @@ class HttpVidUsImageData {
|
|
|
throw AlreadyClosedException();
|
|
|
}
|
|
|
|
|
|
- //Read the probe info from http data.
|
|
|
+ ///Read the probe info from http data.
|
|
|
Future<VidUsProbe> _readProbe() async {
|
|
|
var timeout = 0;
|
|
|
while (!_closed) {
|
|
@@ -211,7 +230,7 @@ class HttpVidUsImageData {
|
|
|
throw AlreadyClosedException();
|
|
|
}
|
|
|
|
|
|
- //Read the image format from http data.
|
|
|
+ ///Read the image format from http data.
|
|
|
Future<VidUsImageFormat> _readImageFormat() async {
|
|
|
var timeout = 0;
|
|
|
while (!_closed) {
|
|
@@ -232,7 +251,7 @@ class HttpVidUsImageData {
|
|
|
throw AlreadyClosedException();
|
|
|
}
|
|
|
|
|
|
- //Read extended data from http data.
|
|
|
+ ///Read extended data from http data.
|
|
|
Future<Uint8List> _readExtendedData() async {
|
|
|
var timeout = 0;
|
|
|
while (!_closed) {
|
|
@@ -253,7 +272,7 @@ class HttpVidUsImageData {
|
|
|
throw AlreadyClosedException();
|
|
|
}
|
|
|
|
|
|
- //Read the image positions data from http data.
|
|
|
+ ///Read the image positions data from http data.
|
|
|
Future<Uint8List> _readImagePositionListData() async {
|
|
|
var timeout = 0;
|
|
|
while (!_closed) {
|
|
@@ -297,6 +316,6 @@ class HttpVidUsImageData {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- throw AlreadyClosedException();
|
|
|
+ throw AlreadyClosedException();
|
|
|
}
|
|
|
}
|