1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
use std::{ io::*, collections::BTreeSet, collections::BTreeMap };
use std::sync::{ Arc, atomic::AtomicBool };
use byteorder::{ ReadBytesExt, BigEndian };
use mp4parse::{ MediaContext, TrackType };
use memchr::memmem;
use crate::tags_impl::*;
pub fn to_hex(data: &[u8]) -> String {
let mut ret = String::with_capacity(data.len() * 3);
for b in data {
ret.push_str(&format!("{:02x} ", b));
}
ret
}
#[derive(Debug, Clone, Default)]
pub struct SampleInfo {
pub sample_index: u64,
pub track_index: usize,
pub timestamp_ms: f64,
pub duration_ms: f64,
pub tag_map: Option<GroupedTagMap>
}
pub fn verify_and_fix_mp4_structure(bytes: &mut Vec<u8>) {
crate::try_block!({
let mut good_size = 0;
let mut pos = 0;
while pos < bytes.len() - 1 {
let start_pos = pos;
let mut len = (&bytes[pos..]).read_u32::<BigEndian>().ok()? as u64;
pos += 4;
let name_good = bytes.len() >= pos + 4 && bytes[pos..pos+4].iter().all(|x| x.is_ascii() && *x > 13);
pos += 4;
if len == 1 { len = (&bytes[pos..]).read_u64::<BigEndian>().ok()?;
}
pos = start_pos + len as usize;
let size_good = bytes.len() >= pos;
if name_good && size_good {
good_size = pos;
} else {
break;
}
}
if bytes.len() > good_size {
log::warn!("Garbage found at the end of the file, removing {} bytes from the end.", bytes.len() - good_size);
bytes.resize(good_size, 0);
}
});
}
pub fn hide_wave_box(all: &mut Vec<u8>) {
let mut offs = 0;
while let Some(pos) = memchr::memmem::find(&all[offs..], b"wave") {
if all.len() > offs+pos+12 && &all[offs+pos+8..offs+pos+12] == b"frma" {
all[offs + pos + 3] = b'_';
return;
}
offs += pos + 4;
}
}
pub fn parse_mp4<T: Read + Seek>(stream: &mut T, size: usize) -> mp4parse::Result<mp4parse::MediaContext> {
if size > 10*1024*1024 {
let mut all = read_beginning_and_end(stream, size, 2*1024*1024)?;
if let Some(pos) = memchr::memmem::find(&all, b"mdat") {
let how_much_less = (size - all.len()) as u64;
let mut len = (&all[pos-4..]).read_u32::<BigEndian>()? as u64;
if len == 1 { len = (&all[pos+4..]).read_u64::<BigEndian>()? - how_much_less;
all[pos+4..pos+12].copy_from_slice(&len.to_be_bytes());
} else {
len -= how_much_less;
all[pos-4..pos].copy_from_slice(&(len as u32).to_be_bytes());
}
verify_and_fix_mp4_structure(&mut all);
hide_wave_box(&mut all);
let mut c = std::io::Cursor::new(&all);
return mp4parse::read_mp4(&mut c);
}
}
mp4parse::read_mp4(stream)
}
pub fn get_track_samples<F, T: Read + Seek>(stream: &mut T, size: usize, typ: mp4parse::TrackType, single: bool, max_sample_size: Option<usize>, mut callback: F, cancel_flag: Arc<AtomicBool>) -> Result<MediaContext>
where F: FnMut(SampleInfo, &[u8], u64)
{
let ctx = parse_mp4(stream, size).or_else(|_| mp4parse::read_mp4(stream)).unwrap();
let mut track_index = 0;
for x in &ctx.tracks {
if x.track_type == typ {
if let Some(samples) = mp4parse::unstable::create_sample_table(&x, 0.into()) {
let mut sample_data = Vec::new();
let mut sample_index = 0u64;
for x in samples {
if cancel_flag.load(std::sync::atomic::Ordering::Relaxed) { break; }
let mut sample_size = (x.end_offset.0 - x.start_offset.0) as usize;
if let Some(max_sample_size) = max_sample_size {
if sample_size > max_sample_size {
sample_size = max_sample_size;
}
}
let sample_timestamp_ms = x.start_composition.0 as f64 / 1000.0;
let sample_duration_ms = (x.end_composition.0 - x.start_composition.0) as f64 / 1000.0;
if sample_size > 4 {
if sample_data.len() != sample_size {
sample_data.resize(sample_size, 0u8);
}
stream.seek(SeekFrom::Start(x.start_offset.0 as u64))?;
stream.read_exact(&mut sample_data[..])?;
callback(SampleInfo { sample_index, track_index, timestamp_ms: sample_timestamp_ms, duration_ms: sample_duration_ms, tag_map: None }, &sample_data, x.start_offset.0 as u64);
sample_index += 1;
}
}
if single {
break;
}
}
}
track_index += 1;
}
Ok(ctx)
}
pub fn get_metadata_track_samples<F, T: Read + Seek>(stream: &mut T, size: usize, single: bool, callback: F, cancel_flag: Arc<AtomicBool>) -> Result<MediaContext>
where F: FnMut(SampleInfo, &[u8], u64)
{
get_track_samples(stream, size, mp4parse::TrackType::Metadata, single, None, callback, cancel_flag)
}
pub fn get_other_track_samples<F, T: Read + Seek>(stream: &mut T, size: usize, single: bool, callback: F, cancel_flag: Arc<AtomicBool>) -> Result<MediaContext>
where F: FnMut(SampleInfo, &[u8], u64)
{
get_track_samples(stream, size, mp4parse::TrackType::Unknown, single, None, callback, cancel_flag)
}
pub fn read_beginning_and_end<T: Read + Seek>(stream: &mut T, stream_size: usize, read_size: usize) -> Result<Vec<u8>> {
let mut all = vec![0u8; read_size*2];
stream.seek(SeekFrom::Start(0))?;
if stream_size > read_size * 2 {
let read1 = stream.read(&mut all[..read_size])?;
stream.seek(SeekFrom::End(-(read_size as i64)))?;
let read2 = stream.read(&mut all[read1..])?;
all.resize(read1+read2, 0);
} else {
let read = stream.read(&mut all)?;
all.resize(read, 0);
}
stream.seek(SeekFrom::Start(0))?;
Ok(all)
}
#[derive(Default, serde::Serialize, serde::Deserialize, Clone, Debug)]
pub struct IMUData {
pub timestamp_ms: f64,
pub gyro: Option<[f64; 3]>,
pub accl: Option<[f64; 3]>,
pub magn: Option<[f64; 3]>
}
pub fn normalized_imu(input: &crate::Input, orientation: Option<String>) -> Result<Vec<IMUData>> {
let mut timestamp = 0f64;
let mut first_timestamp = None;
let mut final_data = Vec::<IMUData>::with_capacity(10000);
let mut data_index = 0;
let mut fix_timestamps = false;
if let Some(ref samples) = input.samples {
for info in samples {
if info.tag_map.is_none() { continue; }
let grouped_tag_map = info.tag_map.as_ref().unwrap();
let first_frame_ts = crate::try_block!(f64, {
(grouped_tag_map.get(&GroupId::Default)?.get_t(TagId::Metadata) as Option<&serde_json::Value>)?
.as_object()?
.get("first_frame_timestamp")?
.as_i64()? as f64 / 1000.0
}).unwrap_or_default();
let is_insta360_raw_gyro = crate::try_block!(bool, {
(grouped_tag_map.get(&GroupId::Default)?.get_t(TagId::Metadata) as Option<&serde_json::Value>)?
.as_object()?
.get("is_raw_gyro")?
.as_bool()?
}).unwrap_or_default();
for (group, map) in grouped_tag_map {
if group == &GroupId::Gyroscope || group == &GroupId::Accelerometer || group == &GroupId::Magnetometer {
let raw2unit = crate::try_block!(f64, {
match &map.get(&TagId::Scale)?.value {
TagValue::i16(v) => *v.get() as f64,
TagValue::f32(v) => *v.get() as f64,
TagValue::f64(v) => *v.get(),
_ => 1.0
}
}).unwrap_or(1.0);
let unit2deg = crate::try_block!(f64, {
match (map.get_t(TagId::Unit) as Option<&String>)?.as_str() {
"rad/s" => 180.0 / std::f64::consts::PI, "g" => 9.80665, _ => 1.0
}
}).unwrap_or(1.0);
let mut io = match map.get_t(TagId::Orientation) as Option<&String> {
Some(v) => v.clone(),
None => "XYZ".into()
};
io = input.normalize_imu_orientation(io);
if let Some(imuo) = &orientation {
io = imuo.clone();
}
let io = io.as_bytes();
if let Some(taginfo) = map.get(&TagId::Data) {
match &taginfo.value {
TagValue::Vec_Vector3_i16(arr) => {
let arr = arr.get();
let reading_duration = info.duration_ms / arr.len() as f64;
fix_timestamps = true;
for (j, v) in arr.iter().enumerate() {
if final_data.len() <= data_index + j {
final_data.resize_with(data_index + j + 1, Default::default);
final_data[data_index + j].timestamp_ms = timestamp;
timestamp += reading_duration;
}
let itm = v.clone().into_scaled(&raw2unit, &unit2deg).orient(io);
if group == &GroupId::Gyroscope { final_data[data_index + j].gyro = Some([ itm.x, itm.y, itm.z ]); }
else if group == &GroupId::Accelerometer { final_data[data_index + j].accl = Some([ itm.x, itm.y, itm.z ]); }
else if group == &GroupId::Magnetometer { final_data[data_index + j].magn = Some([ itm.x, itm.y, itm.z ]); }
}
},
TagValue::Vec_TimeVector3_f64(arr) => {
for (j, v) in arr.get().iter().enumerate() {
if v.t < first_frame_ts { continue; } if final_data.len() <= data_index + j {
final_data.resize_with(data_index + j + 1, Default::default);
let timestamp_multiplier = if is_insta360_raw_gyro { 1.0 } else { 1000.0 };
final_data[data_index + j].timestamp_ms = (v.t - first_frame_ts) * timestamp_multiplier;
if first_timestamp.is_none() {
first_timestamp = Some(final_data[data_index + j].timestamp_ms);
final_data[data_index + j].timestamp_ms = 0.0;
} else {
final_data[data_index + j].timestamp_ms -= first_timestamp.unwrap();
}
}
let itm = v.clone().into_scaled(&raw2unit, &unit2deg).orient(io);
if group == &GroupId::Gyroscope { final_data[data_index + j].gyro = Some([ itm.x, itm.y, itm.z ]); }
else if group == &GroupId::Accelerometer { final_data[data_index + j].accl = Some([ itm.x, itm.y, itm.z ]); }
else if group == &GroupId::Magnetometer { final_data[data_index + j].magn = Some([ itm.x, itm.y, itm.z ]); }
}
},
_ => ()
}
}
}
}
data_index = final_data.len();
}
}
if fix_timestamps && !final_data.is_empty() {
let avg_diff = {
if input.camera_type() == "GoPro" {
crate::gopro::GoPro::get_avg_sample_duration(input.samples.as_ref().unwrap(), &GroupId::Gyroscope)
} else {
let mut total_duration_ms = 0.0;
for info in input.samples.as_ref().unwrap() {
total_duration_ms += info.duration_ms;
}
Some(total_duration_ms / final_data.len() as f64)
}
};
if let Some(avg_diff) = avg_diff {
if avg_diff > 0.0 {
for (i, x) in final_data.iter_mut().enumerate() {
x.timestamp_ms = avg_diff * i as f64;
}
}
}
}
Ok(final_data)
}
pub fn normalized_imu_interpolated(input: &crate::Input, orientation: Option<String>) -> Result<Vec<IMUData>> {
let mut first_timestamp = None;
let mut timestamp = (0.0, 0.0, 0.0);
let mut gyro_map = BTreeMap::new();
let mut accl_map = BTreeMap::new();
let mut magn_map = BTreeMap::new();
let mut all_timestamps = BTreeSet::new();
if let Some(ref samples) = input.samples {
let mut reading_duration =
if input.camera_type() == "GoPro" {
(
crate::gopro::GoPro::get_avg_sample_duration(samples, &GroupId::Gyroscope),
crate::gopro::GoPro::get_avg_sample_duration(samples, &GroupId::Accelerometer),
crate::gopro::GoPro::get_avg_sample_duration(samples, &GroupId::Magnetometer),
)
} else {
let mut total_len = (0, 0, 0);
for grouped_tag_map in samples.iter().filter_map(|v| v.tag_map.as_ref()) {
for (group, map) in grouped_tag_map {
if let Some(taginfo) = map.get(&TagId::Data) {
if let TagValue::Vec_Vector3_i16(arr) = &taginfo.value {
match group {
GroupId::Gyroscope => total_len.0 += arr.get().len(),
GroupId::Accelerometer => total_len.1 += arr.get().len(),
GroupId::Magnetometer => total_len.2 += arr.get().len(),
_ => {}
}
}
}
}
}
let mut total_duration_ms = 0.0;
for info in samples {
total_duration_ms += info.duration_ms;
}
(
if total_len.0 > 0 { Some(total_duration_ms / total_len.0 as f64) } else { None },
if total_len.1 > 0 { Some(total_duration_ms / total_len.1 as f64) } else { None },
if total_len.2 > 0 { Some(total_duration_ms / total_len.2 as f64) } else { None }
)
};
log::debug!("Reading duration: {:?}", reading_duration);
if let Some(grd) = reading_duration.0 {
if let Some(ard) = reading_duration.1 {
if (grd - ard).abs() < 0.1 {
reading_duration.0 = Some(grd.max(ard));
reading_duration.1 = Some(grd.max(ard));
}
}
if let Some(mrd) = reading_duration.2 {
if (grd - mrd).abs() < 0.1 {
reading_duration.0 = Some(grd.max(mrd));
reading_duration.2 = Some(grd.max(mrd));
}
}
}
for info in samples {
if info.tag_map.is_none() { continue; }
let grouped_tag_map = info.tag_map.as_ref().unwrap();
let first_frame_ts = crate::try_block!(f64, {
(grouped_tag_map.get(&GroupId::Default)?.get_t(TagId::Metadata) as Option<&serde_json::Value>)?
.as_object()?
.get("first_frame_timestamp")?
.as_i64()? as f64 / 1000.0
}).unwrap_or_default();
let is_insta360_raw_gyro = crate::try_block!(bool, {
(grouped_tag_map.get(&GroupId::Default)?.get_t(TagId::Metadata) as Option<&serde_json::Value>)?
.as_object()?
.get("is_raw_gyro")?
.as_bool()?
}).unwrap_or_default();
let timestamp_multiplier = if is_insta360_raw_gyro { 1.0 } else { 1000.0 };
for (group, map) in grouped_tag_map {
if group == &GroupId::Gyroscope || group == &GroupId::Accelerometer || group == &GroupId::Magnetometer {
let raw2unit = crate::try_block!(f64, {
match &map.get(&TagId::Scale)?.value {
TagValue::i16(v) => *v.get() as f64,
TagValue::f32(v) => *v.get() as f64,
TagValue::f64(v) => *v.get(),
_ => 1.0
}
}).unwrap_or(1.0);
let unit2deg = crate::try_block!(f64, {
match (map.get_t(TagId::Unit) as Option<&String>)?.as_str() {
"rad/s" => 180.0 / std::f64::consts::PI, "g" => 9.80665, _ => 1.0
}
}).unwrap_or(1.0);
let mut io = match map.get_t(TagId::Orientation) as Option<&String> {
Some(v) => v.clone(),
None => "XYZ".into()
};
io = input.normalize_imu_orientation(io);
if let Some(imuo) = &orientation {
io = imuo.clone();
}
let io = io.as_bytes();
if let Some(taginfo) = map.get(&TagId::Data) {
match &taginfo.value {
TagValue::Vec_Vector3_i16(arr) => {
let arr = arr.get();
for v in arr {
let itm = v.clone().into_scaled(&raw2unit, &unit2deg).orient(io);
if group == &GroupId::Gyroscope { let ts = (timestamp.0 * 1000.0f64).round() as i64; gyro_map.insert(ts, itm); timestamp.0 += reading_duration.0.unwrap(); all_timestamps.insert(ts); }
else if group == &GroupId::Accelerometer { let ts = (timestamp.1 * 1000.0f64).round() as i64; accl_map.insert(ts, itm); timestamp.1 += reading_duration.1.unwrap(); all_timestamps.insert(ts); }
else if group == &GroupId::Magnetometer { let ts = (timestamp.2 * 1000.0f64).round() as i64; magn_map.insert(ts, itm); timestamp.2 += reading_duration.2.unwrap(); all_timestamps.insert(ts); }
}
},
TagValue::Vec_TimeVector3_f64(arr) => {
for v in arr.get() {
if v.t < first_frame_ts { continue; } let mut timestamp_ms = (v.t - first_frame_ts) * timestamp_multiplier;
if first_timestamp.is_none() {
first_timestamp = Some(timestamp_ms);
}
timestamp_ms -= first_timestamp.unwrap();
let timestamp_us = (timestamp_ms * 1000.0).round() as i64;
all_timestamps.insert(timestamp_us);
let itm = v.clone().into_scaled(&raw2unit, &unit2deg).orient(io);
if group == &GroupId::Gyroscope { gyro_map.insert(timestamp_us, itm); }
else if group == &GroupId::Accelerometer { accl_map.insert(timestamp_us, itm); }
else if group == &GroupId::Magnetometer { magn_map.insert(timestamp_us, itm); }
}
},
_ => ()
}
}
}
}
}
}
fn get_at_timestamp(ts: i64, map: &BTreeMap<i64, Vector3<f64>>) -> Option<[f64; 3]> {
if map.is_empty() { return None; }
if let Some(v) = map.get(&ts) { return Some([v.x, v.y, v.z]); }
if let Some((k1, v1)) = map.range(..=ts).next_back() {
if let Some((k2, v2)) = map.range(ts..).next() {
let time_delta = (k2 - k1) as f64;
let fract = (ts - k1) as f64 / time_delta;
return Some([
v1.x * (1.0 - fract) + (v2.x * fract),
v1.y * (1.0 - fract) + (v2.y * fract),
v1.z * (1.0 - fract) + (v2.z * fract),
]);
}
}
None
}
let mut final_data = Vec::with_capacity(gyro_map.len());
for x in &all_timestamps {
final_data.push(IMUData {
timestamp_ms: *x as f64 / 1000.0,
gyro: get_at_timestamp(*x, &gyro_map),
accl: get_at_timestamp(*x, &accl_map),
magn: get_at_timestamp(*x, &magn_map)
});
}
Ok(final_data)
}
pub fn multiply_quats(p: (f64, f64, f64, f64), q: (f64, f64, f64, f64)) -> Quaternion<f64> {
Quaternion {
w: p.0*q.0 - p.1*q.1 - p.2*q.2 - p.3*q.3,
x: p.0*q.1 + p.1*q.0 + p.2*q.3 - p.3*q.2,
y: p.0*q.2 - p.1*q.3 + p.2*q.0 + p.3*q.1,
z: p.0*q.3 + p.1*q.2 - p.2*q.1 + p.3*q.0
}
}
pub fn find_between_with_offset(buffer: &[u8], from: &[u8], to: u8, offset: i32) -> Option<String> {
let pos = memmem::find(buffer, from)?;
let end = memchr::memchr(to, &buffer[pos+from.len()..])?;
Some(String::from_utf8_lossy(&buffer[(pos as i32 + from.len() as i32 + offset) as usize..pos+from.len()+end]).into())
}
pub fn find_between(buffer: &[u8], from: &[u8], to: u8) -> Option<String> {
find_between_with_offset(buffer, from, to, 0)
}
pub fn insert_tag(map: &mut GroupedTagMap, tag: TagDescription) {
let group_map = map.entry(tag.group.clone()).or_insert_with(TagMap::new);
group_map.insert(tag.id.clone(), tag);
}
pub fn create_csv_map<'a, 'b>(row: &'b csv::StringRecord, headers: &'a Vec<String>) -> BTreeMap<&'a str, &'b str> {
headers.iter().zip(row).map(|(a, b)| (&a[..], b.trim())).collect()
}
pub fn create_csv_map_hdr<'a, 'b>(row: &'b csv::StringRecord, headers: &'a csv::StringRecord) -> BTreeMap<&'a str, &'b str> {
headers.iter().zip(row).map(|(a, b)| (a, b)).collect()
}
pub fn get_fps_from_track(track: &mp4parse::Track) -> Option<f64> {
if let Some(ref stts) = track.stts {
if !stts.samples.is_empty() {
let samples: u32 = stts.samples.iter().map(|v| v.sample_count).sum();
let timescale = track.timescale?;
let duration = track.duration?;
let duration_us = duration.0 as f64 * 1000_000.0 / timescale.0 as f64;
let us_per_frame = duration_us / samples as f64;
return Some(1000_000.0 / us_per_frame);
}
}
None
}
pub fn get_video_metadata<T: Read + Seek>(stream: &mut T, filesize: usize) -> Result<(usize, usize, f64, f64)> { let mp = parse_mp4(stream, filesize)?;
for track in mp.tracks {
if track.track_type == TrackType::Video {
let mut duration_sec = 0.0;
if let Some(d) = track.duration {
if let Some(ts) = track.timescale {
duration_sec = d.0 as f64 / ts.0 as f64;
}
}
if let Some(ref tkhd) = track.tkhd {
let w = tkhd.width >> 16;
let h = tkhd.height >> 16;
let matrix = (
tkhd.matrix.a >> 16,
tkhd.matrix.b >> 16,
tkhd.matrix.c >> 16,
tkhd.matrix.d >> 16,
);
let _rotation = match matrix {
(0, 1, -1, 0) => 90, (-1, 0, 0, -1) => 180, (0, -1, 1, 0) => 270, _ => 0,
};
let fps = get_fps_from_track(&track).unwrap_or_default();
return Ok((w as usize, h as usize, fps, duration_sec));
}
}
}
Err(ErrorKind::Other.into())
}
#[macro_export]
macro_rules! try_block {
($type:ty, $body:block) => {
(|| -> Option<$type> {
Some($body)
}())
};
($body:block) => {
(|| -> Option<()> {
$body
Some(())
}())
};
}