subroutine ESMF_ClockPrint(clock, keywordEnforcer, options, preString, unit, rc)
! !ARGUMENTS:
type(ESMF_Clock), intent(in) :: clock
type(ESMF_KeywordEnforcer), optional:: keywordEnforcer ! must use keywords below
character (len=*), intent(in), optional :: options
character(*), intent(in), optional :: preString
character(*), intent(out), optional :: unit
integer, intent(out), optional :: rc
!
! !DESCRIPTION:
! Prints out an {\tt ESMF\_Clock}'s properties to {\tt stdout}, in
! support of testing and debugging. The options control the type of
! information and level of detail. \\
!
! The arguments are:
! \begin{description}
! \item[clock]
! {\tt ESMF\_Clock} to be printed out.
! \item[{[options]}]
! Print options. If none specified, prints all {\tt clock} property
! values.\\
! "advanceCount" - print the number of times the clock has been
! advanced. \\
! "alarmCount" - print the number of alarms in the clock's list. \\
! "alarmList" - print the clock's alarm list. \\
! "currTime" - print the current clock time. \\
! "direction" - print the clock's timestep direction. \\
! "name" - print the clock's name. \\
! "prevTime" - print the previous clock time. \\
! "refTime" - print the clock's reference time. \\
! "startTime" - print the clock's start time. \\
! "stopTime" - print the clock's stop time. \\
! "timeStep" - print the clock's time step. \\
! \item[{[preString]}]
! Optionally prepended string. Default to empty string.
! \item[{[unit]}]
! Internal unit, i.e. a string. Default to printing to stdout.
! \item[{[rc]}]
! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors.
! \end{description}
!
!EOP
! !REQUIREMENTS:
! TMGn.n.n
integer :: localrc ! local return code
character(len=80) :: optionsOpt
type(ESMF_Time) :: time
! Assume failure until success
if (present(rc)) rc = ESMF_RC_NOT_IMPL
localrc = ESMF_RC_NOT_IMPL
! check input
ESMF_INIT_CHECK_DEEP(ESMF_ClockGetInit,clock,rc)
if (present(unit).or.present(preString)) then
! simple, single line print format
if (present(options)) then
optionsOpt=trim(options)
else
optionsOpt="currTime"
endif
if (trim(optionsOpt)=="currTime") then
call ESMF_ClockGet(clock, currTime=time, rc=localrc)
if (ESMF_LogFoundError(localrc, ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
call ESMF_TimePrint(time, preString=preString, unit=unit, rc=localrc)
if (ESMF_LogFoundError(localrc, ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
else if (trim(optionsOpt)=="startTime") then
call ESMF_ClockGet(clock, startTime=time, rc=localrc)
if (ESMF_LogFoundError(localrc, ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
call ESMF_TimePrint(time, preString=preString, unit=unit, rc=localrc)
if (ESMF_LogFoundError(localrc, ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
else if (trim(optionsOpt)=="stopTime") then
call ESMF_ClockGet(clock, stopTime=time, rc=localrc)
if (ESMF_LogFoundError(localrc, ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
call ESMF_TimePrint(time, preString=preString, unit=unit, rc=localrc)
if (ESMF_LogFoundError(localrc, ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
else
call ESMF_LogSetError(ESMF_RC_ARG_BAD, &
msg="Unknown selection requested.", &
ESMF_CONTEXT, rcToReturn=rc)
return
endif
else
! print to STDOUT
! invoke C to C++ entry point
call ESMF_UtilIOUnitFlush (ESMF_UtilIOStdout, rc=localrc)
if (ESMF_LogFoundError(localrc, ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
call c_ESMC_ClockPrint(clock, options, localrc)
if (ESMF_LogFoundError(localrc, ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
endif
! Return success
if (present(rc)) rc = ESMF_SUCCESS
end subroutine ESMF_ClockPrint