#!/bin/ksh93
# IBM_PROLOG_BEGIN_TAG 
# This is an automatically generated prolog. 
#  
# 61haes_r720 src/43haes/lib/ksh93/hacmp/KLIB_HACMP_delete_cod.sh 1.3.1.4 
#  
# Licensed Materials - Property of IBM 
#  
# Restricted Materials of IBM 
#  
# COPYRIGHT International Business Machines Corp. 2012,2015 
# All Rights Reserved 
#  
# US Government Users Restricted Rights - Use, duplication or 
# disclosure restricted by GSA ADP Schedule Contract with IBM Corp. 
#  
# IBM_PROLOG_END_TAG 

# Start of POD-formatted documentation. Viewing suggestions:
#      perldoc <FILENAME>
#      pod2text -c <FILENAME>
#      pod2text -c --code <FILENAME>
#      pod2html <FILENAME>
function devDoc {
    : <<'=cut' >/dev/null 2>&1

=head1 NAME

 KLIB_HACMP_delete_cod

=head1 VERSION

 Version Number:  1.3.1.4
 Last Extracted:  2/9/15 16:43:08
 Last Changed:    1/27/15 08:42:07

 Path, Component, Release(, Level):
 src/43haes/lib/ksh93/hacmp/KLIB_HACMP_delete_cod.sh, hacmp.assist, 61haes_r720, 1507A_hacmp720

=head1 SYNOPSIS

 clmgr delete cod {<APPCTRL> | ALL}

 NOTE: the aliases for "cod" are "cuod", "dlpar" and "roha".

=head1 DESCRIPTION

Attempts to delete all currently specified Resource Optimized High Availability configuration
settings from the specified application_controller.

=head1 ARGUMENTS

 1. APPCTRL [REQUIRED] [string]
    One or All already-configured application controllers to delete.

=head1 RETURN

 0: no errors were detected; the operation appears to have been successful
 1: a general error has occurred
 2: a specified resource does not exist, or could not be found
 3: some required input was missing
 4: some detected input was incorrect in some way
 5: a required dependency does not exist
 6: a specified search failed to match any data

=head1 COPYRIGHT

COPYRIGHT International Business Machines Corp. 2005,2015
All Rights Reserved

=cut
} # End of POD-formatted documentation.


function KLIB_HACMP_delete_cod {
    LINENO=2 . $HALIBROOT/log_entry "$0()" "$CL"
    : version=1.3.1.4, src/43haes/lib/ksh93/hacmp/KLIB_HACMP_delete_cod.sh, hacmp.assist, 61haes_r720, 1507A_hacmp720
    : INPUTS: $*

    typeset application_controllers=${1//\"}
    application_controllers=${application_controllers//,/ }

    [[ $CLMGR_LOGGING == 'med' ]] && set +x  # Only trace param values

    #===================================
    : Declare and initialize variables
    #===================================
    typeset -i rc=$RC_UNKNOWN i=0
    typeset application_controller=
    typeset -u uc_val=$application_controllers

    #================================================================
    : Check for a defined cluster. No need to continue without one.
    #================================================================
    CL=$LINENO isClusterDefined
    if (( $? != RC_SUCCESS )); then
        rc=$RC_MISSING_DEPENDENCY

    #=================
    : Validate input
    #=================
    elif [[ $application_controllers == *([[:space:]]) ]]; then
        CL=$LINENO dspmsg -s $CLMGR_SET $CLMGR_MSGS 100 "\nERROR: a name/label must be provided.\n\n" 1>&2
        rc=$RC_MISSING_INPUT
    else
        if [[ $uc_val == "ALL" ]]; then
            application_controllers=""
            typeset available
            CL=$LINENO KLIB_HACMP_list_cod available
            for (( i=0; i<${#available[*]}; i++ )); do
                        application_controllers="$application_controllers ${available[$i]}"
            done

        else
            for application_controller in $application_controllers; do
                CL=$LINENO KLIB_HACMP_is_known_cod "$application_controller" >/dev/null
                if (( $? != RC_SUCCESS )); then
                    /usr/bin/dspmsg -s $CLMGR_SET $CLMGR_MSGS 317 "\nERROR: \"%1\$s\" is not configured for Resource Optimized High Availabity services.\n\n" "$application_controller" 1>&2
                    /usr/bin/dspmsg -s $CLMGR_SET $CLMGR_MSGS 169 "Available Application Controllers Configured for Resource Optimized High Availabity:\n\n" 1>&2

                    typeset available
                    CL=$LINENO KLIB_HACMP_list_cod available
                    for (( i=0; i<${#available[*]}; i++ )); do
                                if [[ ${available[$i]} != *([[:space:]]) ]]; then
                                    print -u2 "\t${available[$i]}"
                                fi
                    done
                    print -u2 ""
                    rc=$RC_NOT_FOUND
                else
                    CL=$LINENO KLIB_HACMP_is_known_appserver "$application_controller"
                    if (( $? != RC_SUCCESS )); then
                        /usr/bin/dspmsg -s $CLMGR_SET $CLMGR_MSGS 102 "\nERROR: \"%1\$s\" does not appear to exist!\n\n" "$application_controller" 1>&2
                        /usr/bin/dspmsg -s $CLMGR_SET $CLMGR_MSGS 140 "Available Application Controllers:\n\n" 1>&2

                        typeset available
                        CL=$LINENO KLIB_HACMP_list_appservers available
                        for (( i=0; i<${#available[*]}; i++ )); do
                                    if [[ ${available[$i]} != *([[:space:]]) ]]; then
                                        print -u2 "\t${available[$i]}"
                                    fi
                        done
                        print -u2 ""
                        rc=$RC_NOT_FOUND
                    fi
                fi
            done
        fi
    fi

    if (( $rc == RC_UNKNOWN )); then
        for application_controller in $application_controllers; do
            print -- "$0()[$LINENO]($SECONDS): clchserv -o \"$application_controller\" -u 0 -m 0.0 -c 0 -p 0.0 -v 0" >>$CLMGR_TMPLOG
            clchserv -o "$application_controller" -u 0 -m 0.0 -c 0 -p 0.0 -v 0
            rc=$?
            print -- "$0()[$LINENO]($SECONDS): clchserv -o \"$application_controller\" -u 0 -m 0.0 -c 0 -p 0.0 -v 0 rc=$rc" >>$CLMGR_TMPLOG

            if (( $rc != RC_SUCCESS )); then
                rc=$RC_ERROR
                /usr/bin/dspmsg -s $CLMGR_SET $CLMGR_MSGS 318 "\nERROR: failed to remove the Resource Optimized High Availability settings from \"%1\$s\".\n\n" "$application_controller" 1>&2
                break
            fi
        done
    fi

    #=======================================================================
    : If a user input error was detected, provide some helpful suggestions
    #=======================================================================
    if (( $rc == RC_MISSING_INPUT || $rc == RC_INCORRECT_INPUT )) && \
        [[ $CLMGR_GUI == *([[:space:]]) ]]; then
        CL=$LINENO cl_dspmsg -s $CLMGR_SET $CLMGR_MSGS 104 "For more information about available options and syntax, try\n\"$HAUTILS/clmgr %1\$s\". As an\nalternative, if the PowerHA SystemMirror man pages have been installed, invoke\n\"$HAUTILS/clmgr -hv\" (or \"/usr/bin/man clmgr\"),\nsearching for \"%2\$s\" in the displayed text.\n\n" \
            "delete cod -h" "COD:" "$CLMGR_PROGNAME" 1>&2
    fi

    log_return_msg "$rc" "$0()" "$LINENO"
    return $?
} # End of "KLIB_HACMP_delete_cod()"
