source: XIOS/trunk/src/client.hpp @ 934

Last change on this file since 934 was 655, checked in by rlacroix, 9 years ago

Properly release all MPI resources.

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