Blame Scripts/Functions/Tuneup/tuneup_getArguments.sh

66b51c
#!/bin/bash
66b51c
#
66b51c
# tuneup_getArguments.sh -- This function interprets arguments passed to
66b51c
# tuneup functionality and calls actions accordingly.
66b51c
#
66b51c
# Copyright (C) 2009-2011 Alain Reguera Delgado
fa95b1
#
fa95b1
# This program is free software; you can redistribute it and/or modify
fa95b1
# it under the terms of the GNU General Public License as published by
fa95b1
# the Free Software Foundation; either version 2 of the License, or
fa95b1
# (at your option) any later version.
fa95b1
#
66b51c
# This program is distributed in the hope that it will be useful, but
66b51c
# WITHOUT ANY WARRANTY; without even the implied warranty of
66b51c
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
66b51c
# General Public License for more details.
66b51c
#
66b51c
# You should have received a copy of the GNU General Public License
66b51c
# along with this program; if not, write to the Free Software
66b51c
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
66b51c
# USA.
66b51c
# ----------------------------------------------------------------------
66b51c
# $Id$
66b51c
# ----------------------------------------------------------------------
66b51c
66b51c
function tuneup_getArguments {
66b51c
66b51c
    # Define short options we want to support.
66b51c
    local ARGSS=""
66b51c
66b51c
    # Define long options we want to support.
66b51c
    local ARGSL="filter:,quiet,answer:,dont-commit-changes"
66b51c
66b51c
    # Redefine ARGUMENTS variable using getopt output.
66b51c
    cli_doParseArguments
66b51c
66b51c
    # Redefine positional parameters using ARGUMENTS variable.
66b51c
    eval set -- "$ARGUMENTS"
66b51c
66b51c
    # Look for options passed through command-line.
66b51c
    while true; do
66b51c
66b51c
        case "$1" in
66b51c
66b51c
            --filter )
66b51c
                FLAG_FILTER="$2"
66b51c
                shift 2
66b51c
                ;;
66b51c
66b51c
            --quiet )
66b51c
                FLAG_QUIET="true"
66b51c
                FLAG_DONT_COMMIT_CHANGES="true"
66b51c
                shift 1
66b51c
                ;;
66b51c
66b51c
            --answer )
66b51c
                FLAG_ANSWER="$2"
66b51c
                shift 2
66b51c
                ;;
66b51c
66b51c
            --dont-commit-changes )
66b51c
                FLAG_DONT_COMMIT_CHANGES="true"
66b51c
                shift 1
66b51c
                ;;
66b51c
66b51c
            -- )
66b51c
                # Remove the `--' argument from the list of arguments
66b51c
                # in order for processing non-option arguments
66b51c
                # correctly. At this point all option arguments have
66b51c
                # been processed already but the `--' argument still
66b51c
                # remains to mark ending of option arguments and
66b51c
                # begining of non-option arguments. The `--' argument
66b51c
                # needs to be removed here in order to avoid
66b51c
                # centos-art.sh script to process it as a path inside
66b51c
                # the repository, which obviously is not.
66b51c
                shift 1
66b51c
                break
66b51c
                ;;
66b51c
        esac
66b51c
    done
66b51c
66b51c
    # Redefine ARGUMENTS variable using current positional parameters. 
66b51c
    cli_doParseArgumentsReDef "$@"
66b51c
66b51c
}