source: XIOS/dev/branch_yushan/src/client.hpp @ 1073

Last change on this file since 1073 was 1073, checked in by yushan, 7 years ago

add test_omp ; Using threads : modif for context_initialize

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