summaryrefslogtreecommitdiff
path: root/src/libcamera/controls.cpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-09-28 02:45:49 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-10-05 20:02:51 +0300
commitecf1c2e57b357f1b843796fd9ac4c77da940a26a (patch)
treec955705f0641f26b9e53749f40756509cb7e2d16 /src/libcamera/controls.cpp
parentf671d84ceb491fdb07ad39d1fe20950fd6482e4f (diff)
libcamera: controls: Use ControlValidator to validate ControlList
Replace the manual validation of controls against a Camera with usage of the new ControlValidator interface. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'src/libcamera/controls.cpp')
-rw-r--r--src/libcamera/controls.cpp27
1 files changed, 10 insertions, 17 deletions
diff --git a/src/libcamera/controls.cpp b/src/libcamera/controls.cpp
index a7e9d069..f3260edc 100644
--- a/src/libcamera/controls.cpp
+++ b/src/libcamera/controls.cpp
@@ -10,8 +10,7 @@
#include <sstream>
#include <string>
-#include <libcamera/camera.h>
-
+#include "control_validator.h"
#include "log.h"
#include "utils.h"
@@ -365,20 +364,16 @@ std::string ControlRange::toString() const
* \class ControlList
* \brief Associate a list of ControlId with their values for a camera
*
- * A ControlList wraps a map of ControlId to ControlValue and provide
- * additional validation against the control information exposed by a Camera.
- *
- * A list is only valid for as long as the camera it refers to is valid. After
- * that calling any method of the ControlList class other than its destructor
- * will cause undefined behaviour.
+ * A ControlList wraps a map of ControlId to ControlValue and optionally
+ * validates controls against a ControlValidator.
*/
/**
- * \brief Construct a ControlList with a reference to the Camera it applies on
- * \param[in] camera The camera
+ * \brief Construct a ControlList with an optional control validator
+ * \param[in] validator The validator (may be null)
*/
-ControlList::ControlList(Camera *camera)
- : camera_(camera)
+ControlList::ControlList(ControlValidator *validator)
+ : validator_(validator)
{
}
@@ -493,12 +488,10 @@ const ControlValue *ControlList::find(const ControlId &id) const
ControlValue *ControlList::find(const ControlId &id)
{
- const ControlInfoMap &controls = camera_->controls();
- const auto iter = controls.find(&id);
- if (iter == controls.end()) {
+ if (validator_ && !validator_->validate(id)) {
LOG(Controls, Error)
- << "Camera " << camera_->name()
- << " does not support control " << id.name();
+ << "Control " << id.name()
+ << " is not valid for " << validator_->name();
return nullptr;
}