source: XIOS/dev/dev_ym/XIOS_COUPLING/src/server.hpp @ 2338

Last change on this file since 2338 was 2335, checked in by jderouillat, 2 years ago

Introduced a new service (named defaultServicesId which contains all gatherers and all IO servers) to manage oasis_enddef through the different levels of servers. OASIS integration is moved in a dedicated virtual class CThirdPartyDriver whose an instance is owned by CServer.

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