8f5f62cf70
This makes it so that the youngest file is always more left, and older files are always more right.
95 lines
2.6 KiB
Bash
95 lines
2.6 KiB
Bash
#!/bin/bash
|
|
|
|
## ----------------------------------------------------------------------------
|
|
##
|
|
## hanoi: LSM-trees (Log-Structured Merge Trees) Indexed Storage
|
|
##
|
|
## Copyright 2011-2012 (c) Trifork A/S. All Rights Reserved.
|
|
## http://trifork.com/ info@trifork.com
|
|
##
|
|
## Copyright 2012 (c) Basho Technologies, Inc. All Rights Reserved.
|
|
## http://basho.com/ info@basho.com
|
|
##
|
|
## This file is provided to you under the Apache License, Version 2.0 (the
|
|
## "License"); you may not use this file except in compliance with the License.
|
|
## You may obtain a copy of the License at
|
|
##
|
|
## http://www.apache.org/licenses/LICENSE-2.0
|
|
##
|
|
## Unless required by applicable law or agreed to in writing, software
|
|
## distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
## WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
## License for the specific language governing permissions and limitations
|
|
## under the License.
|
|
##
|
|
## ----------------------------------------------------------------------------
|
|
|
|
function periodic() {
|
|
t=0
|
|
while sleep 1 ; do
|
|
let "t=t+1"
|
|
printf "%5d [" "$t"
|
|
|
|
for ((i=0; i<35; i++)) ; do
|
|
if ! [ -f "A-$i.data" ] ; then
|
|
echo -n " "
|
|
elif ! [ -f "B-$i.data" ] ; then
|
|
echo -n "-"
|
|
elif ! [ -f "C-$i.data" ] ; then
|
|
echo -n "#"
|
|
elif ! [ -f "X-$i.data" ] ; then
|
|
echo -n "="
|
|
else
|
|
echo -n "*"
|
|
fi
|
|
done
|
|
echo
|
|
done
|
|
}
|
|
|
|
function dynamic() {
|
|
local old s t start now
|
|
t=0
|
|
start=`date +%s`
|
|
while true ; do
|
|
s=""
|
|
for ((i=7; i<25; i++)) ; do
|
|
if [ -f "C-$i.data" ] ; then
|
|
s="${s}C"
|
|
else
|
|
s="$s "
|
|
fi
|
|
if [ -f "B-$i.data" ] ; then
|
|
s="${s}B"
|
|
else
|
|
s="$s "
|
|
fi
|
|
if [ -f "A-$i.data" ] ; then
|
|
s="${s}A"
|
|
else
|
|
s="$s "
|
|
fi
|
|
if [ -f "X-$i.data" ] ; then
|
|
s="${s}X"
|
|
elif [ -f "M-$i.data" ] ; then
|
|
s="${s}M"
|
|
else
|
|
s="$s "
|
|
fi
|
|
s="$s|"
|
|
done
|
|
|
|
if [[ "$s" != "$old" ]] ; then
|
|
let "t=t+1"
|
|
now=`date +%s`
|
|
let "now=now-start"
|
|
printf "%5d %6d [%s\n" "$t" "$now" "$s"
|
|
old="$s"
|
|
else
|
|
# Sleep a little bit:
|
|
perl -e 'use Time::HiRes; Time::HiRes::usleep(100000)'
|
|
fi
|
|
done
|
|
}
|
|
|
|
dynamic
|