ENH: indexedOctree: initialise point even if no match
[OpenFOAM-2.0.x.git] / bin / foamProcessInfo
blobf09750ec0e20a1aaf11691d681fa6825fc33deca
1 #!/bin/sh
2 #------------------------------------------------------------------------------
3 # ========= |
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 # \\ / O peration |
6 # \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd.
7 # \\/ M anipulation |
8 #-------------------------------------------------------------------------------
9 # License
10 # This file is part of OpenFOAM.
12 # OpenFOAM is free software: you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation, either version 3 of the License, or
15 # (at your option) any later version.
17 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 # for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 # Script
26 # foamProcessInfo
28 # Description
29 # Collects user's process status information into file. File contains one
30 # line per process:
32 # pid state command
34 # state is one of 'RUNN' 'SUSP' 'OTHR',
35 # command is the argv[0]
37 # Tested on Linux,IRIX,SunOS
39 #-------------------------------------------------------------------------------
41 PROGNAME=`basename $0`
42 TMPFILE=/tmp/${PROGNAME}$$.tmp
43 AWKFILE=/tmp/${PROGNAME}$$.awk
45 if [ `uname -s` = Linux ]
46 then
47 ECHO='echo -e'
48 else
49 ECHO='echo'
53 if [ $# -ne 1 ]
54 then
55 echo "Error : $PROGNAME : insufficient arguments" 1>&2
56 exit 1
60 outputFile=$1
61 rm -f $outputFile
64 ARCH=`uname`
66 #-- Force standards behaving ps
67 # Get info on all $USER processes
68 case $ARCH in
69 HP-UX*)
70 UNIX95=a; export UNIX95
72 IRIX*)
73 _XPG=1; export _XPG
75 esac
77 case $ARCH in
78 SunOS*)
79 ps -e -o 'pid,f,s,comm' > $TMPFILE
81 HP-UX*)
82 ps -e -o 'pid,flags,state,comm' > $TMPFILE
85 ps -e -o 'pid,flag,state,comm' > $TMPFILE
86 esac
89 rm -f $AWKFILE; touch $AWKFILE
90 case $ARCH in
91 IRIX*)
92 echo '($2 == 40) || ($3 == "T") {print $1 " SUSP // " $4; next}' >> $AWKFILE
93 echo '($3 == "R") || ($3 == "S") || ($3 == "D") {print $1 " RUNN // " $4; next}' >> $AWKFILE
94 echo '{print $1 " OTHR // " $4}' >> $AWKFILE
96 Linux*)
97 echo '($3 == "T") {print $1 " SUSP // " $4; next}' >> $AWKFILE
98 echo '($3 == "R") || ($3 == "S") || ($3 == "D") {print $1 " RUNN // " $4; next}' >> $AWKFILE
99 echo '{print $1 " OTHR // " $4}' >> $AWKFILE
101 SunOS*)
102 echo '($3 == "T") {print $1 " SUSP // " $4; next}' >> $AWKFILE
103 echo '($3 == "O") || ($3 == "S") || ($3 == "R") {print $1 " RUNN // " $4; next}' >> $AWKFILE
104 echo '{print $1 " OTHR // " $4}' >> $AWKFILE
107 echo "Error : $PROGNAME : unsupported achitecture $ARCH"
109 esac
111 $ECHO "(" > $outputFile
112 tail +2 $TMPFILE | awk -f $AWKFILE >> $outputFile
113 $ECHO ")" >> $outputFile
115 rm -f $TMPFILE $AWKFILE
117 #------------------------------------------------------------------------------