1 | #ifndef __XIOS_HPP__ |
---|
2 | #define __XIOS_HPP__ |
---|
3 | |
---|
4 | #include "xios_spl.hpp" |
---|
5 | #include "mpi.hpp" |
---|
6 | #include "registry.hpp" |
---|
7 | |
---|
8 | namespace 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 | 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 |
---|
35 | |
---|
36 | static bool xiosStack; //!< Exception handling |
---|
37 | static bool systemStack; //!< Exception handling |
---|
38 | |
---|
39 | static bool isClient ; //!< Check if xios is client |
---|
40 | static bool isServer ; //!< Check if xios is server |
---|
41 | |
---|
42 | static MPI_Comm globalComm ; //!< Global communicator |
---|
43 | |
---|
44 | static bool printLogs2Files; //!< Printing out logs into files |
---|
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 |
---|
50 | static double bufferSizeFactor; //!< Factor used to tune the buffer size |
---|
51 | static const double defaultBufferSizeFactor; //!< Default factor value |
---|
52 | static StdSize minBufferSize; //!< Minimum buffer size |
---|
53 | static StdSize maxBufferSize; //!< Maximum buffer size |
---|
54 | static bool isOptPerformance; //!< Check if buffer size is for performance (as large as possible) |
---|
55 | static CRegistry* globalRegistry ; //!< global registry which is wrote by the root process of the servers |
---|
56 | static double recvFieldTimeout; //!< Time to wait for data before issuing an error when receiving a field |
---|
57 | static bool checkEventSync; //!< For debuuging, check if event are coherent and synchrone on client side |
---|
58 | |
---|
59 | public: |
---|
60 | //! Setting xios to use server mode |
---|
61 | static void setUsingServer(); |
---|
62 | |
---|
63 | //! Setting xios NOT to use server mode |
---|
64 | static void setNotUsingServer(); |
---|
65 | |
---|
66 | //! Initialize server (if any) |
---|
67 | static void initServer(); |
---|
68 | |
---|
69 | private: |
---|
70 | //! Parse only Xios part of configuration file |
---|
71 | static void parseXiosConfig(); |
---|
72 | } ; |
---|
73 | } |
---|
74 | |
---|
75 | //#include "cxios_impl.hpp" |
---|
76 | #endif // __XIOS_HPP__ |
---|