#!/usr/bin/env sh
# This file is part of rdma-core. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/rdma-core/master/COPYRIGHT. No part of rdma-core, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
# Copyright © 2016 The developers of rdma-core. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/rdma-core/master/COPYRIGHT.


# This script exists because doing complex builds of non-Rust code under Cargo is tedious and error-prone
# Not least because Cargo does not display stdout and stderr 'as it goes'
# This script exists to allow testing of the build without running Cargo


set -e
set -u
set -f


_program_path_find()
{
    if [ "${_program_fattening_program_path+set}" = 'set' ]; then
        printf '%s\n' "$_program_fattening_program_path"

    elif [ "${0%/*}" = "$0" ]; then

        # We've been invoked by the interpreter as, say, bash program
        if [ -r "$0" ]; then
            pwd -P
        # Clutching at straws; probably run via a download, anonymous script, etc, weird execve, etc
        else
            printf '\n'
        fi

    else

        # We've been invoked with a relative or absolute path (also when invoked via PATH in a shell)

        _program_path_find_parentPath()
        {
            parentPath="${scriptPath%/*}"
            if [ -z "$parentPath" ]; then
                parentPath='/'
            fi
            cd "$parentPath" 1>/dev/null
        }

        # pdksh / mksh have problems with unsetting a variable that was never set...
        if [ "${CDPATH+set}" = 'set' ]; then
            unset CDPATH
        fi

        if command -v realpath 1>/dev/null 2>/dev/null; then
            (
                scriptPath="$(realpath "$0")"

                _program_path_find_parentPath
                pwd -P
            )
        elif command -v readlink 1>/dev/null 2>/dev/null; then
            (
                scriptPath="$0"

                while [ -L "$scriptPath" ]
                do
                    _program_path_find_parentPath
                    scriptPath="$(readlink "$scriptPath")"
                done

                _program_path_find_parentPath
                pwd -P
            )
        else
            # This approach will fail in corner cases where the script itself is a symlink in a path not parallel with the concrete script
            (
                scriptPath="$0"

                _program_path_find_parentPath
                pwd -P
            )
        fi

    fi
}

build_under_cargo_fail()
{
	local message="$1"
	
	printf 'build-under-cargo:FAIL:%s\n' "$message" 1>&2
	exit 1
}

_build_under_cargo_reRunIfChanged_print()
{
	local folderOrFilePath="$1"
	printf 'cargo:rerun-if-changed=%s\n' "$folderOrFilePath"
}

_build_under_cargo_reRunIfChanged()
{
	local folderOrFilePath="$1"
	
	case "$folderOrFilePath" in
		
		*/temporary/*)
			return 0
		;;
	
	esac
	
	if [ -f "$folderOrFilePath" ]; then
		_build_under_cargo_reRunIfChanged_print "$folderOrFilePath"
	elif [ -d "$folderOrFilePath" ]; then
		_build_under_cargo_reRunIfChanged_print "$folderOrFilePath"
		
		local child
		set +f
		for child in "$folderOrFilePath"/*
		do
			set -f
			_build_under_cargo_reRunIfChanged "$child"
		done
		set f
	fi
}

build_under_cargo_reRunIfAnyChanged()
{
	cd "$homeFolder" 1>/dev/null 2>/dev/null

		local folderOrFilePath
		for folderOrFilePath in "$@"
		do
			if [ -e "$folderOrFilePath" ]; then
				_build_under_cargo_reRunIfChanged "$folderOrFilePath"
			else
				_build_under_cargo_reRunIfChanged_print "$folderOrFilePath"
			fi
		done
		
	cd - 1>/dev/null 2>/dev/null
}

build_under_cargo_compile()
{
	"$CARGO_MANIFEST_DIR"/tools/compile
}

build_under_cargo_generatingRustBindings()
{
	"$CARGO_MANIFEST_DIR"/tools/bindgen-wrapper/bindgen-wrapper
}

build_under_cargo_outputCargoKeyValuePairs()
{
	_build_under_cargo_outputCargoKeyValuePairs_rerun_if_changed_recurse()
	{
		local relativeRoot="$1"

		set +f
		local file
		for file in "$relativeRoot"/*
		do
			set -f

			if [ ! -e "$file" ]; then
				continue
			fi

			case "$file" in

				"$relativeRoot"/.gitignore|"$relativeRoot"/temporary)
					continue
				;;

			esac

			if [ -L "$file" ]; then
				printf 'cargo:rerun-if-changed=%s\n' "$file"
			elif [ -f "$file" ]; then
				printf 'cargo:rerun-if-changed=%s\n' "$file"
			elif [ -d "$file" ]; then
				printf 'cargo:rerun-if-changed=%s\n' "$file"
				_build_under_cargo_outputCargoKeyValuePairs_rerun_if_changed_recurse "$file"
			fi
		done
		set -f
	}

	cd "$CARGO_MANIFEST_DIR" 1>/dev/null 2>/dev/null

		_build_under_cargo_outputCargoKeyValuePairs_rerun_if_changed_recurse 'bindgen-wrapper.conf.d'
		_build_under_cargo_outputCargoKeyValuePairs_rerun_if_changed_recurse 'compile.conf.d'

	cd - 1>/dev/null 2>/dev/null

	printf 'cargo:rerun-if-changed=%s\n' 'tools/build-under-cargo'
	printf 'cargo:rerun-if-changed=%s\n' 'tools/compile'
	printf 'cargo:rerun-if-changed=%s\n' 'tools/bindgen-wrapper'
	printf 'cargo:rerun-if-changed=%s\n' 'tools/bindgen-wrapper/bindgen-wrapper'
	printf 'cargo:rerun-if-changed=%s\n' 'tools/bindgen-wrapper/rustfmt.toml'

	printf 'cargo:rustc-link-lib=static-nobundle=cxgb3\n'
	printf 'cargo:rustc-link-lib=static-nobundle=cxgb4\n'
	printf 'cargo:rustc-link-lib=static-nobundle=hfi1verbs\n'
	printf 'cargo:rustc-link-lib=static-nobundle=hns\n'
	printf 'cargo:rustc-link-lib=static-nobundle=i40iw\n'
	printf 'cargo:rustc-link-lib=static-nobundle=ibcm\n'
	printf 'cargo:rustc-link-lib=static-nobundle=ibumad\n'
	printf 'cargo:rustc-link-lib=static-nobundle=ibverbs\n'
	printf 'cargo:rustc-link-lib=static-nobundle=ipathverbs\n'
	printf 'cargo:rustc-link-lib=static-nobundle=mlx4\n'
	printf 'cargo:rustc-link-lib=static-nobundle=mlx5\n'
	printf 'cargo:rustc-link-lib=static-nobundle=mthca\n'
	printf 'cargo:rustc-link-lib=static-nobundle=nes\n'
	printf 'cargo:rustc-link-lib=static-nobundle=ocrdma\n'
	printf 'cargo:rustc-link-lib=static-nobundle=qedr\n'
	printf 'cargo:rustc-link-lib=static-nobundle=rdmacm\n'
	printf 'cargo:rustc-link-lib=static-nobundle=rxe\n'
	printf 'cargo:rustc-link-lib=static-nobundle=vmw_pvrdma\n'
	
	# Search path
	printf 'cargo:rustc-link-search=native=%s\n' "$CARGO_MANIFEST_DIR"/bindgen-wrapper.conf.d/temporary/root/DESTDIR/usr/lib
	
	# Not used by us, but useful for downstream potentially
	printf 'cargo:root=%s\n' "$CARGO_MANIFEST_DIR"/bindgen-wrapper.conf.d/temporary/root
	printf 'cargo:include=%s\n' "$CARGO_MANIFEST_DIR"/bindgen-wrapper.conf.d/temporary/root/DESTDIR/usr/include
	printf 'cargo:libdir=%s\n' "$CARGO_MANIFEST_DIR"/bindgen-wrapper.conf.d/temporary/root/DESTDIR/usr/lib
}

build_under_cargo_steps()
{
	if [ ! -d "$CARGO_MANIFEST_DIR"/bindgen-wrapper.conf.d/temporary/root ]; then
		build_under_cargo_compile
	fi

	if [ ! -e "$CARGO_MANIFEST_DIR"/src/bindgen/lib.rs ]; then
		build_under_cargo_generatingRustBindings
	fi

	build_under_cargo_outputCargoKeyValuePairs
}

build_under_cargo_main()
{
	case "$#" in

		0)
			:
		;;

		1)
			case "$1" in

				-h|--help)
					printf './build\n'
					printf './build -h|--help\n'
					exit 0
				;;

				*)
					build_under_cargo_fail "Does not take any arguments"
				;;

			esac
		;;

		*)
			build_under_cargo_fail "Does not take any arguments"
		;;

	esac

	local programPath="$(_program_path_find)"
	cd "$programPath"/.. 1>/dev/null 2>/dev/null
		local homeFolder="$(pwd)"
	cd - 1>/dev/null 2>/dev/null

	if [ -z "${CARGO_MANIFEST_DIR+is_unset}" ]; then
		export CARGO_MANIFEST_DIR="$homeFolder"
		printf 'build-under-cargo:%s\n' "Whilst this script (build-under-cargo) is designed to be run under cargo, it can run independently. We're setting CARGO_MANIFEST_DIR to '$CARGO_MANIFEST_DIR'" 1>&2
	else
		:
	fi

	if [ -z "${OUT_DIR+is_unset}" ]; then
		export OUT_DIR="$homeFolder"/bindgen-wrapper.conf.d/temporary
		printf 'build-under-cargo:%s\n' "Whilst this script (build-under-cargo) is designed to be run under cargo, it can run independently. We're setting OUT_DIR to '$OUT_DIR'" 1>&2
	else
		:
	fi

	build_under_cargo_steps
}

build_under_cargo_main "$@"
