source: XIOS/dev/dev_ym/XIOS_COUPLING/src/client.hpp @ 1878

Last change on this file since 1878 was 1765, checked in by ymipsl, 4 years ago

Some cleaning On XIOS services branch

YM

  • 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
File size: 2.1 KB
Line 
1#ifndef __CLIENT_HPP__
2#define __CLIENT_HPP__
3
4#include "xios_spl.hpp"
5#include "mpi.hpp"
6
7namespace xios
8{
9    class CPoolRessource ;
10    class CClient
11    {
12      public:
13        static void initialize(const string& codeId, MPI_Comm& localComm, MPI_Comm& returnComm);
14        static void xiosGlobalCommByFileExchange(MPI_Comm clientComm, const string& codeId) ;
15        static void xiosGlobalCommByPublishing(MPI_Comm clientComm, const string& codeId) ;
16        static void finalize(void);
17        static void registerContext(const string& id, MPI_Comm contextComm);
18        static void registerContext_old(const string& id, MPI_Comm contextComm);
19        static void callOasisEnddef(void) ; 
20       
21        static MPI_Comm intraComm;
22        static MPI_Comm interComm;
23        static std::list<MPI_Comm> contextInterComms;
24        static int serverLeader;
25        static bool is_MPI_Initialized ;
26        static MPI_Comm clientsComm_ ;
27
28        static MPI_Comm& getInterComm();
29
30        //! Get global rank without oasis and current rank in model intraComm in case of oasis
31        static int getRank();
32
33        //! Open a file stream to write the info logs
34        static void openInfoStream(const StdString& fileName);
35        //! Write the info logs to standard output
36        static void openInfoStream();
37        //! Close the info logs file if it opens
38        static void closeInfoStream();
39
40        //! Open a file stream to write the error log
41        static void openErrorStream(const StdString& fileName);
42        //! Write the error log to standard error output
43        static void openErrorStream();
44        //! Close the error log file if it opens
45        static void closeErrorStream();
46        static CPoolRessource* getPoolRessource(void) { return poolRessource_ ; }
47
48      protected:
49        static int rank_;                 //!< Rank in model intraComm
50        static StdOFStream m_infoStream;
51        static StdOFStream m_errorStream;
52
53        static void openStream(const StdString& fileName, const StdString& ext, std::filebuf* fb);
54        static CPoolRessource* poolRessource_ ;
55    };
56}
57
58#endif
Note: See TracBrowser for help on using the repository browser.