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