OpenGrok revision 949
4N/A# OpenGrok Wrapper (initial setup and cron job updating) 4N/A# Supported Operating Systems: 4N/A# - Solaris 10 (SunOS 5.10) 4N/A# - OpenSolaris (SunOS 5.11) 4N/A# Supported Deployment Engines: 4N/A# Supported Environment Variables: 4N/A# - OPENGROK_NON_INTERACTIVE Suppress Progress and Warnings Messages (*) 4N/A# - OPENGROK_STANDARD_ENV Run Time Shell Environment (Shell Script) 4N/A# - OPENGROK_CONFIGURATION User Configuration (Shell Script) 4N/A# Supported Environment Variables for configuring the default setup: 4N/A# - OPENGROK_DISTRIBUTION_BASE Base Directory of the OpenGrok Distribution 4N/A# - OPENGROK_INSTANCE_BASE Base Directory of the OpenGrok User Data Area 4N/A# - EXUBERANT_CTAGS Full Path to Exuberant CTags 4N/A# - JAVA_HOME Full Path to Java Installation Root 4N/A# - OPENGROK_APP_SERVER Application Server ("Tomcat" or "Glassfish") 4N/A# - OPENGROK_WAR_TARGET_TOMCAT Tomcat Specific WAR Target Directory 4N/A# - OPENGROK_WAR_TARGET_GLASSFISH Glassfish Specific WAR Target Directory 4N/A# - OPENGROK_WAR_TARGET Fallback WAR Target Directory 4N/A# - OPENGROK_TOMCAT_BASE Base Directory for Tomcat (contains webapps) 4N/A# - OPENGROK_GLASSFISH_BASE Base Directory for Glassfish (contains domains) 4N/A# - OPENGROK_GLASSFISH_DOMAIN Preferred Glassfish Domain Name 4N/A# - OPENGROK_REMOTE_REPOS Disable History Cache for (remote) Repositories (*) 4N/A# - OPENGROK_SCAN_REPOS Disable Scan for repositories (*)_ 4N/A# - READ_XML_CONFIGURATION file with read only configuration - a temp workaround for bug # 327 4N/A# (*) Any Non-Empty String will enable these options 4N/A echo "Usage: ${0} <deploy|update|updateQuietly|usage>" 1>&2 4N/A echo " ${0} index [<directory>]" 1>&2 4N/A echo " Optional environment variables:" 1>&2 4N/A echo " OPENGROK_CONFIGURATION - location of your configuration" 1>&2 4N/A echo " See the code for more information on configuration options / variables" 1>&2 4N/A# Runtime Configuration 4N/A# TODO: Handle symlinks correctly (especially in ${0}) 4N/A# Default Instance Configuration 4N/A # Use the built-in defaults. This section can be copied to its own 4N/A # file and tailored to your local requirements. Then simply set 4N/A # this wrapper. It will save you hand editing in your settings 4N/A # on each new release. A sample cron(1M) entry might look like: 4N/A # Note: It is not really possible to ever provided defaults for 4N/A # these values which will run in every UNIX-like environment. 4N/A # So I have provided a set which are functional for a given 4N/A # environment on which you can based you own configuration. 4N/A # This has been updated to support more environment variables and 4N/A # operating systems, if you have any reasonably generic 4N/A # improvements please feel free to submit a patch. 4N/A if [ -z "${OPENGROK_DISTRIBUTION_BASE}" ] 4N/A if [ -d "${SCRIPT_DIRECTORY}/dist" -a \ 4N/A # Handle Developer Build Environments 4N/A # Handle Binary Distributions 4N/A # (your source code or the root of all repositories) 4N/A # REQUIRED: OpenGrok Generate Data Root 4N/A # (for Lucene index and hypertext cross-references) 4N/A # This area is rebuilt by "update" / "updateQuietly" 4N/A # OPTIONAL: User Provided Source Path to Description Mapping (Tab Separated Value) 4N/A # (The user maintained source of the generated EftarFile file) 4N/A # REQUIRED: XML Configuration 4N/A # (the configuration used by Web/GUI interfaces) 4N/A # OPTIONAL: read only XML config, if it exists, it will be read 4N/A if [ -f "${READ_XML_CONFIGURATION}" ] ; then 4N/A # REQUIRED: Logger Configuration 4N/A # REQUIRED: Java Archive of OpenGrok (Installation Location) 4N/A # REQUIRED(deploy): Web Archive of OpenGrok (Distribution Location) 4N/A # (user building from source code will find this and other key 4N/A # files in the "dist" directory after the build is completed) 4N/A # REQUIRED: Java Home 4N/A # REQUIRED: Java Virtual Machine 4N/A # DEVELOPMENT: Debug option, if enabled current indexer will listen on the port 8010 until a debugger connects 4N/A #JAVA_DEBUG="-agentlib:jdwp=transport=dt_socket,server=y,address=8010,suspend=y" 4N/A # OPTIONAL: Ignore these patterns as names of files or directories 4N/A #IGNORE_PATTERNS="-i dummy" 4N/A # OPTIONAL: Enable Projects 4N/A # (Every directory in SRC_ROOT is considered a separate project) 4N/A # OPTIONAL: Scanning Options (for Mercurial repositories) 4N/A if [ ! -z "${OPENGROK_SCAN_REPOS}" ] 4N/A # OPTIONAL: Remote Repository Support (CVS or SVN) 4N/A # (Can be very time demanding, uncomment if needed) 4N/A if [ ! -z "${OPENGROK_REMOTE_REPOS}" ] # OPTIONAL: Allow Leading Wildcard Searches #LEADING_WILDCARD="-a on" # OPTIONAL: Web Site Look & Feel # (Options: default, offwhite and polished. # Note the quoting requirements) # OPTIONAL: Set Maximum Indexed Words Per File # Note, that you might run out of memory, then either increase JVM memory # as noted in JAVA_OPTS, or set this limit(if you don't mind opengrok not # indexing the rest of the file, once the limit is reached) #MAX_INDEXED_WORDS="-m 100000" # OPTIONAL: Configuration Address (host:port) #JAVA_OPTS="-server -Xmx2048m" # OPTIONAL: Full Path to History Utilities # OPTIONAL: Override Built-in Properties # Assumption: We should not set properties to the empty string # OPTIONAL: Store The History Cache in Java DB (derby), # instead of file system (in gzipped xml files). # - Running Derby Server - Defaults to localhost:1527 # DELIVERED: An update program for EftarFile # Usage: <class> inputFile [inputFile ...] outputFile # EftarFile == An Extremely Fast Tagged Attribute Read-only File System # HARDCODED: Generated EftarFile (See web/*.jsp) # Be Quiet? (set indirectly by command line arguments in the main program) # or alternatively, Be Verbose! if [ ! -z "${OPENGROK_VERBOSE}" ] # Helper Functions - Logging # In general, non-interactive use like cron jobs and automated # installation environments should not generate unnecessary # progress information or warnings, as usage and configuration # will have generally been debugged prior to automation. if [ -z "${OPENGROK_NON_INTERACTIVE}" ] if [ -z "${OPENGROK_NON_INTERACTIVE}" ] echo "WARNING: ${@}" 1>&2 echo "FATAL ERROR: ${@} - Aborting!" 1>&2 # Helper Functions - Autodetection of Runtime Environment case "${OS_NAME}:${OS_VERSION}" in if [ -z "${commandName}" ] Error "Unable to determine Exuberant CTags command name" \ "for ${OS_NAME} ${OS_VERSION}" case "${OS_NAME}:${OS_VERSION}" in Error "Unable to determine Java 6 Home" \ "for ${OS_NAME} ${OS_VERSION}" if [ ! -d "${javaHome}" ] Error "Missing Java Home ${javaHome}" # Use this function to determine which environment the deploy the # web application function into. Some users (especially # developers) will have many deployment environments or will wish # to specify directly the application server to deploy to. # Either use the environment variable OPENGROK_APP_SERVER or # reimplement this function in your configuration file (as # specified by OPENGROK_CONFIGURATION) if [ -n "${OPENGROK_APP_SERVER}" ] echo "${OPENGROK_APP_SERVER}" # This implementation favours Tomcat, but needs a lot of work, # especially if Glassfish is perferrerd or it is under the control # of SMF (Service Management Facility) # Maybe a better implementation would be to call Application # Server specific WAR Directory and see if they exist. if [ -n "${OPENGROK_WAR_TARGET_TOMCAT}" ] echo "${OPENGROK_WAR_TARGET_TOMCAT}" elif [ -n "${OPENGROK_WAR_TARGET}" ] echo "${OPENGROK_WAR_TARGET}" if [ -d "${prefix}/webapps" ] if [ -n "${OPENGROK_WAR_TARGET_GLASSFISH}" ] echo "${OPENGROK_WAR_TARGET_GLASSFISH}" elif [ -n "${OPENGROK_WAR_TARGET}" ] echo "${OPENGROK_WAR_TARGET}" if [ -d "${prefix}/domains" ] if [ -z "${domainDirectory}" ] if [ -z "${domainDirectory}" ] if [ -n "${OPENGROK_GLASSFISH_DOMAIN}" ] directory="${domainDirectory}/${OPENGROK_GLASSFISH_DOMAIN}/autodeploy" if [ ! -d "${directory}" ] FatalError "Missing Specified Glassfish Domain ${OPENGROK_GLASSFISH_DOMAIN}" # Arbitrary Domain Selection if [ -z "${firstDomain}" ] FatalError "Failed to dynamically determine Glassfish Domain from ${domainDirectory}" echo "${domainDirectory}/${firstDomain}/autodeploy" # The variable "DO" can usefully be set to "echo" to aid in script debugging # Setup a standard execution environment (if required) if [ -f "${OPENGROK_STANDARD_ENV}" ] Progress "Loading ${OPENGROK_STANDARD_ENV} ..." . "${OPENGROK_STANDARD_ENV}" # Note: As all functions have been defined by the time this routine # is called, your configuration can, if desired, override functions # in addition to setting the variables mentioned in the function # DefaultInstanceConfiguration(), this maybe useful to override # functionality used to determine the default deployment environment # find dependencies or validate the configuration, for example. if [ -n "${OPENGROK_CONFIGURATION}" -a -f "${OPENGROK_CONFIGURATION}" ] # Load the Local OpenGrok Configuration Environment Progress "Loading ${OPENGROK_CONFIGURATION} ..." . "${OPENGROK_CONFIGURATION}" Progress "Loading the default instance configuration ..." if [ ! -x "${EXUBERANT_CTAGS}" ] FatalError "Missing Dependent Application - Exuberant CTags" if [ ! -d "${SRC_ROOT}" ] FatalError "OpenGrok Source Path ${SRC_ROOT} doesn't exist" if [ -n "${QUIET}" -a -n "${VERBOSE}" ] Warning "Both Quiet and Verbose Mode Enabled - Choosing Verbose" if [ ! -d "${DATA_ROOT}" ] Warning "OpenGrok Generated Data Path ${DATA_ROOT} doesn't exist" Progress " Attempting to create generated data directory ... " if [ ! -d "${DATA_ROOT}" ] FatalError "OpenGrok Data Path ${DATA_ROOT} doesn't exist" if [ ! -d "${OPENGROK_INSTANCE_BASE}/etc" ] Warning "OpenGrok Generated Etc Path ${OPENGROK_INSTANCE_BASE}/etc doesn't exist" Progress " Attempting to create generated etc directory ... " ${DO} mkdir -p "${OPENGROK_INSTANCE_BASE}/etc" if [ ! -d "${OPENGROK_INSTANCE_BASE}/etc" ] FatalError "OpenGrok Etc Path ${OPENGROK_INSTANCE_BASE}/etc doesn't exist" if [ -n "${LOGGER_CONFIG_PATH}" -a ! -f "${LOGGER_CONFIG_PATH}" ] Progress " Creating default ${LOGGER_CONFIG_PATH} ... " if [ ! -f "${LOGGER_CONF_SOURCE}" ] Warning "Can't find distribution logging configuration" \ "(${LOGGER_CONF_SOURCE}) to install as default" \ "logging configuration (${LOGGER_CONFIG_PATH})" # OPTIONAL : Update the EftarFile data if [ -n "${PATH_DESC}" -a -s "${PATH_DESC}" ] case "${applicationServer}" in *) FatalError "Unsupported Application Server ${applicationServer}" ;; FatalError "Unable to determine Deployment Directory for ${applicationServer}" if [ ! -f "${OPENGROK_DIST_WAR}" ] FatalError "Missing Web Application Archive ${OPENGROK_DIST_WAR}" if [ ! -d "${warTarget}" ] FatalError "Missing Deployment Directory ${warTarget}" Progress "Installing ${OPENGROK_DIST_WAR} to ${warTarget} ..." ${DO} cp "${OPENGROK_DIST_WAR}" "${warTarget}/" Progress "Start your application server (${applicationServer}), if it is not already" Progress "running, or wait until it loads the just installed web application." Progress "OpenGrok should be available on <HOST>:<PORT>/source" Progress " where HOST and PORT are configured in ${applicationServer}." if [ $# -
eq 0 -o $# -
gt 2 ]