source: XIOS/dev/dev_ym/XIOS_COUPLING/src/context_server.cpp @ 2287

Last change on this file since 2287 was 2287, checked in by jderouillat, 2 years ago

Fix for second level servers usage (nomenclature and recomment MPI_Win_free)

  • 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: 16.7 KB
RevLine 
[300]1#include "context_server.hpp"
2#include "buffer_in.hpp"
3#include "type.hpp"
4#include "context.hpp"
[352]5#include "object_template.hpp"
6#include "group_template.hpp"
7#include "attribute_template.hpp"
[300]8#include "domain.hpp"
[352]9#include "field.hpp"
10#include "file.hpp"
11#include "grid.hpp"
[382]12#include "mpi.hpp"
[347]13#include "tracer.hpp"
14#include "timer.hpp"
[401]15#include "cxios.hpp"
[492]16#include "event_scheduler.hpp"
17#include "server.hpp"
[1761]18#include "servers_ressource.hpp"
19#include "pool_ressource.hpp"
20#include "services.hpp"
21#include "contexts_manager.hpp"
[2130]22#include "timeline_events.hpp"
[1761]23
[492]24#include <boost/functional/hash.hpp>
[1761]25#include <random>
26#include <chrono>
[300]27
28
[335]29namespace xios
[300]30{
[1761]31  using namespace std ;
[300]32
[1853]33  CContextServer::CContextServer(CContext* parent,MPI_Comm intraComm_,MPI_Comm interComm_) 
34    : eventScheduler_(nullptr), isProcessingEvent_(false), associatedClient_(nullptr)
[300]35  {
[549]36    context=parent;
37    intraComm=intraComm_;
[1639]38    MPI_Comm_size(intraComm,&intraCommSize);
39    MPI_Comm_rank(intraComm,&intraCommRank);
[1054]40
[549]41    interComm=interComm_;
42    int flag;
[1639]43    MPI_Comm_test_inter(interComm,&flag);
[1757]44
45    if (flag) attachedMode=false ;
46    else  attachedMode=true ;
47   
[2258]48    if (flag) MPI_Comm_remote_size(interComm,&clientSize_);
49    else  MPI_Comm_size(interComm,&clientSize_);
[983]50
[1761]51   
52    SRegisterContextInfo contextInfo ;
53    CXios::getContextsManager()->getContextInfo(context->getId(), contextInfo, intraComm) ;
54
[2022]55  //  if (contextInfo.serviceType != CServicesManager::CLIENT) // we must have an event scheduler => to be retrieve from the associated services
56  //  {
[2123]57      //if (!isAttachedModeEnabled()) eventScheduler_=CXios::getPoolRessource()->getService(contextInfo.serviceId,contextInfo.partitionId)->getEventScheduler() ;
[2230]58    eventScheduler_=CXios::getPoolRessource()->getService(contextInfo.serviceId,contextInfo.partitionId)->getEventScheduler() ;
59    MPI_Comm_dup(intraComm, &processEventBarrier_) ;
[2022]60  //  }
[1761]61
62
[1757]63    currentTimeLine=1;
[549]64    scheduled=false;
65    finished=false;
[1761]66
67    // generate unique hash for server
68    auto time=chrono::system_clock::now().time_since_epoch().count() ;
69    std::default_random_engine rd(time); // not reproducible from a run to another
70    std::uniform_int_distribution<size_t> dist;
71    hashId=dist(rd) ;
72    MPI_Bcast(&hashId,1,MPI_SIZE_T,0,intraComm) ; // Bcast to all server of the context
73
74
[2259]75    if (!isAttachedModeEnabled()) MPI_Intercomm_merge(interComm_,true,&interCommMerged_) ;
76    MPI_Comm_split(intraComm_, intraCommRank, intraCommRank, &commSelf_) ; // for windows
[1757]77   
78    itLastTimeLine=lastTimeLine.begin() ;
79
80    pureOneSided=CXios::getin<bool>("pure_one_sided",false); // pure one sided communication (for test)
81    if (isAttachedModeEnabled()) pureOneSided=false ; // no one sided in attach mode
82     
[300]83  }
[992]84
[1757]85//! Attached mode is used ?
86//! \return true if attached mode is used, false otherwise
87  bool CContextServer::isAttachedModeEnabled() const
88  {
89    return attachedMode ;
90  }
91 
[300]92  void CContextServer::setPendingEvent(void)
93  {
[549]94    pendingEvent=true;
[300]95  }
[489]96
[300]97  bool CContextServer::hasPendingEvent(void)
98  {
[549]99    return pendingEvent;
[300]100  }
[489]101
[597]102  bool CContextServer::hasFinished(void)
103  {
104    return finished;
105  }
106
[1054]107  bool CContextServer::eventLoop(bool enableEventsProcessing /*= true*/)
[300]108  {
[2246]109    CTimer::get("listen request").resume();
[549]110    listen();
[2246]111    CTimer::get("listen request").suspend();
112    CTimer::get("check pending request").resume();
[549]113    checkPendingRequest();
[2246]114    checkPendingProbe() ;
115    CTimer::get("check pending request").suspend();
116    CTimer::get("check event process").resume();
[1757]117    if (enableEventsProcessing)  processEvents();
[2246]118    CTimer::get("check event process").suspend();
[549]119    return finished;
[300]120  }
[489]121
[2246]122 void CContextServer::listen(void)
123  {
124    int rank;
125    int flag;
126    int count;
127    char * addr;
128    MPI_Status status;
129    MPI_Message message ;
130    map<int,CServerBuffer*>::iterator it;
131    bool okLoop;
[1225]132
[2246]133    traceOff();
134    MPI_Improbe(MPI_ANY_SOURCE, 20,interComm,&flag,&message, &status);
135    traceOn();
136    if (flag==true) listenPendingRequest(message, status) ;
137  }
138
139  bool CContextServer::listenPendingRequest( MPI_Message &message, MPI_Status& status)
140  {
141    int count;
142    char * addr;
143    map<int,CServerBuffer*>::iterator it;
144    int rank=status.MPI_SOURCE ;
145
146    it=buffers.find(rank);
147    if (it==buffers.end()) // Receive the buffer size and allocate the buffer
148    {
[2259]149      MPI_Aint recvBuff[4] ;
150      MPI_Mrecv(recvBuff, 4, MPI_AINT,  &message, &status);
151      remoteHashId_ = recvBuff[0] ;
152      StdSize buffSize = recvBuff[1];
153      vector<MPI_Aint> winAdress(2) ;
154      winAdress[0]=recvBuff[2] ; winAdress[1]=recvBuff[3] ;
155      mapBufferSize_.insert(std::make_pair(rank, buffSize));
156
157      // create windows dynamically for one-sided
158      if (!isAttachedModeEnabled())
159      { 
160        CTimer::get("create Windows").resume() ;
161        MPI_Comm interComm ;
162        MPI_Intercomm_create(commSelf_, 0, interCommMerged_, rank, 0 , &interComm) ;
163        MPI_Intercomm_merge(interComm, true, &winComm_[rank]) ;
164        windows_[rank].resize(2) ;
165        MPI_Win_create_dynamic(MPI_INFO_NULL, winComm_[rank], &windows_[rank][0]);
166        MPI_Win_create_dynamic(MPI_INFO_NULL, winComm_[rank], &windows_[rank][1]);
167        CTimer::get("create Windows").suspend() ;
[2260]168        MPI_Barrier(winComm_[rank]) ;
[2259]169      }
170      else
171      {
172        winComm_[rank] = MPI_COMM_NULL ;
173        windows_[rank].resize(2) ;
174        windows_[rank][0] = MPI_WIN_NULL ;
175        windows_[rank][1] = MPI_WIN_NULL ;
176      }   
177
178      it=(buffers.insert(pair<int,CServerBuffer*>(rank,new CServerBuffer(windows_[rank], winAdress, 0, buffSize)))).first;
179      lastTimeLine[rank]=0 ;
180      itLastTimeLine=lastTimeLine.begin() ;
181
182      return true;
[2246]183    }
184    else
185    {
186        std::pair<MPI_Message,MPI_Status> mypair(message,status) ;
187        pendingProbe[rank].push_back(mypair) ;
188        return false;
189    }
190  }
191
192  void CContextServer::checkPendingProbe(void)
193  {
194   
195    list<int> recvProbe ;
196    list<int>::iterator itRecv ;
197    map<int, list<std::pair<MPI_Message,MPI_Status> > >::iterator itProbe;
198
199    for(itProbe=pendingProbe.begin();itProbe!=pendingProbe.end();itProbe++)
200    {
201      int rank=itProbe->first ;
202      if (pendingRequest.count(rank)==0)
203      {
204        MPI_Message& message = itProbe->second.front().first ;
205        MPI_Status& status = itProbe->second.front().second ;
206        int count ;
207        MPI_Get_count(&status,MPI_CHAR,&count);
208        map<int,CServerBuffer*>::iterator it = buffers.find(rank);
[2273]209        if ( (it->second->isBufferFree(count) && !it->second->isResizing()) // accept new request if buffer is free
210          || (it->second->isResizing() && it->second->isBufferEmpty()) )    // or if resizing wait for buffer is empty
[2246]211        {
212          char * addr;
213          addr=(char*)it->second->getBuffer(count);
214          MPI_Imrecv(addr,count,MPI_CHAR, &message, &pendingRequest[rank]);
215          bufferRequest[rank]=addr;
216          recvProbe.push_back(rank) ;
217          itProbe->second.pop_front() ;
218        }
219      }
220    }
221
222    for(itRecv=recvProbe.begin(); itRecv!=recvProbe.end(); itRecv++) if (pendingProbe[*itRecv].empty()) pendingProbe.erase(*itRecv) ;
223  }
224
225
[300]226  void CContextServer::checkPendingRequest(void)
227  {
[1639]228    map<int,MPI_Request>::iterator it;
[549]229    list<int> recvRequest;
[300]230    list<int>::iterator itRecv;
[549]231    int rank;
232    int flag;
233    int count;
[1639]234    MPI_Status status;
[2246]235   
236    if (!pendingRequest.empty()) CTimer::get("receiving requests").resume();
237    else CTimer::get("receiving requests").suspend();
[489]238
[300]239    for(it=pendingRequest.begin();it!=pendingRequest.end();it++)
240    {
[549]241      rank=it->first;
242      traceOff();
[1639]243      MPI_Test(& it->second, &flag, &status);
[549]244      traceOn();
[300]245      if (flag==true)
246      {
[1757]247        buffers[rank]->updateCurrentWindows() ;
[549]248        recvRequest.push_back(rank);
[1639]249        MPI_Get_count(&status,MPI_CHAR,&count);
[549]250        processRequest(rank,bufferRequest[rank],count);
[300]251      }
252    }
[489]253
254    for(itRecv=recvRequest.begin();itRecv!=recvRequest.end();itRecv++)
[300]255    {
[549]256      pendingRequest.erase(*itRecv);
257      bufferRequest.erase(*itRecv);
[300]258    }
259  }
[489]260
[1757]261  void CContextServer::getBufferFromClient(size_t timeLine)
262  {
[2246]263    CTimer::get("CContextServer::getBufferFromClient").resume() ;
[1757]264    if (!isAttachedModeEnabled()) // one sided desactivated in attached mode
265    { 
266      int rank ;
267      char *buffer ;
268      size_t count ; 
269
270      if (itLastTimeLine==lastTimeLine.end()) itLastTimeLine=lastTimeLine.begin() ;
271      for(;itLastTimeLine!=lastTimeLine.end();++itLastTimeLine)
272      {
273        rank=itLastTimeLine->first ;
[2246]274        if (itLastTimeLine->second < timeLine &&  pendingRequest.count(rank)==0 && buffers[rank]->isBufferEmpty())
[1757]275        {
[2246]276          if (buffers[rank]->getBufferFromClient(timeLine, buffer, count)) processRequest(rank, buffer, count);
[2262]277          if (count >= 0) ++itLastTimeLine ;
278          break ;
[1757]279        }
280      }
281    }
[2246]282    CTimer::get("CContextServer::getBufferFromClient").suspend() ;
[1757]283  }
284         
285       
[300]286  void CContextServer::processRequest(int rank, char* buff,int count)
287  {
[489]288
[549]289    CBufferIn buffer(buff,count);
290    char* startBuffer,endBuffer;
291    int size, offset;
[1757]292    size_t timeLine=0;
[549]293    map<size_t,CEventServer*>::iterator it;
[489]294
[1757]295   
[1225]296    CTimer::get("Process request").resume();
[300]297    while(count>0)
298    {
[549]299      char* startBuffer=(char*)buffer.ptr();
300      CBufferIn newBuffer(startBuffer,buffer.remain());
301      newBuffer>>size>>timeLine;
[300]302
[2130]303      if (timeLine==timelineEventNotifyChangeBufferSize)
304      {
305        buffers[rank]->notifyBufferResizing() ;
306        buffers[rank]->updateCurrentWindows() ;
[2273]307        buffers[rank]->freeBuffer(count) ;
[2260]308        info(100)<<"Receive NotifyChangeBufferSize from client rank "<<rank<<endl ;
[2130]309      } 
310      else if (timeLine==timelineEventChangeBufferSize)
311      {
312        size_t newSize ;
313        vector<MPI_Aint> winAdress(2) ;
314        newBuffer>>newSize>>winAdress[0]>>winAdress[1] ;
[2273]315        buffers[rank]->freeBuffer(count) ;
316        delete buffers[rank] ;
317        buffers[rank] = new CServerBuffer(windows_[rank], winAdress, 0, newSize) ;
[2260]318        info(100)<<"Receive ChangeBufferSize from client rank "<<rank<<"  newSize : "<<newSize<<" Address : "<<winAdress[0]<<" & "<<winAdress[1]<<endl ;
[2130]319      }
320      else
321      {
[2260]322        info(100)<<"Receive standard event from client rank "<<rank<<"  with timeLine : "<<timeLine<<endl ;
[2130]323        it=events.find(timeLine);
324        if (it==events.end()) it=events.insert(pair<int,CEventServer*>(timeLine,new CEventServer(this))).first;
325        it->second->push(rank,buffers[rank],startBuffer,size);
326        if (timeLine>0) lastTimeLine[rank]=timeLine ;
327      }
[549]328      buffer.advance(size);
329      count=buffer.remain();
[489]330    }
[1757]331   
[1225]332    CTimer::get("Process request").suspend();
[300]333  }
[489]334
[300]335  void CContextServer::processEvents(void)
336  {
[549]337    map<size_t,CEventServer*>::iterator it;
338    CEventServer* event;
[1761]339   
[1764]340//    if (context->isProcessingEvent()) return ;
341    if (isProcessingEvent_) return ;
[2130]342    if (isAttachedModeEnabled())
343      if (!CXios::getDaemonsManager()->isScheduledContext(remoteHashId_)) return ;
[489]344
[549]345    it=events.find(currentTimeLine);
[489]346    if (it!=events.end())
[300]347    {
[549]348      event=it->second;
[509]349
[300]350      if (event->isFull())
351      {
[2123]352        if (!scheduled && !isAttachedModeEnabled()) // Skip event scheduling for attached mode and reception on client side
[492]353        {
[1764]354          eventScheduler_->registerEvent(currentTimeLine,hashId);
[549]355          scheduled=true;
[492]356        }
[2123]357        else if (isAttachedModeEnabled() || eventScheduler_->queryEvent(currentTimeLine,hashId) )
[492]358        {
[2123]359
[2230]360          if (!eventScheduled_) 
[2123]361          {
[2230]362            MPI_Ibarrier(processEventBarrier_,&processEventRequest_) ;
363            eventScheduled_=true ;
364            return ;
365          }
366          else 
367          {
368            MPI_Status status ;
369            int flag ;
370            MPI_Test(&processEventRequest_, &flag, &status) ;
371            if (!flag) return ;
372            eventScheduled_=false ;
373          }
[2123]374
[2230]375          if (!isAttachedModeEnabled()) eventScheduler_->popEvent() ;
[2123]376          //MPI_Barrier(intraComm) ;
[851]377         // When using attached mode, synchronise the processes to avoid that differents event be scheduled by differents processes
378         // The best way to properly solve this problem will be to use the event scheduler also in attached mode
379         // for now just set up a MPI barrier
[1875]380//ym to be check later
381//         if (!eventScheduler_ && CXios::isServer) MPI_Barrier(intraComm) ;
[851]382
[1764]383//         context->setProcessingEvent() ;
384         isProcessingEvent_=true ;
[549]385         CTimer::get("Process events").resume();
[2022]386         info(100)<<"Received Event "<<currentTimeLine<<" of class "<<event->classId<<" of type "<<event->type<<endl ;
[549]387         dispatchEvent(*event);
388         CTimer::get("Process events").suspend();
[1764]389         isProcessingEvent_=false ;
390//         context->unsetProcessingEvent() ;
[549]391         pendingEvent=false;
392         delete event;
393         events.erase(it);
394         currentTimeLine++;
395         scheduled = false;
[2130]396         if (isAttachedModeEnabled()) CXios::getDaemonsManager()->unscheduleContext() ;
[492]397        }
398      }
[2246]399      else if (pendingRequest.empty()) getBufferFromClient(currentTimeLine) ;
[492]400    }
[2260]401    else if (pendingRequest.empty()) getBufferFromClient(currentTimeLine) ; // if pure one sided check buffer even if no event recorded at current time line
[492]402  }
[489]403
[300]404  CContextServer::~CContextServer()
405  {
[549]406    map<int,CServerBuffer*>::iterator it;
[1158]407    for(it=buffers.begin();it!=buffers.end();++it) delete it->second;
[2273]408    buffers.clear() ;
[489]409  }
[300]410
[1757]411  void CContextServer::releaseBuffers()
412  {
[2275]413    //for(auto it=buffers.begin();it!=buffers.end();++it) delete it->second ;
414    //buffers.clear() ;
[2258]415    freeWindows() ;
416  }
417
418  void CContextServer::freeWindows()
419  {
[2287]420    //if (!isAttachedModeEnabled())
421    //{
422    //  for(auto& it : winComm_)
423    //  {
424    //    int rank = it.first ;
425    //    MPI_Win_free(&windows_[rank][0]);
426    //    MPI_Win_free(&windows_[rank][1]);
427    //    MPI_Comm_free(&winComm_[rank]) ;
428    //  }
429    //}
[1757]430  }
431
432  void CContextServer::notifyClientsFinalize(void)
433  {
434    for(auto it=buffers.begin();it!=buffers.end();++it)
435    {
436      it->second->notifyClientFinalize() ;
437    }
438  }
439
[300]440  void CContextServer::dispatchEvent(CEventServer& event)
441  {
[549]442    string contextName;
443    string buff;
444    int MsgSize;
445    int rank;
446    list<CEventServer::SSubEvent>::iterator it;
[1054]447    StdString ctxId = context->getId();
448    CContext::setCurrent(ctxId);
[1130]449    StdSize totalBuf = 0;
[489]450
[300]451    if (event.classId==CContext::GetType() && event.type==CContext::EVENT_ID_CONTEXT_FINALIZE)
452    {
[597]453      finished=true;
[1194]454      info(20)<<" CContextServer: Receive context <"<<context->getId()<<"> finalize."<<endl;
[1757]455      notifyClientsFinalize() ;
[2246]456      CTimer::get("receiving requests").suspend();
[1194]457      context->finalize();
[2273]458     
[511]459      std::map<int, StdSize>::const_iterator itbMap = mapBufferSize_.begin(),
[983]460                           iteMap = mapBufferSize_.end(), itMap;
[511]461      for (itMap = itbMap; itMap != iteMap; ++itMap)
462      {
[1054]463        rank = itMap->first;
[1130]464        report(10)<< " Memory report : Context <"<<ctxId<<"> : server side : memory used for buffer of each connection to client" << endl
465            << "  +) With client of rank " << rank << " : " << itMap->second << " bytes " << endl;
466        totalBuf += itMap->second;
[511]467      }
[1130]468      report(0)<< " Memory report : Context <"<<ctxId<<"> : server side : total memory used for buffer "<<totalBuf<<" bytes"<<endl;
[300]469    }
[549]470    else if (event.classId==CContext::GetType()) CContext::dispatchEvent(event);
471    else if (event.classId==CContextGroup::GetType()) CContextGroup::dispatchEvent(event);
472    else if (event.classId==CCalendarWrapper::GetType()) CCalendarWrapper::dispatchEvent(event);
473    else if (event.classId==CDomain::GetType()) CDomain::dispatchEvent(event);
474    else if (event.classId==CDomainGroup::GetType()) CDomainGroup::dispatchEvent(event);
475    else if (event.classId==CAxis::GetType()) CAxis::dispatchEvent(event);
476    else if (event.classId==CAxisGroup::GetType()) CAxisGroup::dispatchEvent(event);
[887]477    else if (event.classId==CScalar::GetType()) CScalar::dispatchEvent(event);
478    else if (event.classId==CScalarGroup::GetType()) CScalarGroup::dispatchEvent(event);
[549]479    else if (event.classId==CGrid::GetType()) CGrid::dispatchEvent(event);
480    else if (event.classId==CGridGroup::GetType()) CGridGroup::dispatchEvent(event);
481    else if (event.classId==CField::GetType()) CField::dispatchEvent(event);
482    else if (event.classId==CFieldGroup::GetType()) CFieldGroup::dispatchEvent(event);
483    else if (event.classId==CFile::GetType()) CFile::dispatchEvent(event);
484    else if (event.classId==CFileGroup::GetType()) CFileGroup::dispatchEvent(event);
485    else if (event.classId==CVariable::GetType()) CVariable::dispatchEvent(event);
[300]486    else
487    {
[549]488      ERROR("void CContextServer::dispatchEvent(CEventServer& event)",<<" Bad event class Id"<<endl);
[300]489    }
490  }
[2230]491
492  bool CContextServer::isCollectiveEvent(CEventServer& event)
493  {
494    if (event.classId==CField::GetType()) return CField::isCollectiveEvent(event);
495    else return true ;
496  }
[300]497}
Note: See TracBrowser for help on using the repository browser.