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