Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=1), | pointer, dimension(:) | :: | buffer | |||
integer, | intent(inout) | :: | offset | |||
type(ESMF_AttReconcileFlag), | optional | :: | attreconflag | |||
integer, | intent(out), | optional | :: | rc |
function ESMF_GridDeserialize(buffer, offset, & attreconflag, rc) ! ! !RETURN VALUE: type(ESMF_Grid) :: ESMF_GridDeserialize ! ! !ARGUMENTS: character, pointer, dimension(:) :: buffer integer, intent(inout) :: offset type(ESMF_AttReconcileFlag), optional :: attreconflag integer, intent(out), optional :: rc ! ! !DESCRIPTION: ! Takes a byte-stream buffer and reads the information needed to ! recreate a Grid object. Recursively calls the deserialize routines ! needed to recreate the subobjects. ! Expected to be used by {\tt ESMF\_StateReconcile()}. ! ! The arguments are: ! \begin{description} ! \item [buffer] ! Data buffer which holds the serialized information. ! \item [offset] ! Current read offset in the current buffer. This will be ! updated by this routine and return pointing to the next ! unread byte in the buffer. ! \item[{[attreconflag]}] ! Flag to tell if Attribute serialization is to be done ! \item [{[rc]}] ! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors. ! \end{description} ! !EOPI integer :: localrc type(ESMF_Grid) :: grid type(ESMF_AttReconcileFlag) :: lattreconflag ! Initialize localrc = ESMF_RC_NOT_IMPL if (present(rc)) rc = ESMF_RC_NOT_IMPL ! deal with optional attreconflag if (present(attreconflag)) then lattreconflag = attreconflag else lattreconflag = ESMF_ATTRECONCILE_OFF endif ! Call into C++ to Deserialize the Grid call c_ESMC_GridDeserialize(grid%this, buffer, offset, & lattreconflag, localrc) if (ESMF_LogFoundError(localrc, & ESMF_ERR_PASSTHRU, & ESMF_CONTEXT, rcToReturn=rc)) return ! Set return value ESMF_GridDeserialize = grid ! Set init status ESMF_INIT_SET_CREATED(ESMF_GridDeserialize) if (present(rc)) rc = ESMF_SUCCESS end function ESMF_GridDeserialize