[libcamera-devel] [PATCH 28/31] cam: Add option to list camera properties

Kieran Bingham kieran.bingham at ideasonboard.com
Thu Mar 5 18:32:40 CET 2020


On 29/02/2020 16:42, Laurent Pinchart wrote:
> From: Jacopo Mondi <jacopo at jmondi.org>
> 
> Add the '-p'|'--list-properties' option to the cam application to list
> the properties of a camera.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
> Signed-off-by: Jacopo Mondi <jacopo at jmondi.org>
> Reviewed-by: Niklas Söderlund <niklas.soderlund at ragnatech.se>

Reviewed-by: Kieran Bingham <kieran.bingham at ideasonboard.com>

> ---
>  src/cam/main.cpp | 28 ++++++++++++++++++++++++++++
>  src/cam/main.h   |  1 +
>  2 files changed, 29 insertions(+)
> 
> diff --git a/src/cam/main.cpp b/src/cam/main.cpp
> index a38cca959aca..ea6f7914839c 100644
> --- a/src/cam/main.cpp
> +++ b/src/cam/main.cpp
> @@ -11,6 +11,7 @@
>  #include <string.h>
>  
>  #include <libcamera/libcamera.h>
> +#include <libcamera/property_ids.h>
>  
>  #include "capture.h"
>  #include "event_loop.h"
> @@ -36,6 +37,7 @@ public:
>  private:
>  	int parseOptions(int argc, char *argv[]);
>  	int prepareConfig();
> +	int listProperties();
>  	int infoConfiguration();
>  	int run();
>  
> @@ -180,6 +182,8 @@ int CamApp::parseOptions(int argc, char *argv[])
>  	parser.addOption(OptInfo, OptionNone,
>  			 "Display information about stream(s)", "info");
>  	parser.addOption(OptList, OptionNone, "List all cameras", "list");
> +	parser.addOption(OptProps, OptionNone, "List cameras properties",
> +			 "list-properties");
>  
>  	options_ = parser.parse(argc, argv);
>  	if (!options_.valid())
> @@ -268,6 +272,24 @@ int CamApp::prepareConfig()
>  	return 0;
>  }
>  
> +int CamApp::listProperties()
> +{
> +	if (!camera_) {
> +		std::cout << "Cannot list properties without a camera"
> +			  << std::endl;
> +		return -EINVAL;
> +	}

Hrm ...

I feel like this should be handled higher up in cam, and if a camera is
not selected, then the first one gets used.

And if one is *not available* then cam shouldn't be able to do anything?



> +
> +	for (const auto &prop : camera_->properties()) {
> +		const ControlId *id = properties::properties.at(prop.first);
> +		const ControlValue &value = prop.second;
> +
> +		std::cout << "Property: " << id->name() << " = " << value.toString();
> +	}
> +
> +	return 0;
> +}
> +
>  int CamApp::infoConfiguration()
>  {
>  	if (!config_) {
> @@ -312,6 +334,12 @@ int CamApp::run()
>  		}
>  	}
>  
> +	if (options_.isSet(OptProps)) {
> +		ret = listProperties();
> +		if (ret)
> +			return ret;
> +	}
> +
>  	if (options_.isSet(OptInfo)) {
>  		ret = infoConfiguration();
>  		if (ret)
> diff --git a/src/cam/main.h b/src/cam/main.h
> index 0997476bb335..afcad4353b7d 100644
> --- a/src/cam/main.h
> +++ b/src/cam/main.h
> @@ -14,6 +14,7 @@ enum {
>  	OptHelp = 'h',
>  	OptInfo = 'I',
>  	OptList = 'l',
> +	OptProps = 'p',
>  	OptStream = 's',
>  };
>  
> 

-- 
Regards
--
Kieran


More information about the libcamera-devel mailing list