#!/bin/sh
#
#
#    Copyright (c) 1996-2006 Brocade Communications Systems, Inc.
#    All rights reserved.
#
#
# NAME
#      diagshowtime  ,  diagsetshowtime - set or display diagnostic
#      show-time mode
# 
# SYNOPSIS
#      diagshowtime [ mode | -show ]
# 
# AVAILABILITY
#      admin
# 
# DESCRIPTION
#      This command enables show-time mode if mode  value  is  non-
#      zero and disables the show-time mode if mode value is 0. The
#      mode is saved in flash memory and stays in that  mode  until
#      the  next execution of diagshowtime. The mode becomes active
#      as soon as this command is executed. It does not  require  a
#      reboot to take effect.
# 
#      Show-time  mode  when  enabled  causes  each test to display
#      elapsed time messages. It is normally used during burnin and
#      for test method debugging.
# 
# OPTIONS
#      mode      Specify  the show-time mode value. 0 means to dis-
#                able show-time mode, any other value  will  enable
#                show-time mode.
# 
#      -show     If  specified  or  no  mode  is given, the current
#                show-time mode will be displayed.
# 
# EXAMPLES
#      > diagshowtime -show
#      Show Time mode is 0 (Disabled).
# 
# NOTES
#      diagsetshowtime is an  alias  of  diagshowtime  and  may  be
#      removed in the future releases.
# 

#
# Load library -- must be first.
#

echo "Command not applicable to this platform."
exit 3


home="/fabos/share"
util="diagcommon.sh"
ok=0

if [ $# -eq 0 ]; then
	# Check RBAC permission on command
	/fabos/libexec/rbac_check `/bin/basename $0`
else
	# Check RBAC permission on identified options
	/fabos/libexec/rbac_check `/bin/basename $0` $1
fi

if [ $? -ne 0 ]; then
	exit 127
fi

for f in "./$util" "$FABOSHOME/share/$util" "$home/$util" ; do
	if [ -r $f ] ; then
		. $f
		ok=1
		break;
	fi
done
if [ $ok -ne 1 ] ; then
	echo "Error -- could not locate $util"
	exit 3
fi

#
# Program customization
#

config_string="diag.mode.showtime"	# config string to update
config_name="Show Time mode"		# User name of config.
config_default=0		# default value
config_mode=$INTEGER		# config mode

syntax="`/bin/basename $0` [ mode \| -show ]" ; export syntax
bool_false="Disabled" ; export bool_false
bool_true="Enabled" ; export bool_true

#
# diagshowtime()
#
checkForShow "$config_name" "$config_string" "$config_mode" "$config_default" $1
val=`getValue $1`
if [ $? != 0 ] ; then exit 3 ; fi

if [ "$val" -ne "0" ]
then
	val=1
fi

if [ "$val" -ne "0" ]
then
     res=$bool_true
else
     res=$bool_false
fi

cur_val=`getConfig $config_string $config_mode $config_default`
if [ "$cur_val" != "$val" ]
then
	setConfig $config_string $config_mode $val
	updateConfig
	echo "$config_name is now $val ($res)."
else
	echo "$config_name is still $val ($res)."
fi
exit 0
