2024-08-15 22:00:41 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
liminix,
|
|
|
|
lib,
|
|
|
|
lim,
|
|
|
|
s6,
|
|
|
|
s6-rc,
|
|
|
|
watch-outputs,
|
2025-03-31 22:01:48 +00:00
|
|
|
s6-rc-up-tree
|
2025-02-10 21:55:08 +00:00
|
|
|
}:
|
|
|
|
{
|
|
|
|
watch,
|
|
|
|
service,
|
|
|
|
action,
|
2024-08-15 22:00:41 +00:00
|
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (liminix.services) oneshot longrun;
|
2025-02-28 00:43:20 +00:00
|
|
|
inherit (builtins) map length head toString;
|
|
|
|
inherit (lib) unique optional optionals concatStringsSep;
|
2024-08-15 22:00:41 +00:00
|
|
|
inherit (service) name;
|
2024-08-20 20:49:11 +00:00
|
|
|
|
2024-08-30 19:46:48 +00:00
|
|
|
watched-services = unique (map (f: f "service") watch);
|
2024-08-20 20:49:11 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
restart-flag =
|
|
|
|
{
|
|
|
|
restart = "-r";
|
|
|
|
restart-all = "-R";
|
|
|
|
"hup" = "-s 1";
|
|
|
|
"int" = "-s 2";
|
|
|
|
"quit" = "-s 3";
|
|
|
|
"kill" = "-s 9";
|
|
|
|
"term" = "-s 15";
|
2025-03-09 20:34:29 +00:00
|
|
|
"winch" = "-s 20";
|
|
|
|
"usr1" = "-s usr1";
|
|
|
|
"usr2" = "-s usr2";
|
2025-02-10 21:55:08 +00:00
|
|
|
}
|
|
|
|
.${action};
|
2024-08-20 21:56:26 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
watcher =
|
|
|
|
let
|
|
|
|
name' = "restart-${name}";
|
2025-02-28 00:43:20 +00:00
|
|
|
refs = concatStringsSep " "
|
|
|
|
(map (s: "${s "service"}:${s "path"}") watch);
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
longrun {
|
|
|
|
name = name';
|
|
|
|
run = ''
|
|
|
|
dir=/run/service/${name}
|
|
|
|
echo waiting for $dir
|
|
|
|
if test -e $dir/notification-fd; then flag="-U"; else flag="-u"; fi
|
|
|
|
${s6}/bin/s6-svwait $flag /run/service/${name} || exit
|
2025-03-31 22:01:48 +00:00
|
|
|
PATH=${s6-rc}/bin:${s6}/bin:${s6-rc-up-tree}/bin:$PATH
|
2025-02-28 00:43:20 +00:00
|
|
|
${watch-outputs}/bin/watch-outputs ${restart-flag} ${name} ${refs}
|
2025-02-10 21:55:08 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
in
|
|
|
|
service.overrideAttrs (o: {
|
2025-02-28 00:43:20 +00:00
|
|
|
buildInputs = (lim.orEmpty o.buildInputs) ++ optional (watch != []) watcher;
|
2025-02-10 21:55:08 +00:00
|
|
|
dependencies =
|
|
|
|
(lim.orEmpty o.dependencies)
|
2025-03-09 20:35:40 +00:00
|
|
|
++ optional (watch != []) watcher;
|
2024-08-15 22:00:41 +00:00
|
|
|
})
|