Blame Scripts/Functions/Render/render_getOptions.sh

4c79b5
#!/bin/bash
4c79b5
#
5792d8
# render_getOptions.sh -- This function interprets option parameters
5792d8
# passed to `render' functionality and calls actions accordingly.
4c79b5
#
2fe9b7
# Copyright (C) 2009, 2010, 2011 The CentOS Project
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
dcd347
# the Free Software Foundation; either version 2 of the License, or (at
dcd347
# your option) any later version.
fa95b1
#
74a058
# This program is distributed in the hope that it will be useful, but
74a058
# WITHOUT ANY WARRANTY; without even the implied warranty of
4c79b5
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
4c79b5
# General Public License for more details.
4c79b5
#
4c79b5
# You should have received a copy of the GNU General Public License
4c79b5
# along with this program; if not, write to the Free Software
dcd347
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
7ac5a5
#
4c79b5
# ----------------------------------------------------------------------
418249
# $Id$
4c79b5
# ----------------------------------------------------------------------
4c79b5
5792d8
function render_getOptions {
4c79b5
07c2fe
    # Define short options we want to support.
15b1d2
    local ARGSS=""
4c79b5
07c2fe
    # Define long options we want to support.
195960
    local ARGSL="filter:,quiet,answer-yes,dont-commit-changes,dont-dirspecific,releasever:,basearch:,post-rendition:,last-rendition:,theme-model:,with-brands"
4c79b5
49237e
    # Redefine ARGUMENTS variable using getopt output.
793c4c
    cli_parseArguments
4c79b5
49237e
    # Redefine positional parameters using ARGUMENTS variable.
07c2fe
    eval set -- "$ARGUMENTS"
4c79b5
07c2fe
    # Look for options passed through command-line.
07c2fe
    while true; do
4c79b5
07c2fe
        case "$1" in
4c79b5
49237e
            --filter )
49237e
                FLAG_FILTER="$2"
49237e
                shift 2
49237e
                ;;
49237e
49237e
            --quiet )
49237e
                FLAG_QUIET="true"
49237e
                FLAG_DONT_COMMIT_CHANGES="true"
49237e
                shift 1
49237e
                ;;
49237e
3ccb0a
            --answer-yes )
3ccb0a
                FLAG_ANSWER="true"
3ccb0a
                shift 1
49237e
                ;;
49237e
49237e
            --dont-commit-changes )
49237e
                FLAG_DONT_COMMIT_CHANGES="true"
49237e
                shift 1
49237e
                ;;
49237e
74b82e
            --dont-dirspecific )
74b82e
                FLAG_DONT_DIRSPECIFIC="true"
74b82e
                shift 1
15b1d2
                ;;
15b1d2
74b82e
            --post-rendition )
74b82e
                FLAG_POSTRENDITION="$2"
61bb5b
                shift 2
61bb5b
                ;;
61bb5b
74b82e
            --last-rendition )
74b82e
                FLAG_LASTRENDITION="$2"
61bb5b
                shift 2
61bb5b
                ;;
61bb5b
774507
            --basearch )
774507
                FLAG_BASEARCH="$2"
5440a4
                if [[ ! $FLAG_BASEARCH =~ $(cli_getPathComponent --architecture-pattern) ]];then
0ff158
                    cli_printMessage "`gettext "The architecture provided is not supported."`" --as-error-line
774507
                fi
ae711e
                shift 2
ae711e
                ;;
ae711e
74b82e
            --releasever )
74b82e
                FLAG_RELEASEVER="$2"
74b82e
                if [[ ! $FLAG_RELEASEVER =~ $(cli_getPathComponent --release-pattern) ]];then
74b82e
                    cli_printMessage "`gettext "The release version provided is not supported."`" --as-error-line
74b82e
                fi
ef0114
                shift 2
ef0114
                ;;
ef0114
ef0114
            --theme-model )
3de909
                FLAG_THEME_MODEL=$(cli_getRepoName $2 -d)
a615b0
                shift 2
07c2fe
                ;;
4c79b5
195960
            --with-brands )
195960
                FLAG_WITH_BRANDS='true'
195960
                shift 1
195960
                ;;
195960
92df38
            -- )
92df38
                # Remove the `--' argument from the list of arguments
92df38
                # in order for processing non-option arguments
92df38
                # correctly. At this point all option arguments have
92df38
                # been processed already but the `--' argument still
92df38
                # remains to mark ending of option arguments and
92df38
                # begining of non-option arguments. The `--' argument
92df38
                # needs to be removed here in order to avoid
92df38
                # centos-art.sh script to process it as a path inside
92df38
                # the repository, which obviously is not.
92df38
                shift 1
07c2fe
                break
92df38
                ;;
07c2fe
        esac
07c2fe
    done
07c2fe
49237e
    # Redefine ARGUMENTS variable using current positional parameters. 
793c4c
    cli_parseArgumentsReDef "$@"
a615b0
787e6e
    # Verify non-option arguments passed to command-line. If there
787e6e
    # isn't any, redefine the ARGUMENTS variable to use the current
787e6e
    # location the functionality was called from.
787e6e
    if [[ $ARGUMENTS == '' ]];then
787e6e
        ARGUMENTS=${PWD}
787e6e
    fi
787e6e
4c79b5
}