source: XIOS3/trunk/src/server.hpp @ 2549

Last change on this file since 2549 was 2523, checked in by ymipsl, 12 months ago

Adaptation to new hyper event scheduler.
YM

  • 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.7 KB
Line 
1#ifndef __SERVER_HPP__
2#define __SERVER_HPP__
3
4#include "xios_spl.hpp"
5#include "context.hpp"
6#include "context_client.hpp"
7#include "mpi.hpp"
8#include "event_scheduler.hpp"
9#include "oasis_cinterface.hpp"
10
11namespace xios
12{
13    class CServersRessource ;
14
15    class CThirdPartyDriver
16    {
17      public:
18        CThirdPartyDriver()
19        {
20          oasis_init(CXios::xiosCodeId);
21        };
22        virtual ~CThirdPartyDriver()
23        {
24          oasis_finalize();
25        };
26        virtual void endSynchronizedDefinition()
27        {
28          oasis_enddef();
29        };
30        virtual void getComponentCommunicator(MPI_Comm &intraComm)
31        {
32          oasis_get_localcomm(intraComm);
33        };
34    };
35 
36    class CServer
37    {
38      public:
39        static void initialize(void);
40        static void xiosGlobalCommByFileExchange(MPI_Comm serverComm) ;
41        static void xiosGlobalCommByPublishing(MPI_Comm serverComm) ;
42
43        static void listenRootOasisEnddef(void);
44        static void listenOasisEnddef(void);
45        static void testingEventScheduler(void);
46       
47        static void finalize(void);
48        static void eventLoop(void);
49       
50        static MPI_Comm intraComm_;
51        static MPI_Comm serversComm_;
52        static std::list<MPI_Comm> interCommLeft;           // interComm between server (primary, classical or secondary) and its client (client or primary server)
53        static std::list<MPI_Comm> interCommRight;          // interComm between primary server and secondary server (non-empty only for primary server pool)
54        static std::list<MPI_Comm> contextInterComms;  // list of context intercomms
55        static std::list<MPI_Comm> contextIntraComms;  // list of context intercomms (needed only in case of secondary servers)
56        static CEventScheduler* eventScheduler;
57
58        static int serverLevel ;
59
60        struct contextMessage
61        {
62          int nbRecv;
63          int leaderRank;
64        };
65
66        static bool isRoot;
67
68        static map<string,CContext*> contextList;
69        static bool finished;
70        static bool is_MPI_Initialized;
71
72      public:
73        //! Get rank of the current process in the intraComm
74        static int getRank();
75
76        //!< Get global ranks of secondary server processes
77        static vector<int>& getSecondaryServerGlobalRanks();
78
79        //! Open a file stream to write the info logs
80        static void openInfoStream(const StdString& fileName);
81        //! Write the info logs to standard output
82        static void openInfoStream();
83        //! Close the info logs file if it opens
84        static void closeInfoStream();
85
86        //! Open a file stream to write the error log
87        static void openErrorStream(const StdString& fileName);
88        //! Write the error log to standard error output
89        static void openErrorStream();
90        //! Close the error log file if it opens
91        static void closeErrorStream();
92
93        static CServersRessource* getServersRessource(void) { return serversRessource_;}
94        static void launchServersRessource(MPI_Comm commServer) ;
95        static void finalizeServersRessource(void) ;
96        static void openStream(const StdString& fileName, const StdString& ext, std::filebuf* fb);
97     
98      private:
99        static vector<int> sndServerGlobalRanks;  //!< Global ranks of pool leaders on the secondary server
100        static int rank_;                         //!< If (!oasis) global rank, else rank in the intraComm returned by oasis
101        static int nbContexts;                    //!< Number of contexts registered by server
102        static StdOFStream m_infoStream;
103        static StdOFStream m_errorStream;
104        static CServersRessource* serversRessource_  ;
105
106        static CThirdPartyDriver* driver_;
107    };
108}
109
110#endif
Note: See TracBrowser for help on using the repository browser.