source: XIOS/dev/dev_olga/src/server.cpp @ 1158

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

Two server levels: merging with trunk r1137.
There are bugs.

  • 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: 24.0 KB
RevLine 
[490]1#include "globalScopeData.hpp"
[591]2#include "xios_spl.hpp"
[300]3#include "cxios.hpp"
[342]4#include "server.hpp"
[983]5#include "client.hpp"
[300]6#include "type.hpp"
7#include "context.hpp"
[352]8#include "object_template.hpp"
[300]9#include "oasis_cinterface.hpp"
10#include <boost/functional/hash.hpp>
11#include <boost/algorithm/string.hpp>
[382]12#include "mpi.hpp"
[347]13#include "tracer.hpp"
14#include "timer.hpp"
[492]15#include "event_scheduler.hpp"
[300]16
[335]17namespace xios
[490]18{
[300]19    MPI_Comm CServer::intraComm ;
[992]20    list<MPI_Comm> CServer::interCommLeft ;
21    list<MPI_Comm> CServer::interCommRight ;
[655]22    std::list<MPI_Comm> CServer::contextInterComms;
[1071]23    std::list<MPI_Comm> CServer::contextIntraComms;
[1021]24    int CServer::serverLevel = 0 ;
[1148]25    int CServer::nbContexts = 0;
[983]26    bool CServer::isRoot = false ;
[1077]27    int CServer::rank_ = INVALID_RANK;
[490]28    StdOFStream CServer::m_infoStream;
[523]29    StdOFStream CServer::m_errorStream;
[490]30    map<string,CContext*> CServer::contextList ;
[1152]31    vector<int> CServer::sndServerGlobalRanks;
[300]32    bool CServer::finished=false ;
33    bool CServer::is_MPI_Initialized ;
[597]34    CEventScheduler* CServer::eventScheduler = 0;
[983]35
36//---------------------------------------------------------------
37/*!
38 * \fn void CServer::initialize(void)
[1054]39 * Creates intraComm for each possible type of servers (classical, primary or secondary).
40 * In case of secondary servers intraComm is created for each secondary server pool.
41 * (For now the assumption is that there is one proc per pool.)
[1148]42 * Creates interComm and stores them into the following lists:
[1054]43 *   classical server -- interCommLeft
44 *   primary server -- interCommLeft and interCommRight
[1148]45 *   secondary server -- interCommLeft for each pool.
[983]46 */
[300]47    void CServer::initialize(void)
48    {
49      int initialized ;
50      MPI_Initialized(&initialized) ;
51      if (initialized) is_MPI_Initialized=true ;
52      else is_MPI_Initialized=false ;
[1152]53      int rank ;
[490]54
[300]55      // Not using OASIS
56      if (!CXios::usingOasis)
57      {
[490]58
59        if (!is_MPI_Initialized)
[300]60        {
[925]61          MPI_Init(NULL, NULL);
[300]62        }
[359]63        CTimer::get("XIOS").resume() ;
[490]64
65        boost::hash<string> hashString ;
[1021]66        unsigned long hashServer = hashString(CXios::xiosCodeId);
[490]67
[300]68        unsigned long* hashAll ;
[1152]69        unsigned long* srvLevelAll ;
[490]70
[300]71        int size ;
72        int myColor ;
73        int i,c ;
[1152]74        MPI_Comm newComm;
[490]75
[983]76        MPI_Comm_size(CXios::globalComm, &size) ;
[1077]77        MPI_Comm_rank(CXios::globalComm, &rank_);
[1009]78
[300]79        hashAll=new unsigned long[size] ;
[983]80        MPI_Allgather(&hashServer, 1, MPI_LONG, hashAll, 1, MPI_LONG, CXios::globalComm) ;
[490]81
[1021]82        map<unsigned long, int> colors ;
[300]83        map<unsigned long, int> leaders ;
84        map<unsigned long, int>::iterator it ;
[490]85
[1142]86        int nbSrv = 0;
[1152]87        int srvNodeSize = 1, srvNodeLeader = 0;
88
89        // (1) Establish client leaders, distribute processes between two server levels
[300]90        for(i=0,c=0;i<size;i++)
91        {
92          if (colors.find(hashAll[i])==colors.end())
93          {
94            colors[hashAll[i]]=c ;
95            leaders[hashAll[i]]=i ;
96            c++ ;
97          }
[1152]98          if (CXios::usingServer2)
99          {
100            if (hashAll[i] == hashServer)
101            {
102              if (hashAll[i-1] != hashServer || i == 0)
103              {
104                srvNodeLeader = i;
105              }
106              if (hashAll[i+1] == hashServer)
107              {
108                ++srvNodeSize;
109              }
110              else
111              {
112                if ( (rank_-srvNodeLeader) >= 0 &&
113                     (rank_-srvNodeLeader) < (1.- CXios::ratioServer2/100.)*srvNodeSize )
114                {
115                  serverLevel = 1;
116                }
117                if ( (rank_-srvNodeLeader) >= (1.- CXios::ratioServer2/100.)*srvNodeSize &&
118                     (rank_ - srvNodeLeader) < srvNodeSize )
119                {
120                  serverLevel = 2;
121                }
122                srvNodeSize = 1;
123              }
124            }
125          }
[300]126        }
[490]127
[1152]128        // (2) Create intraComm
129        myColor = (serverLevel == 2) ? rank_ : colors[hashServer];
130        MPI_Comm_split(CXios::globalComm, myColor, rank_, &intraComm) ;
131
132        // (3) Create interComm
[1021]133        if (CXios::usingServer2)
[1009]134        {
[1152]135          MPI_Allgather(&serverLevel, 1, MPI_LONG, hashAll, 1, MPI_LONG, CXios::globalComm) ;
136          for (i=0; i<size; i++)
137            if (hashAll[i] == 2)
138              sndServerGlobalRanks.push_back(i);
[1009]139        }
140
[1021]141        if (serverLevel == 0)
[983]142        {
143          int clientLeader;
144          for(it=leaders.begin();it!=leaders.end();it++)
145          {
146            if (it->first!=hashServer)
147            {
148              clientLeader=it->second ;
149              int intraCommSize, intraCommRank ;
150              MPI_Comm_size(intraComm,&intraCommSize) ;
151              MPI_Comm_rank(intraComm,&intraCommRank) ;
[1142]152              info(50)<<"intercommCreate::server (classical mode) "<<rank_<<" intraCommSize : "<<intraCommSize
[983]153                       <<" intraCommRank :"<<intraCommRank<<"  clientLeader "<< clientLeader<<endl ;
[490]154
[1009]155              MPI_Intercomm_create(intraComm, 0, CXios::globalComm, clientLeader, 0, &newComm) ;
[992]156               interCommLeft.push_back(newComm) ;
[983]157            }
158          }
159        }
[1021]160        else if (serverLevel == 1)
[983]161        {
[1054]162          int clientLeader, srvSndLeader;
163          int srvPrmLeader ;
[1152]164
[1021]165          for (it=leaders.begin();it!=leaders.end();it++)
[983]166          {
[1021]167            if (it->first != hashServer)
[983]168            {
[1021]169              clientLeader=it->second ;
170              int intraCommSize, intraCommRank ;
171              MPI_Comm_size(intraComm, &intraCommSize) ;
172              MPI_Comm_rank(intraComm, &intraCommRank) ;
[1142]173              info(50)<<"intercommCreate::server (server level 1) "<<rank_<<" intraCommSize : "<<intraCommSize
[1021]174                       <<" intraCommRank :"<<intraCommRank<<"  clientLeader "<< clientLeader<<endl ;
175              MPI_Intercomm_create(intraComm, 0, CXios::globalComm, clientLeader, 0, &newComm) ;
176              interCommLeft.push_back(newComm) ;
[983]177            }
[1021]178          }
[1009]179
[1152]180          for (int i = 0; i < sndServerGlobalRanks.size(); ++i)
[983]181          {
[1054]182            int intraCommSize, intraCommRank ;
183            MPI_Comm_size(intraComm, &intraCommSize) ;
184            MPI_Comm_rank(intraComm, &intraCommRank) ;
[1142]185            info(50)<<"intercommCreate::client (server level 1) "<<rank_<<" intraCommSize : "<<intraCommSize
[1152]186                <<" intraCommRank :"<<intraCommRank<<"  clientLeader "<< sndServerGlobalRanks[i]<<endl ;
187            MPI_Intercomm_create(intraComm, 0, CXios::globalComm, sndServerGlobalRanks[i], 1, &newComm) ;
[1054]188            interCommRight.push_back(newComm) ;
[1021]189          }
190        } // primary server
191        else
192        {
193          int clientLeader;
194          clientLeader = leaders[hashString(CXios::xiosCodeId)];
195          int intraCommSize, intraCommRank ;
196          MPI_Comm_size(intraComm, &intraCommSize) ;
197          MPI_Comm_rank(intraComm, &intraCommRank) ;
[1142]198          info(50)<<"intercommCreate::server (server level 2) "<<rank_<<" intraCommSize : "<<intraCommSize
[1021]199                   <<" intraCommRank :"<<intraCommRank<<"  clientLeader "<< clientLeader<<endl ;
[983]200
[1142]201          MPI_Intercomm_create(intraComm, 0, CXios::globalComm, clientLeader, 1, &newComm) ;
[1021]202          interCommLeft.push_back(newComm) ;
203        } // secondary server
[983]204
205        delete [] hashAll ;
206
[300]207      }
208      // using OASIS
209      else
210      {
[1152]211        int size;
[1130]212        int myColor;
[490]213        if (!is_MPI_Initialized) oasis_init(CXios::xiosCodeId);
214
[359]215        CTimer::get("XIOS").resume() ;
[655]216        MPI_Comm localComm;
217        oasis_get_localcomm(localComm);
218
[1130]219        // Create server intraComm
220        if (!CXios::usingServer2)
221          MPI_Comm_dup(localComm, &intraComm);
222        else
223        {
[1152]224          MPI_Comm_rank(localComm,&rank_) ;
225          MPI_Comm_size(localComm,&size) ;
226
227          for (int i=size*CXios::ratioServer2/100; i<size; i++)
228            sndServerGlobalRanks.push_back(i);
229
230          if ( rank_ < (size - sndServerGlobalRanks.size()) )
[1130]231          {
232            serverLevel = 1;
233            myColor = 0;
234          }
235          else
236          {
237            serverLevel = 2;
[1152]238            myColor = rank_;
[1130]239          }
[1152]240          MPI_Comm_split(localComm, myColor, rank_, &intraComm) ;
[1130]241
242        }
[300]243        MPI_Comm_size(intraComm,&size) ;
244        string codesId=CXios::getin<string>("oasis_codes_id") ;
[490]245
[300]246        vector<string> splitted ;
[483]247        boost::split( splitted, codesId, boost::is_any_of(","), boost::token_compress_on ) ;
[300]248        vector<string>::iterator it ;
249
250        MPI_Comm newComm ;
251        int globalRank ;
252        MPI_Comm_rank(CXios::globalComm,&globalRank);
[490]253
[300]254        for(it=splitted.begin();it!=splitted.end();it++)
255        {
256          oasis_get_intercomm(newComm,*it) ;
[1130]257//        interComm.push_back(newComm) ;
258          if ( !CXios::usingServer2)
[1150]259          {
[1130]260            interCommLeft.push_back(newComm) ;
[1150]261            if (rank_==0) MPI_Send(&globalRank,1,MPI_INT,0,0,newComm) ;
262          }
[1130]263          else
264          {
265            if (serverLevel == 1)
266            {
[1150]267              interCommLeft.push_back(newComm) ;
268              if (rank_==0) MPI_Send(&globalRank,1,MPI_INT,0,0,newComm) ;
[1152]269              for (int i = 0; i < sndServerGlobalRanks.size(); ++i)
[1150]270              {
[1152]271                int srvSndLeader = sndServerGlobalRanks[i];
[1150]272                info(50)<<"intercommCreate::client (server level 1) "<<globalRank<<" intraCommSize : "<<size
273                    <<" intraCommRank :"<<rank_<<"  clientLeader "<< srvSndLeader<<endl ;
274                MPI_Intercomm_create(intraComm, 0, CXios::globalComm, srvSndLeader, 0, &newComm) ;
275                interCommRight.push_back(newComm) ;
276              }
[1130]277            }
278            else if (serverLevel == 2)
279            {
280              info(50)<<"intercommCreate::server "<<rank_<<" intraCommSize : "<<size
281                       <<" intraCommRank :"<<rank_<<"  clientLeader "<< 0<<endl ;
282              MPI_Intercomm_create(intraComm, 0, localComm, 0, 0, &newComm) ;
283              interCommLeft.push_back(newComm) ;
284            }
285          }
286//          MPI_Comm_remote_size(newComm,&size);
[300]287        }
[492]288              oasis_enddef() ;
[300]289      }
[490]290
[1152]291      MPI_Comm_rank(intraComm, &rank) ;
292      if (rank==0) isRoot=true;
[490]293      else isRoot=false;
[492]294     
295      eventScheduler = new CEventScheduler(intraComm) ;
[300]296    }
[490]297
[300]298    void CServer::finalize(void)
299    {
[361]300      CTimer::get("XIOS").suspend() ;
[697]301     
[492]302      delete eventScheduler ;
[655]303
304      for (std::list<MPI_Comm>::iterator it = contextInterComms.begin(); it != contextInterComms.end(); it++)
305        MPI_Comm_free(&(*it));
[983]306
[1071]307      for (std::list<MPI_Comm>::iterator it = contextIntraComms.begin(); it != contextIntraComms.end(); it++)
308        MPI_Comm_free(&(*it));
309
[992]310//      for (std::list<MPI_Comm>::iterator it = interComm.begin(); it != interComm.end(); it++)
311//        MPI_Comm_free(&(*it));
312
[1077]313//        for (std::list<MPI_Comm>::iterator it = interCommLeft.begin(); it != interCommLeft.end(); it++)
314//          MPI_Comm_free(&(*it));
[983]315
[1054]316        for (std::list<MPI_Comm>::iterator it = interCommRight.begin(); it != interCommRight.end(); it++)
317          MPI_Comm_free(&(*it));
[992]318
[655]319      MPI_Comm_free(&intraComm);
320
[300]321      if (!is_MPI_Initialized)
[490]322      {
[300]323        if (CXios::usingOasis) oasis_finalize();
324        else MPI_Finalize() ;
325      }
[347]326      report(0)<<"Performance report : Time spent for XIOS : "<<CTimer::get("XIOS server").getCumulatedTime()<<endl  ;
327      report(0)<<"Performance report : Time spent in processing events : "<<CTimer::get("Process events").getCumulatedTime()<<endl  ;
328      report(0)<<"Performance report : Ratio : "<<CTimer::get("Process events").getCumulatedTime()/CTimer::get("XIOS server").getCumulatedTime()*100.<<"%"<<endl  ;
[1158]329      report(100)<<CTimer::getAllCumulatedTime()<<endl ;
[300]330    }
[490]331
[300]332     void CServer::eventLoop(void)
333     {
334       bool stop=false ;
[490]335
[347]336       CTimer::get("XIOS server").resume() ;
[300]337       while(!stop)
338       {
339         if (isRoot)
340         {
341           listenContext();
[1148]342           listenRootContext();
[300]343           if (!finished) listenFinalize() ;
344         }
345         else
346         {
347           listenRootContext();
348           if (!finished) listenRootFinalize() ;
349         }
[490]350
[300]351         contextEventLoop() ;
352         if (finished && contextList.empty()) stop=true ;
[956]353         eventScheduler->checkEvent() ;
[300]354       }
[347]355       CTimer::get("XIOS server").suspend() ;
[300]356     }
[490]357
[300]358     void CServer::listenFinalize(void)
359     {
[992]360        list<MPI_Comm>::iterator it, itr;
[300]361        int msg ;
362        int flag ;
[490]363
[992]364        for(it=interCommLeft.begin();it!=interCommLeft.end();it++)
[300]365        {
366           MPI_Status status ;
[347]367           traceOff() ;
[300]368           MPI_Iprobe(0,0,*it,&flag,&status) ;
[347]369           traceOn() ;
[300]370           if (flag==true)
371           {
[1054]372              MPI_Recv(&msg,1,MPI_INT,0,0,*it,&status) ;
373              info(20)<<" CServer : Receive client finalize"<<endl ;
374              // Sending server finalize message to secondary servers (if any)
375              for(itr=interCommRight.begin();itr!=interCommRight.end();itr++)
376              {
377                MPI_Send(&msg,1,MPI_INT,0,0,*itr) ;
378              }
[655]379              MPI_Comm_free(&(*it));
[992]380              interCommLeft.erase(it) ;
[300]381              break ;
382            }
383         }
[490]384
[1054]385         if (interCommLeft.empty())
[300]386         {
387           int i,size ;
388           MPI_Comm_size(intraComm,&size) ;
389           MPI_Request* requests= new MPI_Request[size-1] ;
390           MPI_Status* status= new MPI_Status[size-1] ;
[490]391
[300]392           for(int i=1;i<size;i++) MPI_Isend(&msg,1,MPI_INT,i,4,intraComm,&requests[i-1]) ;
393           MPI_Waitall(size-1,requests,status) ;
394
395           finished=true ;
396           delete [] requests ;
397           delete [] status ;
398         }
399     }
[490]400
401
[300]402     void CServer::listenRootFinalize()
403     {
404        int flag ;
405        MPI_Status status ;
406        int msg ;
[490]407
[347]408        traceOff() ;
[300]409        MPI_Iprobe(0,4,intraComm, &flag, &status) ;
[347]410        traceOn() ;
[300]411        if (flag==true)
412        {
413           MPI_Recv(&msg,1,MPI_INT,0,4,intraComm,&status) ;
414           finished=true ;
415        }
416      }
[490]417
[300]418     void CServer::listenContext(void)
419     {
[490]420
[300]421       MPI_Status status ;
422       int flag ;
[1158]423       static char* buffer ;
[300]424       static MPI_Request request ;
425       static bool recept=false ;
426       int rank ;
427       int count ;
[490]428
[300]429       if (recept==false)
430       {
[347]431         traceOff() ;
[300]432         MPI_Iprobe(MPI_ANY_SOURCE,1,CXios::globalComm, &flag, &status) ;
[347]433         traceOn() ;
[490]434         if (flag==true)
[300]435         {
436           rank=status.MPI_SOURCE ;
437           MPI_Get_count(&status,MPI_CHAR,&count) ;
438           buffer=new char[count] ;
[1158]439           MPI_Irecv((void*)buffer,count,MPI_CHAR,rank,1,CXios::globalComm,&request) ;
[490]440           recept=true ;
[300]441         }
442       }
443       else
444       {
[347]445         traceOff() ;
[300]446         MPI_Test(&request,&flag,&status) ;
[347]447         traceOn() ;
[300]448         if (flag==true)
449         {
450           rank=status.MPI_SOURCE ;
451           MPI_Get_count(&status,MPI_CHAR,&count) ;
[1158]452           recvContextMessage((void*)buffer,count) ;
453           delete [] buffer ;
[490]454           recept=false ;
[300]455         }
456       }
457     }
[490]458
[300]459     void CServer::recvContextMessage(void* buff,int count)
460     {
[983]461       static map<string,contextMessage> recvContextId;
[300]462       map<string,contextMessage>::iterator it ;
463       CBufferIn buffer(buff,count) ;
464       string id ;
465       int clientLeader ;
466       int nbMessage ;
467
468       buffer>>id>>nbMessage>>clientLeader ;
[490]469
[300]470       it=recvContextId.find(id) ;
471       if (it==recvContextId.end())
[490]472       {
[300]473         contextMessage msg={0,0} ;
474         pair<map<string,contextMessage>::iterator,bool> ret ;
475         ret=recvContextId.insert(pair<string,contextMessage>(id,msg)) ;
476         it=ret.first ;
[490]477       }
[300]478       it->second.nbRecv+=1 ;
479       it->second.leaderRank+=clientLeader ;
[490]480
[300]481       if (it->second.nbRecv==nbMessage)
[490]482       {
[300]483         int size ;
484         MPI_Comm_size(intraComm,&size) ;
[1148]485//         MPI_Request* requests= new MPI_Request[size-1] ;
486//         MPI_Status* status= new MPI_Status[size-1] ;
487         MPI_Request* requests= new MPI_Request[size] ;
488         MPI_Status* status= new MPI_Status[size] ;
[490]489
[1148]490         CMessage msg ;
491         msg<<id<<it->second.leaderRank;
492         int messageSize=msg.size() ;
493         void * sendBuff = new char[messageSize] ;
494         CBufferOut sendBuffer(sendBuff,messageSize) ;
495         sendBuffer<<msg ;
496
497         // Include root itself in order not to have a divergence
498         for(int i=0; i<size; i++)
[300]499         {
[1148]500           MPI_Isend(sendBuff,count,MPI_CHAR,i,2,intraComm,&requests[i]) ;
[300]501         }
502
[1148]503//         for(int i=1;i<size;i++)
504//         {
505//            MPI_Isend(buff,count,MPI_CHAR,i,2,intraComm,&requests[i-1]) ;
506//         }
507//         MPI_Waitall(size-1,requests,status) ;
508//         registerContext(buff,count,it->second.leaderRank) ;
509
[300]510         recvContextId.erase(it) ;
511         delete [] requests ;
512         delete [] status ;
513
514       }
[490]515     }
516
[300]517     void CServer::listenRootContext(void)
518     {
519       MPI_Status status ;
520       int flag ;
521       static void* buffer ;
522       static MPI_Request request ;
523       static bool recept=false ;
524       int rank ;
[1148]525//       int count ;
526       static int count ;
[300]527       const int root=0 ;
[1148]528       boost::hash<string> hashString;
529       size_t hashId = hashString("RegisterContext");
[490]530
[1148]531       // (1) Receive context id from the root
[300]532       if (recept==false)
533       {
[347]534         traceOff() ;
[300]535         MPI_Iprobe(root,2,intraComm, &flag, &status) ;
[347]536         traceOn() ;
[490]537         if (flag==true)
[300]538         {
539           MPI_Get_count(&status,MPI_CHAR,&count) ;
540           buffer=new char[count] ;
[1158]541           MPI_Irecv((void*)buffer,count,MPI_CHAR,root,2,intraComm,&request) ;
[490]542           recept=true ;
[300]543         }
544       }
[1148]545       // (2) If context id is received, save it into a buffer and register an event
[300]546       else
547       {
548         MPI_Test(&request,&flag,&status) ;
549         if (flag==true)
550         {
551           MPI_Get_count(&status,MPI_CHAR,&count) ;
[1148]552           eventScheduler->registerEvent(nbContexts,hashId);
[1158]553//           registerContext((void*)buffer,count) ;
[1148]554//           delete [] buffer ;
[490]555           recept=false ;
[300]556         }
557       }
[1148]558       // (3) If event has been scheduled, call register context
559       if (eventScheduler->queryEvent(nbContexts,hashId))
560       {
561         registerContext(buffer,count) ;
562         ++nbContexts;
563         delete [] buffer ;
564       }
[490]565     }
566
[655]567     void CServer::registerContext(void* buff, int count, int leaderRank)
[300]568     {
569       string contextId;
[655]570       CBufferIn buffer(buff, count);
[1148]571//       buffer >> contextId;
572       buffer >> contextId>>leaderRank;
[983]573       CContext* context;
[300]574
[680]575       info(20) << "CServer : Register new Context : " << contextId << endl;
[490]576
[680]577       if (contextList.find(contextId) != contextList.end())
578         ERROR("void CServer::registerContext(void* buff, int count, int leaderRank)",
579               << "Context '" << contextId << "' has already been registred");
[490]580
[983]581       context=CContext::create(contextId);
[655]582       contextList[contextId]=context;
583
[1148]584       // Primary or classical server: create communication channel with a client
585       // (1) create interComm (with a client)
586       // (2) initialize client and server (contextClient and contextServer)
[1071]587       MPI_Comm inter;
[1054]588       if (serverLevel < 2)
589       {
590         MPI_Comm contextInterComm;
591         MPI_Intercomm_create(intraComm, 0, CXios::globalComm, leaderRank, 10+leaderRank, &contextInterComm);
592         MPI_Intercomm_merge(contextInterComm,1,&inter);
593         MPI_Barrier(inter);
594         MPI_Comm_free(&inter);
595         context->initServer(intraComm,contextInterComm);
596         contextInterComms.push_back(contextInterComm);
[1071]597
[1054]598       }
[1148]599       // Secondary server: create communication channel with a primary server
600       // (1) duplicate interComm with a primary server
601       // (2) initialize client and server (contextClient and contextServer)
602       // Remark: in the case of the secondary server there is no need to create an interComm calling MPI_Intercomm_create,
603       //         because interComm of CContext is defined on the same processes as the interComm of CServer.
604       //         So just duplicate it.
[1054]605       else if (serverLevel == 2)
606       {
[1071]607         MPI_Comm_dup(interCommLeft.front(), &inter);
608         contextInterComms.push_back(inter);
609         context->initServer(intraComm, contextInterComms.back());
[1054]610       }
611
[1148]612       // Primary server:
613       // (1) send create context message to secondary servers
614       // (2) initialize communication channels with secondary servers (create contextClient and contextServer)
[1021]615       if (serverLevel == 1)
[983]616       {
[1054]617         int i = 0, size;
618         CMessage msg;
619         int messageSize;
620         MPI_Comm_size(intraComm, &size) ;
621         for (std::list<MPI_Comm>::iterator it = interCommRight.begin(); it != interCommRight.end(); it++, ++i)
622         {
623           StdString str = contextId +"_server_" + boost::lexical_cast<string>(i);
[1077]624           msg<<str<<size<<rank_ ;
[1054]625           messageSize = msg.size() ;
626           buff = new char[messageSize] ;
627           CBufferOut buffer(buff,messageSize) ;
628           buffer<<msg ;
[1152]629           MPI_Send(buff, buffer.count(), MPI_CHAR, sndServerGlobalRanks[i], 1, CXios::globalComm) ;
[1071]630           MPI_Comm_dup(*it, &inter);
631           contextInterComms.push_back(inter);
632           MPI_Comm_dup(intraComm, &inter);
633           contextIntraComms.push_back(inter);
634           context->initClient(contextIntraComms.back(), contextInterComms.back()) ;
[1054]635           delete [] buff ;
636         }
[983]637       }
[490]638     }
639
[300]640     void CServer::contextEventLoop(void)
641     {
[1130]642       bool isFinalized ;
[300]643       map<string,CContext*>::iterator it ;
[983]644
[490]645       for(it=contextList.begin();it!=contextList.end();it++)
[300]646       {
[1130]647         isFinalized=it->second->isFinalized();
648         if (isFinalized)
[300]649         {
650           contextList.erase(it) ;
651           break ;
652         }
[1054]653         else
[1139]654           it->second->checkBuffersAndListen();
[300]655       }
656     }
[490]657
[1148]658     //! Get rank of the current process in the intraComm
[490]659     int CServer::getRank()
660     {
[1077]661       return rank_;
[490]662     }
663
[523]664    /*!
665    * Open a file specified by a suffix and an extension and use it for the given file buffer.
666    * The file name will be suffix+rank+extension.
667    *
668    * \param fileName[in] protype file name
669    * \param ext [in] extension of the file
670    * \param fb [in/out] the file buffer
671    */
672    void CServer::openStream(const StdString& fileName, const StdString& ext, std::filebuf* fb)
673    {
674      StdStringStream fileNameClient;
675      int numDigit = 0;
676      int size = 0;
[1021]677      int id;
[523]678      MPI_Comm_size(CXios::globalComm, &size);
679      while (size)
680      {
681        size /= 10;
682        ++numDigit;
683      }
[1152]684      id = getRank();
[497]685
[1021]686      fileNameClient << fileName << "_" << std::setfill('0') << std::setw(numDigit) << id << ext;
[523]687      fb->open(fileNameClient.str().c_str(), std::ios::out);
688      if (!fb->is_open())
689        ERROR("void CServer::openStream(const StdString& fileName, const StdString& ext, std::filebuf* fb)",
690              << std::endl << "Can not open <" << fileNameClient << "> file to write the server log(s).");
691    }
[490]692
[523]693    /*!
694    * \brief Open a file stream to write the info logs
695    * Open a file stream with a specific file name suffix+rank
696    * to write the info logs.
697    * \param fileName [in] protype file name
698    */
699    void CServer::openInfoStream(const StdString& fileName)
700    {
701      std::filebuf* fb = m_infoStream.rdbuf();
702      openStream(fileName, ".out", fb);
[490]703
[523]704      info.write2File(fb);
705      report.write2File(fb);
706    }
[490]707
[523]708    //! Write the info logs to standard output
709    void CServer::openInfoStream()
710    {
711      info.write2StdOut();
712      report.write2StdOut();
713    }
[490]714
[523]715    //! Close the info logs file if it opens
716    void CServer::closeInfoStream()
717    {
718      if (m_infoStream.is_open()) m_infoStream.close();
719    }
720
721    /*!
722    * \brief Open a file stream to write the error log
723    * Open a file stream with a specific file name suffix+rank
724    * to write the error log.
725    * \param fileName [in] protype file name
726    */
727    void CServer::openErrorStream(const StdString& fileName)
728    {
729      std::filebuf* fb = m_errorStream.rdbuf();
730      openStream(fileName, ".err", fb);
731
732      error.write2File(fb);
733    }
734
735    //! Write the error log to standard error output
736    void CServer::openErrorStream()
737    {
738      error.write2StdErr();
739    }
740
741    //! Close the error log file if it opens
742    void CServer::closeErrorStream()
743    {
744      if (m_errorStream.is_open()) m_errorStream.close();
745    }
[300]746}
Note: See TracBrowser for help on using the repository browser.