StringVariableMap_serialize Subroutine

public subroutine StringVariableMap_serialize(map, buffer, rc)

Arguments

Type IntentOptional Attributes Name
type(StringVariableMap), intent(in), target :: map
integer, intent(inout), allocatable :: buffer(:)
integer, intent(out), optional :: rc

Calls

proc~~stringvariablemap_serialize~~CallsGraph proc~stringvariablemap_serialize StringVariableMap_serialize interface~serialize_buffer_length serialize_buffer_length proc~stringvariablemap_serialize->interface~serialize_buffer_length interface~serialize_intrinsic serialize_intrinsic proc~stringvariablemap_serialize->interface~serialize_intrinsic none~begin~2 StringVariableMap%begin proc~stringvariablemap_serialize->none~begin~2 none~key~2 StringVariableMapIterator%key proc~stringvariablemap_serialize->none~key~2 none~next~2 StringVariableMapIterator%next proc~stringvariablemap_serialize->none~next~2 none~serialize~16 Variable%serialize proc~stringvariablemap_serialize->none~serialize~16 proc~mapl_return MAPL_Return proc~stringvariablemap_serialize->proc~mapl_return proc~mapl_verify MAPL_Verify proc~stringvariablemap_serialize->proc~mapl_verify none~serialize~16->interface~serialize_buffer_length none~serialize~16->interface~serialize_intrinsic none~serialize~16->proc~mapl_return none~serialize~16->proc~mapl_verify none~serialize~9 UnlimitedEntity%serialize none~serialize~16->none~serialize~9 proc~stringattributemap_serialize StringAttributeMap_serialize none~serialize~16->proc~stringattributemap_serialize proc~stringvector_serialize StringVector_serialize none~serialize~16->proc~stringvector_serialize at at proc~mapl_return->at insert insert proc~mapl_return->insert proc~mapl_throw_exception MAPL_throw_exception proc~mapl_return->proc~mapl_throw_exception proc~mapl_verify->proc~mapl_throw_exception none~serialize~9->interface~serialize_buffer_length none~serialize~9->interface~serialize_intrinsic none~serialize~9->proc~mapl_return interface~mapl_assert MAPL_Assert none~serialize~9->interface~mapl_assert none~get_rank UnlimitedEntity%get_rank none~serialize~9->none~get_rank proc~stringattributemap_serialize->interface~serialize_buffer_length proc~stringattributemap_serialize->interface~serialize_intrinsic proc~stringattributemap_serialize->proc~mapl_return proc~stringattributemap_serialize->none~serialize~9 none~begin~49 StringAttributeMap%begin proc~stringattributemap_serialize->none~begin~49 none~key~126 StringAttributeMapIterator%key proc~stringattributemap_serialize->none~key~126 none~next~48 StringAttributeMapIterator%next proc~stringattributemap_serialize->none~next~48 proc~stringvector_serialize->interface~serialize_buffer_length proc~stringvector_serialize->interface~serialize_intrinsic begin begin proc~stringvector_serialize->begin get get proc~stringvector_serialize->get next next proc~stringvector_serialize->next none~get_rank->proc~mapl_return none~get_shape UnlimitedEntity%get_shape none~get_rank->none~get_shape

Called by

proc~~stringvariablemap_serialize~~CalledByGraph proc~stringvariablemap_serialize StringVariableMap_serialize none~serialize~18 FileMetadata%serialize none~serialize~18->proc~stringvariablemap_serialize proc~stringvariablemap_get_length StringVariableMap_get_length proc~stringvariablemap_get_length->proc~stringvariablemap_serialize proc~historycollectionvector_serialize HistoryCollectionVector_serialize proc~historycollectionvector_serialize->none~serialize~18 proc~test_serialize~5 test_serialize proc~test_serialize~5->none~serialize~18

Source Code

    subroutine StringVariableMap_serialize(map, buffer, rc)
       type (StringVariableMap), target, intent(in):: map
       integer, allocatable, intent(inout) :: buffer(:)
       integer, optional, intent(out) :: rc

       type (StringVariableMapIterator) :: iter
       character(len=:),pointer :: key
       class(Variable),pointer :: var_ptr
       integer :: length, status
       integer, allocatable :: tmp_buffer(:)

       if (allocated(buffer)) deallocate(buffer)
       allocate(buffer(0))
       iter = map%begin()
       do while (iter /= map%end())
          key => iter%key()
          buffer=[buffer,serialize_intrinsic(key)]
          var_ptr => iter%value()
          call var_ptr%serialize(tmp_buffer, status)
          _VERIFY(status)
          buffer = [buffer, tmp_buffer]
          deallocate(tmp_buffer)
          call iter%next()
       enddo
       length = serialize_buffer_length(length)+size(buffer)
       buffer = [serialize_intrinsic(length),buffer]
       _RETURN(_SUCCESS)
    end subroutine StringVariableMap_serialize