libcamera: byte_stream_buffer: Add zero-copy read() variant

Add a read() function to ByteStreamBuffer that returns a pointer to the
data instead of copying it. Overflow check is still handled by the
class, but the caller must check the returned pointer explicitly.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
Laurent Pinchart
2020-02-29 01:42:01 +02:00
parent 8a1f0321dc
commit 7f2da874cd
2 changed files with 48 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
#include <stddef.h>
#include <stdint.h>
#include <type_traits>
#include <libcamera/span.h>
@@ -43,6 +44,13 @@ public:
data.size_bytes());
}
template<typename T>
const std::remove_reference_t<T> *read(size_t count = 1)
{
using return_type = const std::remove_reference_t<T> *;
return reinterpret_cast<return_type>(read(sizeof(T), count));
}
template<typename T>
int write(const T *t)
{
@@ -63,6 +71,7 @@ private:
void setOverflow();
int read(uint8_t *data, size_t size);
const uint8_t *read(size_t size, size_t count);
int write(const uint8_t *data, size_t size);
ByteStreamBuffer *parent_;