source: XIOS/trunk/src/cxios.hpp @ 1029

Last change on this file since 1029 was 1029, checked in by rlacroix, 7 years ago

Make the timeout for xios_recv_field configurable.

The new option "recv_field_timeout" can now be used to set the timeout expressed in seconds. Default value is still 10s.

  • 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 __XIOS_HPP__
2#define __XIOS_HPP__
3
4#include "xios_spl.hpp"
5#include "mpi.hpp"
6#include "registry.hpp"
7
8namespace xios
9{
10  /*!
11  \class CXios
12  */
13  class CXios
14  {
15    public:
16     static void initialize(void) ;
17     static void initClientSide(const string & codeId, MPI_Comm& localComm, MPI_Comm& returnComm) ;
18     static void initServerSide(void) ;
19     static void clientFinalize(void) ;
20     static void parseFile(const string& filename) ;
21
22     template <typename T>
23     static T getin(const string& id,const T& defaultValue) ;
24
25     template <typename T>
26     static T getin(const string& id) ;
27
28    public:
29     static string rootFile ; //!< Configuration filename
30     static string xiosCodeId ; //!< Identity for XIOS
31     static string clientFile; //!< Filename template for client
32     static string serverFile; //!< Filename template for server
33
34     static bool isClient ; //!< Check if xios is client
35     static bool isServer ; //!< Check if xios is server
36
37     static MPI_Comm globalComm ; //!< Global communicator
38
39     static bool printLogs2Files; //!< Printing out logs into files
40     static bool usingOasis ; //!< Using Oasis
41     static bool usingServer ; //!< Using server (server mode)
42     static double bufferSizeFactor; //!< Factor used to tune the buffer size
43     static const double defaultBufferSizeFactor; //!< Default factor value
44     static StdSize minBufferSize; //!< Minimum buffer size
45     static bool isOptPerformance; //!< Check if buffer size is for performance (as large as possible)
46     static CRegistry* globalRegistry ; //!< global registry which is wrote by the root process of the servers
47     static double recvFieldTimeout; //!< Time to wait for data before issuing an error when receiving a field
48
49    public:
50     //! Setting xios to use server mode
51     static void setUsingServer();
52
53     //! Setting xios NOT to use server mode
54     static void setNotUsingServer();
55
56     //! Initialize server (if any)
57     static  void initServer();
58
59    private:
60      //! Parse only Xios part of configuration file
61      static void parseXiosConfig();
62  } ;
63}
64
65//#include "cxios_impl.hpp"
66#endif // __XIOS_HPP__
Note: See TracBrowser for help on using the repository browser.