blob: 549eb581e504eb486f804cf3b456cc692d2d8cbc [file] [log] [blame]
Patrick Williams847a0c32020-06-24 15:18:10 -05001#!/usr/bin/env bash
2
3set -e
4
Patrick Williamsa4c9edc2020-12-17 21:02:36 -06005# Locale can change behavior of utilities like 'sort' but we want the output
6# to be stable on all machines. Force the locale to 'C' for consistency.
7export LC_ALL=C
8
Patrick Williams847a0c32020-06-24 15:18:10 -05009function show_usage {
10 cat \
Patrick Williams9ede18b2022-03-12 07:55:36 -060011 << EOF
Patrick Williams847a0c32020-06-24 15:18:10 -050012Usage: $(basename "$0") [options] <command-args>*
13
14Generate meson.build files from a directory tree containing YAML files and
15facilitate building the sdbus++ sources.
16
17Options:
18 --help - Display this message
19 --command <cmd> - Command mode to execute (default 'meson').
20 --directory <path> - Root directory of the YAML source (default '.').
21 --output <path> - Root directory of the output (default '.').
22 --tool <path> - Path to the processing tool (default 'sdbus++').
23 --version - Display this tool's version string.
24
25Commands:
26 meson - Generate a tree of meson.build files corresponding
27 to the source YAML files.
28 cpp <intf> - Generate the source files from a YAML interface.
29 markdown <intf> - Generate the markdown files from a YAML interface.
30 version - Display this tool's version string.
31
32EOF
33}
34
35## The version is somewhat arbitrary but is used to create a warning message
36## if a repository contains old copies of the generated meson.build files and
37## needs an update. We should increment the version number whenever the
38## resulting meson.build would change.
William A. Kennington IIIa42e97a2021-05-17 18:33:14 -070039tool_version="sdbus++-gen-meson version 3"
Patrick Williams847a0c32020-06-24 15:18:10 -050040function show_version {
Patrick Williamsd77548a2022-04-29 14:43:15 -050041 echo "${tool_version}"
Patrick Williams847a0c32020-06-24 15:18:10 -050042}
43
44# Set up defaults.
45sdbuspp="sdbus++"
46outputdir="."
47cmd="meson"
48rootdir="."
49
50# Parse options.
51options="$(getopt -o hc:d:o:t:v --long help,command:,directory:,output:,tool:,version -- "$@")"
Patrick Williamsd77548a2022-04-29 14:43:15 -050052eval set -- "${options}"
Patrick Williams847a0c32020-06-24 15:18:10 -050053
Patrick Williams9ede18b2022-03-12 07:55:36 -060054while true; do
Patrick Williams847a0c32020-06-24 15:18:10 -050055 case "$1" in
56 -h | --help)
57 show_usage
58 exit
59 ;;
60
61 -c | --command)
62 shift
63 cmd="$1"
64 shift
65 ;;
66
67 -d | --directory)
68 shift
69 rootdir="$1"
70 shift
71 ;;
72
73 -o | --output)
74 shift
75 outputdir="$1"
76 shift
77 ;;
78
79 -t | --tool)
80 shift
81 sdbuspp="$1"
82 shift
83 ;;
84
85 -v | --version)
86 show_version
87 exit
88 ;;
89
90 --)
91 shift
92 break
93 ;;
Patrick Williamsd77548a2022-04-29 14:43:15 -050094
95 *)
96 echo "Invalid argument $1"
97 exit 1
98 ;;
Patrick Williams847a0c32020-06-24 15:18:10 -050099 esac
100done
101
102## Create an initially empty meson.build file.
103## $1 - path to create meson.build at.
104function meson_empty_file {
105 mkdir -p "$1"
106 echo "# Generated file; do not modify." > "$1/meson.build"
107}
108
109## Create the root-level meson.build
110##
111## Inserts rules to run the available version of this tool to ensure the
112## version has not changed.
113function meson_create_root {
Patrick Williamsd77548a2022-04-29 14:43:15 -0500114 meson_empty_file "${outputdir}"
Patrick Williams847a0c32020-06-24 15:18:10 -0500115
Patrick Williamsd77548a2022-04-29 14:43:15 -0500116 cat >> "${outputdir}/meson.build" \
Patrick Williams9ede18b2022-03-12 07:55:36 -0600117 << EOF
Patrick Williams847a0c32020-06-24 15:18:10 -0500118sdbuspp_gen_meson_ver = run_command(
119 sdbuspp_gen_meson_prog,
120 '--version',
121).stdout().strip().split('\n')[0]
122
Patrick Williamsd77548a2022-04-29 14:43:15 -0500123if sdbuspp_gen_meson_ver != '${tool_version}'
Patrick Williams847a0c32020-06-24 15:18:10 -0500124 warning('Generated meson files from wrong version of sdbus++-gen-meson.')
125 warning(
Patrick Williamsd77548a2022-04-29 14:43:15 -0500126 'Expected "${tool_version}", got:',
Patrick Williams847a0c32020-06-24 15:18:10 -0500127 sdbuspp_gen_meson_ver
128 )
129endif
130
131EOF
132}
133
134## hash-tables to store:
135## meson_paths - list of subdirectory paths for which an empty meson.build
136## has already been created.
137## interfaces - list of interface paths which a YAML has been found and
138## which YAML types (interface, errors, etc.).
139declare -A meson_paths
140declare -A interfaces
141
142## Ensure the meson.build files to a path have been created.
143## $1 - The path requiring to be created.
144function meson_create_path {
145
Patrick Williamsd77548a2022-04-29 14:43:15 -0500146 meson_path="${outputdir}"
Patrick Williams847a0c32020-06-24 15:18:10 -0500147 prev_meson_path=""
148
149 # Split the path into segments.
Patrick Williams9ede18b2022-03-12 07:55:36 -0600150 for part in $(echo "$1" | tr '/' '\n'); do
Patrick Williamsd77548a2022-04-29 14:43:15 -0500151 prev_meson_path="${meson_path}"
152 meson_path="${meson_path}/${part}"
Patrick Williams847a0c32020-06-24 15:18:10 -0500153
154 # Create the meson.build for this segment if it doesn't already exist.
Patrick Williamsd77548a2022-04-29 14:43:15 -0500155 if [[ "" == "${meson_paths[${meson_path}]}" ]]; then
156 meson_paths["${meson_path}"]="1"
157 meson_empty_file "${meson_path}"
Patrick Williams847a0c32020-06-24 15:18:10 -0500158
159 # Add the 'subdir' link into the parent's meson.build.
160 # We need to skip adding the links into the 'root' meson.build
161 # because most repositories want to selectively add TLDs based
162 # on config flags. Let them figure out their own logic for that.
Patrick Williamsd77548a2022-04-29 14:43:15 -0500163 if [[ ${outputdir} != "${prev_meson_path}" ]]; then
164 echo "subdir('${part}')" >> "${prev_meson_path}/meson.build"
Patrick Williams847a0c32020-06-24 15:18:10 -0500165 fi
166 fi
167 done
168}
169
170## Generate the meson target for the source files (.cpp/.hpp) from a YAML
171## interface.
172##
173## $1 - The interface to generate a target for.
174function meson_cpp_target {
Patrick Williamsd77548a2022-04-29 14:43:15 -0500175 mesondir="${outputdir}/$1"
176 yamldir="$(realpath --relative-to="${mesondir}" "${rootdir}")"
Patrick Williams847a0c32020-06-24 15:18:10 -0500177
178 # Determine the source and output files based on the YAMLs present.
179 sources=""
180 outputs=""
Patrick Williams9ede18b2022-03-12 07:55:36 -0600181 for s in ${interfaces[$1]}; do
Patrick Williamsd77548a2022-04-29 14:43:15 -0500182 sources="'${yamldir}/$1.${s}', "
Patrick Williams847a0c32020-06-24 15:18:10 -0500183
Patrick Williamsd77548a2022-04-29 14:43:15 -0500184 case "${s}" in
Patrick Williams847a0c32020-06-24 15:18:10 -0500185 errors.yaml)
186 outputs="${outputs}'error.cpp', 'error.hpp', "
187 ;;
188
189 interface.yaml)
190 outputs="${outputs}'server.cpp', 'server.hpp', "
191 outputs="${outputs}'client.hpp', "
192 ;;
Patrick Williamsd77548a2022-04-29 14:43:15 -0500193
194 *)
195 echo "Unknown interface type: ${s}"
196 exit 1
197 ;;
Patrick Williams847a0c32020-06-24 15:18:10 -0500198 esac
199 done
200
201 # Create the target to generate the 'outputs'.
Patrick Williamsd77548a2022-04-29 14:43:15 -0500202 cat >> "${mesondir}/meson.build" \
Patrick Williams9ede18b2022-03-12 07:55:36 -0600203 << EOF
Patrick Williams847a0c32020-06-24 15:18:10 -0500204generated_sources += custom_target(
205 '$1__cpp'.underscorify(),
Patrick Williamsd77548a2022-04-29 14:43:15 -0500206 input: [ ${sources} ],
207 output: [ ${outputs} ],
Patrick Williams847a0c32020-06-24 15:18:10 -0500208 command: [
209 sdbuspp_gen_meson_prog, '--command', 'cpp',
210 '--output', meson.current_build_dir(),
211 '--tool', sdbusplusplus_prog,
Patrick Williamsd77548a2022-04-29 14:43:15 -0500212 '--directory', meson.current_source_dir() / '${yamldir}',
Patrick Williams847a0c32020-06-24 15:18:10 -0500213 '$1',
214 ],
215)
216
217EOF
218}
219
220## Generate the meson target for the markdown files from a YAML interface.
221## $1 - The interface to generate a target for.
222function meson_md_target {
Patrick Williamsd77548a2022-04-29 14:43:15 -0500223 mesondir="${outputdir}/$(dirname "$1")"
224 yamldir="$(realpath --relative-to="${mesondir}" "${rootdir}")"
Patrick Williams847a0c32020-06-24 15:18:10 -0500225
226 # Determine the source files based on the YAMLs present.
227 sources=""
Patrick Williams9ede18b2022-03-12 07:55:36 -0600228 for s in ${interfaces[$1]}; do
Patrick Williamsd77548a2022-04-29 14:43:15 -0500229 sources="'${yamldir}/$1.${s}', "
Patrick Williams847a0c32020-06-24 15:18:10 -0500230 done
231
232 # Create the target to generate the interface.md file.
Patrick Williamsd77548a2022-04-29 14:43:15 -0500233 cat >> "${mesondir}/meson.build" \
Patrick Williams9ede18b2022-03-12 07:55:36 -0600234 << EOF
Patrick Williams847a0c32020-06-24 15:18:10 -0500235generated_others += custom_target(
236 '$1__markdown'.underscorify(),
Patrick Williamsd77548a2022-04-29 14:43:15 -0500237 input: [ ${sources} ],
Patrick Williams847a0c32020-06-24 15:18:10 -0500238 output: [ '$(basename "$1").md' ],
239 command: [
240 sdbuspp_gen_meson_prog, '--command', 'markdown',
241 '--output', meson.current_build_dir(),
242 '--tool', sdbusplusplus_prog,
Patrick Williamsd77548a2022-04-29 14:43:15 -0500243 '--directory', meson.current_source_dir() / '${yamldir}',
Patrick Williams847a0c32020-06-24 15:18:10 -0500244 '$1',
245 ],
Patrick Williams847a0c32020-06-24 15:18:10 -0500246)
247
248EOF
249}
250
251## Handle command=meson by generating the tree of meson.build files.
252function cmd_meson {
253 TLDs="com net org xyz"
254 yamls=""
255
256 # Find all the YAML files in the TLD subdirectories.
Patrick Williamsd77548a2022-04-29 14:43:15 -0500257 for d in ${TLDs}; do
258 dir="${rootdir}/${d}"
259 if [[ ! -d ${dir} ]]; then
Patrick Williams847a0c32020-06-24 15:18:10 -0500260 continue
261 fi
262
263 yamls="\
Patrick Williamsd77548a2022-04-29 14:43:15 -0500264 ${yamls} \
265 $(find "${dir}" -name '*.interface.yaml' -o -name '*.errors.yaml') \
Patrick Williams847a0c32020-06-24 15:18:10 -0500266 "
267 done
268
269 # Sort YAMLs
Patrick Williamsd77548a2022-04-29 14:43:15 -0500270 # shellcheck disable=SC2312
271 yamls="$(echo "${yamls}" | tr " " "\n" | sort)"
Patrick Williams847a0c32020-06-24 15:18:10 -0500272
273 # Assign the YAML files into the hash-table by interface name.
Patrick Williamsd77548a2022-04-29 14:43:15 -0500274 for y in ${yamls}; do
275 rel="$(realpath "--relative-to=${rootdir}" "${y}")"
276 dir="$(dirname "${rel}")"
Patrick Williams847a0c32020-06-24 15:18:10 -0500277 ext="${rel#*.}"
Patrick Williamsd77548a2022-04-29 14:43:15 -0500278 base="$(basename "${rel}" ".${ext}")"
279 key="${dir}/${base}"
Patrick Williams847a0c32020-06-24 15:18:10 -0500280
Patrick Williamsd77548a2022-04-29 14:43:15 -0500281 interfaces["${key}"]="${interfaces[${key}]} ${ext}"
Patrick Williams847a0c32020-06-24 15:18:10 -0500282 done
283
284 # Create the meson.build files.
285 meson_create_root
Patrick Williamsd77548a2022-04-29 14:43:15 -0500286 # shellcheck disable=SC2312
Patrick Williams847a0c32020-06-24 15:18:10 -0500287 sorted_ifaces="$(echo "${!interfaces[@]}" | tr " " "\n" | sort)"
Patrick Williams9ede18b2022-03-12 07:55:36 -0600288 for i in ${sorted_ifaces}; do
Patrick Williamsd77548a2022-04-29 14:43:15 -0500289 meson_create_path "${i}"
290 meson_cpp_target "${i}"
291 meson_md_target "${i}"
Patrick Williams847a0c32020-06-24 15:18:10 -0500292 done
293}
294
295## Handle command=cpp by calling sdbus++ as appropriate.
296## $1 - interface to generate.
297##
298## For an interface foo/bar, the outputdir is expected to be foo/bar.
299function cmd_cpp {
300
Patrick Williamsd77548a2022-04-29 14:43:15 -0500301 if [[ "" == "$1" ]]; then
Patrick Williams847a0c32020-06-24 15:18:10 -0500302 show_usage
303 exit 1
304 fi
305
Patrick Williamsd77548a2022-04-29 14:43:15 -0500306 if [[ ! -e "${rootdir}/$1.interface.yaml" ]] &&
307 [[ ! -e "${rootdir}/$1.errors.yaml" ]]; then
Patrick Williams847a0c32020-06-24 15:18:10 -0500308 echo "Missing YAML for $1."
309 exit 1
310 fi
311
Patrick Williamsd77548a2022-04-29 14:43:15 -0500312 mkdir -p "${outputdir}"
Patrick Williams847a0c32020-06-24 15:18:10 -0500313
Patrick Williamsd77548a2022-04-29 14:43:15 -0500314 sdbusppcmd="${sdbuspp} -r ${rootdir}"
Patrick Williams847a0c32020-06-24 15:18:10 -0500315 intf="${1//\//.}"
316
Patrick Williamsd77548a2022-04-29 14:43:15 -0500317 if [[ -e "${rootdir}/$1.interface.yaml" ]]; then
318 ${sdbusppcmd} interface server-header "${intf}" > "${outputdir}/server.hpp"
319 ${sdbusppcmd} interface server-cpp "${intf}" > "${outputdir}/server.cpp"
320 ${sdbusppcmd} interface client-header "${intf}" > "${outputdir}/client.hpp"
Patrick Williams847a0c32020-06-24 15:18:10 -0500321 fi
322
Patrick Williamsd77548a2022-04-29 14:43:15 -0500323 if [[ -e "${rootdir}/$1.errors.yaml" ]]; then
324 ${sdbusppcmd} error exception-header "${intf}" > "${outputdir}/error.hpp"
325 ${sdbusppcmd} error exception-cpp "${intf}" > "${outputdir}/error.cpp"
Patrick Williams847a0c32020-06-24 15:18:10 -0500326 fi
327}
328
329## Handle command=markdown by calling sdbus++ as appropriate.
330## $1 - interface to generate.
331##
332## For an interface foo/bar, the outputdir is expected to be foo.
333function cmd_markdown {
334
Patrick Williamsd77548a2022-04-29 14:43:15 -0500335 if [[ "" == "$1" ]]; then
Patrick Williams847a0c32020-06-24 15:18:10 -0500336 show_usage
337 exit 1
338 fi
339
Patrick Williamsd77548a2022-04-29 14:43:15 -0500340 if [[ ! -e "${rootdir}/$1.interface.yaml" ]] &&
341 [[ ! -e "${rootdir}/$1.errors.yaml" ]]; then
Patrick Williams847a0c32020-06-24 15:18:10 -0500342 echo "Missing YAML for $1."
343 exit 1
344 fi
345
Patrick Williamsd77548a2022-04-29 14:43:15 -0500346 mkdir -p "${outputdir}"
Patrick Williams847a0c32020-06-24 15:18:10 -0500347
Patrick Williamsd77548a2022-04-29 14:43:15 -0500348 sdbusppcmd="${sdbuspp} -r ${rootdir}"
Patrick Williams847a0c32020-06-24 15:18:10 -0500349 intf="${1//\//.}"
350 base="$(basename "$1")"
351
Patrick Williamsd77548a2022-04-29 14:43:15 -0500352 echo -n > "${outputdir}/${base}.md"
353 if [[ -e "${rootdir}/$1.interface.yaml" ]]; then
354 ${sdbusppcmd} interface markdown "${intf}" >> "${outputdir}/${base}.md"
Patrick Williams847a0c32020-06-24 15:18:10 -0500355 fi
356
Patrick Williamsd77548a2022-04-29 14:43:15 -0500357 if [[ -e "${rootdir}/$1.errors.yaml" ]]; then
358 ${sdbusppcmd} error markdown "${intf}" >> "${outputdir}/${base}.md"
Patrick Williams847a0c32020-06-24 15:18:10 -0500359 fi
360}
361
362## Handle command=version.
363function cmd_version {
364 show_version
365}
366
Patrick Williamsd77548a2022-04-29 14:43:15 -0500367"cmd_${cmd}" "$*"