blob: fa6af5d7f0a05fe18d2c3b30371a14c67fe38c7d [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}
tom6a9f2722014-09-13 17:00:02 -07007
8# Setup some environmental context for developers
Pavlin Radoslavov93617212014-10-16 09:54:04 -07009if [ -z "${JAVA_HOME}" ]; then
10 if [ -x /usr/libexec/java_home ]; then
Thomas Vachuskad8531152014-11-03 14:39:57 -080011 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 Harte3c951e2015-07-14 13:28:35 -070014 elif [ -d /usr/lib/jvm/java-8-openjdk-amd64 ]; then
15 export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64"
Pavlin Radoslavov93617212014-10-16 09:54:04 -070016 fi
17fi
Thomas Vachuska7b652ad2014-10-30 14:10:51 -070018
Charles M.C. Chane5b610e2015-03-19 17:23:16 +080019export MAVEN=${MAVEN:-~/Applications/apache-maven-3.3.1}
Thomas Vachuska7b652ad2014-10-30 14:10:51 -070020
Thomas Vachuska5630c612015-03-24 12:24:12 -070021export KARAF_VERSION=${KARAF_VERSION:-3.0.3}
Thomas Vachuska255b65f2014-11-23 14:25:31 -080022export KARAF_ROOT=${KARAF_ROOT:-~/Applications/apache-karaf-$KARAF_VERSION}
23export KARAF_LOG=$KARAF_ROOT/data/log/karaf.log
tom6a9f2722014-09-13 17:00:02 -070024
25# Setup a path
tom1cd74ae2014-10-01 14:58:32 -070026export PATH="$PATH:$ONOS_ROOT/tools/dev/bin:$ONOS_ROOT/tools/test/bin"
27export PATH="$PATH:$ONOS_ROOT/tools/build"
Thomas Vachuska255b65f2014-11-23 14:25:31 -080028export PATH="$PATH:$MAVEN/bin:$KARAF_ROOT/bin"
tom6a9f2722014-09-13 17:00:02 -070029
Roan Huang0fa4bc42015-05-01 15:38:20 +080030# Setup cell enviroment
31export ONOS_CELL=${ONOS_CELL:-local}
32
Thomas Vachuskac3c969a2015-08-19 16:51:16 -070033# Setup default web user/password
34export ONOS_WEB_USER=onos
35export ONOS_WEB_PASS=rocks
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070036
37# Setup default location of test scenarios
Thomas Vachuskae76f6532015-07-08 09:40:53 -070038export ONOS_SCENARIOS=$ONOS_ROOT/tools/test/scenarios
39
tom6a9f2722014-09-13 17:00:02 -070040# Convenience utility to warp to various ONOS source projects
41# e.g. 'o api', 'o dev', 'o'
42function o {
tomcf8dd2a2014-10-10 08:37:20 -070043 cd $(find $ONOS_ROOT/ -type d | egrep -v '\.git|target|gen-src' | \
tom9a693fd2014-10-03 11:32:19 -070044 egrep "${1:-$ONOS_ROOT}" | egrep -v "$ONOS_ROOT/.+/src/" | head -n 1)
tom6a9f2722014-09-13 17:00:02 -070045}
46
47# Short-hand for 'mvn clean install' for us lazy folk
48alias mci='mvn clean install'
Yuta HIGUCHI007cdff2014-11-20 13:39:05 -080049alias mcis='mvn clean install -DskipTests -Dcheckstyle.skip -U -T 1C'
50alias mis='mvn install -DskipTests -Dcheckstyle.skip -U -T 1C'
tom6a9f2722014-09-13 17:00:02 -070051
tom82d6bde2014-09-23 17:33:58 -070052# Short-hand for ONOS build, package and test.
53alias ob='onos-build'
Thomas Vachuskad16ce182014-10-29 17:25:29 -070054alias obi='onos-build -Dmaven.test.failure.ignore=true'
tom1cd74ae2014-10-01 14:58:32 -070055alias obs='onos-build-selective'
Thomas Vachuska7cbfd4f2014-11-04 18:22:49 -080056alias obd='onos-build-docs'
tom82d6bde2014-09-23 17:33:58 -070057alias op='onos-package'
Thomas Vachuskafcd61142015-04-23 13:59:08 -070058alias ok='onos-karaf'
tomcaf3bf72014-09-23 13:20:53 -070059alias ot='onos-test'
tom0511a522014-10-04 12:06:02 -070060alias ol='onos-log'
toma6897792014-10-08 22:21:05 -070061alias ow='onos-watch'
Thomas Vachuska3cd677d2015-05-20 11:25:49 -070062alias ocl='onos-check-logs'
Thomas Vachuska85314292014-11-14 17:52:12 -080063alias oi='setPrimaryInstance'
tomca8f6702014-10-07 09:28:53 -070064alias pub='onos-push-update-bundle'
tom6a9f2722014-09-13 17:00:02 -070065
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070066# Short-hand for tailing and searching the ONOS (karaf) log
tom1cd74ae2014-10-01 14:58:32 -070067alias tl='$ONOS_ROOT/tools/dev/bin/onos-local-log'
Jonathan Hartd57df6c2014-10-17 15:18:02 -070068alias ll='less $KARAF_LOG'
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070069alias gl='grep $KARAF_LOG --colour=auto -E -e '
70
Charles M.C. Chan870cc032015-04-24 04:57:42 +080071function filterLocalLog {
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070072 tl | grep --colour=always -E -e "${1-org.onlab|org.onosproject}"
73}
Charles M.C. Chan870cc032015-04-24 04:57:42 +080074alias tlo='filterLocalLog'
Charles M.C. Chane39f3142015-05-22 18:35:24 +080075alias tle='tlo "ERROR|WARN|Exception|Error"'
Charles M.C. Chan870cc032015-04-24 04:57:42 +080076
77function filterLog {
78 ol | grep --colour=always -E -e "${1-org.onlab|org.onosproject}"
79}
80alias olo='filterLog'
Thomas Vachuska3cd677d2015-05-20 11:25:49 -070081alias ole='olo "ERROR|WARN|Exception|Error"'
tom6a9f2722014-09-13 17:00:02 -070082
83# Pretty-print JSON output
84alias pp='python -m json.tool'
85
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070086# Short-hand to launch Java API docs, REST API docs and ONOS GUI
Thomas Vachuska24c849c2014-10-27 09:53:05 -070087alias docs='open $ONOS_ROOT/docs/target/site/apidocs/index.html'
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070088alias rsdocs='onos-rsdocs'
tom1a2908c2014-09-23 16:37:39 -070089alias gui='onos-gui'
tom5c255702014-09-18 06:57:39 -070090
91
tom5a18e802014-09-18 12:38:15 -070092# Test related conveniences
93
tom5a18e802014-09-18 12:38:15 -070094# SSH to a specified ONOS instance
tom0872a172014-09-23 11:24:26 -070095alias sshctl='onos-ssh'
96alias sshnet='onos-ssh $OCN'
tom5a18e802014-09-18 12:38:15 -070097
Thomas Vachuska785f5812015-03-19 01:11:00 -070098
99# Sets the primary instance to the specified instance number.
100function setPrimaryInstance {
101 export OCI=$(env | egrep "OC[0-9]+" | sort | egrep OC${1:-1} | cut -d= -f2)
102 echo $OCI
103}
104
tomecd0fbd2014-09-19 08:47:05 -0700105# Applies the settings in the specified cell file or lists current cell definition
106# if no cell file is given.
107function cell {
108 if [ -n "$1" ]; then
109 [ ! -f $ONOS_ROOT/tools/test/cells/$1 ] && \
110 echo "No such cell: $1" >&2 && return 1
Thomas Vachuska0a4c2702015-07-06 08:43:41 -0700111 unset ONOS_CELL ONOS_NIC ONOS_IP ONOS_APPS ONOS_BOOT_FEATURES
112 unset OCI OCN OCT ONOS_INSTANCES ONOS_USER ONOS_GROUP ONOS_FEATURES
Ayaka Koshibeebb54442015-01-09 14:22:19 -0800113 unset $(env | sed -n 's:\(^OC[0-9]\{1,\}\)=.*:\1 :g p')
Thomas Vachuska3c831fa2015-08-17 18:44:15 -0700114 export ONOS_WEB_USER=onos
115 export ONOS_WEB_PASS=rocks
Thomas Vachuskacce11ca2014-10-16 11:52:29 -0700116 export ONOS_CELL=$1
tomecd0fbd2014-09-19 08:47:05 -0700117 . $ONOS_ROOT/tools/test/cells/$1
Thomas Vachuska0a4c2702015-07-06 08:43:41 -0700118 export ONOS_INSTANCES=$(env | grep 'OC[0-9]*=' | sort | cut -d= -f2)
Thomas Vachuska785f5812015-03-19 01:11:00 -0700119 setPrimaryInstance 1 >/dev/null
tomecd0fbd2014-09-19 08:47:05 -0700120 cell
121 else
122 env | egrep "ONOS_CELL"
123 env | egrep "OCI"
Pavlin Radoslavov711145a2014-10-16 17:45:48 -0700124 env | egrep "OC[0-9]+" | sort
Thomas Vachuska785f5812015-03-19 01:11:00 -0700125 env | egrep "OC[NT]"
Thomas Vachuska3c831fa2015-08-17 18:44:15 -0700126 env | egrep "ONOS_" | egrep -v 'ONOS_ROOT|ONOS_CELL|ONOS_INSTANCES' | sort
tomecd0fbd2014-09-19 08:47:05 -0700127 fi
128}
129
Roan Huang0fa4bc42015-05-01 15:38:20 +0800130cell $ONOS_CELL > /dev/null
tomecd0fbd2014-09-19 08:47:05 -0700131
132# Lists available cells
133function cells {
tom2482e6f2014-10-01 16:51:48 -0700134 for cell in $(ls -1 $ONOS_ROOT/tools/test/cells); do
Thomas Vachuska785f5812015-03-19 01:11:00 -0700135 printf "%-16s %s\n" \
tom2482e6f2014-10-01 16:51:48 -0700136 "$([ $cell = $ONOS_CELL ] && echo $cell '*' || echo $cell)" \
137 "$(grep '^#' $ONOS_ROOT/tools/test/cells/$cell | head -n 1)"
138 done
tomecd0fbd2014-09-19 08:47:05 -0700139}
tom5a18e802014-09-18 12:38:15 -0700140
tom5c255702014-09-18 06:57:39 -0700141# Miscellaneous
142function spy {
143 ps -ef | egrep "$@" | grep -v egrep
144}
145
146function nuke {
tom85258ee2014-10-07 00:10:02 -0700147 spy "$@" | cut -c7-11 | xargs kill
tom5c255702014-09-18 06:57:39 -0700148}
Ayaka Koshibea9985132014-12-18 14:55:22 -0800149
150# Edit a cell file by providing a cell name. Opens the cell file in $EDITOR.
151function vicell() {
152 local apply=false
153 local create=false
154 local cdf=""
155 local cpath="${ONOS_ROOT}/tools/test/cells/"
156
157 if [ -z "$1" ] || [ "$1" = "-h" ] ; then
158 printf "usage: vicell [file] [options]\n\noptions:\n"
159 printf "\t-a: apply the cell after editing\n"
160 printf "\t-e: [editor] set EDITOR to [editor] (default *vi*)\n"
161 printf "\t-c: create cell file if none exist\n\n"
162 return 1
163 fi
164
165 while [ $# -gt 0 ]; do
166 case "$1" in
167 -a) apply=true ;;
168 -e) EDITOR=$2; shift ;;
169 -c) create=true ;;
170 *) cdf="$1" ;;
171 esac
172 shift
173 done
174
175 if [ ! -e "${cpath}${cdf}" ] && [ "$create" = "false" ]; then
176 printf "${cdf} : no such cell\n" && return 1
177 fi
178
Ayaka Koshibeaec629622015-01-05 20:33:29 -0800179 if [ -z "${EDITOR}" ] || [ -x "$(which ${EDITOR})" ]; then
180 unset EDITOR && vi ${cpath}${cdf}
Ayaka Koshibea9985132014-12-18 14:55:22 -0800181 else
182 $EDITOR ${cpath}${cdf}
183 fi
184 ($apply) && cell ${cdf}
Ayaka Koshibea9985132014-12-18 14:55:22 -0800185}
Ayaka Koshibeaec629622015-01-05 20:33:29 -0800186
187# autocomplete for certain utilities
188. ${ONOS_ROOT}/tools/test/bin/ogroup-opts