build: controls: Rework how controls and properties are generated
Add support for using separate YAML files for controls and properties generation. The mapping of vendor/pipeline handler to control file is done through the controls_map variable in include/libcamera/meson.build. This simplifies management of vendor control definitions and avoids possible merge conflicts when changing the control_ids.yaml file for core and draft controls. With this change, libcamera and draft controls and properties files are designated the 'libcamera' vendor tag. In this change, we also rename control_ids.yaml -> control_ids_core.yaml and property_ids.yaml -> property_ids_core.yaml to designate these as core libcamera controls. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
bba4ec63c4
commit
0455bbbf51
9 changed files with 87 additions and 30 deletions
|
@ -127,12 +127,23 @@ endif
|
|||
|
||||
control_sources = []
|
||||
|
||||
foreach source, mode : control_source_files
|
||||
input_files = files(source +'.yaml')
|
||||
template_file = files(source + '.cpp.in')
|
||||
control_sources += custom_target(source + '_cpp',
|
||||
controls_mode_files = {
|
||||
'controls' : controls_files,
|
||||
'properties' : properties_files,
|
||||
}
|
||||
|
||||
foreach mode, input_files : controls_mode_files
|
||||
input_files = files(input_files)
|
||||
|
||||
if mode == 'controls'
|
||||
template_file = files('control_ids.cpp.in')
|
||||
else
|
||||
template_file = files('property_ids.cpp.in')
|
||||
endif
|
||||
|
||||
control_sources += custom_target(mode + '_cpp',
|
||||
input : input_files,
|
||||
output : source + '.cpp',
|
||||
output : mode + '_ids.cpp',
|
||||
command : [gen_controls, '-o', '@OUTPUT@',
|
||||
'--mode', mode, '-t', template_file, '@INPUT@'])
|
||||
endforeach
|
||||
|
|
|
@ -95,7 +95,7 @@ def main(argv):
|
|||
help='Output file name. Defaults to standard output if not specified.')
|
||||
parser.add_argument('--template', '-t', type=str, required=True,
|
||||
help='Template file name.')
|
||||
parser.add_argument('input', type=str,
|
||||
parser.add_argument('input', type=str, nargs='+',
|
||||
help='Input file name.')
|
||||
args = parser.parse_args(argv[1:])
|
||||
|
||||
|
@ -103,11 +103,11 @@ def main(argv):
|
|||
print(f'Invalid mode option "{args.mode}"', file=sys.stderr)
|
||||
return -1
|
||||
|
||||
data = open(args.input, 'rb').read()
|
||||
|
||||
controls = {}
|
||||
vendor = yaml.safe_load(data)['vendor']
|
||||
controls[vendor] = yaml.safe_load(data)['controls']
|
||||
for input in args.input:
|
||||
data = open(input, 'rb').read()
|
||||
vendor = yaml.safe_load(data)['vendor']
|
||||
controls[vendor] = yaml.safe_load(data)['controls']
|
||||
|
||||
data = generate_py(controls, args.mode)
|
||||
|
||||
|
|
|
@ -28,11 +28,15 @@ pycamera_sources = files([
|
|||
|
||||
# Generate controls
|
||||
|
||||
gen_py_controls_input_files = files('../../libcamera/control_ids.yaml')
|
||||
gen_py_controls_input_files = []
|
||||
gen_py_controls_template = files('py_controls_generated.cpp.in')
|
||||
|
||||
gen_py_controls = files('gen-py-controls.py')
|
||||
|
||||
foreach file : controls_files
|
||||
gen_py_controls_input_files += files('../../libcamera/' + file)
|
||||
endforeach
|
||||
|
||||
pycamera_sources += custom_target('py_gen_controls',
|
||||
input : gen_py_controls_input_files,
|
||||
output : ['py_controls_generated.cpp'],
|
||||
|
@ -41,9 +45,13 @@ pycamera_sources += custom_target('py_gen_controls',
|
|||
|
||||
# Generate properties
|
||||
|
||||
gen_py_property_enums_input_files = files('../../libcamera/property_ids.yaml')
|
||||
gen_py_property_enums_input_files = []
|
||||
gen_py_properties_template = files('py_properties_generated.cpp.in')
|
||||
|
||||
foreach file : properties_files
|
||||
gen_py_property_enums_input_files += files('../../libcamera/' + file)
|
||||
endforeach
|
||||
|
||||
pycamera_sources += custom_target('py_gen_properties',
|
||||
input : gen_py_property_enums_input_files,
|
||||
output : ['py_properties_generated.cpp'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue