#!/bin/sh
# - nr_threads
# - test_memory_size
# - mode
# - test

## lmbench is a suite of simple, portable, ANSI/C microbenchmarks for
## UNIX/POSIX. In general, it measures two key features: latency and
## bandwidth. lmbench is intended to give system developers insight into basic
## costs of key operations. Supports-
##
## Bandwidth benchmarks
##   Cached file read
##   Memory copy (bcopy)
##   Memory read
##   Memory write
##   Pipe
##   TCP
## Latency benchmarks
##   Context switching.
##   Networking: connection establishment, pipe, TCP, UDP, and RPC hot potato
##   File system creates and deletes.
##   Process creation.
##   Signal handling
##   System call overhead
##   Memory read latency
## Miscellanious
##   Processor clock rate calculation

test_memory_size=$(($test_memory_size/1024/1024))

# The bigger test memory range, the more accurate the results, but larger sizes
# take somewhat longer to run the benchmark.
# If test memory size greater than 10GB, bcopy test may take more than 30mins.
# So limit the the maximum test memory size to 10GB.
[ "$test_memory_size" -gt 10240 ] && test_memory_size=10240

. $LKP_SRC/lib/reproduce-log.sh
. $LKP_SRC/lib/debug.sh

# Run lmbench3 benchmark suit with all/hardware/os/development mode
# All mode: run all of the testcases
# Hardware mode: run a set of the hardware related testcases
# OS mode: run a set of the OS related testcases
# Development mode: run the pre-defined testcases
# Allow sheduler to place job
# Measure memory latency with a 128 byte stride
# Skip file system latency test
# Skip the disk tests
# Disable remote network latency/throuput test
# Use system detected CPU mhz for testing
# Use /var/tmp to store file as well as create and delete a large number of
# small files,
# Use /dev/tty to display output status information,
# Disable to send the test result to remote database
run_lmbench3_all()
{
	if [ "$is_performance_dashboard" = "true" ]; then
		run_by_make_rerun
	else
		run_by_make_results
	fi
}

run_by_make_rerun()
{
	mv CONFIG.lmbench3 bin/$system_type/CONFIG.$(hostname)
	sed -i \
            -e "/^INFO=/cINFO=INFO.$(hostname)" \
            -e "/^OS=/cOS=\"$system_type\"" \
	    bin/$system_type/CONFIG.$(hostname)
	make rerun
}

run_by_make_results()
{
	log_eval "
	(
		echo $nr_threads
		echo 1
		echo $test_memory_size
		echo all
		echo yes
		echo yes
		echo
		echo
		echo
		[ $nr_threads -eq 1 ] &&
		{
			echo
			echo
		}
		echo no
	) | make results "
	wait
}

run_lmbench3_hardware()
{
	log_eval "
	(
		echo $nr_threads
		echo 1
		echo $test_memory_size
		echo hardware
		echo yes
		echo yes
		echo
		echo
		echo
		[ $nr_threads -eq 1 ] &&
		{
			echo
			echo
		}
		echo no
	) | make results "
	wait
}

run_lmbench3_os()
{
	log_eval "
	(
		echo $nr_threads
		echo 1
		echo $test_memory_size
		echo os
		echo yes
		echo
		echo
		echo
		[ $nr_threads -eq 1 ] && echo
		echo no
	) | make results "
}

run_lmbench3_development()
{
	local SYSCALL=no
	local SELECT=no
	local PROC=no
	local PAGEFAULT=no
	local FILE=no
	local MMAP=no
	local CTX=no
	local PIPE=no
	local UNIX=no
	local UDP=no
	local TCP=no
	local CONNECT=no
	local RPC=no
	local HTTP=no
	local BCOPY=no
	local MEM=no
	local OPS=no

	eval "$test=yes"

	sed -i '/lat_pagefault -P $SYNC_MAX $FILE/i [ -f $FILE ] || dd if=/dev/zero of=$FILE count=1 bs=1G' bin/"${system_type}"/lmbench
	log_eval "
	(
		echo $nr_threads
		echo 1
		echo $test_memory_size
		echo development

		echo $SYSCALL
		echo $SELECT
		echo $PROC
		echo $PAGEFAULT
		echo $FILE
		echo $MMAP
		echo $CTX
		echo $PIPE
		echo $UNIX
		echo $UDP
		echo $TCP
		echo $CONNECT
		echo $RPC
		echo $HTTP
		echo $BCOPY
		echo $MEM
		echo $OPS

		echo yes
		echo
		echo
		echo
		[ $nr_threads -eq 1 ] && echo
		echo no
	) | make results "

	wait
}

show_result()
{
	cat results/"${system_type}"/*.0 || die "no test result found"
}

cd $BENCHMARK_ROOT/lmbench3 || {
	echo "ERROR: lmbench benchmark has not been installed yet"
	exit -1
}

make 2>&1 || die "failed to build lmbench3"
system_type=$(cd $BENCHMARK_ROOT/lmbench3/scripts; ./os)
[ -n "$system_type" ] && rm -rf $BENCHMARK_ROOT/lmbench3/results/$system_type/

case "$mode" in
	'all') run_lmbench3_all ;;
	'hardware') run_lmbench3_hardware ;;
	'os') run_lmbench3_os ;;
	'development') run_lmbench3_development ;;
	*) echo "invalid running mode:$mode in lmbench3" && exit -1
	esac

show_result
