Salome HOME
Copyright update 2022
[plugins/hybridplugin.git] / bin / mg-hybrid.bash
1 #!/bin/bash
2 # Copyright (C) 2014-2022  CEA/DEN, EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 #bash script mg-hybrid.bash
22 #we have renamed binary executable mg-hybrid.exe V1.3.0 as mg-hybrid.exe_Linux_64_juillet2014
23 #to assume call of other beta-versions of distene mg-hybrid.exe code in standalone plugin HYBRIDPLUGIN sources
24 #and also assume licence file set to overriding licence file of other distene products ( HEXOTIC, GHS3D, etc... )
25 #all that for for only one call of mg-hybrid.bash from salome plugin HYBRIDPLUGIN
26
27 function findOutFile {
28 #find --out parameter result in $resFindOutFile
29 while test $# -gt 0; do
30   case "$1" in
31     -o|--out)
32       if [ -z "$2" ]    # $String is null
33       then
34         resFindOutFile="None"
35       else
36         resFindOutFile=$2
37       fi
38       return
39       ;;
40     *)
41       shift
42       ;;
43   esac
44 done
45 resFindOutFile="None"
46 }
47
48 #echo "mg-hybrid.bash initial parameters are:" $1 $2 $3 $4 
49 echo "mg-hybrid.bash initial parameters are:" $*
50 #$0 is ignored
51
52 findOutFile $*
53 echo "result output File is:" $resFindOutFile
54
55 if test -f "$MESHGEMS_ROOT_DIR/bin/run_mg-hybrid.sh"; then
56
57     echo "mg-hybrid.bash assume licence file set:"
58     env | grep DLIM
59
60
61     $MESHGEMS_ROOT_DIR/bin/run_mg-hybrid.sh $*
62 else
63     $MESHGEMS_ROOT_DIR/bin/Linux_64/mg-hybrid.exe $*
64 fi
65
66 #$MESHGEMS_ROOT_DIR/bin/Linux_64/mg-hybrid.exe $*
67
68 #to EZ and direct debug visualization (with gui salome load script createGroupsOnEntitiesFromGMFFile.py)
69 #cp -f $resFindOutFile /tmp/tmp.mesh
70