[{"id":30810,"web_url":"https://patchwork.libcamera.org/comment/30810/","msgid":"<51f6138e-df50-488b-a6e3-9de3f3d13427@ideasonboard.com>","date":"2024-08-14T21:50:09","subject":"Re: [PATCH 01/10] meson: Store controls and properties YAML files in\n\tvariables","submitter":{"id":156,"url":"https://patchwork.libcamera.org/api/people/156/","name":"Dan Scally","email":"dan.scally@ideasonboard.com"},"content":"Hi Laurent - thanks for the set\n\nOn 09/08/2024 01:59, Laurent Pinchart wrote:\n> When generating control headers, the YAML files to be used are\n> determined dynamically based on the selected pipeline handlers. As part\n> of this process, the build system populates an array of meson File\n> objects used an an input for the control headers generation custom\ns/an an/as an\n> target, as well as an array of file names (as strings). The file names\n> array is later used to generate the control source files for the\n> libcamera core, as well as the source code for controls support in the\n> Python bindings.\n>\n> Both of the source code generators manually turn the array of file names\n> into File objects. This duplicates code and reduces readability. A third\n> similar implementation has also been proposed to generate control\n> support sources in the GStreamer element, making the issue worse.\n>\n> To simplify this, store File objects instead of file names in the\n> controls_files array. As the meson configuration summary doesn't support\n> File objects, create a separate controls_files_names to store the file\n> names for that sole purpose.\n>\n> The exact same process occurs for properties, address them the same way.\n>\n> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\n> ---\nReviewed-by: Daniel Scally <dan.scally@ideasonboard.com>\n>   include/libcamera/meson.build |  8 ++++++--\n>   meson.build                   |  4 ++--\n>   src/libcamera/meson.build     |  2 --\n>   src/py/libcamera/meson.build  | 15 ++-------------\n>   4 files changed, 10 insertions(+), 19 deletions(-)\n>\n> diff --git a/include/libcamera/meson.build b/include/libcamera/meson.build\n> index c8c900eba66a..36de1c2a393c 100644\n> --- a/include/libcamera/meson.build\n> +++ b/include/libcamera/meson.build\n> @@ -47,7 +47,9 @@ controls_map = {\n>   \n>   control_headers = []\n>   controls_files = []\n> +controls_files_names = []\n>   properties_files = []\n> +properties_files_names = []\n>   \n>   foreach mode, entry : controls_map\n>       files_list = []\n> @@ -70,10 +72,12 @@ foreach mode, entry : controls_map\n>       outfile = ''\n>       if mode == 'controls'\n>           outfile = 'control_ids.h'\n> -        controls_files += files_list\n> +        controls_files += input_files\n> +        controls_files_names += files_list\n>       else\n>           outfile = 'property_ids.h'\n> -        properties_files += files_list\n> +        properties_files += input_files\n> +        properties_files_names += files_list\n>       endif\n>   \n>       template_file = files(outfile + '.in')\n> diff --git a/meson.build b/meson.build\n> index 59293e478b00..432ae1337b4a 100644\n> --- a/meson.build\n> +++ b/meson.build\n> @@ -278,8 +278,8 @@ py_mod.find_installation('python3', modules : py_modules)\n>   summary({\n>               'Enabled pipelines': pipelines,\n>               'Enabled IPA modules': enabled_ipa_names,\n> -            'Controls files': controls_files,\n> -            'Properties files': properties_files,\n> +            'Controls files': controls_files_names,\n> +            'Properties files': properties_files_names,\n>               'Hotplug support': libudev.found(),\n>               'Tracing support': tracing_enabled,\n>               'Android support': android_enabled,\n> diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build\n> index c3efc5278ec8..79b8cbaf1311 100644\n> --- a/src/libcamera/meson.build\n> +++ b/src/libcamera/meson.build\n> @@ -134,8 +134,6 @@ controls_mode_files = {\n>   }\n>   \n>   foreach mode, input_files : controls_mode_files\n> -    input_files = files(input_files)\n> -\n>       if mode == 'controls'\n>           template_file = files('control_ids.cpp.in')\n>       else\n> diff --git a/src/py/libcamera/meson.build b/src/py/libcamera/meson.build\n> index 4807ca7d75ed..2e67407598db 100644\n> --- a/src/py/libcamera/meson.build\n> +++ b/src/py/libcamera/meson.build\n> @@ -28,32 +28,21 @@ pycamera_sources = files([\n>   \n>   # Generate controls\n>   \n> -gen_py_controls_input_files = []\n>   gen_py_controls_template = files('py_controls_generated.cpp.in')\n> -\n>   gen_py_controls = files('gen-py-controls.py')\n>   \n> -foreach file : controls_files\n> -    gen_py_controls_input_files += files('../../libcamera/' + file)\n> -endforeach\n> -\n>   pycamera_sources += custom_target('py_gen_controls',\n> -                                  input : gen_py_controls_input_files,\n> +                                  input : controls_files,\n>                                     output : ['py_controls_generated.cpp'],\n>                                     command : [gen_py_controls, '--mode', 'controls', '-o', '@OUTPUT@',\n>                                                '-t', gen_py_controls_template, '@INPUT@'])\n>   \n>   # Generate properties\n>   \n> -gen_py_property_enums_input_files = []\n>   gen_py_properties_template = files('py_properties_generated.cpp.in')\n>   \n> -foreach file : properties_files\n> -    gen_py_property_enums_input_files += files('../../libcamera/' + file)\n> -endforeach\n> -\n>   pycamera_sources += custom_target('py_gen_properties',\n> -                                  input : gen_py_property_enums_input_files,\n> +                                  input : properties_files,\n>                                     output : ['py_properties_generated.cpp'],\n>                                     command : [gen_py_controls, '--mode', 'properties', '-o', '@OUTPUT@',\n>                                                '-t', gen_py_properties_template, '@INPUT@'])","headers":{"Return-Path":"<libcamera-devel-bounces@lists.libcamera.org>","X-Original-To":"parsemail@patchwork.libcamera.org","Delivered-To":"parsemail@patchwork.libcamera.org","Received":["from lancelot.ideasonboard.com (lancelot.ideasonboard.com\n\t[92.243.16.209])\n\tby patchwork.libcamera.org (Postfix) with ESMTPS id B2AC3C323E\n\tfor <parsemail@patchwork.libcamera.org>;\n\tWed, 14 Aug 2024 21:50:15 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id AED12633BD;\n\tWed, 14 Aug 2024 23:50:14 +0200 (CEST)","from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[213.167.242.64])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 243316337E\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tWed, 14 Aug 2024 23:50:13 +0200 (CEST)","from [192.168.0.43]\n\t(cpc141996-chfd3-2-0-cust928.12-3.cable.virginm.net [86.13.91.161])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 4D9E166F\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tWed, 14 Aug 2024 23:49:14 +0200 (CEST)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (1024-bit key;\n\tunprotected) header.d=ideasonboard.com header.i=@ideasonboard.com\n\theader.b=\"WSd6wQBI\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1723672155;\n\tbh=Owxalqtz+z0Y0G9k/yC0bzIBKhi4hSc3R/pqXV3Eel4=;\n\th=Date:Subject:To:References:From:In-Reply-To:From;\n\tb=WSd6wQBIzMXlixuWWbaYq/qXyxOVdVbD8/mhDZpa0uPsSnzHnmG4iAEXbZDqnd8tS\n\tMRFSoCdiM5iL5cq9+WnNuzesDIk6TO1IkSPYHB6zgTKluvKvHUf1V5Ty2U2UQ6kzcF\n\tpIF1oOyrvPVzYUCi409V9ST7m2PFn0AXHt8kmYj4=","Message-ID":"<51f6138e-df50-488b-a6e3-9de3f3d13427@ideasonboard.com>","Date":"Wed, 14 Aug 2024 22:50:09 +0100","MIME-Version":"1.0","User-Agent":"Mozilla Thunderbird","Subject":"Re: [PATCH 01/10] meson: Store controls and properties YAML files in\n\tvariables","To":"libcamera-devel@lists.libcamera.org","References":"<20240809005914.20662-1-laurent.pinchart@ideasonboard.com>\n\t<20240809005914.20662-2-laurent.pinchart@ideasonboard.com>","Content-Language":"en-US","From":"Dan Scally <dan.scally@ideasonboard.com>","Autocrypt":"addr=dan.scally@ideasonboard.com; keydata=\n\t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","In-Reply-To":"<20240809005914.20662-2-laurent.pinchart@ideasonboard.com>","Content-Type":"text/plain; charset=UTF-8; format=flowed","Content-Transfer-Encoding":"7bit","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"}},{"id":30825,"web_url":"https://patchwork.libcamera.org/comment/30825/","msgid":"<Zr1aj1fLXu6EIGY8@pyrite.rasen.tech>","date":"2024-08-15T01:31:59","subject":"Re: [PATCH 01/10] meson: Store controls and properties YAML files in\n\tvariables","submitter":{"id":17,"url":"https://patchwork.libcamera.org/api/people/17/","name":"Paul Elder","email":"paul.elder@ideasonboard.com"},"content":"On Fri, Aug 09, 2024 at 03:59:05AM +0300, Laurent Pinchart wrote:\n> When generating control headers, the YAML files to be used are\n> determined dynamically based on the selected pipeline handlers. As part\n> of this process, the build system populates an array of meson File\n> objects used an an input for the control headers generation custom\n> target, as well as an array of file names (as strings). The file names\n> array is later used to generate the control source files for the\n> libcamera core, as well as the source code for controls support in the\n> Python bindings.\n> \n> Both of the source code generators manually turn the array of file names\n> into File objects. This duplicates code and reduces readability. A third\n> similar implementation has also been proposed to generate control\n> support sources in the GStreamer element, making the issue worse.\n> \n> To simplify this, store File objects instead of file names in the\n> controls_files array. As the meson configuration summary doesn't support\n> File objects, create a separate controls_files_names to store the file\n> names for that sole purpose.\n> \n> The exact same process occurs for properties, address them the same way.\n> \n> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\n\nReviewed-by: Paul Elder <paul.elder@ideasonboard.com>\n\n> ---\n>  include/libcamera/meson.build |  8 ++++++--\n>  meson.build                   |  4 ++--\n>  src/libcamera/meson.build     |  2 --\n>  src/py/libcamera/meson.build  | 15 ++-------------\n>  4 files changed, 10 insertions(+), 19 deletions(-)\n> \n> diff --git a/include/libcamera/meson.build b/include/libcamera/meson.build\n> index c8c900eba66a..36de1c2a393c 100644\n> --- a/include/libcamera/meson.build\n> +++ b/include/libcamera/meson.build\n> @@ -47,7 +47,9 @@ controls_map = {\n>  \n>  control_headers = []\n>  controls_files = []\n> +controls_files_names = []\n>  properties_files = []\n> +properties_files_names = []\n>  \n>  foreach mode, entry : controls_map\n>      files_list = []\n> @@ -70,10 +72,12 @@ foreach mode, entry : controls_map\n>      outfile = ''\n>      if mode == 'controls'\n>          outfile = 'control_ids.h'\n> -        controls_files += files_list\n> +        controls_files += input_files\n> +        controls_files_names += files_list\n>      else\n>          outfile = 'property_ids.h'\n> -        properties_files += files_list\n> +        properties_files += input_files\n> +        properties_files_names += files_list\n>      endif\n>  \n>      template_file = files(outfile + '.in')\n> diff --git a/meson.build b/meson.build\n> index 59293e478b00..432ae1337b4a 100644\n> --- a/meson.build\n> +++ b/meson.build\n> @@ -278,8 +278,8 @@ py_mod.find_installation('python3', modules : py_modules)\n>  summary({\n>              'Enabled pipelines': pipelines,\n>              'Enabled IPA modules': enabled_ipa_names,\n> -            'Controls files': controls_files,\n> -            'Properties files': properties_files,\n> +            'Controls files': controls_files_names,\n> +            'Properties files': properties_files_names,\n>              'Hotplug support': libudev.found(),\n>              'Tracing support': tracing_enabled,\n>              'Android support': android_enabled,\n> diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build\n> index c3efc5278ec8..79b8cbaf1311 100644\n> --- a/src/libcamera/meson.build\n> +++ b/src/libcamera/meson.build\n> @@ -134,8 +134,6 @@ controls_mode_files = {\n>  }\n>  \n>  foreach mode, input_files : controls_mode_files\n> -    input_files = files(input_files)\n> -\n>      if mode == 'controls'\n>          template_file = files('control_ids.cpp.in')\n>      else\n> diff --git a/src/py/libcamera/meson.build b/src/py/libcamera/meson.build\n> index 4807ca7d75ed..2e67407598db 100644\n> --- a/src/py/libcamera/meson.build\n> +++ b/src/py/libcamera/meson.build\n> @@ -28,32 +28,21 @@ pycamera_sources = files([\n>  \n>  # Generate controls\n>  \n> -gen_py_controls_input_files = []\n>  gen_py_controls_template = files('py_controls_generated.cpp.in')\n> -\n>  gen_py_controls = files('gen-py-controls.py')\n>  \n> -foreach file : controls_files\n> -    gen_py_controls_input_files += files('../../libcamera/' + file)\n> -endforeach\n> -\n>  pycamera_sources += custom_target('py_gen_controls',\n> -                                  input : gen_py_controls_input_files,\n> +                                  input : controls_files,\n>                                    output : ['py_controls_generated.cpp'],\n>                                    command : [gen_py_controls, '--mode', 'controls', '-o', '@OUTPUT@',\n>                                               '-t', gen_py_controls_template, '@INPUT@'])\n>  \n>  # Generate properties\n>  \n> -gen_py_property_enums_input_files = []\n>  gen_py_properties_template = files('py_properties_generated.cpp.in')\n>  \n> -foreach file : properties_files\n> -    gen_py_property_enums_input_files += files('../../libcamera/' + file)\n> -endforeach\n> -\n>  pycamera_sources += custom_target('py_gen_properties',\n> -                                  input : gen_py_property_enums_input_files,\n> +                                  input : properties_files,\n>                                    output : ['py_properties_generated.cpp'],\n>                                    command : [gen_py_controls, '--mode', 'properties', '-o', '@OUTPUT@',\n>                                               '-t', gen_py_properties_template, '@INPUT@'])\n> -- \n> Regards,\n> \n> Laurent Pinchart\n>","headers":{"Return-Path":"<libcamera-devel-bounces@lists.libcamera.org>","X-Original-To":"parsemail@patchwork.libcamera.org","Delivered-To":"parsemail@patchwork.libcamera.org","Received":["from lancelot.ideasonboard.com (lancelot.ideasonboard.com\n\t[92.243.16.209])\n\tby patchwork.libcamera.org (Postfix) with ESMTPS id 40671BDB13\n\tfor <parsemail@patchwork.libcamera.org>;\n\tThu, 15 Aug 2024 01:32:10 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id ECBFF633BD;\n\tThu, 15 Aug 2024 03:32:08 +0200 (CEST)","from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[213.167.242.64])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 278A163382\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tThu, 15 Aug 2024 03:32:07 +0200 (CEST)","from pyrite.rasen.tech (h175-177-049-024.catv02.itscom.jp\n\t[175.177.49.24])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 12BD8A34;\n\tThu, 15 Aug 2024 03:31:07 +0200 (CEST)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (1024-bit key;\n\tunprotected) header.d=ideasonboard.com header.i=@ideasonboard.com\n\theader.b=\"cTqCCKk9\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1723685469;\n\tbh=tEuHykd1T/eQ4A2vmkzuwyEhrl3LkU57WCDOfj0kP74=;\n\th=Date:From:To:Cc:Subject:References:In-Reply-To:From;\n\tb=cTqCCKk9LvBlcl+OZRVJK/MQzntjgmK/35Z4JPdAXqSJ7s0EyAJ1cDBoSEM5CrAci\n\tp9mGtTl5DSLuqcRFde5u+kwT5ttkEyMFasuFEWBziorri9uVNueTSlfQhd7rPX1Cmu\n\t0oxZhEOfRR+vWksdI53DBPX7OJs32Fi7e1bFkaV4=","Date":"Thu, 15 Aug 2024 10:31:59 +0900","From":"Paul Elder <paul.elder@ideasonboard.com>","To":"Laurent Pinchart <laurent.pinchart@ideasonboard.com>","Cc":"libcamera-devel@lists.libcamera.org","Subject":"Re: [PATCH 01/10] meson: Store controls and properties YAML files in\n\tvariables","Message-ID":"<Zr1aj1fLXu6EIGY8@pyrite.rasen.tech>","References":"<20240809005914.20662-1-laurent.pinchart@ideasonboard.com>\n\t<20240809005914.20662-2-laurent.pinchart@ideasonboard.com>","MIME-Version":"1.0","Content-Type":"text/plain; charset=us-ascii","Content-Disposition":"inline","In-Reply-To":"<20240809005914.20662-2-laurent.pinchart@ideasonboard.com>","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"}}]