Linux-Media Archive mirror
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Cc: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>,
	linux-media@vger.kernel.org, Sakari Ailus <sakari.ailus@iki.fi>
Subject: Re: [v4l-utils] [PATCH v1 3/3] utils: media-ctl: Support accessing the subdev TRY state
Date: Mon, 10 Jun 2024 14:11:45 +0300	[thread overview]
Message-ID: <20240610111145.GP18479@pendragon.ideasonboard.com> (raw)
In-Reply-To: <3dbe8c9f-ed9a-4d4b-8a69-d16c8223efdd@xs4all.nl>

On Mon, Jun 10, 2024 at 11:15:55AM +0200, Hans Verkuil wrote:
> On 10/06/2024 11:11, Laurent Pinchart wrote:
> > On Mon, Jun 10, 2024 at 11:06:30AM +0200, Hans Verkuil wrote:
> >> On 10/06/2024 11:00, Laurent Pinchart wrote:
> >>> On Mon, Jun 10, 2024 at 09:14:59AM +0300, Tomi Valkeinen wrote:
> >>>> On 10/06/2024 04:22, Laurent Pinchart wrote:
> >>>>> Add a -W/--which argument to media-ctl to select which state to operate
> >>>>> on. Default to the ACTIVE state to preserve the current behaviour.
> >>>>>
> >>>>> Despite the fact that all values set on the TRY state are lost when
> >>>>> media-ctl terminates, support for the TRY state is useful in order to
> >>>>> retrieve the default configuration of subdevs, or to try configurations.
> >>>>
> >>>> I think this is fine, but I'm curious why you chose such an argument. I 
> >>>> would have thought "-t/--try" (or even just --try) would have been 
> >>>> simpler to implement and to use. I think I would remember "--try" 
> >>>> easily, but "-W TRY", I fear I'll have to check the man page every time...
> >>>
> >>> There are a few reasons:
> >>>
> >>> - Be closer to the API (media-ctl is a low-level tool)
> >>> - Support other values later if the kernel API evolves (no plan for
> >>>   that, but who knows ?)
> >>> - I find it easier to propagate arguments in scripts this way. If a
> >>>   script that wraps media-ctl receives a nothing/--try argument, it's
> >>>   fairly easy to translate that to nothing/-W TRY. If it receives a
> >>>   --foo ACTIVE/TRY argument (on the command line, in an interactive
> >>>   prompt, as part of a string that tells what to do on a pad, ...), then
> >>>   translating that to '-W arg' is easier than to nothing/-W TRY.
> >>>
> >>>>> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> >>>>> ---
> >>>>>   utils/media-ctl/media-ctl.c | 13 +++++++------
> >>>>>   utils/media-ctl/options.c   | 18 +++++++++++++++++-
> >>>>>   utils/media-ctl/options.h   |  1 +
> >>>>>   3 files changed, 25 insertions(+), 7 deletions(-)
> >>>>>
> >>>>> diff --git a/utils/media-ctl/media-ctl.c b/utils/media-ctl/media-ctl.c
> >>>>> index 42b1bd9aaa6e..33df0880fd9b 100644
> >>>>> --- a/utils/media-ctl/media-ctl.c
> >>>>> +++ b/utils/media-ctl/media-ctl.c
> >>>>> @@ -600,7 +600,6 @@ static void media_print_topology_text(struct media_device *media,
> >>>>>   
> >>>>>   int main(int argc, char **argv)
> >>>>>   {
> >>>>> -	const enum v4l2_subdev_format_whence which = V4L2_SUBDEV_FORMAT_ACTIVE;
> >>>>>   	struct media_device *media;
> >>>>>   	struct media_entity *entity = NULL;
> >>>>>   	int ret = -1;
> >>>>> @@ -667,7 +666,8 @@ int main(int argc, char **argv)
> >>>>>   			goto out;
> >>>>>   		}
> >>>>>   
> >>>>> -		v4l2_subdev_print_format(pad->entity, pad->index, stream, which);
> >>>>> +		v4l2_subdev_print_format(pad->entity, pad->index, stream,
> >>>>> +					 media_opts.which);
> >>>>>   	}
> >>>>>   
> >>>>>   	if (media_opts.get_dv_pad) {
> >>>>> @@ -709,9 +709,10 @@ int main(int argc, char **argv)
> >>>>>   		media_print_topology_dot(media);
> >>>>>   	} else if (media_opts.print) {
> >>>>>   		if (entity)
> >>>>> -			media_print_topology_text_entity(media, entity, which);
> >>>>> +			media_print_topology_text_entity(media, entity,
> >>>>> +							 media_opts.which);
> >>>>>   		else
> >>>>> -			media_print_topology_text(media, which);
> >>>>> +			media_print_topology_text(media, media_opts.which);
> >>>>>   	} else if (entity) {
> >>>>>   		const char *devname;
> >>>>>   
> >>>>> @@ -741,7 +742,7 @@ int main(int argc, char **argv)
> >>>>>   	}
> >>>>>   
> >>>>>   	if (media_opts.routes) {
> >>>>> -		ret = v4l2_subdev_parse_setup_routes(media, which,
> >>>>> +		ret = v4l2_subdev_parse_setup_routes(media, media_opts.which,
> >>>>>   						     media_opts.routes);
> >>>>>   		if (ret) {
> >>>>>   			printf("Unable to setup routes: %s (%d)\n",
> >>>>> @@ -751,7 +752,7 @@ int main(int argc, char **argv)
> >>>>>   	}
> >>>>>   
> >>>>>   	if (media_opts.formats) {
> >>>>> -		ret = v4l2_subdev_parse_setup_formats(media, which,
> >>>>> +		ret = v4l2_subdev_parse_setup_formats(media, media_opts.which,
> >>>>>   						      media_opts.formats);
> >>>>>   		if (ret) {
> >>>>>   			printf("Unable to setup formats: %s (%d)\n",
> >>>>> diff --git a/utils/media-ctl/options.c b/utils/media-ctl/options.c
> >>>>> index 3c408a1b9b06..3606525c33da 100644
> >>>>> --- a/utils/media-ctl/options.c
> >>>>> +++ b/utils/media-ctl/options.c
> >>>>> @@ -40,6 +40,7 @@
> >>>>>   
> >>>>>   struct media_options media_opts = {
> >>>>>   	.devname = MEDIA_DEVNAME_DEFAULT,
> >>>>> +	.which = V4L2_SUBDEV_FORMAT_ACTIVE,
> >>>>>   };
> >>>>>   
> >>>>>   static void print_version()
> >>>>> @@ -75,6 +76,7 @@ static void usage(const char *argv0)
> >>>>>   	printf("-r, --reset		Reset all links to inactive\n");
> >>>>>   	printf("-v, --verbose		Be verbose\n");
> >>>>>   	printf("    --version		Show version information\n");
> >>>>> +	printf("-W, --which which	Select the subdev state to operate on\n");
> >>>>>   	printf("\n");
> >>>>>   	printf("Links and formats are defined as\n");
> >>>>>   	printf("\tlinks           = link { ',' link } ;\n");
> >>>>> @@ -140,6 +142,8 @@ static void usage(const char *argv0)
> >>>>>   	for (i = V4L2_YCBCR_ENC_DEFAULT; i <= V4L2_YCBCR_ENC_SMPTE240M; i++)
> >>>>>   		printf("\t                %s\n",
> >>>>>   		       v4l2_subdev_ycbcr_encoding_to_string(i));
> >>>>> +
> >>>>> +	printf("\twhich           Subdev state ('ACTIVE' or 'TRY')\n");
> >>>>>   }
> >>>>>   
> >>>>>   #define OPT_PRINT_DOT			256
> >>>>> @@ -168,6 +172,7 @@ static struct option opts[] = {
> >>>>>   	{"reset", 0, 0, 'r'},
> >>>>>   	{"verbose", 0, 0, 'v'},
> >>>>>   	{"version", 0, 0, OPT_VERSION},
> >>>>> +	{"which", 1, 0, 'W'},
> >>>>>   	{ },
> >>>>>   };
> >>>>>   
> >>>>> @@ -244,7 +249,7 @@ int parse_cmdline(int argc, char **argv)
> >>>>>   	}
> >>>>>   
> >>>>>   	/* parse options */
> >>>>> -	while ((opt = getopt_long(argc, argv, "d:e:f:hil:prvV:R:",
> >>>>> +	while ((opt = getopt_long(argc, argv, "d:e:f:hil:prvV:R:W:",
> >>>>>   				  opts, NULL)) != -1) {
> >>>>>   		switch (opt) {
> >>>>>   		case 'd':
> >>>>> @@ -294,6 +299,17 @@ int parse_cmdline(int argc, char **argv)
> >>>>>   			media_opts.routes = optarg;
> >>>>>   			break;
> >>>>>   
> >>>>> +		case 'W':
> >>>>> +			if (!strcmp(optarg, "ACTIVE"))
> >>>>> +				media_opts.which = V4L2_SUBDEV_FORMAT_ACTIVE;
> >>>>> +			else if (!strcmp(optarg, "TRY"))
> >>>>> +				media_opts.which = V4L2_SUBDEV_FORMAT_TRY;
> >>
> >> I very much prefer lower case here since it is a pain to type otherwise.
> >> Alternatively, make this a case-insensitive string compare, that's fine as well.
> > 
> > I've tried to stick to the kernel API, the same way we use upper-case
> > media bus codes. If it's generally preferred to use lower-case strings,
> > or make the comparison case-insensitive, I can do that too. I generally
> > dislike case-insensitivity though, it can easily lead to confusion.
> 
> Looking at 'media-ctl -h' it uses lower-case for pretty much everything,
> including v4l2-field, v4l2-colorspace, etc. So if this is suddenly uppercase,
> then that is inconsistent with the other options of this utility.
> 
> Note that I keep everything lowercase in v4l2-ctl/compliance as well.

Those are good points. I'll switch to lowercase. Would you like a v2 on
the list, or can I push with this change ?

> >>>>> +			else {
> >>>>> +				printf("Invalid 'which' value '%s'\n", optarg);
> >>>>> +				return 1;
> >>>>> +			}
> >>>>> +			break;
> >>>>> +
> >>>>>   		case OPT_PRINT_DOT:
> >>>>>   			media_opts.print_dot = 1;
> >>>>>   			break;
> >>>>> diff --git a/utils/media-ctl/options.h b/utils/media-ctl/options.h
> >>>>> index 753d09347585..095729b98014 100644
> >>>>> --- a/utils/media-ctl/options.h
> >>>>> +++ b/utils/media-ctl/options.h
> >>>>> @@ -37,6 +37,7 @@ struct media_options
> >>>>>   	const char *get_dv_pad;
> >>>>>   	const char *dv_pad;
> >>>>>   	const char *routes;
> >>>>> +	enum v4l2_subdev_format_whence which;
> >>>>>   };
> >>>>>   
> >>>>>   extern struct media_options media_opts;

-- 
Regards,

Laurent Pinchart

  reply	other threads:[~2024-06-10 11:12 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-10  1:22 [v4l-utils] [PATCH v1 0/3] media-ctl: Add support for subdev TRY state Laurent Pinchart
2024-06-10  1:22 ` [v4l-utils] [PATCH v1 1/3] libv4l2subdev: Extend API with 'which' argument where missing Laurent Pinchart
2024-06-10  6:08   ` Tomi Valkeinen
2024-06-10  1:22 ` [v4l-utils] [PATCH v1 2/3] utils: media-ctl: Prepare for TRY state support Laurent Pinchart
2024-06-10  6:10   ` Tomi Valkeinen
2024-06-10  1:22 ` [v4l-utils] [PATCH v1 3/3] utils: media-ctl: Support accessing the subdev TRY state Laurent Pinchart
2024-06-10  6:14   ` Tomi Valkeinen
2024-06-10  9:00     ` Laurent Pinchart
2024-06-10  9:03       ` Tomi Valkeinen
2024-06-10  9:06       ` Hans Verkuil
2024-06-10  9:11         ` Laurent Pinchart
2024-06-10  9:15           ` Hans Verkuil
2024-06-10 11:11             ` Laurent Pinchart [this message]
2024-06-10  7:08 ` [v4l-utils] [PATCH v1 0/3] media-ctl: Add support for " Sakari Ailus

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=20240610111145.GP18479@pendragon.ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=hverkuil-cisco@xs4all.nl \
    --cc=linux-media@vger.kernel.org \
    --cc=sakari.ailus@iki.fi \
    --cc=tomi.valkeinen@ideasonboard.com \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).