Skip to content
Snippets Groups Projects
foamEtcFile 7.25 KiB
Newer Older
Mark Olesen's avatar
Mark Olesen committed
#!/bin/sh
#------------------------------------------------------------------------------
# =========                 |
# \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
#  \\    /   O peration     |
Henry Weller's avatar
Henry Weller committed
#   \\  /    A nd           | Copyright (C) 2011-2016 OpenFOAM Foundation
#    \\/     M anipulation  | Copyright (C) 2017 OpenCFD Ltd.
Mark Olesen's avatar
Mark Olesen committed
#-------------------------------------------------------------------------------
# License
#     This file is part of OpenFOAM.
#
#     OpenFOAM is free software: you can redistribute it and/or modify it
#     under the terms of the GNU General Public License as published by
#     the Free Software Foundation, either version 3 of the License, or
#     (at your option) any later version.
Mark Olesen's avatar
Mark Olesen committed
#
#     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
#     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
#     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
#     for more details.
#
#     You should have received a copy of the GNU General Public License
#     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
Mark Olesen's avatar
Mark Olesen committed
#
# Script
#     foamEtcFile
#
# Description
#     Locate user/group/shipped file with semantics similar to the
#     ~OpenFOAM/fileName expansion.
#
#     The -mode option can be used to allow chaining from
#     personal settings to site-wide settings.
#
#     For example, within the user ~/.OpenFOAM/<VER>/prefs.sh:
#        foamFile=$(foamEtcFile -mode go prefs.sh) && . $foamFile
Mark Olesen's avatar
Mark Olesen committed
#
#     This script must exist in $FOAM_INST_DIR/OpenFOAM-<VERSION>/bin/
#     or $FOAM_INST_DIR/openfoam<VERSION>/bin/ (for the debian version)
Mark Olesen's avatar
Mark Olesen committed
#-------------------------------------------------------------------------------
unset optQuiet optSilent
Mark Olesen's avatar
Mark Olesen committed
usage() {
    [ "${optQuiet:-$optSilent}" = true ] && exit 1
Mark Olesen's avatar
Mark Olesen committed

    exec 1>&2
    while [ "$#" -ge 1 ]; do echo "$1"; shift; done
    cat<<USAGE

Usage: ${0##*/} [OPTION] fileName
Mark Olesen's avatar
Mark Olesen committed
options:
  -a, -all          return all files (otherwise stop after the first match)
  -l, -list         list the directories to be searched
  -m, -mode MODE    any combination of u(user), g(group), o(other)
  -p, -prefix DIR   specify an alternative installation prefix
  -q, -quiet        suppress all normal output
  -s, -silent       suppress all stderr output
  -v, -version VER  specify an alternative OpenFOAM version (eg, 3.0, 1612, ...)
  -help             print the usage

  Locate user/group/shipped file with semantics similar to the
  ~OpenFOAM/fileName expansion.
  Many options can be specified as a single character, but must not be grouped.
  Exit status
      0  when the file is found. Print resolved path to stdout.
      1  for miscellaneous errors.
      2  when the file is not found.
Mark Olesen's avatar
Mark Olesen committed

USAGE
    exit 1
}
#-------------------------------------------------------------------------------
# The bin dir:
# The project dir:
projectDir="${binDir%/bin}"
# The prefix dir (same as $FOAM_INST_DIR):
prefixDir="${projectDir%/*}"

# The name used for the project directory
projectDirName="${projectDir##*/}"

# versionNum used for debian packaging
unset version versionNum
# Handle standard and debian naming conventions
# - set version (always) and versionNum (debian only)
#
case "$projectDirName" in
OpenFOAM-*)         # standard naming: OpenFOAM-<VERSION>
    version="${projectDirName##OpenFOAM-}"
    ;;
openfoam[0-9]* | openfoam-dev)     # debian naming: openfoam<VERSION>
    versionNum="${projectDirName##openfoam}"
    case "${#versionNum}" in
    (2|3|4) # Convert digits version number to decimal delineated
        version=$(echo "$versionNum" | sed -e 's@\([0-9]\)@\1.@g')
        version="${version%.}"

    (*) # Fallback - use current environment setting
        version="$WM_PROJECT_VERSION"
        ;;
    esac
    ;;
    echo "${0##*/} Error : unknown/unsupported naming convention" 1>&2
# Default mode is always 'ugo'
unset optAll optList
Mark Olesen's avatar
Mark Olesen committed
# parse options
while [ "$#" -gt 0 ]
do
    case "$1" in
    -h | -help)
        usage
        ;;
Mark Olesen's avatar
Mark Olesen committed
    -l | -list)
Mark Olesen's avatar
Mark Olesen committed
        ;;
    -mode=[ugo]*)
        mode="${1#-mode=}"
        ;;
    -prefix=/*)
        prefixDir="${1#-prefix=}"
        prefixDir="${prefixDir%/}"
        ;;
    -version=*)
        version="${1#-version=}"
        # convert x.y.z -> xyz version (if installation looked like debian)
        if [ -n "$versionNum" ]
        then
            versionNum=$(echo "$version" | sed -e 's@\.@@g')
        fi
        ;;
        # Sanity check. Handles missing argument too.
            usage "invalid mode '$mode'"
            ;;
    -p | -prefix)
        [ "$#" -ge 2 ] || usage "'$1' option requires an argument"
        prefixDir="${2%/}"
Mark Olesen's avatar
Mark Olesen committed
    -q | -quiet)
Mark Olesen's avatar
Mark Olesen committed
        ;;
    -v | -version)
        [ "$#" -ge 2 ] || usage "'$1' option requires an argument"
        version="$2"
        # convert x.y.z -> xyz version (if installation looked like debian)
        if [ -n "$versionNum" ]
        then
            versionNum=$(echo "$version" | sed -e 's@\.@@g')
        fi
        shift
        ;;
    --)
        shift
        break
Mark Olesen's avatar
Mark Olesen committed
    -*)
        usage "unknown option: '$1'"
Mark Olesen's avatar
Mark Olesen committed
        ;;
    *)
        break
        ;;
    esac
# Update projectDir accordingly
if [ -n "$versionNum" ]
then
    projectDir="$prefixDir/openfoam$versionNum"                 # debian
else
    projectDir="$prefixDir/${WM_PROJECT:-OpenFOAM}-$version"    # standard
fi

# debugging:
# echo "Installed locations:"
# for i in projectDir prefixDir projectDirName version versionNum
# do
#     eval echo "$i=\$$i"
# done
# Save the essential bits of information
# silently remove leading ~OpenFOAM/ (used in Foam::findEtcFile)
Mark Olesen's avatar
Mark Olesen committed
nArgs=$#
fileName="${1#~OpenFOAM/}"
# Define the various places to be searched:
case "$mode" in (*u*)   # user
    dir="$HOME/.${WM_PROJECT:-OpenFOAM}"
    dirList="$dirList $dir/$version $dir"
case "$mode" in (*g*)   # group (site)
    dir="${WM_PROJECT_SITE:-$prefixDir/site}"
    dirList="$dirList $dir/$version $dir"
case "$mode" in (*o*)   # other (shipped)
    dirList="$dirList $projectDir/etc"
Mark Olesen's avatar
Mark Olesen committed
then

    # list directories, or potential file locations
    [ "$nArgs" -le 1 ] || usage

    # a silly combination, but -quiet does have precedence
Mark Olesen's avatar
Mark Olesen committed

    for dir
    do
        if [ "$nArgs" -eq 1 ]
        then
            echo "$dir/$fileName"
        else
            echo "$dir"
        fi
    done

else

    [ "$nArgs" -eq 1 ] || usage

    # general error, eg file not found
    exitCode=2

Mark Olesen's avatar
Mark Olesen committed
    for dir
    do
        if [ -f "$dir/$fileName" ]
        then
            [ "$optQuiet" = true ] && break

            echo "$dir/$fileName"
            [ "$optAll" = true ] || break
Mark Olesen's avatar
Mark Olesen committed

#------------------------------------------------------------------------------