initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / bin / foamTemplates / sourceTemplate / newSourceTemplate
blobb62a7f4c0e9f45150c30218f83bf8b28c5574f07
1 #!/bin/sh
2 #------------------------------------------------------------------------------
3 # ========= |
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 # \\ / O peration |
6 # \\ / A nd | Copyright (C) 2009-2009 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 the
14 # Free Software Foundation; either version 2 of the License, or (at your
15 # 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, write to the Free Software Foundation,
24 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 # Script
27 # newSourceTemplate
29 # Description
30 # Create a new standard OpenFOAM templated source file
32 #------------------------------------------------------------------------------
33 Script=${0##*/}
35 usage() {
36 while [ "$#" -ge 1 ]; do echo "$1"; shift; done
37 cat<<USAGE
39 usage: $Script <type> <Class name> <Template arguments...>
41 * create a new standard OpenFOAM source file
43 type: (C|H|I|IO)
45 USAGE
46 exit 1
49 if [ "$#" -le 2 ]; then
50 usage "wrong number of arguments, expected 3 (or more)"
53 unset suffix fileType
54 case "$1" in
55 C|H)
56 Template=Template
57 fileType=$1
58 className=$2
61 suffix=$1
62 Template=TemplateI
63 fileType=H
64 className=$2
66 IO)
67 suffix=$1
68 Template=TemplateIO
69 fileType=C
70 className=$2
73 usage "unknown type"
75 esac
78 fileName=$className$suffix.$fileType
80 if [ -e "$fileName" ]; then
81 echo "Cannot make $fileName, file exists"
82 exit 1
85 shift 2
86 echo "$Script: Creating new interface file $fileName"
88 # process class name
89 sed -e "s/ClassName/$className/g" \
90 $WM_PROJECT_DIR/bin/foamTemplates/sourceTemplate/foamTemplate$Template.$fileType > $fileName.1
92 # process template arguments
93 for tArg in $*
95 sed -e "s/TemplateClassArgument/class $tArg, TemplateClassArgument/g" \
96 -e "s/TemplateArgument/$tArg, TemplateArgument/g" \
97 $fileName.1 > $fileName.2
99 mv $fileName.2 $fileName.1
100 done
102 # remove remaining ", Template argument"
103 sed -e "s/, TemplateClassArgument//g" \
104 -e "s/, TemplateArgument//g" \
105 $fileName.1 > $fileName
107 rm $fileName.1
109 #------------------------------------------------------------------------------