#!/bin/bash # # Perforce Search Trigger Script # # This script is meant to be called from a Perforce trigger. # It should be placed on the Perforce Server machine. # See usage information below for more details. # # NOTE: You must set your SEARCH host (including http://) and token below SEARCH_HOST="http://localhost:8088" SEARCH_TOKEN="MY-UUID-STYLE-TOKEN" SEARCH_MAXTIME=10 # DO NOT EDIT PAST THIS LINE --------------------------------------- # ME=${0##*/} function usage { cat << ! >&2 Usage: $ME -t <type> -v <value> -t: specify the event type (e.g. job, shelve, commit) -v: specify the ID value This script is meant to be called from a Perforce trigger. It should be placed on the Perforce Server machine and the following entries should be added using 'p4 triggers': SEARCH.change form-commit change "%quote%`pwd -P`/$ME%quote% -t change -v %formname%" SEARCH.commit change-commit //... "%quote%`pwd -P`/$ME%quote% -t commit -v %change%" Be sure to modify the SEARCH_HOST and SEARCH_TOKEN variable in this script as appropriate. ! exit 99 } # Trap call to self to post to SEARCH BACKGROUND_FLAG="background-call-to-curl" if [ "$1" == "$BACKGROUND_FLAG" ] then TYPE="$2" VALUE="$3" SEARCH_QUEUE="$SEARCH_HOST/api/queue/$SEARCH_TOKEN" curl \ --header "Content-Type: text/plain" \ --silent \ --output /dev/null \ --max-time ${SEARCH_MAXTIME} \ --data ${TYPE},${VALUE} \ ${SEARCH_QUEUE} RC=$? [ $RC -ne 0 ] && logger -p3 -t $ME "error ($RC) trying to post [$TYPE,$VALUE] to [$SEARCH_QUEUE]" [ $RC -eq 0 ] && logger -p3 -t $ME "no error ($RC) trying to post [$TYPE,$VALUE] to [$SEARCH_QUEUE]" exit 0 fi # Parse arguments while getopts :t:v:h OPT do case "$OPT" in t) TYPE="$OPTARG" ;; v) VALUE="$OPTARG" ;; h) usage ;; *) logger -p3 -t $ME -s "unknown argument [-$OPTARG]" && usage ;; esac done # Sanity check supplied arguments [ -z "$TYPE" ] && logger -p3 -t $ME -s "no event type supplied" && usage [ -z "$VALUE" ] && logger -p3 -t $ME -s "no value supplied" && usage [ -z "$SEARCH_HOST" ] || [ "$SEARCH_HOST" == "http://my-SEARCH-host" ] && logger -p3 -t $ME -s "SEARCH_HOST empty or default; please update in this script" && exit 1 [ -z "$SEARCH_TOKEN" ] || [ "$SEARCH_TOKEN" == "MY-UUID-STYLE-TOKEN" ] && logger -p3 -t $ME -s "SEARCH_TOKEN empty or default; please update in this script" && exit 1 # Post the event to SEARCH # (call self, but detach to the background) $0 "$BACKGROUND_FLAG" "$TYPE" "$VALUE" > /dev/null 2>&1 < /dev/null & # Always return success to avoid affecting Perforce users exit 0
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 18494 | Paul Allen |
Fixed paths: search/search/... to search/... util/util/... to util/... Fixed permission bits +w for config and properties file that get touched during build/install Fixed INSTALL file and install dir (cause name clash on OS X) moved INSTALL to INSTALL.md |
||
//guest/perforce_software/p4search/main/search/search/build/scripts/search-queue.sh | |||||
#1 | 16193 | perforce_software | Move p4search to main directory to match new branching path scheme. | ||
//guest/perforce_software/p4search/search/build/scripts/search-queue.sh | |||||
#1 | 8975 | Matt Attaway | Populate official version of p4-search from the original Doug Scheirer source |