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

Last change on this file since 2628 was 2628, checked in by jderouillat, 6 weeks ago

New timers integration/reporting

  • 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 printProfile(void);
49        static void eventLoop(void);
50       
51        static MPI_Comm intraComm_;
52        static MPI_Comm serversComm_;
53        static std::list<MPI_Comm> interCommLeft;           // interComm between server (primary, classical or secondary) and its client (client or primary server)
54        static std::list<MPI_Comm> interCommRight;          // interComm between primary server and secondary server (non-empty only for primary server pool)
55        static std::list<MPI_Comm> contextInterComms;  // list of context intercomms
56        static std::list<MPI_Comm> contextIntraComms;  // list of context intercomms (needed only in case of secondary servers)
57        static CEventScheduler* eventScheduler;
58
59        static int serverLevel ;
60
61        struct contextMessage
62        {
63          int nbRecv;
64          int leaderRank;
65        };
66
67        static bool isRoot;
68
69        static map<string,CContext*> contextList;
70        static bool finished;
71        static bool is_MPI_Initialized;
72
73      public:
74        //! Get rank of the current process in the intraComm
75        static int getRank();
76
77        //!< Get global ranks of secondary server processes
78        static vector<int>& getSecondaryServerGlobalRanks();
79
80        //! Open a file stream to write the info logs
81        static void openInfoStream(const StdString& fileName);
82        //! Write the info logs to standard output
83        static void openInfoStream();
84        //! Close the info logs file if it opens
85        static void closeInfoStream();
86
87        //! Open a file stream to write the error log
88        static void openErrorStream(const StdString& fileName);
89        //! Write the error log to standard error output
90        static void openErrorStream();
91        //! Close the error log file if it opens
92        static void closeErrorStream();
93
94        static CServersRessource* getServersRessource(void) { return serversRessource_;}
95        static void launchServersRessource(MPI_Comm commServer) ;
96        static void finalizeServersRessource(void) ;
97        static void openStream(const StdString& fileName, const StdString& ext, std::filebuf* fb);
98     
99      private:
100        static vector<int> sndServerGlobalRanks;  //!< Global ranks of pool leaders on the secondary server
101        static int rank_;                         //!< If (!oasis) global rank, else rank in the intraComm returned by oasis
102        static int nbContexts;                    //!< Number of contexts registered by server
103        static StdOFStream m_infoStream;
104        static StdOFStream m_errorStream;
105        static CServersRessource* serversRessource_  ;
106
107        static CThirdPartyDriver* driver_;
108    };
109}
110
111#endif
Note: See TracBrowser for help on using the repository browser.