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