libcamera: v4l2_device: Simplify usage of getControls()
The V4L2Device::getControls() function takes a ControlList that needs to be pre-populated with dummy entries for the controls that need to be read. This is a cumbersome API, especially when reading a single control. Make it nicer by passing the list of V4L2 controls as a vector of control IDs, and returning a ControlList. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
parent
d4680c8ca2
commit
79ab0e925a
5 changed files with 62 additions and 61 deletions
|
@ -299,30 +299,24 @@ const ControlInfoMap &CameraSensor::controls() const
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Read controls from the sensor
|
* \brief Read controls from the sensor
|
||||||
* \param[inout] ctrls The list of controls to read
|
* \param[in] ids The list of control to read, specified by their ID
|
||||||
*
|
*
|
||||||
* This method reads the value of all controls contained in \a ctrls, and stores
|
* This method reads the value of all controls contained in \a ids, and returns
|
||||||
* their values in the corresponding \a ctrls entry.
|
* their values as a ControlList.
|
||||||
*
|
*
|
||||||
* If any control in \a ctrls is not supported by the device, is disabled (i.e.
|
* If any control in \a ids is not supported by the device, is disabled (i.e.
|
||||||
* has the V4L2_CTRL_FLAG_DISABLED flag set), is a compound control, or if any
|
* has the V4L2_CTRL_FLAG_DISABLED flag set), or if any other error occurs
|
||||||
* other error occurs during validation of the requested controls, no control is
|
* during validation of the requested controls, no control is read and this
|
||||||
* read and this method returns -EINVAL.
|
* method returns an empty control list.
|
||||||
*
|
|
||||||
* If an error occurs while reading the controls, the index of the first control
|
|
||||||
* that couldn't be read is returned. The value of all controls below that index
|
|
||||||
* are updated in \a ctrls, while the value of all the other controls are not
|
|
||||||
* changed.
|
|
||||||
*
|
*
|
||||||
* \sa V4L2Device::getControls()
|
* \sa V4L2Device::getControls()
|
||||||
*
|
*
|
||||||
* \return 0 on success or an error code otherwise
|
* \return The control values in a ControlList on success, or an empty list on
|
||||||
* \retval -EINVAL One of the control is not supported or not accessible
|
* error
|
||||||
* \retval i The index of the control that failed
|
|
||||||
*/
|
*/
|
||||||
int CameraSensor::getControls(ControlList *ctrls)
|
ControlList CameraSensor::getControls(const std::vector<uint32_t> &ids)
|
||||||
{
|
{
|
||||||
return subdev_->getControls(ctrls);
|
return subdev_->getControls(ids);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -340,10 +334,9 @@ int CameraSensor::getControls(ControlList *ctrls)
|
||||||
* \a ctrls entry.
|
* \a ctrls entry.
|
||||||
*
|
*
|
||||||
* If any control in \a ctrls is not supported by the device, is disabled (i.e.
|
* If any control in \a ctrls is not supported by the device, is disabled (i.e.
|
||||||
* has the V4L2_CTRL_FLAG_DISABLED flag set), is read-only, is a
|
* has the V4L2_CTRL_FLAG_DISABLED flag set), is read-only, or if any other
|
||||||
* compound control, or if any other error occurs during validation of
|
* error occurs during validation of the requested controls, no control is
|
||||||
* the requested controls, no control is written and this method returns
|
* written and this method returns -EINVAL.
|
||||||
* -EINVAL.
|
|
||||||
*
|
*
|
||||||
* If an error occurs while writing the controls, the index of the first
|
* If an error occurs while writing the controls, the index of the first
|
||||||
* control that couldn't be written is returned. All controls below that index
|
* control that couldn't be written is returned. All controls below that index
|
||||||
|
|
|
@ -43,7 +43,7 @@ public:
|
||||||
int setFormat(V4L2SubdeviceFormat *format);
|
int setFormat(V4L2SubdeviceFormat *format);
|
||||||
|
|
||||||
const ControlInfoMap &controls() const;
|
const ControlInfoMap &controls() const;
|
||||||
int getControls(ControlList *ctrls);
|
ControlList getControls(const std::vector<uint32_t> &ids);
|
||||||
int setControls(ControlList *ctrls);
|
int setControls(ControlList *ctrls);
|
||||||
|
|
||||||
const ControlList &properties() const { return properties_; }
|
const ControlList &properties() const { return properties_; }
|
||||||
|
|
|
@ -26,7 +26,7 @@ public:
|
||||||
|
|
||||||
const ControlInfoMap &controls() const { return controls_; }
|
const ControlInfoMap &controls() const { return controls_; }
|
||||||
|
|
||||||
int getControls(ControlList *ctrls);
|
ControlList getControls(const std::vector<uint32_t> &ids);
|
||||||
int setControls(ControlList *ctrls);
|
int setControls(ControlList *ctrls);
|
||||||
|
|
||||||
const std::string &deviceNode() const { return deviceNode_; }
|
const std::string &deviceNode() const { return deviceNode_; }
|
||||||
|
|
|
@ -147,46 +147,51 @@ void V4L2Device::close()
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Read controls from the device
|
* \brief Read controls from the device
|
||||||
* \param[inout] ctrls The list of controls to read
|
* \param[in] ids The list of controls to read, specified by their ID
|
||||||
*
|
*
|
||||||
* This method reads the value of all controls contained in \a ctrls, and stores
|
* This method reads the value of all controls contained in \a ids, and returns
|
||||||
* their values in the corresponding \a ctrls entry.
|
* their values as a ControlList.
|
||||||
*
|
*
|
||||||
* If any control in \a ctrls is not supported by the device, is disabled (i.e.
|
* If any control in \a ids is not supported by the device, is disabled (i.e.
|
||||||
* has the V4L2_CTRL_FLAG_DISABLED flag set), or if any other error occurs
|
* has the V4L2_CTRL_FLAG_DISABLED flag set), or if any other error occurs
|
||||||
* during validation of the requested controls, no control is read and this
|
* during validation of the requested controls, no control is read and this
|
||||||
* method returns -EINVAL.
|
* method returns an empty control list.
|
||||||
*
|
*
|
||||||
* If an error occurs while reading the controls, the index of the first control
|
* \return The control values in a ControlList on success, or an empty list on
|
||||||
* that couldn't be read is returned. The value of all controls below that index
|
* error
|
||||||
* are updated in \a ctrls, while the value of all the other controls are not
|
|
||||||
* changed.
|
|
||||||
*
|
|
||||||
* \return 0 on success or an error code otherwise
|
|
||||||
* \retval -EINVAL One of the control is not supported or not accessible
|
|
||||||
* \retval i The index of the control that failed
|
|
||||||
*/
|
*/
|
||||||
int V4L2Device::getControls(ControlList *ctrls)
|
ControlList V4L2Device::getControls(const std::vector<uint32_t> &ids)
|
||||||
{
|
{
|
||||||
unsigned int count = ctrls->size();
|
unsigned int count = ids.size();
|
||||||
if (count == 0)
|
if (count == 0)
|
||||||
return 0;
|
return {};
|
||||||
|
|
||||||
|
ControlList ctrls{ controls_ };
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Start by filling the ControlList. This can't be combined with filling
|
||||||
|
* v4l2Ctrls, as updateControls() relies on both containers having the
|
||||||
|
* same order, and the control list is based on a map, which is not
|
||||||
|
* sorted by insertion order.
|
||||||
|
*/
|
||||||
|
for (uint32_t id : ids) {
|
||||||
|
const auto iter = controls_.find(id);
|
||||||
|
if (iter == controls_.end()) {
|
||||||
|
LOG(V4L2, Error)
|
||||||
|
<< "Control " << utils::hex(id) << " not found";
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
ctrls.set(id, {});
|
||||||
|
}
|
||||||
|
|
||||||
struct v4l2_ext_control v4l2Ctrls[count];
|
struct v4l2_ext_control v4l2Ctrls[count];
|
||||||
memset(v4l2Ctrls, 0, sizeof(v4l2Ctrls));
|
memset(v4l2Ctrls, 0, sizeof(v4l2Ctrls));
|
||||||
|
|
||||||
unsigned int i = 0;
|
unsigned int i = 0;
|
||||||
for (auto &ctrl : *ctrls) {
|
for (auto &ctrl : ctrls) {
|
||||||
unsigned int id = ctrl.first;
|
unsigned int id = ctrl.first;
|
||||||
const auto iter = controls_.find(id);
|
|
||||||
if (iter == controls_.end()) {
|
|
||||||
LOG(V4L2, Error)
|
|
||||||
<< "Control " << utils::hex(id) << " not found";
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
const struct v4l2_query_ext_ctrl &info = controlInfo_[id];
|
const struct v4l2_query_ext_ctrl &info = controlInfo_[id];
|
||||||
ControlValue &value = ctrl.second;
|
|
||||||
|
|
||||||
if (info.flags & V4L2_CTRL_FLAG_HAS_PAYLOAD) {
|
if (info.flags & V4L2_CTRL_FLAG_HAS_PAYLOAD) {
|
||||||
ControlType type;
|
ControlType type;
|
||||||
|
@ -200,9 +205,10 @@ int V4L2Device::getControls(ControlList *ctrls)
|
||||||
LOG(V4L2, Error)
|
LOG(V4L2, Error)
|
||||||
<< "Unsupported payload control type "
|
<< "Unsupported payload control type "
|
||||||
<< info.type;
|
<< info.type;
|
||||||
return -EINVAL;
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ControlValue &value = ctrl.second;
|
||||||
value.reserve(type, true, info.elems);
|
value.reserve(type, true, info.elems);
|
||||||
Span<uint8_t> data = value.data();
|
Span<uint8_t> data = value.data();
|
||||||
|
|
||||||
|
@ -227,7 +233,7 @@ int V4L2Device::getControls(ControlList *ctrls)
|
||||||
if (errorIdx == 0 || errorIdx >= count) {
|
if (errorIdx == 0 || errorIdx >= count) {
|
||||||
LOG(V4L2, Error) << "Unable to read controls: "
|
LOG(V4L2, Error) << "Unable to read controls: "
|
||||||
<< strerror(-ret);
|
<< strerror(-ret);
|
||||||
return -EINVAL;
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
/* A specific control failed. */
|
/* A specific control failed. */
|
||||||
|
@ -237,9 +243,9 @@ int V4L2Device::getControls(ControlList *ctrls)
|
||||||
ret = errorIdx;
|
ret = errorIdx;
|
||||||
}
|
}
|
||||||
|
|
||||||
updateControls(ctrls, v4l2Ctrls, count);
|
updateControls(&ctrls, v4l2Ctrls, count);
|
||||||
|
|
||||||
return ret;
|
return ctrls;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -57,18 +57,20 @@ protected:
|
||||||
const ControlInfo &u8 = infoMap.find(VIVID_CID_U8_4D_ARRAY)->second;
|
const ControlInfo &u8 = infoMap.find(VIVID_CID_U8_4D_ARRAY)->second;
|
||||||
|
|
||||||
/* Test getting controls. */
|
/* Test getting controls. */
|
||||||
ControlList ctrls(infoMap);
|
ControlList ctrls = capture_->getControls({ V4L2_CID_BRIGHTNESS,
|
||||||
ctrls.set(V4L2_CID_BRIGHTNESS, -1);
|
V4L2_CID_CONTRAST,
|
||||||
ctrls.set(V4L2_CID_CONTRAST, -1);
|
V4L2_CID_SATURATION,
|
||||||
ctrls.set(V4L2_CID_SATURATION, -1);
|
VIVID_CID_U8_4D_ARRAY });
|
||||||
ctrls.set(VIVID_CID_U8_4D_ARRAY, 0);
|
if (ctrls.empty()) {
|
||||||
|
|
||||||
int ret = capture_->getControls(&ctrls);
|
|
||||||
if (ret) {
|
|
||||||
cerr << "Failed to get controls" << endl;
|
cerr << "Failed to get controls" << endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (ctrls.infoMap() != &infoMap) {
|
||||||
|
cerr << "Incorrect infoMap for retrieved controls" << endl;
|
||||||
|
return TestFail;
|
||||||
|
}
|
||||||
|
|
||||||
if (ctrls.get(V4L2_CID_BRIGHTNESS).get<int32_t>() == -1 ||
|
if (ctrls.get(V4L2_CID_BRIGHTNESS).get<int32_t>() == -1 ||
|
||||||
ctrls.get(V4L2_CID_CONTRAST).get<int32_t>() == -1 ||
|
ctrls.get(V4L2_CID_CONTRAST).get<int32_t>() == -1 ||
|
||||||
ctrls.get(V4L2_CID_SATURATION).get<int32_t>() == -1) {
|
ctrls.get(V4L2_CID_SATURATION).get<int32_t>() == -1) {
|
||||||
|
@ -97,7 +99,7 @@ protected:
|
||||||
std::fill(u8Values.begin(), u8Values.end(), u8.min().get<uint8_t>());
|
std::fill(u8Values.begin(), u8Values.end(), u8.min().get<uint8_t>());
|
||||||
ctrls.set(VIVID_CID_U8_4D_ARRAY, Span<const uint8_t>(u8Values));
|
ctrls.set(VIVID_CID_U8_4D_ARRAY, Span<const uint8_t>(u8Values));
|
||||||
|
|
||||||
ret = capture_->setControls(&ctrls);
|
int ret = capture_->setControls(&ctrls);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
cerr << "Failed to set controls" << endl;
|
cerr << "Failed to set controls" << endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue