UnaNancyOwen / VelodyneCapture

VelodyneCapture is the general capture class to retrieve the laser data from Velodyne sensors using Boost.Asio and PCAP
MIT License
54 stars 21 forks source link

Using move semantics #19

Closed lasdasdas closed 6 years ago

lasdasdas commented 6 years ago

Hey there again @UnaNancyOwen,

I was using yesterday this class on a very low resource computer. And I had to come up with some elegant tricks, since the queue of this class was causing a small bottleneck.

This class is a really good place to use move semantics. Whenever you insert(push) and pop on the queue, the element that is being copied into the queue is immediately destroyed. Same with push, intermediately after doing lasers = queue.back() you do queue.pop( ) and destroy the element. This is almost a book example the use for std::move and emplace(std::move).

In this PR, I have profiled and changed the mechanisms of insertion and extraction of the queue, so that the massive arrays of the data packets are transferred safely and copy-less.

queue.push(lasers) now uses queue.push(std::move(lasers)) improving from 80000ns to 3000ns.

laser = queue.front(); is replaced with laser = std::move(queue). Improving from 40000ns to 300ns.

As of the laser element that is being pushed back on lasers, using move semantics does not represent an improvement, the data structure is too small.

This has been tested on pcaps and a VLP16, and compiled on gcc7, and validated here and here. This will work with absolute certainty on any other compiler.

UnaNancyOwen commented 6 years ago

Thanks, It seems right. 👍