source: XIOS/dev/dev_trunk_omp/src/client.hpp @ 1601

Last change on this file since 1601 was 1601, checked in by yushan, 5 years ago

branch_openmp merged with trunk r1597

  • 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 CClient
10  {
11    public:
12      static void initialize(const string& codeId, ep_lib::MPI_Comm& localComm, ep_lib::MPI_Comm& returnComm);
13      static void finalize(void);
14      static void registerContext(const string& id, ep_lib::MPI_Comm contextComm);
15      static void callOasisEnddef(void) ;
16
17      static ep_lib::MPI_Comm intraComm;
18      #pragma omp threadprivate(intraComm)
19
20      static ep_lib::MPI_Comm interComm;
21      #pragma omp threadprivate(interComm)
22
23      //static std::list<MPI_Comm> contextInterComms;
24      static std::list<ep_lib::MPI_Comm> *contextInterComms_ptr;
25      #pragma omp threadprivate(contextInterComms_ptr)
26
27      static int serverLeader;
28      #pragma omp threadprivate(serverLeader)
29
30      static bool is_MPI_Initialized ;
31      #pragma omp threadprivate(is_MPI_Initialized)
32
33      static ep_lib::MPI_Comm& getInterComm();
34
35      //! Get global rank without oasis and current rank in model intraComm in case of oasis
36      static int getRank();
37
38      //! Open a file stream to write the info logs
39      static void openInfoStream(const StdString& fileName);
40      //! Write the info logs to standard output
41      static void openInfoStream();
42      //! Close the info logs file if it opens
43      static void closeInfoStream();
44
45      //! Open a file stream to write the error log
46      static void openErrorStream(const StdString& fileName);
47      //! Write the error log to standard error output
48      static void openErrorStream();
49      //! Close the error log file if it opens
50      static void closeErrorStream();
51
52    protected:
53      static int rank_;                 //!< Rank in model intraComm
54      #pragma omp threadprivate(rank_)
55
56      static StdOFStream m_infoStream;
57      #pragma omp threadprivate(m_infoStream)
58      static StdOFStream m_errorStream;
59      #pragma omp threadprivate(m_errorStream)
60
61      static StdOFStream array_infoStream[16];
62      static void openStream(const StdString& fileName, const StdString& ext, std::filebuf* fb);
63  };
64}
65
66#endif
Note: See TracBrowser for help on using the repository browser.