Salome HOME
Copyright update 2022
[modules/yacs.git] / src / engine / OutputPort.cxx
index c17dfc1f176731055ac5f7114f088fa02611096e..d3f2646d8088d94e685e30db1ae58d4989480e58 100644 (file)
+// Copyright (C) 2006-2022  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
+//
+
 #include "OutputPort.hxx"
+#include "ComposedNode.hxx"
 #include "InputPort.hxx"
+#include "InPropertyPort.hxx"
+#include "Runtime.hxx"
+#include "Node.hxx"
+
+#include <sstream>
+#include <iostream>
+
+//#define _DEVDEBUG_
+#include "YacsTrace.hxx"
 
 using namespace YACS::ENGINE;
 using namespace std;
 
 const char OutputPort::NAME[]="OutputPort";
 
-OutputPort::OutputPort(const std::string& name, Node *node, DynType type):DataFlowPort(name,node,type),OutPort(node),Port(node)
+OutputPort::OutputPort(const OutputPort& other, Node *newHelder):DataFlowPort(other,newHelder),OutPort(other,newHelder),
+                                                                 DataPort(other,newHelder),Port(other,newHelder)
+{
+}
+
+OutputPort::OutputPort(const std::string& name, Node *node, TypeCode* type):DataFlowPort(name,node,type),OutPort(name,node,type),
+                                                                       DataPort(name,node,type),Port(node)
 {
 }
 
-std::string OutputPort::getNameOfTypeOfCurrentInstance() const
+string OutputPort::getNameOfTypeOfCurrentInstance() const
 {
   return NAME;
 }
 
-Data OutputPort::foGet() const
+void OutputPort::edRemoveAllLinksLinkedWithMe()
 {
-  return _data;
+  set<InputPort *>::iterator iter;
+  set<InputPort *> vec(_setOfInputPort);
+  for( set<InputPort *>::iterator iter2=vec.begin();iter2!=vec.end();iter2++)
+    edRemoveInputPort(*iter2,true);
+  _setOfInputPort.clear();
 }
 
 void OutputPort::exInit()
 {
-  _data.exInit();
 }
 
-void OutputPort::exPut(Data data) throw(ConversionException)
+void OutputPort::put(const void *data)
 {
-  _data=data;
-  for(list<InputPort *>::iterator iter=_listOfInputPort.begin();iter!=_listOfInputPort.end();iter++)
-    (*iter)->exAccept(data);
+  for(set<InputPort *>::iterator iter = _setOfInputPort.begin(); iter != _setOfInputPort.end(); iter++)
+    (*iter)->put(data);
 }
 
-bool OutputPort::edAddInputPort(InputPort *inputPort) throw(ConversionException)
+/**
+ * check if output type is an input type and if a data converter exists before link
+ */
+bool OutputPort::edAddInputPort(InputPort *phyPort)
 {
-  if(!Data::areStaticallyCompatible(edGetType(),inputPort->edGetType()))
-    throw ConversionException(Data::edGetTypeInPrintableForm(edGetType()),Data::edGetTypeInPrintableForm(inputPort->edGetType()));
-  if(!isAlreadyInList(inputPort))
+  DEBTRACE("OutputPort::edAddInputPort");
+  if(!isAlreadyInSet(phyPort))
     {
-      _listOfInputPort.push_back(inputPort);
-      inputPort->edNotifyReferenced();
+      InputPort *pwrap = getRuntime()->adapt(phyPort,
+                                             _node->getImplementation(),
+                                             this->edGetType());
+      _setOfInputPort.insert(pwrap);
+      modified();
+      phyPort->modified();
       return true;
     }
   else
     return false;
 }
 
-list<InputPort *> OutputPort::edListInputPort()
+bool OutputPort::edAddInPropertyPort(InPropertyPort *phyPort)
 {
-  return _listOfInputPort;
+  DEBTRACE("OutputPort::edAddInPropertyPort");
+  if(!isAlreadyInSet(phyPort))
+    {
+      InputPort *pwrap = getRuntime()->adapt(phyPort,
+                                             _node->getImplementation(),
+                                             this->edGetType());
+      _setOfInputPort.insert(pwrap);
+      modified();
+      phyPort->modified();
+      return true;
+    }
+  else
+    return false;
 }
 
-void OutputPort::edRemoveInputPort(InputPort *inputPort) throw(Exception)
+/**
+ * Remove a link by performing not only the deletion in _setOfInputPort but also dereference to the target inputPort.
+ * If 'forward' == true the forward deletion 
+ * If 'forward' == false no forward deletion performed, oneway deletion without update 'inputPort' side.
+ */
+int OutputPort::edRemoveInputPort(InputPort *inputPort, bool forward)
 {
-  if(isAlreadyInList(inputPort))
-    _listOfInputPort.remove(inputPort);
+  if(forward)
+    {
+      set<InPort *> s;
+      inputPort->getAllRepresentants(s);
+      DEBTRACE("+++");
+      for(set<InPort *>::iterator iter=s.begin();iter!=s.end();iter++)
+        {
+          DEBTRACE("---");
+          _node->getRootNode()->edRemoveLink(this,*iter);
+        }
+      return -1;
+    }
   else
-    throw Exception("OutputPort::edRemoveInputPort : link does not exist, unable to remove it");
+    {
+#ifdef NOCOVARIANT
+      InPort *publicRepr=inputPort->getPublicRepresentant();
+#else
+      InputPort *publicRepr=inputPort->getPublicRepresentant();
+#endif
+      set<InputPort *>::iterator iter;
+      for(iter=_setOfInputPort.begin();iter!=_setOfInputPort.end();iter++)
+        if((*iter)->getPublicRepresentant()==publicRepr)
+          break;
+      if(iter!=_setOfInputPort.end())
+        {
+          (*iter)->modified();
+          if((*iter)->isIntermediate())
+            delete (*iter);
+          _setOfInputPort.erase(iter);
+          modified();
+          return edGetNumberOfOutLinks();
+        }
+      else
+        throw Exception("OutputPort::edRemoveInputPort : link does not exist, unable to remove it");
+    }
 }
 
 OutputPort::~OutputPort()
 {
+  set<InputPort *>::iterator iter;
+  for(iter=_setOfInputPort.begin();iter!=_setOfInputPort.end();iter++)
+    {
+      delete (*iter);
+    }
+}
+
+bool OutputPort::isAlreadyLinkedWith(InPort *with) const
+{
+  InPort *publicRepr=with->getPublicRepresentant();
+  set<InPort *> s;
+  set<InputPort *>::const_iterator iter;
+  for(iter=_setOfInputPort.begin();iter!=_setOfInputPort.end();iter++)
+    {
+    if((*iter)->getPublicRepresentant() == publicRepr)
+      return true;
+    }
+  for(iter=_setOfInputPort.begin();iter!=_setOfInputPort.end();iter++)
+    (*iter)->getAllRepresentants(s);
+  for(set<InPort *>::iterator iter2=s.begin();iter2!=s.end();iter2++)
+    {
+    if((*iter2)->getPublicRepresentant() == publicRepr)
+      return true;
+    }
+  return false;
+}
+
+bool OutputPort::isAlreadyInSet(InputPort *inputPort) const
+{
+#ifdef NOCOVARIANT
+  InPort *publicRepr=inputPort->getPublicRepresentant();
+#else
+  InputPort *publicRepr=inputPort->getPublicRepresentant();
+#endif
+  for(set<InputPort *>::const_iterator iter=_setOfInputPort.begin();iter!=_setOfInputPort.end();iter++)
+    if((*iter)->getPublicRepresentant()==publicRepr)
+      return true;
+  return false;
 }
 
-bool OutputPort::isAlreadyInList(InputPort *inputPort) const
+bool
+OutputPort::isConnected() const
 {
-  bool ret=false;
-  for(list<InputPort *>::const_iterator iter=_listOfInputPort.begin();iter!=_listOfInputPort.end() && !ret;iter++)
-    if((*iter)==inputPort)
-      ret=true;
-  return ret;
+  return !_setOfInputPort.empty();
 }
 
-bool OutputPort::addInPort(InPort *inPort) throw(Exception)
+
+/**
+ * check compatibility of port class ( an inputPort ) before trying to create the link.
+ */
+bool OutputPort::addInPort(InPort *inPort)
 {
-  if(inPort->getNameOfTypeOfCurrentInstance()!=InputPort::NAME)
+  DEBTRACE("OutputPort::addInPort");
+  if(inPort->getNameOfTypeOfCurrentInstance()!=InputPort::NAME &&
+     inPort->getNameOfTypeOfCurrentInstance()!=InPropertyPort::NAME)
     {
-      std::string what="not compatible type of port requested during building of link FROM ";
+      string what="not compatible type of port requested during building of link FROM ";
       what+=NAME; what+=" TO "; what+=inPort->getNameOfTypeOfCurrentInstance();
       throw Exception(what);
     }
-  return edAddInputPort(static_cast<InputPort*>(inPort));
+  if (inPort->getNameOfTypeOfCurrentInstance() == InputPort::NAME)
+  {
+    return edAddInputPort(static_cast<InputPort*>(inPort));
+  }
+  else
+  {
+    return edAddInPropertyPort(static_cast<InPropertyPort*>(inPort));
+  }
 }
 
-void OutputPort::removeInPort(InPort *inPort) throw(Exception)
+/**
+ * check compatibility of port class ( an inputPort ) before trying to remove link WITHOUT forward.
+ */
+int OutputPort::removeInPort(InPort *inPort, bool forward)
 {
-  if(inPort->getNameOfTypeOfCurrentInstance()!=InputPort::NAME)
+  if(inPort->getNameOfTypeOfCurrentInstance()!=InputPort::NAME && !forward)
     {
-      std::string what="not compatible type of port requested during destruction of for link FROM ";
+      string what="not compatible type of port requested during destruction of for link FROM ";
       what+=NAME; what+=" TO "; what+=inPort->getNameOfTypeOfCurrentInstance();
       throw Exception(what);
     }
-  edRemoveInputPort(static_cast<InputPort*>(inPort));
+  return edRemoveInputPort(static_cast<InputPort*>(inPort),forward);
+}
+
+std::set<InPort *> OutputPort::edSetInPort() const
+{
+  set<InPort *> s;
+  for(set<InputPort *>::const_iterator iter=_setOfInputPort.begin();iter!=_setOfInputPort.end();iter++)
+    (*iter)->getAllRepresentants(s);
+  return s;
+}
+
+std::string OutputPort::dump()
+{
+  string xmldump = "<value><error> NO_SERIALISATION_AVAILABLE </error></value>";
+  return xmldump;
+}
+
+
+//! Returns physical links linked to this. Contrary to edSetInPort that returns semantic links.
+const std::set<InputPort *>& OutputPort::getSetOfPhyLinks() const
+{
+  return _setOfInputPort;
 }
 
-bool OutputPort::isLinked()
+//! Check validity of output port. Nothing on base class
+void OutputPort::checkBasicConsistency() const
 {
-  return _listOfInputPort.empty();
 }