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 |
| 6 | export ONOS_ROOT=${ONOS_ROOT:-~/onos-next} |
| 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 |
| 11 | export JAVA_HOME=$(/usr/libexec/java_home -v 1.7) |
| 12 | elif [ -d /usr/lib/jvm/java-7-openjdk-amd64 ]; then |
| 13 | export JAVA_HOME="/usr/lib/jvm/java-7-openjdk-amd64" |
| 14 | fi |
| 15 | fi |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 16 | export MAVEN=${MAVEN:-~/Applications/apache-maven-3.2.2} |
| 17 | export KARAF=${KARAF:-~/Applications/apache-karaf-3.0.1} |
| 18 | export KARAF_LOG=$KARAF/data/log/karaf.log |
| 19 | |
| 20 | # Setup a path |
tom | 1cd74ae | 2014-10-01 14:58:32 -0700 | [diff] [blame] | 21 | export PATH="$PATH:$ONOS_ROOT/tools/dev/bin:$ONOS_ROOT/tools/test/bin" |
| 22 | export PATH="$PATH:$ONOS_ROOT/tools/build" |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 23 | export PATH="$PATH:$MAVEN/bin:$KARAF/bin" |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 24 | |
| 25 | # Convenience utility to warp to various ONOS source projects |
| 26 | # e.g. 'o api', 'o dev', 'o' |
| 27 | function o { |
tom | cf8dd2a | 2014-10-10 08:37:20 -0700 | [diff] [blame] | 28 | cd $(find $ONOS_ROOT/ -type d | egrep -v '\.git|target|gen-src' | \ |
tom | 9a693fd | 2014-10-03 11:32:19 -0700 | [diff] [blame] | 29 | egrep "${1:-$ONOS_ROOT}" | egrep -v "$ONOS_ROOT/.+/src/" | head -n 1) |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 30 | } |
| 31 | |
| 32 | # Short-hand for 'mvn clean install' for us lazy folk |
| 33 | alias mci='mvn clean install' |
| 34 | |
tom | 82d6bde | 2014-09-23 17:33:58 -0700 | [diff] [blame] | 35 | # Short-hand for ONOS build, package and test. |
| 36 | alias ob='onos-build' |
tom | 1cd74ae | 2014-10-01 14:58:32 -0700 | [diff] [blame] | 37 | alias obs='onos-build-selective' |
tom | 82d6bde | 2014-09-23 17:33:58 -0700 | [diff] [blame] | 38 | alias op='onos-package' |
tom | caf3bf7 | 2014-09-23 13:20:53 -0700 | [diff] [blame] | 39 | alias ot='onos-test' |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 40 | alias ol='onos-log' |
tom | a689779 | 2014-10-08 22:21:05 -0700 | [diff] [blame] | 41 | alias ow='onos-watch' |
tom | e2555ff | 2014-10-07 18:47:58 -0700 | [diff] [blame] | 42 | alias go='ob && ot && onos -w' |
tom | ca8f670 | 2014-10-07 09:28:53 -0700 | [diff] [blame] | 43 | alias pub='onos-push-update-bundle' |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 44 | |
| 45 | # Short-hand for tailing the ONOS (karaf) log |
tom | 1cd74ae | 2014-10-01 14:58:32 -0700 | [diff] [blame] | 46 | alias tl='$ONOS_ROOT/tools/dev/bin/onos-local-log' |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 47 | alias tlo='tl | grep --colour=always org.onlab' |
| 48 | |
| 49 | # Pretty-print JSON output |
| 50 | alias pp='python -m json.tool' |
| 51 | |
| 52 | # Short-hand to launch API docs and sample topology viewer GUI |
| 53 | alias docs='open $ONOS_ROOT/target/site/apidocs/index.html' |
tom | 1a2908c | 2014-09-23 16:37:39 -0700 | [diff] [blame] | 54 | alias gui='onos-gui' |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 55 | |
| 56 | |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 57 | # Test related conveniences |
| 58 | |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 59 | # SSH to a specified ONOS instance |
tom | 0872a17 | 2014-09-23 11:24:26 -0700 | [diff] [blame] | 60 | alias sshctl='onos-ssh' |
| 61 | alias sshnet='onos-ssh $OCN' |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 62 | |
tom | ecd0fbd | 2014-09-19 08:47:05 -0700 | [diff] [blame] | 63 | # Applies the settings in the specified cell file or lists current cell definition |
| 64 | # if no cell file is given. |
| 65 | function cell { |
| 66 | if [ -n "$1" ]; then |
| 67 | [ ! -f $ONOS_ROOT/tools/test/cells/$1 ] && \ |
| 68 | echo "No such cell: $1" >&2 && return 1 |
Pavlin Radoslavov | 0770d0f | 2014-10-15 15:58:31 -0700 | [diff] [blame] | 69 | unset ONOS_CELL ONOS_NIC ONOS_FEATURES |
Pavlin Radoslavov | 711145a | 2014-10-16 17:45:48 -0700 | [diff] [blame] | 70 | unset OC0 OC1 OC2 OC3 OC4 OC5 OC6 OC7 OC8 OC9 OCN OCI |
Thomas Vachuska | cce11ca | 2014-10-16 11:52:29 -0700 | [diff] [blame] | 71 | export ONOS_CELL=$1 |
tom | ecd0fbd | 2014-09-19 08:47:05 -0700 | [diff] [blame] | 72 | . $ONOS_ROOT/tools/test/cells/$1 |
tom | ecd0fbd | 2014-09-19 08:47:05 -0700 | [diff] [blame] | 73 | cell |
| 74 | else |
| 75 | env | egrep "ONOS_CELL" |
| 76 | env | egrep "OCI" |
Pavlin Radoslavov | 711145a | 2014-10-16 17:45:48 -0700 | [diff] [blame] | 77 | env | egrep "OC[0-9]+" | sort |
tom | 0872a17 | 2014-09-23 11:24:26 -0700 | [diff] [blame] | 78 | env | egrep "OCN" |
tom | e797a5d | 2014-09-30 11:57:50 -0700 | [diff] [blame] | 79 | env | egrep "ONOS_" | egrep -v 'ONOS_ROOT|ONOS_CELL' |
tom | ecd0fbd | 2014-09-19 08:47:05 -0700 | [diff] [blame] | 80 | fi |
| 81 | } |
| 82 | |
| 83 | cell local >/dev/null # Default cell is the local VMs |
| 84 | |
| 85 | # Lists available cells |
| 86 | function cells { |
tom | 2482e6f | 2014-10-01 16:51:48 -0700 | [diff] [blame] | 87 | for cell in $(ls -1 $ONOS_ROOT/tools/test/cells); do |
| 88 | printf "%-12s %s\n" \ |
| 89 | "$([ $cell = $ONOS_CELL ] && echo $cell '*' || echo $cell)" \ |
| 90 | "$(grep '^#' $ONOS_ROOT/tools/test/cells/$cell | head -n 1)" |
| 91 | done |
tom | ecd0fbd | 2014-09-19 08:47:05 -0700 | [diff] [blame] | 92 | } |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 93 | |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 94 | # Miscellaneous |
| 95 | function spy { |
| 96 | ps -ef | egrep "$@" | grep -v egrep |
| 97 | } |
| 98 | |
| 99 | function nuke { |
tom | 85258ee | 2014-10-07 00:10:02 -0700 | [diff] [blame] | 100 | spy "$@" | cut -c7-11 | xargs kill |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 101 | } |