diff options
author | makefu <github@syntax-fehler.de> | 2015-07-29 14:56:06 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2015-07-29 14:56:06 +0200 |
commit | 0bf2b871dda30231443324588ab8142e125e9774 (patch) | |
tree | 0646d45eab135eb2c7d8665c31d7ac135e29afff /krebs/4lib/dns.nix | |
parent | 671710c573980d859cb82993cd0514058a63262f (diff) | |
parent | 1bf670270c1e87900a908f7e9b949b5502158f4f (diff) |
merge cloudkrebs, fix path to krebs/4lib
Diffstat (limited to 'krebs/4lib/dns.nix')
-rw-r--r-- | krebs/4lib/dns.nix | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/krebs/4lib/dns.nix b/krebs/4lib/dns.nix new file mode 100644 index 000000000..b2cf3c24c --- /dev/null +++ b/krebs/4lib/dns.nix @@ -0,0 +1,31 @@ +{ lib, ... }: + +let + listset = import ./listset.nix { inherit lib; }; +in + +with builtins; +with lib; + +rec { + # label = string + + # TODO does it make sense to have alias = list label? + + # split-by-provider : + # [[label]] -> tree label provider -> listset provider alias + split-by-provider = as: providers: + foldl (m: a: listset.insert (provider-of a providers) a m) {} as; + + # provider-of : alias -> tree label provider -> provider + # Note that we cannot use tree.get here, because path can be longer + # than the tree depth. + provider-of = a: + let + go = path: tree: + if typeOf tree == "string" + then tree + else go (tail path) tree.${head path}; + in + go (reverseList (splitString "." a)); +} |