aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2020-06-03 22:21:17 +0100
committerMatthew Wild <mwild1@gmail.com>2020-06-03 22:21:17 +0100
commitbaf9f5aeefeb2900af1d3026799ec382f4f69d5b (patch)
treebbe24eedb54d2e1b019a7852ef8649b42dd82eac
parentb2ad87f966f17bacb36366f9e3bf21c21c31b6f7 (diff)
downloadprosody-baf9f5aeefeb2900af1d3026799ec382f4f69d5b.tar.gz
prosody-baf9f5aeefeb2900af1d3026799ec382f4f69d5b.zip
util.human.io: Add padleft, padright and a table printing function
-rw-r--r--util/human/io.lua53
1 files changed, 53 insertions, 0 deletions
diff --git a/util/human/io.lua b/util/human/io.lua
index 4c84c4a4..338509b1 100644
--- a/util/human/io.lua
+++ b/util/human/io.lua
@@ -85,6 +85,56 @@ local function printf(fmt, ...)
print(fmt:format(...));
end
+local function padright(s, width)
+ return s..string.rep(" ", width-#s);
+end
+
+local function padleft(s, width)
+ return string.rep(" ", width-#s)..s;
+end
+
+local function table(col_specs, max_width, padding)
+ max_width = max_width or 80;
+ padding = padding or 4;
+
+ local widths = {};
+ local total_width = max_width - padding;
+ local free_width = total_width;
+ -- Calculate width of fixed-size columns
+ for i = 1, #col_specs do
+ local width = col_specs[i].width or "0";
+ if not(type(width) == "string" and width:sub(-1) == "%") then
+ local title = col_specs[i].title;
+ width = math.max(tonumber(width), title and (#title+1) or 0);
+ widths[i] = width;
+ free_width = free_width - width;
+ end
+ end
+ -- Calculate width of %-based columns
+ for i = 1, #col_specs do
+ if not widths[i] then
+ local pc_width = tonumber((col_specs[i].width:gsub("%%$", "")));
+ widths[i] = math.floor(free_width*(pc_width/100));
+ end
+ end
+
+ return function (row, f)
+ for i, column in ipairs(col_specs) do
+ local width = widths[i];
+ local v = tostring(row[column.key or i] or ""):sub(1, width);
+ if #v < width then
+ if column.align == "right" then
+ v = padleft(v, width-1).." ";
+ else
+ v = padright(v, width);
+ end
+ end
+ (f or io.stdout):write(v);
+ end
+ (f or io.stdout):write("\n");
+ end;
+end
+
return {
getchar = getchar;
getline = getline;
@@ -93,4 +143,7 @@ return {
read_password = read_password;
show_prompt = show_prompt;
printf = printf;
+ padleft = padleft;
+ padright = padright;
+ table = table;
};