source: XIOS/trunk/src/client.cpp @ 827

Last change on this file since 827 was 732, checked in by rlacroix, 9 years ago

CClientBuffer: Improve the error messages.

  • 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: 10.5 KB
RevLine 
[490]1#include "globalScopeData.hpp"
[591]2#include "xios_spl.hpp"
[300]3#include "cxios.hpp"
[342]4#include "client.hpp"
[300]5#include <boost/functional/hash.hpp>
6#include "type.hpp"
7#include "context.hpp"
8#include "context_client.hpp"
9#include "oasis_cinterface.hpp"
[382]10#include "mpi.hpp"
[347]11#include "timer.hpp"
[400]12#include "buffer_client.hpp"
[300]13
[335]14namespace xios
[490]15{
[300]16
17    MPI_Comm CClient::intraComm ;
18    MPI_Comm CClient::interComm ;
[655]19    std::list<MPI_Comm> CClient::contextInterComms;
[300]20    int CClient::serverLeader ;
21    bool CClient::is_MPI_Initialized ;
[490]22    int CClient::rank = INVALID_RANK;
23    StdOFStream CClient::m_infoStream;
[523]24    StdOFStream CClient::m_errorStream;
[490]25
[300]26    void CClient::initialize(const string& codeId,MPI_Comm& localComm,MPI_Comm& returnComm)
27    {
28      int initialized ;
29      MPI_Initialized(&initialized) ;
30      if (initialized) is_MPI_Initialized=true ;
31      else is_MPI_Initialized=false ;
[490]32
[300]33// don't use OASIS
34      if (!CXios::usingOasis)
35      {
36// localComm doesn't given
37        if (localComm == MPI_COMM_NULL)
38        {
[490]39          if (!is_MPI_Initialized)
[300]40          {
41            int argc=0;
42            char** argv=NULL;
43            MPI_Init(&argc,&argv) ;
44          }
[359]45          CTimer::get("XIOS").resume() ;
46          CTimer::get("XIOS init").resume() ;
[490]47          boost::hash<string> hashString ;
48
[300]49          unsigned long hashClient=hashString(codeId) ;
50          unsigned long hashServer=hashString(CXios::xiosCodeId) ;
51          unsigned long* hashAll ;
52          int size ;
53          int myColor ;
54          int i,c ;
55          MPI_Comm newComm ;
[490]56
[300]57          MPI_Comm_size(CXios::globalComm,&size) ;
58          MPI_Comm_rank(CXios::globalComm,&rank);
[490]59
[300]60          hashAll=new unsigned long[size] ;
[490]61
[300]62          MPI_Allgather(&hashClient,1,MPI_LONG,hashAll,1,MPI_LONG,CXios::globalComm) ;
63
64          map<unsigned long, int> colors ;
65          map<unsigned long, int> leaders ;
[490]66
[300]67          for(i=0,c=0;i<size;i++)
68          {
69            if (colors.find(hashAll[i])==colors.end())
70            {
71              colors[hashAll[i]] =c ;
72              leaders[hashAll[i]]=i ;
73              c++ ;
74            }
75          }
[490]76
[491]77          // Verify whether we are on server mode or not
78          CXios::setNotUsingServer();
79          for (i=0; i < size; ++i)
80          {
81            if (hashServer == hashAll[i])
82            {
83              CXios::setUsingServer();
84              break;
85            }
86          }
87
[300]88          myColor=colors[hashClient] ;
[490]89
[300]90          MPI_Comm_split(CXios::globalComm,myColor,rank,&intraComm) ;
91
92          if (CXios::usingServer)
[490]93          {
[300]94            int clientLeader=leaders[hashClient] ;
95            serverLeader=leaders[hashServer] ;
[493]96
97            int intraCommSize, intraCommRank ;
98            MPI_Comm_size(intraComm,&intraCommSize) ;
99            MPI_Comm_rank(intraComm,&intraCommRank) ;
100            info(50)<<"intercommCreate::client "<<rank<<" intraCommSize : "<<intraCommSize
101                 <<" intraCommRank :"<<intraCommRank<<"  clientLeader "<< serverLeader<<endl ;
[300]102            MPI_Intercomm_create(intraComm,0,CXios::globalComm,serverLeader,0,&interComm) ;
103          }
104          else
105          {
106            MPI_Comm_dup(intraComm,&interComm) ;
107          }
108          delete [] hashAll ;
109        }
110        // localComm argument is given
[490]111        else
[300]112        {
113          if (CXios::usingServer)
[490]114          {
[300]115            //ERROR("void CClient::initialize(const string& codeId,MPI_Comm& localComm,MPI_Comm& returnComm)", << " giving a local communictor is not compatible with using server mode") ;
116          }
117          else
118          {
119            MPI_Comm_dup(localComm,&intraComm) ;
120            MPI_Comm_dup(intraComm,&interComm) ;
121          }
122        }
123      }
124      // using OASIS
125      else
126      {
127        // localComm doesn't given
128        if (localComm == MPI_COMM_NULL)
129        {
130          if (!is_MPI_Initialized) oasis_init(codeId) ;
[655]131          oasis_get_localcomm(localComm) ;
[300]132        }
[655]133        MPI_Comm_dup(localComm,&intraComm) ;
134
[359]135        CTimer::get("XIOS").resume() ;
136        CTimer::get("XIOS init").resume() ;
[511]137
138        if (CXios::usingServer)
[300]139        {
140          MPI_Status status ;
[491]141          MPI_Comm_rank(intraComm,&rank) ;
[506]142
[300]143          oasis_get_intercomm(interComm,CXios::xiosCodeId) ;
144          if (rank==0) MPI_Recv(&serverLeader,1, MPI_INT, 0, 0, interComm, &status) ;
145          MPI_Bcast(&serverLeader,1,MPI_INT,0,intraComm) ;
[490]146
[300]147        }
148        else MPI_Comm_dup(intraComm,&interComm) ;
149      }
[490]150
[300]151      MPI_Comm_dup(intraComm,&returnComm) ;
152    }
[490]153
154
[300]155    void CClient::registerContext(const string& id,MPI_Comm contextComm)
156    {
[346]157      CContext::setCurrent(id) ;
[511]158      CContext* context=CContext::create(id);
159      StdString idServer(id);
160      idServer += "_server";
[490]161
[300]162      if (!CXios::isServer)
163      {
164        int size,rank,globalRank ;
165        size_t message_size ;
166        int leaderRank ;
167        MPI_Comm contextInterComm ;
[490]168
[300]169        MPI_Comm_size(contextComm,&size) ;
170        MPI_Comm_rank(contextComm,&rank) ;
171        MPI_Comm_rank(CXios::globalComm,&globalRank) ;
172        if (rank!=0) globalRank=0 ;
[490]173
174
[300]175        CMessage msg ;
[511]176        msg<<idServer<<size<<globalRank ;
177//        msg<<id<<size<<globalRank ;
[300]178
179        int messageSize=msg.size() ;
180        void * buff = new char[messageSize] ;
181        CBufferOut buffer(buff,messageSize) ;
182        buffer<<msg ;
[490]183
[300]184        MPI_Send(buff,buffer.count(),MPI_CHAR,serverLeader,1,CXios::globalComm) ;
185        delete [] buff ;
[490]186
[300]187        MPI_Intercomm_create(contextComm,0,CXios::globalComm,serverLeader,10+globalRank,&contextInterComm) ;
188        info(10)<<"Register new Context : "<<id<<endl ;
[490]189
[300]190        MPI_Comm inter ;
191        MPI_Intercomm_merge(contextInterComm,0,&inter) ;
192        MPI_Barrier(inter) ;
193
194        context->initClient(contextComm,contextInterComm) ;
[655]195
196        contextInterComms.push_back(contextInterComm);
197        MPI_Comm_free(&inter);
[300]198      }
199      else
200      {
201        MPI_Comm contextInterComm ;
202        MPI_Comm_dup(contextComm,&contextInterComm) ;
[511]203        CContext* contextServer = CContext::create(idServer);
204
205        // Firstly, initialize context on client side
206        context->initClient(contextComm,contextInterComm, contextServer);
207
208        // Secondly, initialize context on server side
[597]209        contextServer->initServer(contextComm,contextInterComm, context);
[511]210
211        // Finally, we should return current context to context client
212        CContext::setCurrent(id);
[655]213
214        contextInterComms.push_back(contextInterComm);
[300]215      }
216    }
[490]217
[300]218    void CClient::finalize(void)
219    {
220      int rank ;
221      int msg=0 ;
[697]222
223      MPI_Comm_rank(intraComm,&rank) ;
224 
[332]225      if (!CXios::isServer)
[300]226      {
[490]227        MPI_Comm_rank(intraComm,&rank) ;
228        if (rank==0)
[332]229        {
230          MPI_Send(&msg,1,MPI_INT,0,0,interComm) ;
231        }
[300]232      }
[490]233
[655]234      for (std::list<MPI_Comm>::iterator it = contextInterComms.begin(); it != contextInterComms.end(); it++)
235        MPI_Comm_free(&(*it));
236      MPI_Comm_free(&interComm);
237      MPI_Comm_free(&intraComm);
[361]238
[655]239      CTimer::get("XIOS finalize").suspend() ;
240      CTimer::get("XIOS").suspend() ;
241
[300]242      if (!is_MPI_Initialized)
243      {
244        if (CXios::usingOasis) oasis_finalize();
245        else MPI_Finalize() ;
246      }
[697]247     
[300]248      info(20) << "Client side context is finalized"<<endl ;
[490]249      report(0) <<" Performance report : total time spent for XIOS : "<< CTimer::get("XIOS").getCumulatedTime()<<" s"<<endl ;
[347]250      report(0)<< " Performance report : time spent for waiting free buffer : "<< CTimer::get("Blocking time").getCumulatedTime()<<" s"<<endl ;
251      report(0)<< " Performance report : Ratio : "<< CTimer::get("Blocking time").getCumulatedTime()/CTimer::get("XIOS").getCumulatedTime()*100.<<" %"<<endl ;
252      report(0)<< " Performance report : This ratio must be close to zero. Otherwise it may be usefull to increase buffer size or numbers of server"<<endl ;
[511]253//      report(0)<< " Memory report : Current buffer_size : "<<CXios::bufferSize<<endl ;
[732]254      report(0)<< " Memory report : Minimum buffer size required : " << CClientBuffer::maxRequestSize << " bytes" << endl ;
[400]255      report(0)<< " Memory report : increasing it by a factor will increase performance, depending of the volume of data wrote in file at each time step of the file"<<endl ;
256   }
[490]257
258   int CClient::getRank()
259   {
260     return rank;
261   }
262
[523]263    /*!
264    * Open a file specified by a suffix and an extension and use it for the given file buffer.
265    * The file name will be suffix+rank+extension.
266    *
267    * \param fileName[in] protype file name
268    * \param ext [in] extension of the file
269    * \param fb [in/out] the file buffer
270    */
271    void CClient::openStream(const StdString& fileName, const StdString& ext, std::filebuf* fb)
272    {
273      StdStringStream fileNameClient;
274      int numDigit = 0;
275      int size = 0;
276      MPI_Comm_size(CXios::globalComm, &size);
277      while (size)
278      {
279        size /= 10;
280        ++numDigit;
281      }
[497]282
[523]283      fileNameClient << fileName << "_" << std::setfill('0') << std::setw(numDigit) << getRank() << ext;
284      fb->open(fileNameClient.str().c_str(), std::ios::out);
285      if (!fb->is_open())
286        ERROR("void CClient::openStream(const StdString& fileName, const StdString& ext, std::filebuf* fb)",
287              << std::endl << "Can not open <" << fileNameClient << "> file to write the client log(s).");
288    }
[490]289
[523]290    /*!
291    * \brief Open a file stream to write the info logs
292    * Open a file stream with a specific file name suffix+rank
293    * to write the info logs.
294    * \param fileName [in] protype file name
295    */
296    void CClient::openInfoStream(const StdString& fileName)
297    {
298      std::filebuf* fb = m_infoStream.rdbuf();
299      openStream(fileName, ".out", fb);
[490]300
[523]301      info.write2File(fb);
302      report.write2File(fb);
303    }
[490]304
[523]305    //! Write the info logs to standard output
306    void CClient::openInfoStream()
307    {
308      info.write2StdOut();
309      report.write2StdOut();
310    }
[490]311
[523]312    //! Close the info logs file if it opens
313    void CClient::closeInfoStream()
314    {
315      if (m_infoStream.is_open()) m_infoStream.close();
316    }
[490]317
[523]318    /*!
319    * \brief Open a file stream to write the error log
320    * Open a file stream with a specific file name suffix+rank
321    * to write the error log.
322    * \param fileName [in] protype file name
323    */
324    void CClient::openErrorStream(const StdString& fileName)
325    {
326      std::filebuf* fb = m_errorStream.rdbuf();
327      openStream(fileName, ".err", fb);
328
329      error.write2File(fb);
330    }
331
332    //! Write the error log to standard error output
333    void CClient::openErrorStream()
334    {
335      error.write2StdErr();
336    }
337
338    //! Close the error log file if it opens
339    void CClient::closeErrorStream()
340    {
341      if (m_errorStream.is_open()) m_errorStream.close();
342    }
[300]343}
Note: See TracBrowser for help on using the repository browser.