-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sh
86 lines (78 loc) · 2.22 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/QOpenSys/pkgs/bin/bash
# Copyright (c) 2019 Remain Software
# Contributors:
# Wim Jongman - Original API and implementation
#
# Restore the IUNIT code from git into libraries and source files
# Parameters: library
iunit.restore(){
lib=$1
if [[ -z "$1" ]]; then
echo "Must provide library. (e.g. iunit.restore IUNIT)"
else
txt="IBM i Unit Testing Framework"
dir=$PWD
restore.crtlib "${lib}" "${txt}"
restore.crtsrcpf "${lib}" "${dir}" "${txt}"
iunit.compile "$lib"
echo 'Done.'
fi
}
## Create a library
## Parameters: library, text
restore.crtlib(){
lib=$1
txt=$2
system -Kn "CRTLIB LIB(${lib}) TEXT('${txt}')"
}
## Create source files from all directories in the passed directory
## Parameters: library, directory, text
restore.crtsrcpf(){
lib=$1
dir=$2
txt=$3
pushd ${dir} >> /dev/null
for entry in */
do
file=${entry%%/}
system -Kn "CRTSRCPF FILE(${lib}/${file}) RCDLEN(240) TEXT('"${txt}" ${file} Sources')"
restore.cpyfrmstmf ${lib} ${file} "${txt}"
done
popd >> /dev/null
}
## Copy all files in the passed directory to the
## sourcefile with the same name in the passed library
## Parameters: library, directory/sourcefile, text
restore.cpyfrmstmf(){
lib=$1
dir=$2
srf=$2
txt=$3
pushd ${dir} >> /dev/null
for entry in *
do
if [ -f ${entry} ];then
atr="${entry##*.}"
mbr="${entry%.*}"
system -Kn "CPYFRMSTMF FROMSTMF('${PWD}/${entry}')" \
" TOMBR('/QSYS.LIB/${lib}.LIB/${srf}.FILE/${mbr}.MBR')" \
" MBROPT(*ADD)" \
" CVTDTA(*AUTO)" \
" STMFCCSID(*STMF)" \
" DBFCCSID(*FILE)"
system -Kn "CHGPFM FILE(${lib}/${srf})" \
" MBR(${mbr})" \
" SRCTYPE(${atr})" \
" TEXT('Created by Remain Software')"
fi
done
popd >> /dev/null
}
#
# Compile the transport build command and execute it.
# Parameters: library
iunit.compile(){
lib=$1
system -Kn "CRTBNDCL PGM(${lib}/I_BUILD) SRCFILE(${lib}/QCLLESRC) SRCMBR(I_BUILD)"
system -Kn "call ${lib}/I_BUILD PARM(${lib})"
}