tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # ONOS developer BASH profile conveniences |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 3 | # Simply include in your own .bash_aliases or .bash_profile |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 4 | |
| 5 | # Root of the ONOS source tree |
Thomas Vachuska | 045c01d | 2014-12-04 00:18:06 -0800 | [diff] [blame] | 6 | export ONOS_ROOT=${ONOS_ROOT:-~/onos} |
Ray Milkey | 8a0c7c7 | 2017-07-18 11:37:04 -0700 | [diff] [blame] | 7 | # This is a hack to remove symlinks from the ONOS_ROOT path. To be removed when |
| 8 | # the protobuf buck rules can handle symlinks |
| 9 | ONOS_ROOT=$(pushd $ONOS_ROOT >/dev/null && pwd -P && popd >/dev/null) |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 10 | |
| 11 | # Setup some environmental context for developers |
Pavlin Radoslavov | 9361721 | 2014-10-16 09:54:04 -0700 | [diff] [blame] | 12 | if [ -z "${JAVA_HOME}" ]; then |
| 13 | if [ -x /usr/libexec/java_home ]; then |
Thomas Vachuska | d853115 | 2014-11-03 14:39:57 -0800 | [diff] [blame] | 14 | export JAVA_HOME=$(/usr/libexec/java_home -v 1.8) |
| 15 | elif [ -d /usr/lib/jvm/java-8-oracle ]; then |
| 16 | export JAVA_HOME="/usr/lib/jvm/java-8-oracle" |
Jonathan Hart | e3c951e | 2015-07-14 13:28:35 -0700 | [diff] [blame] | 17 | elif [ -d /usr/lib/jvm/java-8-openjdk-amd64 ]; then |
| 18 | export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64" |
Pavlin Radoslavov | 9361721 | 2014-10-16 09:54:04 -0700 | [diff] [blame] | 19 | fi |
| 20 | fi |
Thomas Vachuska | 7b652ad | 2014-10-30 14:10:51 -0700 | [diff] [blame] | 21 | |
Jian Li | 98dc9ad | 2016-01-06 14:05:47 -0800 | [diff] [blame] | 22 | export MAVEN=${MAVEN:-~/Applications/apache-maven-3.3.9} |
Thomas Vachuska | 7b652ad | 2014-10-30 14:10:51 -0700 | [diff] [blame] | 23 | |
Jon Hall | b84df5d | 2017-01-31 11:19:48 -0800 | [diff] [blame] | 24 | export KARAF_VERSION=${KARAF_VERSION:-3.0.8} |
Thomas Vachuska | 255b65f | 2014-11-23 14:25:31 -0800 | [diff] [blame] | 25 | export KARAF_ROOT=${KARAF_ROOT:-~/Applications/apache-karaf-$KARAF_VERSION} |
| 26 | export KARAF_LOG=$KARAF_ROOT/data/log/karaf.log |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 27 | |
| 28 | # Setup a path |
Thomas Vachuska | 4ccc7d3 | 2015-09-03 13:39:40 -0700 | [diff] [blame] | 29 | export PATH="$PATH:$ONOS_ROOT/tools/dev/bin" |
| 30 | export PATH="$PATH:$ONOS_ROOT/tools/test/bin:$ONOS_ROOT/tools/test/scenarios/bin" |
Devin Lim | 0d944e2 | 2017-06-23 15:17:53 -0700 | [diff] [blame] | 31 | export RUN_PACK_PATH=${RUN_PACK_PATH:-$ONOS_ROOT/tools/package/runtime/bin} |
| 32 | export PATH="$RUN_PACK_PATH:$PATH" |
tom | 1cd74ae | 2014-10-01 14:58:32 -0700 | [diff] [blame] | 33 | export PATH="$PATH:$ONOS_ROOT/tools/build" |
Thomas Vachuska | 255b65f | 2014-11-23 14:25:31 -0800 | [diff] [blame] | 34 | export PATH="$PATH:$MAVEN/bin:$KARAF_ROOT/bin" |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 35 | |
Roan Huang | 0fa4bc4 | 2015-05-01 15:38:20 +0800 | [diff] [blame] | 36 | # Setup cell enviroment |
| 37 | export ONOS_CELL=${ONOS_CELL:-local} |
| 38 | |
Thomas Vachuska | c3c969a | 2015-08-19 16:51:16 -0700 | [diff] [blame] | 39 | # Setup default web user/password |
| 40 | export ONOS_WEB_USER=onos |
| 41 | export ONOS_WEB_PASS=rocks |
Thomas Vachuska | af0ee53 | 2015-08-19 14:17:36 -0700 | [diff] [blame] | 42 | |
| 43 | # Setup default location of test scenarios |
Thomas Vachuska | e76f653 | 2015-07-08 09:40:53 -0700 | [diff] [blame] | 44 | export ONOS_SCENARIOS=$ONOS_ROOT/tools/test/scenarios |
| 45 | |
Carmelo Cascone | b752427 | 2017-06-05 16:53:13 -0400 | [diff] [blame] | 46 | # Setup path to Mininet custom scripts |
| 47 | export ONOS_MN_PY=$ONOS_ROOT/tools/dev/mininet/onos.py |
| 48 | export BMV2_MN_PY=$ONOS_ROOT/tools/dev/mininet/bmv2.py |
| 49 | |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 50 | # Convenience utility to warp to various ONOS source projects |
| 51 | # e.g. 'o api', 'o dev', 'o' |
| 52 | function o { |
Ray Milkey | 33d81c6 | 2016-04-01 13:18:02 -0700 | [diff] [blame] | 53 | cd $(find $ONOS_ROOT/ -type d -and \( -name 'buck-out' -o -name '.git' -o -name 'target' -o -name 'gen-src' -o -name 'src' \) -prune -o -type d | \ |
Thomas Vachuska | 493175b | 2017-08-29 09:18:19 -0700 | [diff] [blame] | 54 | egrep "${1:-$ONOS_ROOT}" | awk '{print length($1)"\t"$1}' | sort -n | cut -f2 | head -n 1) |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 55 | } |
| 56 | |
Thomas Vachuska | 6066dff | 2016-10-26 13:57:36 -0700 | [diff] [blame] | 57 | # Buck (if "buck" is not on the PATH) |
| 58 | [ -z "$(which buck)" ] && alias buck="onos-buck" |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 59 | |
tom | 82d6bde | 2014-09-23 17:33:58 -0700 | [diff] [blame] | 60 | # Short-hand for ONOS build, package and test. |
| 61 | alias ob='onos-build' |
Aaron Kruglikov | c939037 | 2017-06-16 13:20:42 -0700 | [diff] [blame] | 62 | alias obf='(cd $ONOS_ROOT && onos-buck build onos)' |
Thomas Vachuska | 7cbfd4f | 2014-11-04 18:22:49 -0800 | [diff] [blame] | 63 | alias obd='onos-build-docs' |
tom | 82d6bde | 2014-09-23 17:33:58 -0700 | [diff] [blame] | 64 | alias op='onos-package' |
tom | caf3bf7 | 2014-09-23 13:20:53 -0700 | [diff] [blame] | 65 | alias ot='onos-test' |
Thomas Vachuska | 6066dff | 2016-10-26 13:57:36 -0700 | [diff] [blame] | 66 | |
| 67 | alias deprecatedAlias='echo "This alias has been deprecated."' |
| 68 | alias obi=deprecatedAlias |
| 69 | alias obs=deprecatedAlias |
| 70 | |
Aaron Kruglikov | c939037 | 2017-06-16 13:20:42 -0700 | [diff] [blame] | 71 | alias ok='NO_BUCKD=1 onos-buck run onos-local --' |
Thomas Vachuska | 6066dff | 2016-10-26 13:57:36 -0700 | [diff] [blame] | 72 | alias oh='onos localhost halt' |
| 73 | |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 74 | alias ol='onos-log' |
tom | a689779 | 2014-10-08 22:21:05 -0700 | [diff] [blame] | 75 | alias ow='onos-watch' |
Thomas Vachuska | 3cd677d | 2015-05-20 11:25:49 -0700 | [diff] [blame] | 76 | alias ocl='onos-check-logs' |
Thomas Vachuska | 8531429 | 2014-11-14 17:52:12 -0800 | [diff] [blame] | 77 | alias oi='setPrimaryInstance' |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 78 | |
Thomas Vachuska | 152f9fd | 2015-04-02 16:28:13 -0700 | [diff] [blame] | 79 | # Short-hand for tailing and searching the ONOS (karaf) log |
tom | 1cd74ae | 2014-10-01 14:58:32 -0700 | [diff] [blame] | 80 | alias tl='$ONOS_ROOT/tools/dev/bin/onos-local-log' |
Thomas Vachuska | 152f9fd | 2015-04-02 16:28:13 -0700 | [diff] [blame] | 81 | alias gl='grep $KARAF_LOG --colour=auto -E -e ' |
| 82 | |
Charles M.C. Chan | 870cc03 | 2015-04-24 04:57:42 +0800 | [diff] [blame] | 83 | function filterLocalLog { |
Thomas Vachuska | 152f9fd | 2015-04-02 16:28:13 -0700 | [diff] [blame] | 84 | tl | grep --colour=always -E -e "${1-org.onlab|org.onosproject}" |
| 85 | } |
Charles M.C. Chan | 870cc03 | 2015-04-24 04:57:42 +0800 | [diff] [blame] | 86 | alias tlo='filterLocalLog' |
Charles M.C. Chan | e39f314 | 2015-05-22 18:35:24 +0800 | [diff] [blame] | 87 | alias tle='tlo "ERROR|WARN|Exception|Error"' |
Charles M.C. Chan | 870cc03 | 2015-04-24 04:57:42 +0800 | [diff] [blame] | 88 | |
| 89 | function filterLog { |
| 90 | ol | grep --colour=always -E -e "${1-org.onlab|org.onosproject}" |
| 91 | } |
| 92 | alias olo='filterLog' |
Thomas Vachuska | 3cd677d | 2015-05-20 11:25:49 -0700 | [diff] [blame] | 93 | alias ole='olo "ERROR|WARN|Exception|Error"' |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 94 | |
| 95 | # Pretty-print JSON output |
| 96 | alias pp='python -m json.tool' |
| 97 | |
Thomas Vachuska | af0ee53 | 2015-08-19 14:17:36 -0700 | [diff] [blame] | 98 | # Short-hand to launch Java API docs, REST API docs and ONOS GUI |
Thomas Vachuska | 24c849c | 2014-10-27 09:53:05 -0700 | [diff] [blame] | 99 | alias docs='open $ONOS_ROOT/docs/target/site/apidocs/index.html' |
Thomas Vachuska | af0ee53 | 2015-08-19 14:17:36 -0700 | [diff] [blame] | 100 | alias rsdocs='onos-rsdocs' |
tom | 1a2908c | 2014-09-23 16:37:39 -0700 | [diff] [blame] | 101 | alias gui='onos-gui' |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 102 | |
Thomas Vachuska | 6066dff | 2016-10-26 13:57:36 -0700 | [diff] [blame] | 103 | # Short-hand for 'mvn clean install' for us lazy folk |
| 104 | alias mci='mvn clean install' |
| 105 | alias mcis='mvn clean install -DskipTests -Dcheckstyle.skip' |
| 106 | alias mis='mvn install -DskipTests -Dcheckstyle.skip' |
| 107 | |
| 108 | # Git annotated one-line log |
| 109 | alias gil='git log --oneline --decorate=short' |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 110 | |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 111 | # Test related conveniences |
| 112 | |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 113 | # SSH to a specified ONOS instance |
tom | 0872a17 | 2014-09-23 11:24:26 -0700 | [diff] [blame] | 114 | alias sshctl='onos-ssh' |
| 115 | alias sshnet='onos-ssh $OCN' |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 116 | |
Thomas Vachuska | e112535 | 2016-11-09 14:06:51 -0800 | [diff] [blame] | 117 | # Runs a sequence of STC scenarios until the first failure. |
| 118 | function stcs { |
Thomas Vachuska | 8cc5318 | 2016-11-14 13:06:54 -0800 | [diff] [blame] | 119 | for s in "$@"; do |
| 120 | if [[ $s =~ ^[0-9]*$ ]]; then |
| 121 | printf "Waiting %d seconds...\n" $s |
| 122 | sleep $s |
| 123 | else |
| 124 | printf "Running scenario %s...\n" $s |
| 125 | stc $s || return 1 |
| 126 | fi |
| 127 | done |
Thomas Vachuska | e112535 | 2016-11-09 14:06:51 -0800 | [diff] [blame] | 128 | } |
Thomas Vachuska | 785f581 | 2015-03-19 01:11:00 -0700 | [diff] [blame] | 129 | |
Thomas Vachuska | cc0b7d6 | 2016-07-12 14:03:11 -0700 | [diff] [blame] | 130 | # Applies the settings in the specified topology recipe file or lists current |
| 131 | # topo recipe definition if no topo recipe file is given. |
| 132 | function topo { |
| 133 | topo=${1:-""} |
| 134 | case "$topo" in |
| 135 | "") |
| 136 | env | egrep "ONOS_TOPO" |
| 137 | env | egrep "(OTD|OTL|OTH)=" |
| 138 | ;; |
| 139 | |
| 140 | *) |
| 141 | [ ! -f $ONOS_ROOT/tools/test/topos/$1.recipe ] && echo "No such topo recipe: $1" >&2 && return 1 |
| 142 | unset ONOS_TOPO OTD OTL OTH ONOS_DEVICES ONOS_HOSTS |
| 143 | unset $(env | sed -n 's:\(^OT[DLH][0-9]\{1,\}\)=.*:\1 :g p') |
| 144 | export ONOS_TOPO=$1 |
| 145 | . $ONOS_ROOT/tools/test/topos/$1.recipe |
| 146 | let d=1; while [ $d -le $OTD ]; do |
| 147 | dev="$(printf 'of:%016x' $d)" |
| 148 | export OTD$d=$dev; export ONOS_DEVICES="$ONOS_DEVICES $dev" |
| 149 | let d=d+1; |
| 150 | done |
| 151 | let h=1; while [ $h -le $OTH ]; do |
| 152 | host="$(printf '00:00:00:00:00:%02x/-1' $h)" |
| 153 | export OTH$h=$host; export ONOS_HOSTS="$ONOS_HOSTS $host" |
| 154 | let h=h+1 |
| 155 | done |
| 156 | topo |
| 157 | esac |
| 158 | } |
| 159 | |
| 160 | # Lists available topo recipes |
| 161 | function topos { |
| 162 | for topo in $(ls -1 $ONOS_ROOT/tools/test/topos/*.recipe); do |
| 163 | name=$(basename $topo .recipe) |
| 164 | printf "%-16s %s\n" \ |
| 165 | "$([ $name = $ONOS_TOPO ] && echo $name '*' || echo $name)" \ |
| 166 | "$(grep '^#' $topo | head -n 1)" |
| 167 | done |
| 168 | } |
| 169 | |
Thomas Vachuska | 785f581 | 2015-03-19 01:11:00 -0700 | [diff] [blame] | 170 | # Sets the primary instance to the specified instance number. |
| 171 | function setPrimaryInstance { |
Jon Hall | ee85e2f | 2016-06-07 10:36:33 -0700 | [diff] [blame] | 172 | export ONOS_INSTANCES=$(env | grep 'OC[0-9]*=' | sort | cut -d= -f2) |
Thomas Vachuska | 785f581 | 2015-03-19 01:11:00 -0700 | [diff] [blame] | 173 | export OCI=$(env | egrep "OC[0-9]+" | sort | egrep OC${1:-1} | cut -d= -f2) |
| 174 | echo $OCI |
| 175 | } |
| 176 | |
Thomas Vachuska | 1eff3a6 | 2016-05-03 01:07:24 -0700 | [diff] [blame] | 177 | # ON.Lab shared test cell warden address |
| 178 | export CELL_WARDEN="10.254.1.19" |
Thomas Vachuska | b073459 | 2017-07-18 17:13:01 -0700 | [diff] [blame] | 179 | export CELL_SLAVES="$CELL_WARDEN 10.254.1.18 10.254.1.17" |
Thomas Vachuska | 1eff3a6 | 2016-05-03 01:07:24 -0700 | [diff] [blame] | 180 | |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 181 | # Clears cell environment |
| 182 | function clearCell { |
| 183 | unset ONOS_CELL ONOS_NIC ONOS_IP ONOS_APPS ONOS_BOOT_FEATURES |
| 184 | unset OCI OCN OCT ONOS_INSTANCES ONOS_FEATURES |
Charles Chan | c7a60ce | 2017-05-05 13:56:27 -0700 | [diff] [blame] | 185 | unset ONOS_USER ONOS_GROUP ONOS_WEB_USER ONOS_WEB_PASS |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 186 | unset $(env | sed -n 's:\(^OC[0-9]\{1,\}\)=.*:\1 :g p') |
| 187 | } |
| 188 | |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 189 | # Applies the settings in the specified cell file or lists current cell definition |
| 190 | # if no cell file is given. |
| 191 | function cell { |
Jon Hall | 7dc59d6 | 2016-05-10 14:30:16 -0700 | [diff] [blame] | 192 | cell=${1:-""} |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 193 | case "$cell" in |
| 194 | "borrow") |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 195 | clearCell |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 196 | aux="/tmp/cell-$$" |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 197 | duration=${2:-0} |
Thomas Vachuska | 5420ba3 | 2016-05-13 14:45:25 -0400 | [diff] [blame] | 198 | spec=${3:-3+1} |
| 199 | spec=${spec/+/%2B} |
| 200 | user=${4:-$(id -un)} |
Thomas Vachuska | 05e47a3 | 2016-10-24 09:35:11 -0700 | [diff] [blame] | 201 | hint=${5} |
| 202 | query="duration=$duration&spec=$spec&user=$user&cellNameHint=$hint" |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 203 | curl -sS -X POST "http://$CELL_WARDEN:4321/?$query" -d "$(cat ~/.ssh/id_rsa.pub)" > $aux |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 204 | . $aux |
| 205 | rm -f $aux |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 206 | setPrimaryInstance 1 >/dev/null |
| 207 | onos-verify-cell |
Thomas Vachuska | cc0b7d6 | 2016-07-12 14:03:11 -0700 | [diff] [blame] | 208 | topo default >/dev/null |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 209 | ;; |
| 210 | "return") |
| 211 | curl -sS -X DELETE "http://$CELL_WARDEN:4321/?user=${2:-$(id -un)}" |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 212 | clearCell |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 213 | ;; |
| 214 | |
| 215 | "status") |
| 216 | curl -sS "http://$CELL_WARDEN:4321/" | sort |
| 217 | ;; |
| 218 | |
| 219 | "") |
Charles Chan | 9b152fc | 2016-11-21 12:06:49 -0800 | [diff] [blame] | 220 | env | egrep "^ONOS_CELL" |
| 221 | env | egrep "^OCI" |
| 222 | env | egrep "^OC[0-9]+" | sort |
| 223 | env | egrep "^OC[NT]" |
| 224 | env | egrep "^ONOS_" | egrep -v 'ONOS_ROOT|ONOS_CELL|ONOS_INSTANCES|ONOS_DEVICES|ONOS_HOSTS' | sort |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 225 | ;; |
| 226 | |
| 227 | *) |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 228 | [ ! -f $ONOS_ROOT/tools/test/cells/$1 ] && echo "No such cell: $1" >&2 && return 1 |
| 229 | clearCell |
Charles Chan | c7a60ce | 2017-05-05 13:56:27 -0700 | [diff] [blame] | 230 | export ONOS_USER=sdn |
| 231 | export ONOS_GROUP=sdn |
| 232 | export ONOS_WEB_USER=onos |
| 233 | export ONOS_WEB_PASS=rocks |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 234 | export ONOS_CELL=$1 |
| 235 | . $ONOS_ROOT/tools/test/cells/$1 |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 236 | setPrimaryInstance 1 >/dev/null |
| 237 | cell |
Thomas Vachuska | cc0b7d6 | 2016-07-12 14:03:11 -0700 | [diff] [blame] | 238 | topo default >/dev/null |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 239 | esac |
| 240 | } |
tom | ecd0fbd | 2014-09-19 08:47:05 -0700 | [diff] [blame] | 241 | |
Thomas Vachuska | e618557 | 2016-05-04 19:26:15 -0700 | [diff] [blame] | 242 | [ -n "$ONOS_CELL" -a "$ONOS_CELL" != "borrow" ] && cell $ONOS_CELL > /dev/null |
tom | ecd0fbd | 2014-09-19 08:47:05 -0700 | [diff] [blame] | 243 | |
| 244 | # Lists available cells |
| 245 | function cells { |
tom | 2482e6f | 2014-10-01 16:51:48 -0700 | [diff] [blame] | 246 | for cell in $(ls -1 $ONOS_ROOT/tools/test/cells); do |
Thomas Vachuska | 785f581 | 2015-03-19 01:11:00 -0700 | [diff] [blame] | 247 | printf "%-16s %s\n" \ |
Yi Tseng | 7f425d5 | 2017-02-02 13:33:59 -0800 | [diff] [blame] | 248 | "$([ ! -z $ONOS_CELL ] && [ $cell = $ONOS_CELL ] && echo $cell '*' || echo $cell)" \ |
tom | 2482e6f | 2014-10-01 16:51:48 -0700 | [diff] [blame] | 249 | "$(grep '^#' $ONOS_ROOT/tools/test/cells/$cell | head -n 1)" |
| 250 | done |
tom | ecd0fbd | 2014-09-19 08:47:05 -0700 | [diff] [blame] | 251 | } |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 252 | |
Thomas Vachuska | 9507d2a | 2015-12-01 20:45:57 -0800 | [diff] [blame] | 253 | # Find a process by regex |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 254 | function spy { |
| 255 | ps -ef | egrep "$@" | grep -v egrep |
| 256 | } |
| 257 | |
Thomas Vachuska | 9507d2a | 2015-12-01 20:45:57 -0800 | [diff] [blame] | 258 | # Kill a process by regex |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 259 | function nuke { |
tom | 85258ee | 2014-10-07 00:10:02 -0700 | [diff] [blame] | 260 | spy "$@" | cut -c7-11 | xargs kill |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 261 | } |
Ayaka Koshibe | a998513 | 2014-12-18 14:55:22 -0800 | [diff] [blame] | 262 | |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 263 | # Edit a cell file by providing a cell name; opens the cell file in $EDITOR. |
| 264 | function vicell { |
| 265 | local apply=false |
| 266 | local create=false |
Ayaka Koshibe | 77acdc7 | 2016-02-03 17:19:24 -0800 | [diff] [blame] | 267 | local ${cdf:=$ONOS_CELL} |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 268 | local cpath="${ONOS_ROOT}/tools/test/cells/" |
Ayaka Koshibe | a998513 | 2014-12-18 14:55:22 -0800 | [diff] [blame] | 269 | |
Ayaka Koshibe | 77acdc7 | 2016-02-03 17:19:24 -0800 | [diff] [blame] | 270 | if [ "$1" = "-h" ] ; then |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 271 | printf "usage: vicell [file] [options]\n\noptions:\n" |
Ayaka Koshibe | 77acdc7 | 2016-02-03 17:19:24 -0800 | [diff] [blame] | 272 | printf "\t[file]: cell name (default: current cell)\n" |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 273 | printf "\t-a: apply the cell after editing\n" |
Ayaka Koshibe | 77acdc7 | 2016-02-03 17:19:24 -0800 | [diff] [blame] | 274 | printf "\t-e: [editor] set EDITOR to [editor] (default: *vi*)\n" |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 275 | printf "\t-c: create cell file if none exist\n\n" |
| 276 | return 1 |
| 277 | fi |
Ayaka Koshibe | a998513 | 2014-12-18 14:55:22 -0800 | [diff] [blame] | 278 | |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 279 | while [ $# -gt 0 ]; do |
| 280 | case "$1" in |
| 281 | -a) apply=true ;; |
| 282 | -e) EDITOR=$2; shift ;; |
| 283 | -c) create=true ;; |
| 284 | *) cdf="$1" ;; |
| 285 | esac |
| 286 | shift |
| 287 | done |
Ayaka Koshibe | a998513 | 2014-12-18 14:55:22 -0800 | [diff] [blame] | 288 | |
Ayaka Koshibe | 77acdc7 | 2016-02-03 17:19:24 -0800 | [diff] [blame] | 289 | if [ ! -e "${cpath}${cdf}" ] && ! ($create) ; then |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 290 | printf "${cdf} : no such cell\n" && return 1 |
| 291 | fi |
Ayaka Koshibe | a998513 | 2014-12-18 14:55:22 -0800 | [diff] [blame] | 292 | |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 293 | if [ -z "${EDITOR}" ] || [ -x "$(which ${EDITOR})" ]; then |
| 294 | unset EDITOR && vi ${cpath}${cdf} |
| 295 | else |
| 296 | $EDITOR ${cpath}${cdf} |
| 297 | fi |
| 298 | ($apply) && cell ${cdf} |
Ayaka Koshibe | a998513 | 2014-12-18 14:55:22 -0800 | [diff] [blame] | 299 | } |
Ayaka Koshibe | aec62962 | 2015-01-05 20:33:29 -0800 | [diff] [blame] | 300 | |
Thomas Vachuska | 9507d2a | 2015-12-01 20:45:57 -0800 | [diff] [blame] | 301 | # Autocomplete for certain utilities |
Ayaka Koshibe | aec62962 | 2015-01-05 20:33:29 -0800 | [diff] [blame] | 302 | . ${ONOS_ROOT}/tools/test/bin/ogroup-opts |
Thomas Vachuska | 9507d2a | 2015-12-01 20:45:57 -0800 | [diff] [blame] | 303 | |
| 304 | |
| 305 | # Load AT&T MPLS topo GEO data |
Ayaka Koshibe | 77acdc7 | 2016-02-03 17:19:24 -0800 | [diff] [blame] | 306 | alias atttopo='onos-netcfg $OCI $ONOS_ROOT/tools/test/topos/attmpls-cfg.json' |
Simon Hunt | cf7e3b5 | 2016-02-29 23:26:16 -0800 | [diff] [blame] | 307 | |
| 308 | # Load UK topo GEO data |
| 309 | alias uktopo='onos-netcfg $OCI $ONOS_ROOT/tools/test/topos/uk-cfg.json' |