blob: 2bb205901b8f08fa19aa4abe49a7cb6c2601701c [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"
Pavlin Radoslavov93617212014-10-16 09:54:04 -070014 elif [ -d /usr/lib/jvm/java-7-openjdk-amd64 ]; then
15 export JAVA_HOME="/usr/lib/jvm/java-7-openjdk-amd64"
16 fi
17fi
Thomas Vachuska7b652ad2014-10-30 14:10:51 -070018
tom6a9f2722014-09-13 17:00:02 -070019export MAVEN=${MAVEN:-~/Applications/apache-maven-3.2.2}
Thomas Vachuska7b652ad2014-10-30 14:10:51 -070020
Thomas Vachuskad8531152014-11-03 14:39:57 -080021export KARAF_VERSION=${KARAF_VERSION:-3.0.2}
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
30# Convenience utility to warp to various ONOS source projects
31# e.g. 'o api', 'o dev', 'o'
32function o {
tomcf8dd2a2014-10-10 08:37:20 -070033 cd $(find $ONOS_ROOT/ -type d | egrep -v '\.git|target|gen-src' | \
tom9a693fd2014-10-03 11:32:19 -070034 egrep "${1:-$ONOS_ROOT}" | egrep -v "$ONOS_ROOT/.+/src/" | head -n 1)
tom6a9f2722014-09-13 17:00:02 -070035}
36
37# Short-hand for 'mvn clean install' for us lazy folk
38alias mci='mvn clean install'
Yuta HIGUCHI007cdff2014-11-20 13:39:05 -080039alias mcis='mvn clean install -DskipTests -Dcheckstyle.skip -U -T 1C'
40alias mis='mvn install -DskipTests -Dcheckstyle.skip -U -T 1C'
tom6a9f2722014-09-13 17:00:02 -070041
tom82d6bde2014-09-23 17:33:58 -070042# Short-hand for ONOS build, package and test.
43alias ob='onos-build'
Thomas Vachuskad16ce182014-10-29 17:25:29 -070044alias obi='onos-build -Dmaven.test.failure.ignore=true'
tom1cd74ae2014-10-01 14:58:32 -070045alias obs='onos-build-selective'
Thomas Vachuska7cbfd4f2014-11-04 18:22:49 -080046alias obd='onos-build-docs'
tom82d6bde2014-09-23 17:33:58 -070047alias op='onos-package'
tomcaf3bf72014-09-23 13:20:53 -070048alias ot='onos-test'
tom0511a522014-10-04 12:06:02 -070049alias ol='onos-log'
toma6897792014-10-08 22:21:05 -070050alias ow='onos-watch'
Thomas Vachuska85314292014-11-14 17:52:12 -080051alias oi='setPrimaryInstance'
tome2555ff2014-10-07 18:47:58 -070052alias go='ob && ot && onos -w'
tomca8f6702014-10-07 09:28:53 -070053alias pub='onos-push-update-bundle'
tom6a9f2722014-09-13 17:00:02 -070054
55# Short-hand for tailing the ONOS (karaf) log
tom1cd74ae2014-10-01 14:58:32 -070056alias tl='$ONOS_ROOT/tools/dev/bin/onos-local-log'
Thomas Vachuskabbea58c2014-12-02 22:50:10 -080057alias tlo='tl | grep --colour=always -E -e "org.onlab|org.onosproject"'
Jonathan Hartd57df6c2014-10-17 15:18:02 -070058alias ll='less $KARAF_LOG'
tom6a9f2722014-09-13 17:00:02 -070059
60# Pretty-print JSON output
61alias pp='python -m json.tool'
62
63# Short-hand to launch API docs and sample topology viewer GUI
Thomas Vachuska24c849c2014-10-27 09:53:05 -070064alias docs='open $ONOS_ROOT/docs/target/site/apidocs/index.html'
tom1a2908c2014-09-23 16:37:39 -070065alias gui='onos-gui'
tom5c255702014-09-18 06:57:39 -070066
67
tom5a18e802014-09-18 12:38:15 -070068# Test related conveniences
69
tom5a18e802014-09-18 12:38:15 -070070# SSH to a specified ONOS instance
tom0872a172014-09-23 11:24:26 -070071alias sshctl='onos-ssh'
72alias sshnet='onos-ssh $OCN'
tom5a18e802014-09-18 12:38:15 -070073
tomecd0fbd2014-09-19 08:47:05 -070074# Applies the settings in the specified cell file or lists current cell definition
75# if no cell file is given.
76function cell {
77 if [ -n "$1" ]; then
78 [ ! -f $ONOS_ROOT/tools/test/cells/$1 ] && \
79 echo "No such cell: $1" >&2 && return 1
Pavlin Radoslavov0770d0f2014-10-15 15:58:31 -070080 unset ONOS_CELL ONOS_NIC ONOS_FEATURES
Pavlin Radoslavov711145a2014-10-16 17:45:48 -070081 unset OC0 OC1 OC2 OC3 OC4 OC5 OC6 OC7 OC8 OC9 OCN OCI
Thomas Vachuskacce11ca2014-10-16 11:52:29 -070082 export ONOS_CELL=$1
tomecd0fbd2014-09-19 08:47:05 -070083 . $ONOS_ROOT/tools/test/cells/$1
tomecd0fbd2014-09-19 08:47:05 -070084 cell
85 else
86 env | egrep "ONOS_CELL"
87 env | egrep "OCI"
Pavlin Radoslavov711145a2014-10-16 17:45:48 -070088 env | egrep "OC[0-9]+" | sort
tom0872a172014-09-23 11:24:26 -070089 env | egrep "OCN"
tome797a5d2014-09-30 11:57:50 -070090 env | egrep "ONOS_" | egrep -v 'ONOS_ROOT|ONOS_CELL'
tomecd0fbd2014-09-19 08:47:05 -070091 fi
92}
93
94cell local >/dev/null # Default cell is the local VMs
95
96# Lists available cells
97function cells {
tom2482e6f2014-10-01 16:51:48 -070098 for cell in $(ls -1 $ONOS_ROOT/tools/test/cells); do
99 printf "%-12s %s\n" \
100 "$([ $cell = $ONOS_CELL ] && echo $cell '*' || echo $cell)" \
101 "$(grep '^#' $ONOS_ROOT/tools/test/cells/$cell | head -n 1)"
102 done
tomecd0fbd2014-09-19 08:47:05 -0700103}
tom5a18e802014-09-18 12:38:15 -0700104
Thomas Vachuska85314292014-11-14 17:52:12 -0800105# Sets the primary instance to the specified instance number.
106function setPrimaryInstance {
107 export OCI=$(env | egrep "OC[0-9]+" | sort | egrep OC${1:-1} | cut -d= -f2)
108 echo $OCI
109}
110
tom5c255702014-09-18 06:57:39 -0700111# Miscellaneous
112function spy {
113 ps -ef | egrep "$@" | grep -v egrep
114}
115
116function nuke {
tom85258ee2014-10-07 00:10:02 -0700117 spy "$@" | cut -c7-11 | xargs kill
tom5c255702014-09-18 06:57:39 -0700118}