Salome HOME
Correction of bug for HPContainers shared by different scripts.
[modules/yacs.git] / src / engine / OutputDataStreamPort.hxx
index e4c8af69f37eabc0b1cbdabced3a7b7965976c4f..9088ae43d242364f894068edf01f5ebd21ad7aac 100644 (file)
@@ -1,34 +1,62 @@
+// Copyright (C) 2006-2014  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
 #ifndef __OUTPUTDATASTREAMPORT_HXX__
 #define __OUTPUTDATASTREAMPORT_HXX__
 
+#include "YACSlibEngineExport.hxx"
 #include "OutPort.hxx"
 #include "DataStreamPort.hxx"
 #include "ConversionException.hxx"
 
-#include <list>
+#include <set>
 
 namespace YACS
 {
   namespace ENGINE
   {
+    class ElementaryNode;
     class InputDataStreamPort;
 
-    class OutputDataStreamPort : public DataStreamPort, public OutPort
+    class YACSLIBENGINE_EXPORT OutputDataStreamPort : public DataStreamPort, public OutPort
     {
+      friend class ElementaryNode;
     protected:
-      std::list<InputDataStreamPort *> _listOfInputDataStreamPort;
+      std::set<InputDataStreamPort *> _setOfInputDataStreamPort;
     public:
       static const char NAME[];
     public:
-      OutputDataStreamPort(const std::string& name, Node *node, StreamType type);
-      std::string getNameOfTypeOfCurrentInstance() const;
-      bool edAddInputDataStreamPort(InputDataStreamPort *port) throw(ConversionException);
-      void edRemoveInputDataStreamPort(InputDataStreamPort *inputPort);
-      bool addInPort(InPort *inPort) throw(Exception);
-      void removeInPort(InPort *inPort) throw(Exception);
-      bool isLinked();
+      OutputDataStreamPort(const OutputDataStreamPort& other, Node *newHelder);
+      OutputDataStreamPort(const std::string& name, Node *node, TypeCode* type);
+      virtual ~OutputDataStreamPort();
+      virtual OutputDataStreamPort *clone(Node *newHelder) const;
+      std::set<InPort *> edSetInPort() const;
+      bool isAlreadyLinkedWith(InPort *with) const;
+      virtual std::string getNameOfTypeOfCurrentInstance() const;
+      virtual bool addInPort(InPort *inPort) throw(Exception);
+      virtual bool edAddInputDataStreamPort(InputDataStreamPort *port) throw(ConversionException);
+      int edRemoveInputDataStreamPort(InputDataStreamPort *inPort, bool forward) throw(Exception);
+      void edRemoveAllLinksLinkedWithMe() throw(Exception);
+      int removeInPort(InPort *inPort, bool forward) throw(Exception);
+      virtual std::string typeName() {return "YACS__ENGINE__OutputDataStreamPort";}
     private:
-      bool isAlreadyInList(InputDataStreamPort *inputPort) const;
+      bool isAlreadyInSet(InputDataStreamPort *inPort) const;
     };
   }
 }