vid_us_image_data.dart 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. import 'dart:typed_data';
  2. import 'package:vid/us/vid_us_data_http_reader.dart';
  3. import 'package:vid/us/vid_us_data_reader.dart';
  4. import 'package:vid/us/vid_us_image.dart';
  5. import 'package:vid/us/vid_us_probe.dart';
  6. enum VidUsImageFormat {
  7. Jpeg,
  8. Png,
  9. H264,
  10. Zip,
  11. Diff,
  12. }
  13. ///Only suport read for now.
  14. ///Not suport carotid3d for now.
  15. class VidUsImageData {
  16. late VidUsDataReader _reader;
  17. late List<int> _imagePositionList;
  18. late int _version;
  19. late int _imageCount;
  20. late VidUsProbe _probe;
  21. late VidUsImageFormat _imageFormat;
  22. late Uint8List _extendedData;
  23. final String header = "VINNO IMAGE DATA";
  24. /// Gets the version of this image data.
  25. int get version => _version;
  26. /// Gets the image count of this image data.
  27. int get imageCount => _imageCount;
  28. /// Gets the probe information.
  29. VidUsProbe get probe => _probe;
  30. /// Gets the image format of this image data.
  31. VidUsImageFormat get imageFormat => _imageFormat;
  32. /// Gets or sets the extended data.
  33. Uint8List get extendedData => _extendedData;
  34. /// Create a VINNO Image Data.
  35. VidUsImageData(Uint8List data) {
  36. _reader = VidUsDataReader(data);
  37. var header = _reader.readString();
  38. if (header != header) {
  39. throw Exception("The input data is not a VID data.");
  40. }
  41. _version = _reader.readInt();
  42. //Get probe info
  43. var probeData = _reader.readBytes();
  44. _probe = VidUsProbe.fromBytes(probeData);
  45. _imageFormat = VidUsImageFormat.values[_reader.readInt()];
  46. _extendedData = _reader.readBytes();
  47. _imagePositionList = [];
  48. var imagePositionListData = _reader.readBytes();
  49. _imageCount = imagePositionListData.length ~/ 8;
  50. var imagePositionReader = VidUsDataReader(imagePositionListData);
  51. for (var i = 0; i < _imageCount; i++) {
  52. _imagePositionList.add(imagePositionReader.readInt64V2());
  53. }
  54. }
  55. /// Get one image from the vid.
  56. VidUsImage getImage(int index) {
  57. if (index >= _imageCount || index < 0) {
  58. throw Exception("Can not find image Data");
  59. }
  60. //Jump to image.
  61. var imageData = _reader.readBytes(_imagePositionList[index]);
  62. return VidUsImage.fromBytes(imageData);
  63. }
  64. }
  65. ///Raised when getting data from the downloaded data timeout. depends on the readHeaderTimeout and
  66. ///readImageTimeout parameters.
  67. class ReadTimeoutException implements Exception {}
  68. ///Raised when the Http operation already closed.
  69. class AlreadyClosedException implements Exception {}
  70. ///Only suport read for now.
  71. ///Not suport carotid3d for now.
  72. class HttpVidUsImageData {
  73. late VidUsDataHttpReader _reader;
  74. late List<int> _imagePositionList;
  75. late int _version;
  76. late int _imageCount;
  77. late VidUsProbe _probe;
  78. late VidUsImageFormat _imageFormat;
  79. late Uint8List _extendedData;
  80. late int _readHeaderTimeout;
  81. late int _readImageTimeout;
  82. late bool _initialized;
  83. late bool _closed;
  84. final Duration delayDuration = const Duration(milliseconds: 10);
  85. final String header = "VINNO IMAGE DATA";
  86. /// Gets the version of this image data.
  87. int get version => _version;
  88. /// Gets the image count of this image data.
  89. int get imageCount => _imageCount;
  90. /// Gets the probe information.
  91. VidUsProbe get probe => _probe;
  92. /// Gets the image format of this image data.
  93. VidUsImageFormat get imageFormat => _imageFormat;
  94. /// Gets the extended data.
  95. Uint8List get extendedData => _extendedData;
  96. /// Gets the initialized state.
  97. bool get initialized => _initialized;
  98. /// Create a VINNO Image Data.
  99. /// [readHeaderTimeout] is the timeout value of reading header and probe information etc..., we need give as much time as possible
  100. /// to let the reader read the header.
  101. /// [readImageTimeout] is the timeout value of reading one frame.
  102. /// [minChunkSize] The min download chunk size, set to a large value may speedup the download speed, but will cause the progress not smooth.
  103. HttpVidUsImageData(String url, {DownloadCallback? downloadCallback, int minChunkSize = 65536, int readHeaderTimeout = 3000, int readImageTimeout = 500}) {
  104. _initialized = false;
  105. _closed = false;
  106. _readHeaderTimeout = readHeaderTimeout;
  107. _readImageTimeout = readImageTimeout;
  108. _reader = VidUsDataHttpReader(url, downloadCallback: downloadCallback, minChunkSize: minChunkSize);
  109. }
  110. ///Get the downloaded data of this HttpVidUsImageData
  111. Uint8List getDownloadedData() {
  112. return _reader.toBytes();
  113. }
  114. ///Initialize the HttpVidUsImageData, must be called firstly.
  115. Future initialize() async {
  116. if (!_initialized) {
  117. var header = await _readHeader();
  118. if (header != header) {
  119. throw Exception("The input data is not a VID data.");
  120. }
  121. _version = await _readVersion();
  122. //Get probe info
  123. _probe = await _readProbe();
  124. _imageFormat = await _readImageFormat();
  125. _extendedData = await _readExtendedData();
  126. _imagePositionList = [];
  127. var imagePositionListData = await _readImagePositionListData();
  128. _imageCount = imagePositionListData.length ~/ 8;
  129. var imagePositionReader = VidUsDataReader(imagePositionListData);
  130. for (var i = 0; i < _imageCount; i++) {
  131. _imagePositionList.add(imagePositionReader.readInt64V2());
  132. }
  133. _initialized = true;
  134. }
  135. }
  136. ///Close the HttpVidUsImageData, it will force close the download operation and reading operation.
  137. void close() {
  138. _closed = true;
  139. _reader.close();
  140. }
  141. ///Read header from http data.
  142. Future<String> _readHeader() async {
  143. var timeout = 0;
  144. while (!_closed) {
  145. try {
  146. var header = _reader.readString();
  147. return header;
  148. } catch (ex) {
  149. if (ex is NotReadyException) {
  150. if (timeout >= _readHeaderTimeout) {
  151. throw ReadTimeoutException();
  152. }
  153. await Future.delayed(delayDuration);
  154. timeout += delayDuration.inMilliseconds;
  155. } else {
  156. rethrow;
  157. }
  158. }
  159. }
  160. throw AlreadyClosedException();
  161. }
  162. ///Read the version from http data.
  163. Future<int> _readVersion() async {
  164. var timeout = 0;
  165. while (!_closed) {
  166. try {
  167. var version = _reader.readInt();
  168. return version;
  169. } catch (ex) {
  170. if (ex is NotReadyException) {
  171. if (timeout >= _readHeaderTimeout) {
  172. throw ReadTimeoutException();
  173. }
  174. await Future.delayed(delayDuration);
  175. timeout += delayDuration.inMilliseconds;
  176. } else {
  177. rethrow;
  178. }
  179. }
  180. }
  181. throw AlreadyClosedException();
  182. }
  183. ///Read the probe info from http data.
  184. Future<VidUsProbe> _readProbe() async {
  185. var timeout = 0;
  186. while (!_closed) {
  187. try {
  188. var probeData = _reader.readBytes();
  189. return VidUsProbe.fromBytes(probeData);
  190. } catch (ex) {
  191. if (ex is NotReadyException) {
  192. if (timeout >= _readHeaderTimeout) {
  193. throw ReadTimeoutException();
  194. }
  195. await Future.delayed(delayDuration);
  196. timeout += delayDuration.inMilliseconds;
  197. } else {
  198. rethrow;
  199. }
  200. }
  201. }
  202. throw AlreadyClosedException();
  203. }
  204. ///Read the image format from http data.
  205. Future<VidUsImageFormat> _readImageFormat() async {
  206. var timeout = 0;
  207. while (!_closed) {
  208. try {
  209. return VidUsImageFormat.values[_reader.readInt()];
  210. } catch (ex) {
  211. if (ex is NotReadyException) {
  212. if (timeout >= _readHeaderTimeout) {
  213. throw ReadTimeoutException();
  214. }
  215. await Future.delayed(delayDuration);
  216. timeout += delayDuration.inMilliseconds;
  217. } else {
  218. rethrow;
  219. }
  220. }
  221. }
  222. throw AlreadyClosedException();
  223. }
  224. ///Read extended data from http data.
  225. Future<Uint8List> _readExtendedData() async {
  226. var timeout = 0;
  227. while (!_closed) {
  228. try {
  229. return _reader.readBytes();
  230. } catch (ex) {
  231. if (ex is NotReadyException) {
  232. if (timeout >= _readHeaderTimeout) {
  233. throw ReadTimeoutException();
  234. }
  235. await Future.delayed(delayDuration);
  236. timeout += delayDuration.inMilliseconds;
  237. } else {
  238. rethrow;
  239. }
  240. }
  241. }
  242. throw AlreadyClosedException();
  243. }
  244. ///Read the image positions data from http data.
  245. Future<Uint8List> _readImagePositionListData() async {
  246. var timeout = 0;
  247. while (!_closed) {
  248. try {
  249. return _reader.readBytes();
  250. } catch (ex) {
  251. if (ex is NotReadyException) {
  252. if (timeout >= _readHeaderTimeout) {
  253. throw ReadTimeoutException();
  254. }
  255. await Future.delayed(delayDuration);
  256. timeout += delayDuration.inMilliseconds;
  257. } else {
  258. rethrow;
  259. }
  260. }
  261. }
  262. throw AlreadyClosedException();
  263. }
  264. /// Get one image from the vid.
  265. Future<VidUsImage> getImage(int index) async {
  266. if (index >= _imageCount || index < 0) {
  267. throw Exception("Can not find image Data");
  268. }
  269. //Jump to image.
  270. var timeout = 0;
  271. while (!_closed) {
  272. try {
  273. var imageData = _reader.readBytes(_imagePositionList[index]);
  274. return VidUsImage.fromBytes(imageData);
  275. } catch (ex) {
  276. if (ex is NotReadyException) {
  277. if (timeout >= _readImageTimeout) {
  278. throw ReadTimeoutException();
  279. }
  280. await Future.delayed(delayDuration);
  281. timeout += delayDuration.inMilliseconds;
  282. } else {
  283. rethrow;
  284. }
  285. }
  286. }
  287. throw AlreadyClosedException();
  288. }
  289. }