#! /bin/sh
#
# This script has to be built by configure.
#
# This is a script to install MPE Profiling Environment. It can be invoked with
#
#    make install  ( if you used -prefix at configure time )
#
#    or,
#
#    make install PREFIX=Path_to_the_installation_of_MPE
#
# in the top-level MPE __build__ directory which could be the same
# or different from the source directory
#

MAKE="make --no-print-directory"

# Location of sources
# top_srcdir=/proj/tpfimos/larour/Libraries/linux/mpich2-1.0.2p1/src/mpe2
top_srcdir=/proj/tpfimos/larour/Libraries/linux/mpich2-1.0.2p1/src/mpe2       # in absolute path

# Build locations
includebuild_dir=/proj/tpfimos/larour/Libraries/linux/mpich2-1.0.2p1/src/mpe2/include
libbuild_dir=/proj/tpfimos/larour/Libraries/linux/mpich2-1.0.2p1/src/mpe2/lib
binbuild_dir=/proj/tpfimos/larour/Libraries/linux/mpich2-1.0.2p1/src/mpe2/bin
sbinbuild_dir=/proj/tpfimos/larour/Libraries/linux/mpich2-1.0.2p1/src/mpe2/sbin

# Installation directories: Default paths (set at configure time)
prefix=/proj/tpfimos/larour/Libraries/linux/mpich2-gnu/
exec_prefix=${prefix}
includedir=${prefix}/include
libdir=${exec_prefix}/lib
bindir=${exec_prefix}/bin
sbindir=${exec_prefix}/sbin
datadir=${prefix}/share
sysconfdir=${prefix}/etc

# Assume PROF_LIBNAME=MPE_LIBNAME.
PROF_LIBNAME=mpe
CPRP="cp"
RM="rm"
LN_S="ln -s"
MPI_IMPL=MPICH2
MPE_BUILD_FORTRAN2C=yes

# File access mode
MODE=0644
XMODE=0755
replace=1
# set failmode to soft to let failures accumulate
failmode="hard"
# chmod can fail for various reasons.  Let it?
chmodfailmode="hard"
Show=eval
# set verbose to 0 to suppress success output
verbose=0
just_testing=0
prefix_override=0

# filelist records files that have been installed
filelist=""
# dirlist records directories created
dirlist=""
# cmdlist records commands to be carried out during uninstall
cmdlist=""
# initialize the error code return counter
errs=0

# The variable, appendUninstall, is to signal this script to allow uninstall
# information to append to an existing uninstall file.  Default is NO.
appendUninstall=0

# Set uninstall file
# Should replace basename which is NOT available on all machine ?
# Is ok for now. Popular Unix boxes, AIX, solaris, Linux, all have basename
if [ -z "$UNINSTALLFILE" ] ; then
    INSTALL_base=`basename $0`
    UNINSTALL_base=`echo $INSTALL_base | sed -e 's/install/uninstall/'`
    UNINSTALLFILE=$DESTDIR${sbindir}/${UNINSTALL_base}
fi

for arg in "$@" ; do
    case "$arg" in
        -prefix=*)
            prefix=`echo $arg | sed -e 's/-prefix=//g'` 
            if [ "$prefix" != "/proj/tpfimos/larour/Libraries/linux/mpich2-gnu/" ] ; then
                prefix_override=1
            fi
            ;;
        -uninstall=*)
            UNINSTALLFILE=`echo A$arg | sed -e 's/A-uninstall=//g'` 
            appendUninstall=1
            ;;
        -mode=*)
            MODE=`echo $arg | sed -e 's/-mode=//g'`
            ;;
        -xmode=*) 
            XMODE=`echo $arg | sed -e 's/-xmode=//g'` 
            ;;
        -t)
            Show=echo ; just_testing=1 ; failmode="soft"
            ;;
        -noman)                   noman=1 ;;
        -echo)                    set -x ;;
        -noreplace|-no_replace)   replace=0 ;;
        -replace)                 replace=1 ;;
        -no_verbose|-noverbose)   verbose=0 ;;
        -verbose)                 verbose=1 ;;
        -soft)                    failmode="soft" ; chmodfailmode="soft" ;;
        -hard)                    failmode="hard" ; chmodfailmode="hard" ;;
        -softchmod)               chmodfailmode="soft" ;;
        -help|-u|-usage|-h)
cat <<EOF
Install MPE into $prefix.
-prefix=path     - Destination directory.
-uninstall=file  - File to append uninstall information to
-mode=nnnn       - mode for regular files.  Default is $MODE .
-xmode=nnnn      - mode for execuables and directories.  Default is $XMODE .
-t               - Try only; do no installation.
-manpath=path    - Set an alternate path for the man pages
-noman           - Do not install the man pages.
-noreplace       - Do not replace files found in the installation directory
-soft            - Do not abort on failure
-softchmod       - Do not abort on failure of chmod
EOF
            exit 1
            ;;
        *)
            # Silently skip empty arguments (these can occur on
            # some systems and within some scripts; they are
            # harmless)
            if [ -n "$arg" ] ; then
                echo "mpeinstall: Unrecognized argument $arg ."
                exit 1
            fi
            ;;
    esac
done



if [ "$SHELL_ECHO" = "on" ] ; then 
    set -x 
fi

##############################################################################
#
# Start of Routines
#
##############################################################################

# We could use install, but install is too different and too hard to 
# test.  So here are the routines to copy file, make directories, and 
# replace #...# and @...@ in files
CP=cp
#
CopyFile() {
if [ -z "$3" ] ; then
    mode=$MODE
else
    mode=$3
fi
if [ -d $DESTDIR$2 ] ; then
    dest=$DESTDIR$2/`basename $1`
    destfile=$2/`basename $1`
else
    dest=$DESTDIR$2
    destfile=$2
fi
if [ $replace = 0 -a -f $dest ] ; then
    if [ $verbose = 1 ] ; then echo "$dest exists; not changed" ; fi
elif [ -d $1 ] ; then
    echo ">>> $1 is a directory; not copied <<<"
    errs=`expr $errs + 1`
    if [ $failmode = "hard" ] ; then exit 1 ; fi
elif [ ! -f $1 ] ; then 
    echo "**File $1 does not exist (or is not a regular file)!"
    errs=`expr $errs + 1`
    if [ $failmode = "hard" ] ; then exit 1 ; fi
elif [ "$1" = "$dest" ] ; then
    echo "**File $1 is being copied to itself!"
    errs=`expr $errs + 1`
    if [ $failmode = "hard" ] ; then exit 1 ; fi
else
    if [ $verbose = 1 ] ; then echo "Copying $1 to $dest" ; fi
    if [ -f $dest ] ; then
        echo "Replacing existing file $dest..."
        $Show $RM -f $dest
    fi
    $Show $CP $1 $dest
    rc=$?
    if [ $rc != 0 ] ; then
        echo "**Error copying file $1 to $dest **"
        errs=`expr $errs + 1`
        if [ $failmode = "hard" ] ; then exit $rc ; fi
    else
        # store the destination filename copied
        filelist="$filelist $destfile"
    fi
    $Show chmod $mode $dest
    rc=$?
    if [ $rc != 0 ] ; then
        echo "**Error setting mode to $mode on file $dest**"
        errs=`expr $errs + 1`
        if [ $chmodefailmode = "hard" ] ; then exit $rc ; fi
    fi
fi
}


#
# A version of copy file that preserves file dates
CopyFileP() {
    CP="$CPRP -p"
    CopyFile $1 $2 $3
    CP=cp
}


#
# A version of recursive directory copy that copies or replaces files
# ( file replacement of replace=1 ) and reserves copied file dates
# but does NOT copy directories, CVS/, old/ and tex/.
# $1 is the src directory, $2 is dest directory, $3 is $MODE or $XMODE
CopyDirRecurP() {
if [ -n "$1" -a -n "$2" ] ; then
    if [ -d $1 ] ; then
        MkDir $2
        # use $4 as a local variable
        # & set it as the original PWD before "cd $1"
        set $1 $2 ${3:-$MODE} `pwd`
        cd $1
        for file in * ; do
            if [ -f $file ] ; then
                CopyFileP $file $2/$file $3
            fi
        done
        for dir in * ; do
            if [ -d $dir \
                 -a "$dir" != "CVS" -a "$dir" != "old" \
                 -a "$dir" != "tex" \
               ] ; then
                CopyDirRecurP $dir $2/$dir $3
            fi
        done
        # cd back where it comes from
        # counter the effect of "cd $1" above,
        # so "for" loop still works
        cd $4
    fi
fi
}



#
# Make the given directory.  This handles building intermediate directories
# as required, and maintains a list of created directories in dirlist.
MkDir() {
dest=$DESTDIR$1
if [ ! -d $dest ] ; then
    dir=`echo $dest | sed 's%/% /%g'`
    path_to_date=''
    for path in $dir ; do
        path_to_date="$path_to_date$path"
        if [ ! -d $path_to_date ] ; then
            if [ $verbose = 1 ] ; then echo "Creating directory $dest" ; fi
            $Show "mkdir $path_to_date"
            rc=$?
            if [ $rc != 0 ] ; then
                echo "**Error making directory $dest**"
                errs=`expr $errs + 1`
                if [ $failmode = "hard" ] ; then exit $rc ; fi
                echo "Failed to create directory $path_to_date"
                exit 1
            else
                # Note that we store in inverse order
                dirlist="$1 $dirlist"
            fi
            $Show chmod $XMODE $path_to_date
            rc=$?
            if [ $rc != 0 ] ; then
                echo "**Error setting mode to $XMODE on directory $path_to_date**"
                errs=`expr $errs + 1`
                if [ $chmodfailmode = "hard" ] ; then exit $rc ; fi
            fi
        fi
    done
fi
}



#
# Fixup files with various xxxxbuild_dir to xxxxdir, install directory.
#
FixInstallFile() {
if [ -d $DESTDIR$2 ] ; then
    dest=$DESTDIR$2/`basename $1`
    destfile=$2/`basename $1`
else
    dest=$DESTDIR$2
    destfile=$2
fi
if [ $replace = 0 -a -f $dest ] ; then
    if [ $verbose = 1 ] ; then echo "$dest exists; not changed" ; fi
elif [ -d $1 ] ; then
    echo "$1 is a directory; not copied"
else
    if [ -f $dest ] ; then $Show $RM -f $dest ; fi
    if [ $just_testing = 0 ] ; then \
        if [ "$MPI_IMPL" = "MPICH" -o "$MPI_IMPL" = "MPICH2" ] ; then
            sed \
            -e "s%^MPI_CC\([ ]*\)=\([ ]*\).*\$%MPI_CC\1=\2$bindir/mpicc%g" \
            -e "s%^MPI_F77\([ ]*\)=\([ ]*\).*\$%MPI_F77\1=\2$bindir/mpif77%g" \
            -e "s%^MPE_INCDIR\([ ]*\)=\([ ]*\).*\$%MPE_INCDIR\1=\2$includedir%g" \
            -e "s%^MPE_LIBDIR\([ ]*\)=\([ ]*\).*\$%MPE_LIBDIR\1=\2$libdir%g" \
            $1 > $dest
        else
            sed \
            -e "s%^MPE_INCDIR\([ ]*\)=\([ ]*\).*\$%MPE_INCDIR\1=\2$includedir%g" \
            -e "s%^MPE_LIBDIR\([ ]*\)=\([ ]*\).*\$%MPE_LIBDIR\1=\2$libdir%g" \
            $1 > $dest
        fi
        rc=$?
        if [ $rc != 0 ] ; then
            echo "**** Error fixing up file $dest ****"
            errs=`expr $errs + 1`
            if [ $failmode = "hard" ] ; then exit $rc ; fi
        else
            # store the destination filename fixed
            filelist="$filelist $destfile"
        fi
    else
        if [ $verbose = 1 ] ; then echo "Fixup $1 and copy to $dest" ; fi
    fi
fi
if [ -z "$3" ] ; then
    mode=$MODE
else
    mode=$3
fi
$Show chmod $mode $dest
rc=$?
if [ $rc != 0 ] ; then
    echo "**Error setting mode on file $dest**"
    errs=`expr $errs + 1`
    if [ $failmode = "hard" ] ; then exit $rc ; fi
fi
}


##############################################################################
#
# End of routines
#
##############################################################################
if [ ! -s $libbuild_dir/lib${PROF_LIBNAME}.a ] ; then 
    echo "You must make MPE before installing it!"
    echo "Could not find $libbuild_dir/lib${PROF_LIBNAME}.a !"
    exit 1
fi

if [ ! -n "$prefix" ] ; then 
    echo "Set an installation location with -prefix=<location> ."
    exit 1
fi
if [ $verbose = 1 ] ; then
    echo "Install into $prefix"
fi

if [ -d $DESTDIR$prefix ] ; then
    if [ $verbose = 1 ] ; then
        echo "using existing directory $DESTDIR$prefix"
    fi
else
    MkDir $prefix
fi

# echo "prefix = $prefix"
# echo "exec_prefix = $exec_prefix"
# echo "includedir = $includedir"
# echo "libdir = $libdir"
# echo "bindir = $bindir"
# echo "sbindir = $sbindir"
# echo "datadir = $datadir"
# echo "sysconfdir = $sysconfdir"

# If the prefix was set, we want to override these choices
if [ "$prefix_override" = 1 ] ; then
    includedir=$prefix/include
    libdir=$prefix/lib
    bindir=$prefix/bin
    sbindir=$prefix/sbin
    datadir=$prefix/share
    if [ $appendUninstall = 0 ] ; then
        UNINSTALLFILE=$DESTDIR${sbindir}/${UNINSTALL_base}
    fi
fi

# Copy end-user MPE include Files, i.e. mpe*h
if [ -n "$includebuild_dir" ] ; then
    if [ -d $includebuild_dir ] ; then
        echo "Copying MPE include files to $DESTDIR$includedir"
        if [ ! -d $DESTDIR$includedir ] ; then
            MkDir $includedir
        fi
        cd $includebuild_dir
        for file in mpe*.h ; do
            if [ -f $includebuild_dir/$file ] ; then
                CopyFileP $includebuild_dir/$file $includedir/$file $MODE
            fi
        done
    fi
fi

# Copy MPE libraries
if [ -n "$libbuild_dir" ] ; then
    if [ -d $libbuild_dir ] ; then
        echo "Copying MPE libraries to $DESTDIR$libdir"
        CopyDirRecurP $libbuild_dir $libdir $MODE
    fi
fi

# Copy MPE utility programs
if [ -n "$binbuild_dir" ] ; then
    if [ -d $binbuild_dir ] ; then
         echo "Copying MPE utility programs to $DESTDIR$bindir"
         CopyDirRecurP $binbuild_dir $bindir $XMODE
    fi
fi

MkDir $sbindir
MkDir $datadir

# Set up Examples directory for the MPE Logging programs
logging_dirname="src/wrappers/test"
graphics_dirname="src/graphics/contrib/test"
for pkg in logging graphics ; do
    dirname=${pkg}_dirname
    eval dirvalue=\$"$dirname"
    if [ -f $libbuild_dir/../$dirvalue/Makefile ] ; then
        examplesdir=$datadir/examples_${pkg}
        MkDir $examplesdir
#       Copy MPE Example C and Fortran programs
        CopyDirRecurP $top_srcdir/$dirvalue $examplesdir

#       Create MPE examples Makefile
        cd $DESTDIR$examplesdir && \
        FixInstallFile $libbuild_dir/../$dirvalue/Makefile \
                       $examplesdir/Makefile

#        MPICH2 1.0.2 mpd does not sypport symbolic link to mpiexec
#        if [ -x $bindir/mpiexec -o -x $DESTDIR$bindir/mpiexec ] ; then
#            $Show "( cd $DESTDIR$examplesdir && \
#                     $RM -f mpiexec && \
#                     $LN_S $bindir/mpiexec mpiexec )"
#            filelist="$filelist $examplesdir/mpiexec" 
#        elif [ -x $bindir/mpirun -o -x $DESTDIR$bindir/mpirun ] ; then
#            $Show "( cd $DESTDIR$examplesdir && \
#                     $RM -f mpirun && \
#                     $LN_S $bindir/mpirun mpirun )"
#            filelist="$filelist $examplesdir/mpirun" 
#        fi
    fi
done

# Remove old uninstall file
if [ "$appendUninstall" = 0 -a -f $UNINSTALLFILE ] ; then
    $RM -f $UNINSTALLFILE
fi
#
# Open an uninstall file and force strong echo if one does NOT exist
if [ ! -f $UNINSTALLFILE ] ; then
    cat > $UNINSTALLFILE <<EOF
#! /bin/sh
set -x
EOF
fi

chmod u+x $UNINSTALLFILE

# Install the SLOG-2 tools if they exist
# Don't set the prefix if the default is chosen.
if [ -x $libbuild_dir/../src/slog2sdk/sbin/install-package ] ; then
    if [ "$prefix_override" = "1" ] ; then
        ( cd $libbuild_dir/../src/slog2sdk && \
          ./sbin/install-package -prefix=$prefix -uninstall=$UNINSTALLFILE \
                                 -mode=$MODE -xmode=$XMODE -copymode=core )
    else
        ( cd $libbuild_dir/../src/slog2sdk && \
          ./sbin/install-package -uninstall=$UNINSTALLFILE \
                                 -mode=$MODE -xmode=$XMODE -copymode=core )
    fi
fi

#  Clean up the example directories
for pkg in logging graphics ; do
    dirname=${pkg}_dirname
    examplesdir=$datadir/examples_${pkg}
    if [ -s $DESTDIR$examplesdir/Makefile ] ; then
       echo "( cd $examplesdir && $MAKE clean )" >> $UNINSTALLFILE
    fi
done

# Add the files to be removed to the UNINSTALLFILE
for file in $filelist ; do
    echo "$RM -f $file" >> $UNINSTALLFILE
done

if [ "$appendUninstall" = 0 ] ; then
    echo "$RM -f $sbindir/mpeuninstall" >> $UNINSTALLFILE
    echo "$RM -f $UNINSTALLFILE" >> $UNINSTALLFILE
fi

# Add the directory removes to the UNINSTALL file
for dir in $dirlist ; do
    echo "if [ -d $dir ] ; then rmdir $dir ; fi" >> $UNINSTALLFILE
done

if [ "$appendUninstall" = 0 ] ; then
    cp $UNINSTALLFILE $sbinbuild_dir/mpeuninstall
#
    echo "Installed MPE in $DESTDIR$prefix"
    echo "$UNINSTALLFILE may be used to remove the installation"
fi

if [ $errs -gt 0 ] ; then
    rc=1
else
    rc=0
fi
exit $rc
