source: XIOS/dev/dev_olga/src/buffer_client.cpp @ 1071

Last change on this file since 1071 was 1071, checked in by oabramkina, 7 years ago

dev: test for secondary servers added.

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
  • Property svn:eol-style set to native
File size: 2.9 KB
RevLine 
[591]1#include "xios_spl.hpp"
[300]2#include "exception.hpp"
[380]3#include "log.hpp"
[300]4#include "buffer_out.hpp"
5#include "buffer_client.hpp"
[317]6#include "cxios.hpp"
[382]7#include "mpi.hpp"
[347]8#include "tracer.hpp"
[300]9
[335]10namespace xios
[300]11{
[732]12  size_t CClientBuffer::maxRequestSize = 0;
[509]13
[917]14  CClientBuffer::CClientBuffer(MPI_Comm interComm, int serverRank, StdSize bufferSize, StdSize maxBufferedEvents)
15    : interComm(interComm)
16    , serverRank(serverRank)
17    , bufferSize(bufferSize)
18    , current(0)
19    , count(0)
20    , bufferedEvents(0)
21    , maxBufferedEvents(maxBufferedEvents)
22    , pending(false)
[300]23  {
[732]24    buffer[0] = new char[bufferSize]; // transform it with MPI_ALLOC_MEM later
25    buffer[1] = new char[bufferSize];
26    retBuffer = new CBufferOut(buffer[current], bufferSize);
[917]27    info(10) << "CClientBuffer: allocated 2 x " << bufferSize << " bytes for server " << serverRank << " with a maximum of " << maxBufferedEvents << " buffered events" << endl;
[300]28  }
[509]29
[300]30  CClientBuffer::~CClientBuffer()
31  {
[732]32   delete [] buffer[0];
33   delete [] buffer[1];
34   delete retBuffer;
[300]35  }
[509]36
[300]37  int CClientBuffer::remain(void)
38  {
[732]39    return bufferSize - count;
[300]40  }
[509]41
[300]42  bool CClientBuffer::isBufferFree(int size)
43  {
[732]44    if (size > maxRequestSize) maxRequestSize = size;
[509]45
[732]46    if (size > bufferSize)
47      ERROR("bool CClientBuffer::isBufferFree(int size)",
48            << "The requested size (" << size << " bytes) is too big to fit the buffer (" << bufferSize << " bytes), please increase the client buffer size." << endl);
[509]49
[917]50    return (size <= remain() && bufferedEvents < maxBufferedEvents);
[300]51  }
[509]52
53
[732]54  CBufferOut* CClientBuffer::getBuffer(int size)
[300]55  {
[732]56    if (size <= remain())
[300]57    {
[732]58      retBuffer->realloc(buffer[current] + count, size);
59      count += size;
[917]60      bufferedEvents++;
[732]61      return retBuffer;
[300]62    }
63    else
64    {
[732]65      ERROR("CBufferOut* CClientBuffer::getBuffer(int size)",
66            << "Not enough space in buffer, this should not have happened...");
67      return NULL;
[300]68    }
[509]69  }
70
[300]71  bool CClientBuffer::checkBuffer(void)
72  {
[732]73    MPI_Status status;
74    int flag;
[509]75
[1071]76    int error, errclass, len;
77    char errstring[MPI_MAX_ERROR_STRING];
78
[300]79    if (pending)
80    {
[732]81      traceOff();
82      MPI_Test(&request, &flag, &status);
83      traceOn();
84      if (flag == true) pending = false;
[300]85    }
86
87    if (!pending)
88    {
[732]89      if (count > 0)
[300]90      {
[1071]91        MPI_Errhandler_set(interComm,MPI_ERRORS_RETURN);
92        error = MPI_Issend(buffer[current], count, MPI_CHAR, serverRank, 20, interComm, &request);
93        if (error != MPI_SUCCESS)
94        {
95          MPI_Error_class(error, &errclass);
96          MPI_Error_string(error, errstring, &len);
97          ERROR("MPI error class: ", <<errclass<<" MPI error "<<errstring );
98        }
[732]99        pending = true;
100        if (current == 1) current = 0;
101        else current = 1;
102        count = 0;
[917]103        bufferedEvents = 0;
[300]104      }
105    }
[732]106
107    return pending;
[300]108  }
[509]109
[300]110  bool CClientBuffer::hasPendingRequest(void)
111  {
[732]112    return (pending || count > 0);
[300]113  }
[509]114}
Note: See TracBrowser for help on using the repository browser.