From 1bf4c0ac0ad4bd776cb50b4c832cb71a088f2029 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Tue, 24 Jul 2018 15:20:46 -0400 Subject: [PATCH] Have collective coalesce watched updates Particularly chatty output can make collate be unreasonable in low quality terminals and links. Throttle to about 4 times a second. --- confluent_client/bin/collate | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/confluent_client/bin/collate b/confluent_client/bin/collate index dd1049a0..2a629ac2 100755 --- a/confluent_client/bin/collate +++ b/confluent_client/bin/collate @@ -21,6 +21,7 @@ import optparse import os +import select import sys path = os.path.dirname(os.path.realpath(__file__)) @@ -70,6 +71,9 @@ def print_current(): sys.stdout.flush() fullline = sys.stdin.readline() +printpending = True +clearpending = False +holdoff = 0 while fullline: for line in fullline.split('\n'): if not line: @@ -78,9 +82,22 @@ while fullline: line = 'UNKNOWN: ' + line grouped.add_line(*line.split(': ', 1)) if options.watch: - sys.stdout.write('\x1b[2J\x1b[;H') # clear screen - print_current() + if not holdoff: + holdoff = os.times()[4] + 0.250 + if (holdoff < os.times()[4] or + not select.select((sys.stdin,), (), (), 0.250)[0]): + # print now, nothing pending + holdoff = 0 + sys.stdout.write('\x1b[2J\x1b[;H') # clear screen + print_current() + printpending = False + clearpending = True + else: + printpending = True fullline = sys.stdin.readline() -if not options.watch: + +if printpending: + if clearpending: + sys.stdout.write('\x1b[2J\x1b[;H') # clear screen print_current()