From 8daf20485b90af2065e3db0e3fd0cd5b72fd7ac4 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Fri, 28 Feb 2020 17:01:43 +0200 Subject: libcamera: controls: Add zero-copy set API for ControlValue Extend the ControlValue class with a reserve() function to set the value without actually copying data, and a non-const data() function that allows writing data directly to the ControlValue storage. This allows allocating memory directly in ControlValue, potentially removing a data copy. Note that this change was implemented before ByteStreamBuffer gained the zero-copy read() variant, and doesn't actually save a copy in the control serializer. It however still simplifies ControlSerializer::loadControlValue(). Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi --- src/libcamera/controls.cpp | 54 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 42 insertions(+), 12 deletions(-) (limited to 'src/libcamera/controls.cpp') diff --git a/src/libcamera/controls.cpp b/src/libcamera/controls.cpp index 25684474..540cc026 100644 --- a/src/libcamera/controls.cpp +++ b/src/libcamera/controls.cpp @@ -189,6 +189,15 @@ Span ControlValue::data() const return { data, size }; } +/** + * \copydoc ControlValue::data() const + */ +Span ControlValue::data() +{ + Span data = const_cast(this)->data(); + return { const_cast(data.data()), data.size() }; +} + /** * \brief Assemble and return a string describing the value * \return A string describing the ControlValue @@ -312,23 +321,44 @@ void ControlValue::set(ControlType type, bool isArray, const void *data, { ASSERT(elementSize == ControlValueSize[type]); - release(); + reserve(type, isArray, numElements); + + Span storage = ControlValue::data(); + memcpy(storage.data(), data, storage.size()); +} + +/** + * \brief Set the control type and reserve memory + * \param[in] type The control type + * \param[in] isArray True to make the value an array + * \param[in] numElements The number of elements + * + * This function sets the type of the control value to \a type, and reserves + * memory to store the control value. If \a isArray is true, the instance + * becomes an array control and storage for \a numElements is reserved. + * Otherwise the instance becomes a simple control, numElements is ignored, and + * storage for the single element is reserved. + */ +void ControlValue::reserve(ControlType type, bool isArray, std::size_t numElements) +{ + if (!isArray) + numElements = 1; + + std::size_t oldSize = numElements_ * ControlValueSize[type_]; + std::size_t newSize = numElements * ControlValueSize[type]; + + if (oldSize != newSize) + release(); type_ = type; - numElements_ = numElements; isArray_ = isArray; + numElements_ = numElements; - std::size_t size = elementSize * numElements; - void *storage; - - if (size > sizeof(value_)) { - storage_ = reinterpret_cast(new uint8_t[size]); - storage = storage_; - } else { - storage = reinterpret_cast(&value_); - } + if (oldSize == newSize) + return; - memcpy(storage, data, size); + if (newSize > sizeof(value_)) + storage_ = reinterpret_cast(new uint8_t[newSize]); } /** -- cgit v1.2.1