Salome HOME
Merge branch 'V7_main'
[modules/kernel.git] / src / DSC / DSC_Basic / ConnectionManager_i.hxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  File   : ConnectionManager_i.hxx
24 //  Author : AndrĂ© RIBES (EDF)
25 //  Module : KERNEL
26 //
27 #ifndef _CONNECTION_MANAGER_I_HXX_
28 #define _CONNECTION_MANAGER_I_HXX_
29
30 #include "DSC_Basic.hxx"
31
32 #include <iostream>
33 #include <map>
34 #include <pthread.h>
35
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(DSC_Engines)
38
39 /*! \class ConnectionManager_i
40  *  \brief This class implements the interface Engines::ConnectionManager.
41  */
42 class ConnectionManager_i :
43   public virtual POA_Engines::ConnectionManager
44 {
45   public :
46     ConnectionManager_i(CORBA::ORB_ptr orb);
47     virtual ~ConnectionManager_i();
48
49     /*!
50      * CORBA method : connect two ports of two components.
51      * \see Engines::ConnectionManager::connect
52      */
53     Engines::ConnectionManager::connectionId connect(Engines::DSC_ptr uses_component, 
54                                                      const char* uses_port_name, 
55                                                      Engines::DSC_ptr provides_component, 
56                                                      const char* provides_port_name);
57
58     /*!
59      * CORBA method : releases a connection performed with 
60      * ConnectionManager_i::connect.
61      *
62      * \see Engines::ConnectionManager::disconnect
63      */
64     void disconnect(Engines::ConnectionManager::connectionId id,
65                     Engines::DSC::Message message);
66
67     /*!
68        Shutdown the ConnectionManager process.
69      */
70     void ShutdownWithExit();
71
72     /*!
73        Returns the PID of the connection manager
74      */
75     CORBA::Long getPID();
76
77   private :
78
79     struct connection_infos {
80       Engines::DSC_var uses_component; 
81       std::string uses_port_name;
82       Engines::DSC_var provides_component;
83       std::string provides_port_name;
84       Ports::Port_var provides_port;
85     };
86
87     typedef std::map<Engines::ConnectionManager::connectionId, 
88             connection_infos *> ids_type;
89     typedef std::map<Engines::ConnectionManager::connectionId, 
90             connection_infos *>::iterator ids_it_type;
91
92     ids_type ids;
93     ids_it_type ids_it;
94
95     int current_id;
96     pthread_mutex_t mutex;
97   protected:
98     CORBA::ORB_var _orb;
99 };
100
101 #endif