source: XIOS3/trunk/src/cxios.hpp @ 2420

Last change on this file since 2420 was 2420, checked in by jderouillat, 21 months ago

Add an option (log_memory : set to false by default), to activate memory monitoring. Logs are now buffered.

  • 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: 5.9 KB
RevLine 
[300]1#ifndef __XIOS_HPP__
2#define __XIOS_HPP__
3
[591]4#include "xios_spl.hpp"
[382]5#include "mpi.hpp"
[697]6#include "registry.hpp"
[1761]7#include "ressources_manager.hpp"
8#include "services_manager.hpp"
9#include "contexts_manager.hpp"
10#include "daemons_manager.hpp"
[1878]11#include "coupler_manager.hpp"
[2209]12#include "registry_manager.hpp"
[2310]13#include "mpi_garbage_collector.hpp"
[300]14
[335]15namespace xios
[300]16{
[512]17  /*!
18  \class CXios
19  */
[300]20  class CXios
21  {
[512]22    public:
[300]23     static void initialize(void) ;
[1639]24     static void initClientSide(const string & codeId, MPI_Comm& localComm, MPI_Comm& returnComm) ;
[1054]25     static void initServerSide(void) ;
[300]26     static void clientFinalize(void) ;
[346]27     static void parseFile(const string& filename) ;
[490]28
[300]29     template <typename T>
[311]30     static T getin(const string& id,const T& defaultValue) ;
[490]31
[311]32     template <typename T>
[300]33     static T getin(const string& id) ;
34
[512]35    public:
36     static string rootFile ; //!< Configuration filename
37     static string xiosCodeId ; //!< Identity for XIOS
[983]38     static string clientFile;        //!< Filename template for client
39     static string serverFile;        //!< Filename template for server
[1021]40     static string serverPrmFile;  //!< Filename template for primary server in case of two server levels
41     static string serverSndFile;  //!< Filename template for secondary server in case of two server levels
[300]42
[1622]43     static bool xiosStack;    //!< Exception handling
44     static bool systemStack;  //!< Exception handling
45
[512]46     static bool isClient ; //!< Check if xios is client
[992]47     static bool isServer ; //!< Check if xios is server
[490]48
[1639]49     static MPI_Comm globalComm ; //!< Global communicator
[1761]50     static MPI_Comm xiosComm ; //!< Global communicator
[490]51
[523]52     static bool printLogs2Files; //!< Printing out logs into files
[1243]53     static bool usingOasis ;     //!< Using Oasis
54     static bool usingServer ;    //!< Using server (server mode)
55     static bool usingServer2 ;   //!< Using secondary server (server mode). IMPORTANT: Use this variable ONLY in CServer::initialize().
56     static int ratioServer2 ;    //!< Percentage of server processors dedicated to secondary server
57     static int nbPoolsServer2 ;  //!< Number of pools created on the secondary server
[718]58     static double bufferSizeFactor; //!< Factor used to tune the buffer size
59     static const double defaultBufferSizeFactor; //!< Default factor value
[719]60     static StdSize minBufferSize; //!< Minimum buffer size
[1227]61     static StdSize maxBufferSize; //!< Maximum buffer size
[512]62     static bool isOptPerformance; //!< Check if buffer size is for performance (as large as possible)
[697]63     static CRegistry* globalRegistry ; //!< global registry which is wrote by the root process of the servers
[1158]64     static double recvFieldTimeout; //!< Time to wait for data before issuing an error when receiving a field
[1377]65     static bool checkEventSync; //!< For debuuging, check if event are coherent and synchrone on client side
[2329]66
67     static bool checkSumSend; //!< For debugging, compute a checksum of fields sent by the model to the XIOS client (very expensive !)
68     static bool checkSumRecv; //!< For debugging, compute a checksum of fields received by the model through the XIOS client
69
[2420]70     static bool logMemory; //!< Activate memory monitoring for all XIOS process
71   
[1761]72     static const string defaultPoolId ;
73     static const string defaultServerId ;
74     static const string defaultGathererId ;
[2407]75     static const string defaultWriterId ;
76     static const string defaultReaderId ;
[2335]77     static const string defaultServicesId ;
[512]78
[2209]79     static CRegistryManager* registryManager_ ;
[1761]80     static CRessourcesManager* ressourcesManager_ ;
[1878]81     static CCouplerManager* couplerManager_ ;
[1761]82     static CServicesManager* servicesManager_ ;
83     static CContextsManager* contextsManager_ ;
84     static CDaemonsManager* daemonsManager_ ;
[2310]85     static CMpiGarbageCollector MpiGarbageCollector_  ;
[512]86    public:
[2310]87     static CMpiGarbageCollector& getMpiGarbageCollector(void) { return MpiGarbageCollector_ ; }
88    public:
[499]89     //! Setting xios to use server mode
90     static void setUsingServer();
[490]91
[499]92     //! Setting xios NOT to use server mode
93     static void setNotUsingServer();
[1761]94     
95     //! is using server mode
96     static bool isUsingServer() {return usingServer;}
[491]97
[512]98     //! Initialize server (if any)
[509]99     static  void initServer();
100
[1761]101     static void launchServicesManager( bool isXiosServer) ;
102     static void launchContextsManager(bool isXiosServer) ;
103     static void launchDaemonsManager(bool isXiosServer) ;
104     static void launchRessourcesManager(bool isXiosServer) ;
[1878]105     static void launchCouplerManager(bool isXiosServer) ;
[2209]106     static void launchRegistryManager(bool isXiosServer) ;
[1878]107   
[1764]108     static void finalizeServicesManager() ;
109     static void finalizeContextsManager() ;
110     static void finalizeDaemonsManager() ;
111     static void finalizeRessourcesManager() ;
[1878]112     static void finalizeCouplerManager() ;
[2209]113     static void finalizeRegistryManager() ;
[1764]114
[2209]115     static CRegistryManager*   getRegistryManager(void) { return registryManager_ ;}
[1761]116     static CRessourcesManager* getRessourcesManager(void) { return ressourcesManager_ ;}
[1878]117     static CCouplerManager*    getCouplerManager(void) { return couplerManager_ ;}
[1761]118     static CServicesManager*   getServicesManager(void) { return servicesManager_ ;}
119     static CContextsManager*   getContextsManager(void) { return contextsManager_ ;}
120     static CDaemonsManager*    getDaemonsManager(void) { return daemonsManager_ ;}
121     static CPoolRessource*     getPoolRessource(void) ;
[2310]122     
[1761]123     static MPI_Comm getGlobalComm(void) { return globalComm ;}
124     static MPI_Comm getXiosComm(void) { return xiosComm ;}
125     static void setXiosComm(MPI_Comm comm) { xiosComm=comm ;}
126     static CRegistry* getGlobalRegistry(void) { return globalRegistry ;}
127     static void setGlobalRegistry(CRegistry* registry) { globalRegistry=registry ;}
128
[512]129    private:
130      //! Parse only Xios part of configuration file
[511]131      static void parseXiosConfig();
[300]132  } ;
133}
134
[352]135//#include "cxios_impl.hpp"
[512]136#endif // __XIOS_HPP__
Note: See TracBrowser for help on using the repository browser.