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 { |
| 24 | cd $(find $ONOS_ROOT/ -type d | egrep -v '.git|target|src' | \ |
| 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 | |
| 31 | # Short-hand for ONOS build from the top of the source tree. |
| 32 | alias ob='o && mvn clean install javadoc:aggregate' |
| 33 | |
| 34 | # Short-hand for tailing the ONOS (karaf) log |
| 35 | alias tl='$ONOS_ROOT/tools/dev/watchLog' |
| 36 | alias tlo='tl | grep --colour=always org.onlab' |
| 37 | |
| 38 | # Pretty-print JSON output |
| 39 | alias pp='python -m json.tool' |
| 40 | |
| 41 | # Short-hand to launch API docs and sample topology viewer GUI |
| 42 | alias docs='open $ONOS_ROOT/target/site/apidocs/index.html' |
| 43 | alias gui='open http://localhost:8181/onos/tvue' |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 44 | |
| 45 | |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 46 | # Test related conveniences |
| 47 | |
| 48 | # Default virtual box ONOS instances 1,2 & 3 |
| 49 | export OC1="192.168.56.101" |
| 50 | export OC2="192.168.56.102" |
| 51 | export OC3="192.168.56.103" |
| 52 | |
| 53 | # Default instance is #1 |
| 54 | export OCI="$OC1" |
| 55 | |
| 56 | # SSH to a specified ONOS instance |
| 57 | function sshctl { |
| 58 | [ -n "$1" ] && OCI=$1 && shift |
| 59 | ssh -Y sdn@$OCI "$@" |
| 60 | } |
| 61 | |
| 62 | |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 63 | # Miscellaneous |
| 64 | function spy { |
| 65 | ps -ef | egrep "$@" | grep -v egrep |
| 66 | } |
| 67 | |
| 68 | function nuke { |
| 69 | spy | cut -c7-11 | xargs kill |
| 70 | } |