source: XIOS/trunk/src/context_server.hpp @ 1257

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

Backport r1225 to trunk: Improve the communication protocol on server side.

  • 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: 1.3 KB
RevLine 
[300]1#ifndef __CONTEXT_SERVER_HPP__
[327]2#define __CONTEXT_SERVER_HPP__
[591]3#include "xios_spl.hpp"
[300]4#include "event_server.hpp"
5#include "buffer_server.hpp"
[382]6#include "mpi.hpp"
[300]7
[335]8namespace xios
[300]9{
[345]10  class CContext ;
[511]11
[300]12  class CContextServer
13  {
14    public:
[511]15
[345]16    CContextServer(CContext* parent,MPI_Comm intraComm,MPI_Comm interComm) ;
[1033]17    bool eventLoop(bool enableEventsProcessing = true);
[300]18    void listen(void) ;
[1254]19    bool listenPendingRequest(MPI_Status& status);
[300]20    void checkPendingRequest(void) ;
21    void processRequest(int rank, char* buff,int count) ;
22    void processEvents(void) ;
23    void dispatchEvent(CEventServer& event) ;
24    void setPendingEvent(void) ;
25    bool hasPendingEvent(void) ;
[597]26    bool hasFinished(void);
[511]27
[300]28    MPI_Comm intraComm ;
29    int intraCommSize ;
30    int intraCommRank ;
[511]31
[300]32    MPI_Comm interComm ;
33    int commSize ;
[511]34
[300]35    map<int,CServerBuffer*> buffers ;
36    map<int,MPI_Request> pendingRequest ;
37    map<int,char*> bufferRequest ;
[511]38
[300]39    map<size_t,CEventServer*> events ;
40    size_t currentTimeLine ;
[345]41    CContext* context ;
[697]42     
[300]43    bool finished ;
44    bool pendingEvent ;
[492]45    bool scheduled  ;    /*!< event of current timeline is alreading scheduled ? */
46    size_t hashId ;
[511]47    ~CContextServer() ;
48
49    private:
50      std::map<int, StdSize> mapBufferSize_;
[300]51  } ;
52
53}
54
55#endif
Note: See TracBrowser for help on using the repository browser.