recursive subroutine ESMF_CplCompDestroy(cplcomp, keywordEnforcer, &
timeout, timeoutFlag, rc)
!
! !ARGUMENTS:
type(ESMF_CplComp), intent(inout) :: cplcomp
type(ESMF_KeywordEnforcer), optional:: keywordEnforcer ! must use keywords below
integer, intent(in), optional :: timeout
logical, intent(out), optional :: timeoutFlag
integer, intent(out), optional :: rc
!
! !STATUS:
! \begin{itemize}
! \item\apiStatusCompatibleVersion{5.2.0r}
! \item\apiStatusModifiedSinceVersion{5.2.0r}
! \begin{description}
! \item[5.3.0] Added argument {\tt timeout}.
! Added argument {\tt timeoutFlag}.
! The new arguments provide access to the fault-tolerant component
! features.
! \end{description}
! \end{itemize}
!
! !DESCRIPTION:
! Destroys an {\tt ESMF\_CplComp}, releasing the resources associated
! with the object.
!
! The arguments are:
! \begin{description}
! \item[cplcomp]
! Release all resources associated with this {\tt ESMF\_CplComp}
! and mark the object as invalid. It is an error to pass this
! object into any other routines after being destroyed.
! \item[{[timeout]}]
! The maximum period in seconds that this call will wait in communications
! with the actual component, before returning with a timeout condition.
! The default is 3600, i.e. 1 hour. The {\tt timeout} argument is only
! supported for connected dual components.
! \item[{[timeoutFlag]}]
! Returns {\tt .true.} if the timeout was reached, {\tt .false.} otherwise.
! If {\tt timeoutFlag} was {\em not} provided, a timeout condition will lead
! to a return code of {\tt rc \textbackslash = ESMF\_SUCCESS}. Otherwise the
! return value of {\tt timeoutFlag} is the sole indicator of a timeout
! condition.
! \item[{[rc]}]
! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors.
! \end{description}
!
!EOP
!------------------------------------------------------------------------------
integer :: localrc ! local error localrc
! initialize return code; assume routine not implemented
if (present(rc)) rc = ESMF_RC_NOT_IMPL
localrc = ESMF_RC_NOT_IMPL
ESMF_INIT_CHECK_DEEP(ESMF_CplCompGetInit,cplcomp,rc)
! Check to see if already destroyed
if (.not.associated(cplcomp%compp)) then
if (ESMF_LogFoundError(ESMF_RC_OBJ_BAD, &
msg="CplComp not initialized or already destroyed", &
ESMF_CONTEXT, rcToReturn=rc)) return
endif
! check consistency between timeout argument and component argument
if (present(timeout).and. &
.not.ESMF_CompIsDualConnected(cplcomp%compp, rc=localrc)) then
call ESMF_LogSetError(ESMF_RC_ARG_INCOMP, &
msg="'timeout' argument is only allowed for connected dual components",&
ESMF_CONTEXT, rcToReturn=rc)
return
endif
! call Comp method
call ESMF_CompDestruct(cplcomp%compp, timeout=timeout, &
timeoutFlag=timeoutFlag, rc=localrc)
if (ESMF_LogFoundError(localrc, &
ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
! mark object invalid
call ESMF_BaseSetStatus(cplcomp%compp%base, ESMF_STATUS_INVALID, &
rc=localrc)
if (ESMF_LogFoundError(localrc, &
ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
ESMF_INIT_SET_DELETED(cplcomp)
! return successfully
if (present(rc)) rc = ESMF_SUCCESS
end subroutine ESMF_CplCompDestroy