Remove hint which has no sense
[anna.git] / example / diameter / launcher / deployments / basic / configure.sh
1 #!/bin/bash
2
3 #############
4 # VARIABLES #
5 #############
6
7 # General
8 EXE_BN=ADML
9
10 #############
11 # FUNCTIONS #
12 #############
13
14 _exit () {
15   echo
16   echo $1
17   echo
18   exit 1
19 }
20
21 # $1: process name
22 createRunScript () {
23
24   cat << EOF > run.sh
25 #!/bin/bash
26 cd \`dirname \$0\`
27 STARTED=\`pgrep $1$ 2>/dev/null\`
28 [ \$? -eq 0 ] && { echo "Already started!"; echo "\$STARTED" ; exit 1 ; }
29 0> launcher.trace
30 rm -f counters/* test-reports/*
31 # Execution line:
32 export LD_LIBRARY_PATH=\$PWD/dynlibs
33 ./$@ --services services.xml &
34 echo \$! > .pid
35 EOF
36
37   chmod a+x run.sh
38 }
39
40 # $1: input option (c, s, b, d)
41 # Retuns the type of launcher logical name for the input option
42 get_tol () {
43   [ "$1" = "c" ] && echo client
44   [ "$1" = "s" ] && echo server
45   [ "$1" = "b" ] && echo balancer
46   [ "$1" = "d" ] && echo dummy
47 }
48
49 #############
50 # EXECUTION #
51 #############
52 cd `dirname $0`
53 SCR_DIR=`pwd`
54 echo
55 echo
56 echo "Configure a (c)lient, (s)erver, (b)alancer or (d)ummy [c]:"
57 read option
58 [ "$option" = "" ] && option=c
59 tol=$(get_tol $option)
60 [ "$tol" = "" ] && _exit "Option '$option' not implemented !!"
61
62 # Services
63 ln -sf services/${tol}.xml services.xml
64
65 # Tracing
66 DEBUG="--cntDir counters --tmDir test-reports"
67 echo
68 echo "Enable debug traces ? (y/n) [n]:"
69 read enable
70 [ "$enable" = "" ] && enable=n
71 [ "$enable" = "y" ] && DEBUG="$DEBUG --trace debug"
72
73 # Kindness
74 KINDNESS=
75 echo
76 echo "Strict xml for decoded messages ? (y/n) [y]:"
77 read strict
78 [ "$strict" = "" ] && strict=y
79 [ "$strict" = "n" ] && KINDNESS="--ignoreFlags"
80 if [ "$option" = "s" ]
81 then
82   echo
83   echo "Ignore errors ? (y/n) [n]:"
84   echo " (ignoring errors, the process won't answer Failed-AVP automatically; execute './$EXE_BN | grep -A1 ignoreErrors:' for more help)"
85   read i_errors
86   [ "$i_errors" = "" ] && i_errors=n
87   [ "$i_errors" = "y" ] && KINDNESS="$KINDNESS --ignoreErrors"
88 fi
89
90 # Run script:
91 EXE_LINK=`basename $PWD`
92 [ "$EXE_BN" != "$EXE_LINK" ] && ln -sf $EXE_BN $EXE_LINK
93
94 case $tol in
95
96   client)
97     ENTITY=$LOCAL_STANDARD_ENDPOINT
98     createRunScript $EXE_LINK $KINDNESS $DEBUG &
99     ;;
100
101   server)
102     SERVER=$LOCAL_STANDARD_ENDPOINT
103     createRunScript $EXE_LINK $KINDNESS $DEBUG &
104     ;;
105
106   balancer)
107     SERVER=$LOCAL_STANDARD_ENDPOINT
108     ENTITY=$EXAMPLE_ENTITY_4_BALANCER
109     createRunScript $EXE_LINK $KINDNESS $DEBUG &
110     ;;
111
112   dummy)
113     createRunScript $EXE_LINK $KINDNESS $DEBUG &
114     ;;
115
116 esac
117
118 echo
119 echo "Created 'run.sh' script !"
120 echo
121