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