source: XIOS2/trunk/src/cxios.hpp @ 2428

Last change on this file since 2428 was 2428, checked in by jderouillat, 19 months ago

Backport the XIOS3 system to log the memory consumption (commit ID [2418-2420,2425-2426])

  • 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: 3.3 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"
[300]7
[335]8namespace xios
[300]9{
[512]10  /*!
11  \class CXios
12  */
[300]13  class CXios
14  {
[512]15    public:
[300]16     static void initialize(void) ;
[1639]17     static void initClientSide(const string & codeId, MPI_Comm& localComm, MPI_Comm& returnComm) ;
[1054]18     static void initServerSide(void) ;
[300]19     static void clientFinalize(void) ;
[346]20     static void parseFile(const string& filename) ;
[490]21
[300]22     template <typename T>
[311]23     static T getin(const string& id,const T& defaultValue) ;
[490]24
[311]25     template <typename T>
[300]26     static T getin(const string& id) ;
27
[512]28    public:
29     static string rootFile ; //!< Configuration filename
30     static string xiosCodeId ; //!< Identity for XIOS
[983]31     static string clientFile;        //!< Filename template for client
32     static string serverFile;        //!< Filename template for server
[1021]33     static string serverPrmFile;  //!< Filename template for primary server in case of two server levels
34     static string serverSndFile;  //!< Filename template for secondary server in case of two server levels
[300]35
[1622]36     static bool xiosStack;    //!< Exception handling
37     static bool systemStack;  //!< Exception handling
38
[512]39     static bool isClient ; //!< Check if xios is client
[992]40     static bool isServer ; //!< Check if xios is server
[490]41
[1639]42     static MPI_Comm globalComm ; //!< Global communicator
[490]43
[523]44     static bool printLogs2Files; //!< Printing out logs into files
[1243]45     static bool usingOasis ;     //!< Using Oasis
46     static bool usingServer ;    //!< Using server (server mode)
47     static bool usingServer2 ;   //!< Using secondary server (server mode). IMPORTANT: Use this variable ONLY in CServer::initialize().
48     static int ratioServer2 ;    //!< Percentage of server processors dedicated to secondary server
49     static int nbPoolsServer2 ;  //!< Number of pools created on the secondary server
[718]50     static double bufferSizeFactor; //!< Factor used to tune the buffer size
51     static const double defaultBufferSizeFactor; //!< Default factor value
[719]52     static StdSize minBufferSize; //!< Minimum buffer size
[1227]53     static StdSize maxBufferSize; //!< Maximum buffer size
[512]54     static bool isOptPerformance; //!< Check if buffer size is for performance (as large as possible)
[697]55     static CRegistry* globalRegistry ; //!< global registry which is wrote by the root process of the servers
[1158]56     static double recvFieldTimeout; //!< Time to wait for data before issuing an error when receiving a field
[1377]57     static bool checkEventSync; //!< For debuuging, check if event are coherent and synchrone on client side
[512]58
[2330]59     static bool checkSumSend; //!< For debugging, compute a checksum of fields sent by the model to the XIOS client (very expensive !)
60     static bool checkSumRecv; //!< For debugging, compute a checksum of fields received by the model through the XIOS client
61
[2428]62     static bool logMemory; //!< Activate memory monitoring for all XIOS process
63
[512]64    public:
[499]65     //! Setting xios to use server mode
66     static void setUsingServer();
[490]67
[499]68     //! Setting xios NOT to use server mode
69     static void setNotUsingServer();
[491]70
[512]71     //! Initialize server (if any)
[509]72     static  void initServer();
73
[512]74    private:
75      //! Parse only Xios part of configuration file
[511]76      static void parseXiosConfig();
[300]77  } ;
78}
79
[352]80//#include "cxios_impl.hpp"
[512]81#endif // __XIOS_HPP__
Note: See TracBrowser for help on using the repository browser.