|
| 1 | +""" |
| 2 | +This rule generates an Image File System (IFS) for QNX. |
| 3 | +
|
| 4 | +In order todo that, the user has to provide a main build file and supporting |
| 5 | +files. The main build file will be used as entrypoint and can then include |
| 6 | +other build files or perform other operations like packaging any file into the |
| 7 | +created IFS. |
| 8 | +""" |
| 9 | + |
| 10 | +QNX_FS_TOOLCHAIN = "@score_toolchains_qnx//toolchains/fs/ifs:toolchain_type" |
| 11 | + |
| 12 | +def _qnx_ifs_impl(ctx): |
| 13 | + """ Implementation function of qnx_ifs rule. |
| 14 | +
|
| 15 | + This function will merge all .build files into main .build file and |
| 16 | + produce flashable QNX image. |
| 17 | + """ |
| 18 | + inputs = [] |
| 19 | + extra_build_files = [] |
| 20 | + out_ifs = ctx.actions.declare_file("{}.{}".format(ctx.attr.name, ctx.attr.extension)) |
| 21 | + |
| 22 | + ifs_tool_info = ctx.toolchains[QNX_FS_TOOLCHAIN].tool_info |
| 23 | + |
| 24 | + main_build_file = ctx.file.build_file |
| 25 | + |
| 26 | + inputs.append(main_build_file) |
| 27 | + inputs.extend(ctx.files.srcs) |
| 28 | + |
| 29 | + args = ctx.actions.args() |
| 30 | + args.add_all([ |
| 31 | + main_build_file.path, |
| 32 | + out_ifs.path, |
| 33 | + ]) |
| 34 | + |
| 35 | + ctx.actions.run( |
| 36 | + outputs = [out_ifs], |
| 37 | + inputs = inputs, |
| 38 | + arguments = [args], |
| 39 | + executable = ifs_tool_info.executable, |
| 40 | + env = ifs_tool_info.env, |
| 41 | + tools = ifs_tool_info.files, |
| 42 | + ) |
| 43 | + |
| 44 | + return [ |
| 45 | + DefaultInfo(files = depset([out_ifs])), |
| 46 | + ] |
| 47 | + |
| 48 | +qnx_ifs = rule( |
| 49 | + implementation = _qnx_ifs_impl, |
| 50 | + toolchains = [QNX_FS_TOOLCHAIN], |
| 51 | + attrs = { |
| 52 | + "build_file": attr.label( |
| 53 | + allow_single_file = True, |
| 54 | + doc = "Single label that points to the main build file (entrypoint)", |
| 55 | + mandatory = True, |
| 56 | + ), |
| 57 | + "extension": attr.string( |
| 58 | + default = "ifs", |
| 59 | + doc = "Extension for the generated IFS image. Manipulating this extensions is a workaround for IPNext startup code limitation, when interpreting ifs images. This attribute will either disappear or will be replaced by toolchain configuration in order to keep output files consistent.", |
| 60 | + ), |
| 61 | + "srcs": attr.label_list( |
| 62 | + allow_files = True, |
| 63 | + doc = "List of labels that are used by the `build_file`", |
| 64 | + allow_empty = True, |
| 65 | + ), |
| 66 | + }, |
| 67 | +) |
0 commit comments