blob: 5208643e8f8fd92cd9515919192a23dc9418936c [file] [log] [blame]
tom6a9f2722014-09-13 17:00:02 -07001#!/bin/bash
2# ONOS developer BASH profile conveniences
tom5a18e802014-09-18 12:38:15 -07003# Simply include in your own .bash_aliases or .bash_profile
tom6a9f2722014-09-13 17:00:02 -07004
5# Root of the ONOS source tree
Thomas Vachuska045c01d2014-12-04 00:18:06 -08006export ONOS_ROOT=${ONOS_ROOT:-~/onos}
Thomas Vachuskabec79b92018-08-07 11:42:17 -07007
Ray Milkey8a0c7c72017-07-18 11:37:04 -07008# This is a hack to remove symlinks from the ONOS_ROOT path. To be removed when
9# the protobuf buck rules can handle symlinks
10ONOS_ROOT=$(pushd $ONOS_ROOT >/dev/null && pwd -P && popd >/dev/null)
tom6a9f2722014-09-13 17:00:02 -070011
12# Setup some environmental context for developers
Pavlin Radoslavov93617212014-10-16 09:54:04 -070013if [ -z "${JAVA_HOME}" ]; then
14 if [ -x /usr/libexec/java_home ]; then
Thomas Vachuskad8531152014-11-03 14:39:57 -080015 export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
16 elif [ -d /usr/lib/jvm/java-8-oracle ]; then
17 export JAVA_HOME="/usr/lib/jvm/java-8-oracle"
Jonathan Harte3c951e2015-07-14 13:28:35 -070018 elif [ -d /usr/lib/jvm/java-8-openjdk-amd64 ]; then
19 export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64"
Pavlin Radoslavov93617212014-10-16 09:54:04 -070020 fi
21fi
Thomas Vachuska7b652ad2014-10-30 14:10:51 -070022
Jian Li98dc9ad2016-01-06 14:05:47 -080023export MAVEN=${MAVEN:-~/Applications/apache-maven-3.3.9}
Thomas Vachuska7b652ad2014-10-30 14:10:51 -070024
Charles Chan9c938f82019-01-15 14:15:12 -080025# Clean up Karaf environment variables to avoid issues when switching from ONOS 1.x to 2.x
26unset KARAF_VERSION KARAF_ROOT KARAF_LOG
27
tom6a9f2722014-09-13 17:00:02 -070028# Setup a path
Thomas Vachuska4ccc7d32015-09-03 13:39:40 -070029export PATH="$PATH:$ONOS_ROOT/tools/dev/bin"
30export PATH="$PATH:$ONOS_ROOT/tools/test/bin:$ONOS_ROOT/tools/test/scenarios/bin"
Devin Lim0d944e22017-06-23 15:17:53 -070031export RUN_PACK_PATH=${RUN_PACK_PATH:-$ONOS_ROOT/tools/package/runtime/bin}
32export PATH="$RUN_PACK_PATH:$PATH"
tom1cd74ae2014-10-01 14:58:32 -070033export PATH="$PATH:$ONOS_ROOT/tools/build"
Thomas Vachuska369e3fb2019-01-02 16:38:37 -080034export PATH="$PATH:$MAVEN/bin"
tom6a9f2722014-09-13 17:00:02 -070035
Roan Huang0fa4bc42015-05-01 15:38:20 +080036# Setup cell enviroment
37export ONOS_CELL=${ONOS_CELL:-local}
38
Thomas Vachuskac3c969a2015-08-19 16:51:16 -070039# Setup default web user/password
40export ONOS_WEB_USER=onos
41export ONOS_WEB_PASS=rocks
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070042
43# Setup default location of test scenarios
Thomas Vachuskae76f6532015-07-08 09:40:53 -070044export ONOS_SCENARIOS=$ONOS_ROOT/tools/test/scenarios
45
Carmelo Casconeb7524272017-06-05 16:53:13 -040046# Setup path to Mininet custom scripts
47export ONOS_MN_PY=$ONOS_ROOT/tools/dev/mininet/onos.py
48export BMV2_MN_PY=$ONOS_ROOT/tools/dev/mininet/bmv2.py
49
tom6a9f2722014-09-13 17:00:02 -070050# Convenience utility to warp to various ONOS source projects
51# e.g. 'o api', 'o dev', 'o'
52function o {
Thomas Vachuskabec79b92018-08-07 11:42:17 -070053 cd $(find $ONOS_ROOT/ -type d -and \( -name 'bazel-*' -o -name 'buck-out' -o -name '.git' -o -name 'target' -o -name 'gen-src' -o -name 'src' \) -prune -o -type d | \
Thomas Vachuska49367a62017-08-29 09:18:19 -070054 egrep "${1:-$ONOS_ROOT}" | awk '{print length($1)"\t"$1}' | sort -n | cut -f2 | head -n 1)
tom6a9f2722014-09-13 17:00:02 -070055}
56
Thomas Vachuska6066dff2016-10-26 13:57:36 -070057# Buck (if "buck" is not on the PATH)
58[ -z "$(which buck)" ] && alias buck="onos-buck"
tom6a9f2722014-09-13 17:00:02 -070059
tom82d6bde2014-09-23 17:33:58 -070060# Short-hand for ONOS build, package and test.
Thomas Vachuskabec79b92018-08-07 11:42:17 -070061alias op="SHLVL=1 bazel build //:onos"
Ray Milkeya1f8e192019-01-23 14:34:25 -080062alias ot="bazel run //:buildifier_check && bazel query 'tests(//...)' | grep -v "coverage" | SHLVL=1 xargs bazel test --test_summary=terse --test_output=errors"
Thomas Vachuskabec79b92018-08-07 11:42:17 -070063alias ob="op && ot"
64alias obd="SHLVL=1 bazel build //docs:external //docs:internal"
Thomas Vachuska6066dff2016-10-26 13:57:36 -070065
Thomas Vachuskabec79b92018-08-07 11:42:17 -070066alias ok="SHLVL=1 bazel run onos-local --"
67alias oh="onos localhost halt"
Thomas Vachuska6066dff2016-10-26 13:57:36 -070068
tom0511a522014-10-04 12:06:02 -070069alias ol='onos-log'
toma6897792014-10-08 22:21:05 -070070alias ow='onos-watch'
Thomas Vachuska3cd677d2015-05-20 11:25:49 -070071alias ocl='onos-check-logs'
Thomas Vachuska85314292014-11-14 17:52:12 -080072alias oi='setPrimaryInstance'
tom6a9f2722014-09-13 17:00:02 -070073
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070074# Short-hand for tailing and searching the ONOS (karaf) log
tom1cd74ae2014-10-01 14:58:32 -070075alias tl='$ONOS_ROOT/tools/dev/bin/onos-local-log'
Thomas Vachuska369e3fb2019-01-02 16:38:37 -080076# alias gl='grep $KARAF_LOG --colour=auto -E -e '
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070077
Charles M.C. Chan870cc032015-04-24 04:57:42 +080078function filterLocalLog {
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070079 tl | grep --colour=always -E -e "${1-org.onlab|org.onosproject}"
80}
Charles M.C. Chan870cc032015-04-24 04:57:42 +080081alias tlo='filterLocalLog'
Charles M.C. Chane39f3142015-05-22 18:35:24 +080082alias tle='tlo "ERROR|WARN|Exception|Error"'
Charles M.C. Chan870cc032015-04-24 04:57:42 +080083
84function filterLog {
85 ol | grep --colour=always -E -e "${1-org.onlab|org.onosproject}"
86}
87alias olo='filterLog'
Thomas Vachuska3cd677d2015-05-20 11:25:49 -070088alias ole='olo "ERROR|WARN|Exception|Error"'
tom6a9f2722014-09-13 17:00:02 -070089
90# Pretty-print JSON output
91alias pp='python -m json.tool'
92
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070093# Short-hand to launch Java API docs, REST API docs and ONOS GUI
Thomas Vachuska24c849c2014-10-27 09:53:05 -070094alias docs='open $ONOS_ROOT/docs/target/site/apidocs/index.html'
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070095alias rsdocs='onos-rsdocs'
tom1a2908c2014-09-23 16:37:39 -070096alias gui='onos-gui'
tom5c255702014-09-18 06:57:39 -070097
Thomas Vachuska6066dff2016-10-26 13:57:36 -070098# Short-hand for 'mvn clean install' for us lazy folk
99alias mci='mvn clean install'
Thomas Vachuska6066dff2016-10-26 13:57:36 -0700100
101# Git annotated one-line log
102alias gil='git log --oneline --decorate=short'
tom5c255702014-09-18 06:57:39 -0700103
tom5a18e802014-09-18 12:38:15 -0700104# Test related conveniences
105
tom5a18e802014-09-18 12:38:15 -0700106# SSH to a specified ONOS instance
tom0872a172014-09-23 11:24:26 -0700107alias sshctl='onos-ssh'
108alias sshnet='onos-ssh $OCN'
tom5a18e802014-09-18 12:38:15 -0700109
Thomas Vachuskae1125352016-11-09 14:06:51 -0800110# Runs a sequence of STC scenarios until the first failure.
111function stcs {
Thomas Vachuska8cc53182016-11-14 13:06:54 -0800112 for s in "$@"; do
113 if [[ $s =~ ^[0-9]*$ ]]; then
114 printf "Waiting %d seconds...\n" $s
115 sleep $s
116 else
117 printf "Running scenario %s...\n" $s
118 stc $s || return 1
119 fi
120 done
Thomas Vachuskae1125352016-11-09 14:06:51 -0800121}
Thomas Vachuska785f5812015-03-19 01:11:00 -0700122
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700123# Applies the settings in the specified topology recipe file or lists current
124# topo recipe definition if no topo recipe file is given.
125function topo {
126 topo=${1:-""}
127 case "$topo" in
128 "")
129 env | egrep "ONOS_TOPO"
130 env | egrep "(OTD|OTL|OTH)="
131 ;;
132
133 *)
134 [ ! -f $ONOS_ROOT/tools/test/topos/$1.recipe ] && echo "No such topo recipe: $1" >&2 && return 1
135 unset ONOS_TOPO OTD OTL OTH ONOS_DEVICES ONOS_HOSTS
Ray Milkey2c6ffb82018-03-09 08:57:52 -0800136 ONOS_DEVICES=""
137 ONOS_HOSTS=""
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700138 unset $(env | sed -n 's:\(^OT[DLH][0-9]\{1,\}\)=.*:\1 :g p')
139 export ONOS_TOPO=$1
140 . $ONOS_ROOT/tools/test/topos/$1.recipe
141 let d=1; while [ $d -le $OTD ]; do
142 dev="$(printf 'of:%016x' $d)"
143 export OTD$d=$dev; export ONOS_DEVICES="$ONOS_DEVICES $dev"
144 let d=d+1;
145 done
146 let h=1; while [ $h -le $OTH ]; do
147 host="$(printf '00:00:00:00:00:%02x/-1' $h)"
148 export OTH$h=$host; export ONOS_HOSTS="$ONOS_HOSTS $host"
149 let h=h+1
150 done
151 topo
152 esac
153}
154
155# Lists available topo recipes
156function topos {
157 for topo in $(ls -1 $ONOS_ROOT/tools/test/topos/*.recipe); do
158 name=$(basename $topo .recipe)
159 printf "%-16s %s\n" \
160 "$([ $name = $ONOS_TOPO ] && echo $name '*' || echo $name)" \
161 "$(grep '^#' $topo | head -n 1)"
162 done
163}
164
Thomas Vachuska785f5812015-03-19 01:11:00 -0700165# Sets the primary instance to the specified instance number.
166function setPrimaryInstance {
Jon Hallee85e2f2016-06-07 10:36:33 -0700167 export ONOS_INSTANCES=$(env | grep 'OC[0-9]*=' | sort | cut -d= -f2)
Thomas Vachuskafd8cb682018-07-27 12:29:14 -0700168
Ray Milkeyacfb4102018-08-08 11:11:59 -0700169 if [ -z "${OCC1-}" ]; then
Thomas Vachuskafd8cb682018-07-27 12:29:14 -0700170 aux=/tmp/cell-$$.aux
171 let i=1
172 for n in $ONOS_INSTANCES; do
173 echo "export OCC$i=$n" >> $aux
174 let i=i+1
175 done
176 [ -f $aux ] && source $aux && rm $aux
177 fi
178
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700179 export ONOS_CORES=$(env | grep 'OCC[0-9]*=' | sort | cut -d= -f2)
Thomas Vachuska785f5812015-03-19 01:11:00 -0700180 export OCI=$(env | egrep "OC[0-9]+" | sort | egrep OC${1:-1} | cut -d= -f2)
181 echo $OCI
182}
183
Jordan Halterman980a8c12017-09-22 18:01:19 -0700184# Sets minority (OCMI) and majority (OCMA) variables
185function setMinorityMajority {
186 nodes=($(env | grep 'OC[0-9]*=' | sort | cut -d= -f2))
Jordan Halterman980a8c12017-09-22 18:01:19 -0700187 min=1
188 maj=1
Ray Milkeyca840af2019-02-22 09:16:11 -0800189 node_count="${#nodes[@]}"
190 if [ $node_count -gt 1 ]; then
191 middle=$(expr "$node_count" / "2")
192 index=0
193 for node in "${nodes[@]}"; do
194 if [ "$index" -gt "$middle" ]; then
195 export OCMI${min}=${node}
196 min=$(expr $min + 1)
197 else
198 export OCMA${maj}=${node}
199 maj=$(expr $maj + 1)
200 fi
201 index=$(expr $index + 1)
202 done
203 fi
Jordan Halterman980a8c12017-09-22 18:01:19 -0700204}
205
Thomas Vachuskaa10137c2018-04-03 16:45:59 -0700206# Open Networking Foundation shared test cell warden address
Thomas Vachuska28d46572017-12-05 13:39:27 -0800207export CELL_WARDEN="10.192.19.72"
Thomas Vachuskaca40fe42018-01-29 16:13:26 -0800208export CELL_SLAVE_1=$CELL_WARDEN
209export CELL_SLAVE_2="10.192.19.71"
210export CELL_SLAVE_3="10.192.19.70"
Thomas Vachuska4b09a6f2018-10-29 10:34:20 -0700211export CELL_SLAVE_4="10.192.19.77" # disabled
212export CELL_SLAVES="$CELL_SLAVE_1 $CELL_SLAVE_2 $CELL_SLAVE_3"
Thomas Vachuska1eff3a62016-05-03 01:07:24 -0700213
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700214# Clears cell environment
215function clearCell {
216 unset ONOS_CELL ONOS_NIC ONOS_IP ONOS_APPS ONOS_BOOT_FEATURES
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700217 unset OCI OCN OCT ONOS_INSTANCES ONOS_CORES ONOS_FEATURES
Charles Chanc7a60ce2017-05-05 13:56:27 -0700218 unset ONOS_USER ONOS_GROUP ONOS_WEB_USER ONOS_WEB_PASS
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700219 unset $(env | sed -n 's:\(^OC[0-9]\{1,\}\)=.*:\1 :g p')
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700220 unset $(env | sed -n 's:\(^OCC[0-9]\{1,\}\)=.*:\1 :g p')
Jordan Halterman980a8c12017-09-22 18:01:19 -0700221 unset $(env | sed -n 's:\(^OCMI[0-9]\{1,\}\)=.*:\1 :g p')
222 unset $(env | sed -n 's:\(^OCMA[0-9]\{1,\}\)=.*:\1 :g p')
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700223}
224
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700225# Applies the settings in the specified cell file or lists current cell definition
226# if no cell file is given.
227function cell {
Jon Hall7dc59d62016-05-10 14:30:16 -0700228 cell=${1:-""}
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700229 case "$cell" in
230 "borrow")
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700231 clearCell
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700232 aux="/tmp/cell-$$"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700233 duration=${2:-0}
Thomas Vachuska8e676d92018-11-19 16:01:03 -0800234 spec=${3:-5+3+1}
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700235 spec=${spec//+/%2B}
Thomas Vachuska5420ba32016-05-13 14:45:25 -0400236 user=${4:-$(id -un)}
Ray Milkey32e73d72018-03-09 09:52:29 -0800237 hint=${5:-""}
Thomas Vachuska05e47a32016-10-24 09:35:11 -0700238 query="duration=$duration&spec=$spec&user=$user&cellNameHint=$hint"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700239 curl -sS -X POST "http://$CELL_WARDEN:4321/?$query" -d "$(cat ~/.ssh/id_rsa.pub)" > $aux
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700240 . $aux
241 rm -f $aux
Ray Milkey2673aaa2019-03-20 10:46:26 -0700242 # This is a hack to get master running on the existing cell infrastructure
Ray Milkeya79a1112019-03-21 09:19:54 -0700243 apps=${ONOS_APPS:-}
Ray Milkeyf42f76e2019-03-21 10:04:02 -0700244 export ONOS_APPS=$apps,gui
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700245 setPrimaryInstance 1 >/dev/null
Jordan Halterman980a8c12017-09-22 18:01:19 -0700246 setMinorityMajority >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700247 onos-verify-cell
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700248 topo default >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700249 ;;
250 "return")
251 curl -sS -X DELETE "http://$CELL_WARDEN:4321/?user=${2:-$(id -un)}"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700252 clearCell
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700253 ;;
254
255 "status")
256 curl -sS "http://$CELL_WARDEN:4321/" | sort
257 ;;
258
259 "")
Charles Chan9b152fc2016-11-21 12:06:49 -0800260 env | egrep "^ONOS_CELL"
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700261 env | egrep "^OCC[0-9]+" | sort
Charles Chan9b152fc2016-11-21 12:06:49 -0800262 env | egrep "^OC[0-9]+" | sort
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700263 env | egrep "^OC[INT]" | sort
264 env | egrep "^ONOS_" | egrep -v 'ONOS_ROOT|ONOS_CELL|ONOS_INSTANCES|ONOS_CORES|ONOS_DEVICES|ONOS_HOSTS' | sort
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700265 ;;
266
267 *)
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700268 [ ! -f $ONOS_ROOT/tools/test/cells/$1 ] && echo "No such cell: $1" >&2 && return 1
269 clearCell
Charles Chanc7a60ce2017-05-05 13:56:27 -0700270 export ONOS_USER=sdn
271 export ONOS_GROUP=sdn
272 export ONOS_WEB_USER=onos
273 export ONOS_WEB_PASS=rocks
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700274 export ONOS_CELL=$1
275 . $ONOS_ROOT/tools/test/cells/$1
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700276 setPrimaryInstance 1 >/dev/null
277 cell
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700278 topo default >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700279 esac
280}
tomecd0fbd2014-09-19 08:47:05 -0700281
Thomas Vachuskae6185572016-05-04 19:26:15 -0700282[ -n "$ONOS_CELL" -a "$ONOS_CELL" != "borrow" ] && cell $ONOS_CELL > /dev/null
tomecd0fbd2014-09-19 08:47:05 -0700283
284# Lists available cells
285function cells {
tom2482e6f2014-10-01 16:51:48 -0700286 for cell in $(ls -1 $ONOS_ROOT/tools/test/cells); do
Thomas Vachuska785f5812015-03-19 01:11:00 -0700287 printf "%-16s %s\n" \
Yi Tseng7f425d52017-02-02 13:33:59 -0800288 "$([ ! -z $ONOS_CELL ] && [ $cell = $ONOS_CELL ] && echo $cell '*' || echo $cell)" \
tom2482e6f2014-10-01 16:51:48 -0700289 "$(grep '^#' $ONOS_ROOT/tools/test/cells/$cell | head -n 1)"
290 done
tomecd0fbd2014-09-19 08:47:05 -0700291}
tom5a18e802014-09-18 12:38:15 -0700292
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800293# Find a process by regex
tom5c255702014-09-18 06:57:39 -0700294function spy {
295 ps -ef | egrep "$@" | grep -v egrep
296}
297
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800298# Kill a process by regex
tom5c255702014-09-18 06:57:39 -0700299function nuke {
tom85258ee2014-10-07 00:10:02 -0700300 spy "$@" | cut -c7-11 | xargs kill
tom5c255702014-09-18 06:57:39 -0700301}
Ayaka Koshibea9985132014-12-18 14:55:22 -0800302
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700303# Edit a cell file by providing a cell name; opens the cell file in $EDITOR.
304function vicell {
305 local apply=false
306 local create=false
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800307 local ${cdf:=$ONOS_CELL}
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700308 local cpath="${ONOS_ROOT}/tools/test/cells/"
Ayaka Koshibea9985132014-12-18 14:55:22 -0800309
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800310 if [ "$1" = "-h" ] ; then
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700311 printf "usage: vicell [file] [options]\n\noptions:\n"
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800312 printf "\t[file]: cell name (default: current cell)\n"
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700313 printf "\t-a: apply the cell after editing\n"
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800314 printf "\t-e: [editor] set EDITOR to [editor] (default: *vi*)\n"
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700315 printf "\t-c: create cell file if none exist\n\n"
316 return 1
317 fi
Ayaka Koshibea9985132014-12-18 14:55:22 -0800318
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700319 while [ $# -gt 0 ]; do
320 case "$1" in
321 -a) apply=true ;;
322 -e) EDITOR=$2; shift ;;
323 -c) create=true ;;
324 *) cdf="$1" ;;
325 esac
326 shift
327 done
Ayaka Koshibea9985132014-12-18 14:55:22 -0800328
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800329 if [ ! -e "${cpath}${cdf}" ] && ! ($create) ; then
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700330 printf "${cdf} : no such cell\n" && return 1
331 fi
Ayaka Koshibea9985132014-12-18 14:55:22 -0800332
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700333 if [ -z "${EDITOR}" ] || [ -x "$(which ${EDITOR})" ]; then
334 unset EDITOR && vi ${cpath}${cdf}
335 else
336 $EDITOR ${cpath}${cdf}
337 fi
338 ($apply) && cell ${cdf}
Ayaka Koshibea9985132014-12-18 14:55:22 -0800339}
Ayaka Koshibeaec629622015-01-05 20:33:29 -0800340
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800341# Autocomplete for certain utilities
Ayaka Koshibeaec629622015-01-05 20:33:29 -0800342. ${ONOS_ROOT}/tools/test/bin/ogroup-opts
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800343
344
345# Load AT&T MPLS topo GEO data
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800346alias atttopo='onos-netcfg $OCI $ONOS_ROOT/tools/test/topos/attmpls-cfg.json'
Simon Huntcf7e3b52016-02-29 23:26:16 -0800347
348# Load UK topo GEO data
349alias uktopo='onos-netcfg $OCI $ONOS_ROOT/tools/test/topos/uk-cfg.json'
Carmelo Cascone15693a22018-12-12 19:06:57 -0800350
351# Mininet command that uses BMv2 instead of OVS
Carmelo Cascone499f3202019-02-08 22:54:33 -0800352alias mn-bmv2='sudo -E mn --custom $BMV2_MN_PY --switch onosbmv2 --controller remote,ip=$OC1'
353alias mn-stratum='sudo -E mn --custom $BMV2_MN_PY --switch stratum --controller remote,ip=$OC1'