-
Notifications
You must be signed in to change notification settings - Fork 16
/
mapping-launch.sh
executable file
·274 lines (257 loc) · 8 KB
/
mapping-launch.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
#!/bin/bash
# Copyright (c) 2022 Carnegie Mellon University
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
function err {
>&2 red "[ERROR] "$@
}
function red {
echo -en "\033[31m" ## red
echo $@
echo -en "\033[0m" ## reset color
}
function blue {
echo -en "\033[36m" ## blue
echo $@
echo -en "\033[0m" ## reset color
}
function snore()
{
local IFS
[[ -n "${_snore_fd:-}" ]] || exec {_snore_fd}<> <(:)
read ${1:+-t "$1"} -u $_snore_fd || :
}
function help()
{
echo "Usage:"
echo " this program runs recording for mapping"
echo ""
echo "-h show this help"
echo "-c run realtime cartographer"
echo "-a use arduino for IMU topic"
echo "-e use esp32 for IMU topic"
echo "-x use xsens for IMU topic"
echo "-L specify lidar model (default=VLP16)"
echo "-o <name> output prefix (default=mapping)"
echo "-p <file> post process the recorded bag"
echo "-w do not wait when rosbag play is finished"
echo "-n not use cached result for post processing"
echo "-r <rate> rosbag play rate for cartographer (default=1.0)"
echo "-R <rate> rosbag play rate for converting pointcloud2 to laserscan (default=1.0)"
echo "-s mapping for simulation"
echo "-S mapping for simulation and boot gazebo. only for gazebo"
echo "-m manipulate suitcase with controller. only for gazebo"
echo "-g use GNSS fix topic for post processing"
}
OUTPUT_PREFIX=${OUTPUT_PREFIX:=mapping}
RUN_CARTOGRAPHER=false
USE_ARDUINO=false
USE_ESP32=false
USE_XSENS=false
LIDAR_MODEL=VLP16
MAPPING_USE_GNSS=false
PLAYBAG_RATE_CARTOGRAPHER=1.0
PLAYBAG_RATE_PC2_CONVERT=1.0
post_process=
wait_when_rosbag_finish=1
no_cache=0
gazebo=0
boot=0
manipulate=0
container=
while getopts "hcaexL:o:p:wnr:R:sSmg" arg; do
case $arg in
h)
help
exit
;;
c)
RUN_CARTOGRAPHER=true
;;
a)
USE_ARDUINO=true
;;
e)
USE_ESP32=true
;;
x)
USE_XSENS=true
;;
L)
LIDAR_MODEL=$OPTARG
;;
o)
OUTPUT_PREFIX=$OPTARG
;;
p)
post_process=$(realpath $OPTARG)
;;
w)
wait_when_rosbag_finish=0
;;
n)
no_cache=1
;;
r)
PLAYBAG_RATE_CARTOGRAPHER=$OPTARG
;;
R)
PLAYBAG_RATE_PC2_CONVERT=$OPTARG
;;
s)
gazebo=1
;;
S)
gazebo=1
boot=1
;;
m)
manipulate=1
;;
g)
MAPPING_USE_GNSS=true
;;
esac
done
shift $((OPTIND-1))
pwd=`pwd`
scriptdir=`dirname $0`
cd $scriptdir
scriptdir=`pwd`
if [[ -n $post_process ]]; then
if [[ ! -e $post_process ]]; then
err "could not find $post_process file"
exit
fi
blue "processing $post_process"
post_process_dir=$(dirname $post_process)
post_process_name=$(basename $post_process)
mkdir -p $scriptdir/docker/home/post_process
if [[ $no_cache -eq 1 ]]; then
rm -r $scriptdir/docker/home/post_process/${post_process_name}*
fi
if ls $scriptdir/docker/home/post_process/ | grep ${post_process_name}; then
echo "${post_process_name} exists, pass copy"
else
cp -r $post_process $scriptdir/docker/home/post_process/
fi
QUIT_WHEN_ROSBAG_FINISH=true
if [[ $wait_when_rosbag_finish -eq 1 ]]; then
QUIT_WHEN_ROSBAG_FINISH=false
fi
export QUIT_WHEN_ROSBAG_FINISH
export BAG_FILENAME=${post_process_name%.*}
export PLAYBAG_RATE_CARTOGRAPHER
export PLAYBAG_RATE_PC2_CONVERT
export LIDAR_MODEL
export MAPPING_USE_GNSS
if [[ $gazebo -eq 1 ]]; then
export PROCESS_GAZEBO_MAPPING=1
fi
blue "docker compose -f docker-compose-mapping-post-process.yaml run post-process"
docker compose -f docker-compose-mapping-post-process.yaml run post-process
exit
fi
echo "OUTPUT_PREFIX=$OUTPUT_PREFIX"
echo "RUN_CARTOGRAPHER=$RUN_CARTOGRAPHER"
echo "USE_ARDUINO=$USE_ARDUINO"
echo "USE_ESP32=$USE_ESP32"
echo "USE_XSENS=$USE_XSENS"
echo "LIDAR_MODEL=$LIDAR_MODEL"
echo "Gazebo=$gazebo"
echo "USE_CONTROLLER=$manipulate"
cd $scriptdir
log_name=mapping_`date +%Y-%m-%d-%H-%M-%S`
export ROS_LOG_DIR="/home/developer/.ros/log/${log_name}"
export OUTPUT_PREFIX=$OUTPUT_PREFIX
export RUN_CARTOGRAPHER=$RUN_CARTOGRAPHER
export USE_ARDUINO=$USE_ARDUINO
export USE_ESP32=$USE_ESP32
export USE_XSENS=$USE_XSENS
export LIDAR_MODEL=$LIDAR_MODEL
host_ros_log=$scriptdir/docker/home/.ros/log
host_ros_log_dir=$host_ros_log/$log_name
mkdir -p $host_ros_log_dir
ln -snf $host_ros_log_dir $host_ros_log/latest
blue "log dir is : $host_ros_log_dir"
# set profile arg to run wifi_scan service only if USE_ESP32 is false
if "$USE_ESP32"; then
PROFILE_ARG=""
else
PROFILE_ARG="--profile wifi_scan" # run wifi_scan service
fi
dcfile=docker-compose-mapping.yaml
if [[ $gazebo -eq 1 ]]; then
dcfile=docker-compose-mapping-gazebo.yaml
if [[ $boot -eq 1 ]]; then
if ls | grep -q cabot-navigation; then
cd cabot-navigation
if [[ -z $(docker ps -q -f "name=cabot-navigation-navigation") ]]; then
container="$container navigation"
else
echo "already boot cabot-navigation-navigation"
fi
if [[ -z $(docker ps -q -f "name=cabot-navigation-gui") ]]; then
container="$container gui"
else
echo "already boot cabot-navigation-gui"
fi
if [[ -z $(docker ps -q -f "name=cabot-navigation-gazebo") ]]; then
container="$container gazebo"
else
echo "already boot cabot-navigation-gazebo"
fi
if [[ -n $container ]]; then
docker compose up -d $container
sleep 6
fi
cd ..
else
echo "cannot find cabot-navigaton directory"
fi
fi
if [[ $manipulate -eq 1 ]]; then
if [[ -z $(docker ps -q -f "name=cabot-navigation-navigation") ]]; then
echo "need to launch inside container of cabot-navigation for manipulate"
else
command="docker exec -itd cabot-navigation-navigation-1 bash -c 'source install/setup.bash && ros2 launch cabot_ui teleop_gamepad.launch.py'"
eval $command
fi
fi
fi
docker compose -f $dcfile $PROFILE_ARG up -d &
snore 3
docker compose -f $dcfile logs -f > $host_ros_log_dir/docker-compose.log 2>&1 &
pid=$!
trap ctrl_c INT QUIT TERM
function ctrl_c() {
if ls | grep -q cabot-navigation; then
cd cabot-navigation
if [[ $boot -eq 1 ]] && [[ -n $container ]]; then
docker compose down $container
fi
cd ..
fi
docker compose -f $dcfile $PROFILE_ARG down
exit 0
}
while [ 1 -eq 1 ];
do
snore 1
done