#! /bin/bash
# Copyright 2018, Cumulus Networks, Inc.  All rights reserved.
#
# Record taihost state; used by cl-support
#
#TIMEOUT=60
#DEFAULT

module=${0##*/}
json=
jexec=
funcs=(taihost)

func_taihost()
{
    exec_cmd $jexec taihost.status taihostctl ${json} --verbose
}

while getopts "c:jl" Option; do
    case $Option in
    c) ;;
    j) jexec=-j json=--json ;;
    l) echo ${funcs[@]}
       exit 0 ;;
    *) ;;
    esac
done
shift $((OPTIND - 1))

main()
{
    local -r TIMEFORMAT='%2R seconds' tfile=/run/${module}_funcstime$$
    local secs
    if [ $# -ne 0 ]; then # only run specified sub-modules
       [ $SUP_VERBOSE -eq 1 ] && echo ${module}: run only submodules: $@ 1>&$stderr
       funcs=($@)
    fi

    for func in ${funcs[@]}; do
        [ $SUP_VERBOSE -eq 1 ] && echo "$module.$func" 1>&2
        date +"### $module.$func Started at %F-%T"
        { time func_$func 2>&$stderr  ; } 2>$tfile
        read secs < $tfile
        echo "### $module.$func Completed in $secs"
    done
    rm $tfile
}

TIMEFORMAT="Module $module Completed in %2R seconds"
exec 42>&2
stderr=42

{ time main $@ 2>&$stderr ; } 2>&1

exit 0
