Version: 8.3.0
ConnectionManager_i.hxx
Go to the documentation of this file.
1 // Copyright (C) 2007-2016 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 
43  public virtual POA_Engines::ConnectionManager
44 {
45  public :
46  ConnectionManager_i(CORBA::ORB_ptr orb);
47  virtual ~ConnectionManager_i();
48 
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 
65  Engines::DSC::Message message);
66 
70  void ShutdownWithExit();
71 
75  CORBA::Long getPID();
76 
77  private :
78 
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 
91 
94 
96  pthread_mutex_t mutex;
97  protected:
98  CORBA::ORB_var _orb;
99 };
100 
101 #endif