Blame tcar-scripts/tcar_getConfigLines.sh

Alain Reguera Delgado 66223d
#!/bin/bash
Alain Reguera Delgado 66223d
######################################################################
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
#   tcar_getConfigLines.sh -- This function standardizes the way
Alain Reguera Delgado 66223d
#   configuration lines are retrieved form configuration files. As
Alain Reguera Delgado 66223d
#   arguments, the configuration file absolute path, the configuration
Alain Reguera Delgado 66223d
#   section name, and the configuration option name must be provided.
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
#   Written by:
Alain Reguera Delgado 66223d
#   * Alain Reguera Delgado <al@centos.org.cu>, 2009-2013
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
# Copyright (C) 2009-2013 The CentOS Artwork SIG
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 66223d
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 66223d
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 66223d
# your option) any later version.
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 66223d
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 66223d
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 66223d
# General Public License for more details.
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 66223d
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 66223d
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
######################################################################
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
function tcar_getConfigLines {
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
    # Initialize absolute path to configuration file.
Alain Reguera Delgado 66223d
    local CONFIGURATION_FILE="${1}"
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
    # Initialize configuration section name where the variable value
Alain Reguera Delgado 66223d
    # we want to to retrieve is set in.
Alain Reguera Delgado 66223d
    local CONFIGURATION_SECTION="${2}"
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
    # Initialize variable name we want to retrieve value from.
Alain Reguera Delgado 66223d
    local CONFIGURATION_OPTION="${3}"
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
    # Verify configuration variable name. When no variable name is
Alain Reguera Delgado 66223d
    # provided print all configuration lines that can be considered as
Alain Reguera Delgado 66223d
    # well-formed paths. Be sure configuration variable name starts
Alain Reguera Delgado 66223d
    # just at the beginning of the line.
Alain Reguera Delgado 66223d
    if [[ ! ${CONFIGURATION_OPTION} =~ '^[[:alnum:]_./-]+$' ]];then
Alain Reguera Delgado 66223d
        CONFIGURATION_OPTION='[[:alnum:]_./-]+[[:space:]]*='
Alain Reguera Delgado 66223d
    fi
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
    # Retrieve configuration lines from configuration file. Don't sort
Alain Reguera Delgado 66223d
    # the value of this value so as to preserve the order given in the
Alain Reguera Delgado 66223d
    # configuration file. This is important because configuration
Alain Reguera Delgado 66223d
    # files are being used for setting render-from priorities.
Alain Reguera Delgado 66223d
    local CONFIGURATION_LINES=$(cat ${CONFIGURATION_FILE} \
Alain Reguera Delgado 66223d
        | egrep -v '^#' \
Alain Reguera Delgado 66223d
        | egrep -v '^[[:space:]]*$' \
Alain Reguera Delgado 66223d
        | sed -r -n "/^\[${CONFIGURATION_SECTION}\][[:space:]]*$/,/^\[/p" \
Alain Reguera Delgado 66223d
        | egrep -v '^\[' \
Alain Reguera Delgado 66223d
        | egrep "^${CONFIGURATION_OPTION}")
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
    # Output value related to variable name.
Alain Reguera Delgado 66223d
    echo "${CONFIGURATION_LINES}"
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
}