public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Hans Verkuil <hverkuil@xs4all.nl>
Cc: linux-media <linux-media@vger.kernel.org>
Subject: Re: [PATCH] libmediactl.c: add poor man's udev support
Date: Sun, 13 Dec 2015 21:29:32 +0200	[thread overview]
Message-ID: <2326047.llhSbUSKD9@avalon> (raw)
In-Reply-To: <5669579B.8050706@xs4all.nl>

Hi Hans,

Thank you for the patch.

On Thursday 10 December 2015 11:44:43 Hans Verkuil wrote:
> If libudev is not available (android!),

It's time for Android to grow up and get rid of their LGPL hatred... That 
might actually happen as a result of the Chrome/Android merge that seems to be 
planned, as well as from the Android One project that will require something 
like libudev (although knowing the Android folks they might decide to 
reimplement it).

> then just try to find the device in /dev. It's a poor man's solution, but it
> is better than nothing.

Can't we assume that, on such systems, the device will always be named 
/dev/video* or /dev/v4l-subdev* ? If so we could lower the runtime impact by 
only checking the /sys/class/video4linux/video* and 
/sys/class/video4linux/v4l-subdev* entries to match the device minor and 
major, and use the index from the sysfs entry to create the /dev path.

My enumeration library (which I need to revive) implements that, feel free to 
use the code if it can be useful.

git://git.ideasonboard.org/media-enum.git

> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
> 
> diff --git a/utils/media-ctl/libmediactl.c b/utils/media-ctl/libmediactl.c
> index 4a82d24..1577783 100644
> --- a/utils/media-ctl/libmediactl.c
> +++ b/utils/media-ctl/libmediactl.c
> @@ -441,7 +441,10 @@ static int media_get_devname_udev(struct udev *udev,
>  	return ret;
>  }
> 
> -#else	/* HAVE_LIBUDEV */
> +#else
> +
> +#include <dirent.h>
> +#include <sys/stat.h>
> 
>  struct udev;
> 
> @@ -449,10 +452,36 @@ static inline int media_udev_open(struct udev **udev)
> { return 0; }
> 
>  static inline void media_udev_close(struct udev *udev) { }
> 
> -static inline int media_get_devname_udev(struct udev *udev,
> -		struct media_entity *entity)
> +static int media_get_devname_udev(struct udev *udev,
> +				  struct media_entity *entity)
>  {
> -	return -ENOTSUP;
> +	DIR *dp;
> +	struct dirent *ep;
> +	dev_t devnum;
> +
> +	dp = opendir("/dev");
> +	if (dp == NULL) {
> +		media_dbg(entity->media, "couldn't open /dev\n");
> +		return -ENODEV;
> +	}
> +	devnum = makedev(entity->info.v4l.major, entity->info.v4l.minor);
> +	while ((ep = readdir(dp))) {
> +		struct stat st;
> +		char fname[256];
> +
> +		snprintf(fname, sizeof(fname) - 1, "/dev/%s", ep->d_name);
> +		fname[sizeof(fname) - 1] = 0;
> +		stat(fname, &st);
> +		if ((st.st_mode & S_IFMT) != S_IFCHR)
> +			continue;
> +		if (st.st_rdev == devnum) {
> +			strncpy(entity->devname, fname, sizeof(entity->devname));
> +                        entity->devname[sizeof(entity->devname) - 1] =
> '\0';
> +			return 0;
> +		}
> +	}
> +	closedir(dp);
> +	return -ENODEV;
>  }
> 
>  #endif	/* HAVE_LIBUDEV */

-- 
Regards,

Laurent Pinchart


      reply	other threads:[~2015-12-14  1:36 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-10 10:44 [PATCH] libmediactl.c: add poor man's udev support Hans Verkuil
2015-12-13 19:29 ` Laurent Pinchart [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2326047.llhSbUSKD9@avalon \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=hverkuil@xs4all.nl \
    --cc=linux-media@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox