diff options
author | Christian Hesse <mail@eworm.de> | 2021-11-15 20:22:56 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2021-11-15 22:18:10 +0100 |
commit | 8fc88c73f8cb99774727e7b96f9b85a8bf216c2c (patch) | |
tree | e5a36de5fd846a210088b2a21bd436f3f53b4805 /mod/inspectvar | |
parent | f484e45b6a1fe5284462da19c90219d0716d916a (diff) |
shorten modules directory name (global-functions.d -> mod)change-67
Diffstat (limited to 'mod/inspectvar')
-rw-r--r-- | mod/inspectvar | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/mod/inspectvar b/mod/inspectvar new file mode 100644 index 0000000..4e10fd6 --- /dev/null +++ b/mod/inspectvar @@ -0,0 +1,40 @@ +#!rsc by RouterOS +# RouterOS script: mod/inspectvar +# Copyright (c) 2020-2021 Christian Hesse <mail@eworm.de> +# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md + +:global InspectVar; + +# inspect variable +:set InspectVar do={ + :local Input $1; + :local Level (0 + [ :tonum $2 ]); + + :global InspectVar; + + :local PutIndent do={ + :local Prefix [ :tostr $1 ]; + :local Value [ :tostr $2 ]; + :local Level [ :tonum $3 ]; + + :local Indent ""; + :for I from=1 to=$Level step=1 do={ + :set Indent ($Indent . " "); + } + :put ($Indent . "-" . $Prefix . "-> " . $Value); + } + + :local TypeOf [ :typeof $Input ]; + $PutIndent "type" $TypeOf $Level; + + :if ($TypeOf = "array") do={ + :foreach Key,Value in=$Input do={ + $PutIndent "key" $Key ($Level + 1); + $InspectVar $Value ($Level + 2); + } + } else={ + :if ($TypeOf != "nothing") do={ + $PutIndent "value" $Input $Level; + } + } +} |