2022-09-19 22:51:38 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
stdenvNoCC,
|
|
|
|
s6,
|
|
|
|
lib,
|
|
|
|
writeScript,
|
|
|
|
serviceFns,
|
2022-09-26 11:26:54 +00:00
|
|
|
}:
|
|
|
|
let
|
2024-02-13 21:41:43 +00:00
|
|
|
prefix = "/run/services/outputs";
|
2023-09-13 21:49:00 +00:00
|
|
|
output = service: name: "${prefix}/${service.name}/${name}";
|
2025-03-12 23:35:56 +00:00
|
|
|
inherit (lib.attrsets) mapAttrsRecursive collect;
|
|
|
|
inherit (lib.strings) concatStringsSep;
|
2025-02-10 21:55:08 +00:00
|
|
|
serviceScript = commands: ''
|
2023-03-10 18:40:45 +00:00
|
|
|
#!/bin/sh
|
2023-03-04 23:08:25 +00:00
|
|
|
exec 2>&1
|
2023-02-25 22:53:06 +00:00
|
|
|
. ${serviceFns}
|
2022-10-02 15:35:55 +00:00
|
|
|
${commands}
|
|
|
|
'';
|
2025-02-10 21:55:08 +00:00
|
|
|
cleanupScript = name: cmds: ''
|
2024-05-13 16:45:07 +00:00
|
|
|
#!/bin/sh
|
2024-10-10 17:26:14 +00:00
|
|
|
${if cmds != null then cmds else ""}
|
2023-11-21 17:25:50 +00:00
|
|
|
if test -d ${prefix}/${name} ; then rm -rf ${prefix}/${name} ; fi
|
2023-09-13 21:49:00 +00:00
|
|
|
'';
|
2025-02-10 21:55:08 +00:00
|
|
|
service =
|
|
|
|
{
|
|
|
|
name,
|
|
|
|
serviceType,
|
|
|
|
run ? null,
|
|
|
|
up ? null,
|
|
|
|
down ? null,
|
|
|
|
finish ? null,
|
|
|
|
notification-fd ? null,
|
|
|
|
producer-for ? null,
|
|
|
|
consumer-for ? null,
|
|
|
|
pipeline-name ? null,
|
|
|
|
timeout-up ? 30000, # milliseconds
|
|
|
|
timeout-down ? 0,
|
|
|
|
dependencies ? [ ],
|
|
|
|
contents ? [ ],
|
|
|
|
buildInputs ? [ ],
|
|
|
|
restart-on-upgrade ? false,
|
|
|
|
controller ? null,
|
2025-03-12 23:35:56 +00:00
|
|
|
properties ? {}
|
2025-02-10 21:55:08 +00:00
|
|
|
}:
|
2023-03-04 23:08:25 +00:00
|
|
|
stdenvNoCC.mkDerivation {
|
|
|
|
# we use stdenvNoCC to avoid generating derivations with names
|
|
|
|
# like foo.service-mips-linux-musl
|
2025-02-10 21:55:08 +00:00
|
|
|
inherit
|
|
|
|
name
|
|
|
|
serviceType
|
|
|
|
up
|
|
|
|
down
|
|
|
|
run
|
|
|
|
finish
|
|
|
|
notification-fd
|
|
|
|
producer-for
|
|
|
|
consumer-for
|
|
|
|
pipeline-name
|
|
|
|
timeout-up
|
|
|
|
timeout-down
|
|
|
|
restart-on-upgrade
|
2025-03-12 23:35:56 +00:00
|
|
|
;
|
|
|
|
propertiesText =
|
|
|
|
let a = mapAttrsRecursive
|
|
|
|
(path: value: "writepath ${concatStringsSep "/" path} ${builtins.toString value}\n")
|
|
|
|
properties;
|
|
|
|
in collect builtins.isString a;
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
buildInputs =
|
|
|
|
buildInputs ++ dependencies ++ contents ++ lib.optional (controller != null) controller;
|
2024-06-11 13:01:06 +00:00
|
|
|
inherit controller dependencies contents;
|
2023-03-04 23:08:25 +00:00
|
|
|
builder = ./builder.sh;
|
|
|
|
};
|
2022-10-02 13:44:29 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
longrun =
|
|
|
|
{
|
|
|
|
name,
|
|
|
|
run,
|
|
|
|
finish ? null,
|
|
|
|
notification-fd ? null,
|
|
|
|
buildInputs ? [ ],
|
|
|
|
producer-for ? null,
|
|
|
|
...
|
|
|
|
}@args:
|
|
|
|
let
|
|
|
|
logger = service {
|
|
|
|
serviceType = "longrun";
|
|
|
|
name = "${name}-log";
|
|
|
|
run = serviceScript "${s6}/bin/s6-log -d 10 -- p${name} 1";
|
|
|
|
notification-fd = 10;
|
|
|
|
consumer-for = name;
|
|
|
|
pipeline-name = "${name}-pipeline";
|
|
|
|
};
|
|
|
|
in
|
|
|
|
service (
|
|
|
|
args
|
|
|
|
// {
|
|
|
|
buildInputs = buildInputs ++ lib.optional (producer-for == null) logger;
|
|
|
|
serviceType = "longrun";
|
|
|
|
run = serviceScript run;
|
|
|
|
finish = cleanupScript name finish;
|
|
|
|
producer-for = if producer-for != null then producer-for else "${name}-log";
|
|
|
|
}
|
|
|
|
);
|
2023-03-04 23:08:25 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
oneshot =
|
|
|
|
{
|
|
|
|
name,
|
|
|
|
up,
|
|
|
|
down ? "",
|
|
|
|
...
|
|
|
|
}@args:
|
|
|
|
service (
|
|
|
|
args
|
|
|
|
// {
|
|
|
|
serviceType = "oneshot";
|
|
|
|
up = writeScript "${name}-up" (serviceScript up);
|
|
|
|
down = writeScript "${name}-down" "${serviceScript down}\n${cleanupScript name null}";
|
|
|
|
}
|
|
|
|
);
|
|
|
|
bundle =
|
|
|
|
{
|
|
|
|
contents ? [ ],
|
|
|
|
dependencies ? [ ],
|
|
|
|
...
|
|
|
|
}@args:
|
|
|
|
service (
|
|
|
|
args
|
|
|
|
// {
|
|
|
|
serviceType = "bundle";
|
|
|
|
inherit contents dependencies;
|
|
|
|
}
|
|
|
|
);
|
2022-10-02 13:44:29 +00:00
|
|
|
target = bundle;
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
inherit
|
|
|
|
target
|
|
|
|
bundle
|
|
|
|
oneshot
|
|
|
|
output
|
|
|
|
;
|
2024-10-06 12:13:04 +00:00
|
|
|
longrun = lib.makeOverridable longrun;
|
2022-09-19 22:51:38 +00:00
|
|
|
}
|