[libcamera-devel] [PATCH v2 07/12] libcamera: device_enumerator: add factory for DeviceEnumerators

Jacopo Mondi jacopo at jmondi.org
Sun Dec 30 11:17:34 CET 2018


Hi Niklas,

On Sat, Dec 29, 2018 at 04:28:50AM +0100, Niklas Söderlund wrote:
> Provide a factory for DeviceEnumerator objects. Depending on which
> libraries are available there will be different ways to enumerate
> information in the system. This factory hides this from the rest of the
> library.
>
> Currently udev enumeration is the only supported implementation, a sysfs
> implementation is another method that surely will be added in the
> future.
>

Reviewed-by; Jacopo Mondi <jacopo at jmondi.org>

Thanks
   j

> Signed-off-by: Niklas Söderlund <niklas.soderlund at ragnatech.se>
> Reviewed-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
> ---
>  src/libcamera/device_enumerator.cpp       | 19 +++++++++++++++++++
>  src/libcamera/include/device_enumerator.h |  2 ++
>  2 files changed, 21 insertions(+)
>
> diff --git a/src/libcamera/device_enumerator.cpp b/src/libcamera/device_enumerator.cpp
> index 3cafd0d3703dac99..26a3e68fcf39e43a 100644
> --- a/src/libcamera/device_enumerator.cpp
> +++ b/src/libcamera/device_enumerator.cpp
> @@ -121,6 +121,25 @@ bool DeviceMatch::match(const DeviceInfo *info) const
>   * Enumerator Base
>   */
>
> +DeviceEnumerator *DeviceEnumerator::create()
> +{
> +	DeviceEnumerator *enumerator;
> +
> +	/* TODO: add compile time checks to only try udev enumerator if libudev is available */
> +	enumerator = new DeviceEnumeratorUdev();
> +	if (!enumerator->init())
> +		return enumerator;
> +
> +	/*
> +	 * NOTE: Either udev is not available or initialization of it
> +	 * failed, use/fallback on sysfs enumerator
> +	 */
> +
> +	/* TODO: add a sysfs based enumerator */
> +
> +	return nullptr;
> +}
> +
>  DeviceEnumerator::~DeviceEnumerator()
>  {
>  	for (DeviceInfo *dev : devices_) {
> diff --git a/src/libcamera/include/device_enumerator.h b/src/libcamera/include/device_enumerator.h
> index 5348e6cf583dbd15..24bca0e3fc32c377 100644
> --- a/src/libcamera/include/device_enumerator.h
> +++ b/src/libcamera/include/device_enumerator.h
> @@ -56,6 +56,8 @@ private:
>  class DeviceEnumerator
>  {
>  public:
> +	static DeviceEnumerator *create();
> +
>  	virtual ~DeviceEnumerator();
>
>  	virtual int init() = 0;
> --
> 2.20.1
>
> _______________________________________________
> libcamera-devel mailing list
> libcamera-devel at lists.libcamera.org
> https://lists.libcamera.org/listinfo/libcamera-devel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <https://lists.libcamera.org/pipermail/libcamera-devel/attachments/20181230/45b2fee7/attachment.sig>


More information about the libcamera-devel mailing list