Salome HOME
Copyright update 2022
[modules/yacs.git] / src / runtime / CORBAPorts.hxx
1 // Copyright (C) 2006-2022  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef _CORBAPORTS_HXX_
21 #define _CORBAPORTS_HXX_
22
23 #include <omniORB4/CORBA.h>
24
25 #include "YACSRuntimeSALOMEExport.hxx"
26 #include "InputPort.hxx"
27 #include "OutputPort.hxx"
28 #include "Mutex.hxx"
29
30 #include <Python.h>
31
32 #include <string>
33
34 namespace YACS
35 {
36   namespace ENGINE
37   {
38 /*! \brief Class for CORBA Input Ports
39  *
40  * \ingroup Ports
41  *
42  * \see CORBANode
43  */
44     class YACSRUNTIMESALOME_EXPORT InputCorbaPort : public InputPort
45     {
46     public:
47       InputCorbaPort(const std::string& name, Node *node, TypeCode * type);
48       InputCorbaPort(const InputCorbaPort& other, Node *newHelder);
49       virtual ~InputCorbaPort();
50       bool edIsManuallyInitialized() const;
51       void edRemoveManInit();
52       virtual void put(const void *data);
53       void put(CORBA::Any *data);
54       void releaseData() override;
55       InputPort *clone(Node *newHelder) const;
56       void *get() const ;
57       virtual bool isEmpty();
58       virtual CORBA::Any * getAny();
59       virtual std::string getAsString();
60       virtual PyObject* getPyObj();
61       virtual void exSaveInit();
62       virtual void exRestoreInit();
63       virtual std::string dump();
64       virtual std::string typeName() {return "YACS__ENGINE__InputCorbaPort";}
65       virtual std::string valToStr();
66       virtual void valFromStr(std::string valstr);
67     protected:
68       CORBA::Any  _data;
69       CORBA::Any *  _initData;
70       CORBA::ORB_ptr _orb;
71     private:
72       YACS::BASES::Mutex _mutex;
73     };
74
75     class OutputCorbaPort;
76
77     YACSRUNTIMESALOME_EXPORT std::ostream & operator<<(std::ostream &os,
78                                                        const YACS::ENGINE::OutputCorbaPort& p);
79
80     class YACSRUNTIMESALOME_EXPORT OutputCorbaPort : public OutputPort
81     {
82       friend std::ostream &operator<< ( std::ostream &os,
83                                         const OutputCorbaPort& p);
84     public:
85       OutputCorbaPort(const std::string& name, Node *node, TypeCode * type);
86       OutputCorbaPort(const OutputCorbaPort& other, Node *newHelder);
87       virtual ~OutputCorbaPort();
88       virtual void put(const void *data);
89       void put(CORBA::Any *data);
90       OutputPort *clone(Node *newHelder) const;
91       virtual CORBA::Any * getAny();
92       virtual CORBA::Any * getAnyOut();
93       virtual std::string getAsString();
94       virtual PyObject* getPyObj();
95       virtual std::string dump();
96       virtual std::string typeName() {return "YACS__ENGINE__OutputCorbaPort";}
97       virtual std::string valToStr();
98       virtual void valFromStr(std::string valstr);
99     protected:
100       CORBA::Any  _data;
101       CORBA::ORB_ptr _orb;
102     private:
103       YACS::BASES::Mutex _mutex;
104     };
105
106
107   }
108 }
109
110 #endif