dbaldwin / DronePan

DronePan - 360 aerial panoramas with DJI Inspire 1, Phantom 3/4, Mavic Pro and Osmo
http://www.dronepan.com
Other
104 stars 32 forks source link

Crashes in dispatch_group handling #88

Open chrissearle opened 7 years ago

chrissearle commented 7 years ago

Investigate using NSOperation/NSOperationQueue

The queue can be set to only allow one operation at a time and operations can be cancelled (individually or all in queue).

So we could have things like "yawOperation", "takePhotoOperation" and on timeout we cancel.

This would avoid having to maintain dispatch group counts, and cancel should help us avoid race conditions - issues with both of which can lead to a double group leave which is represented heavily in the crash list.