Salome HOME
Go on
authorAnthony Geay <anthony.geay@edf.fr>
Mon, 16 Mar 2020 16:07:56 +0000 (17:07 +0100)
committerAnthony Geay <anthony.geay@edf.fr>
Mon, 16 Mar 2020 16:07:56 +0000 (17:07 +0100)
src/engine/CMakeLists.txt
src/engine/InPort.hxx
src/engine/NbBranches.cxx [new file with mode: 0644]
src/engine/NbBranches.hxx [new file with mode: 0644]

index 22c37646aa93b393b2fc160a8e4296de5f1e9c59..c6e9b85ea5c3f2dc79db23076cb55baf4a537678 100644 (file)
@@ -113,6 +113,7 @@ SET(YACSlibEngine_HEADERS
   SetOfPoints.hxx
   PlayGround.hxx
   ObserverAsPlugin.hxx
+  NbBranches.hxx
   )
 
 # --- sources ---
@@ -156,6 +157,7 @@ SET(YACSlibEngine_SOURCES
   WhileLoop.cxx
   Switch.cxx
   DynParaLoop.cxx
+  NbBranches.cxx
   ForEachLoop.cxx
   OptimizerAlg.cxx
   OptimizerLoop.cxx
index bb8a221d7a0b3ee2fb9019452f4ca61597da5edb..9f393d5bc42cacefd3b92d391d8a916e9a8c9bf7 100644 (file)
@@ -54,6 +54,7 @@ namespace YACS
       friend class SplitterNode;
       friend class ComposedNode;
       friend class OptimizerLoop;
+      friend class NbBranches;
       friend class ElementaryNode; //for removeAllLinksWithMe
       friend class CollectorSwOutPort;
       friend class OutputDataStreamPort;
diff --git a/src/engine/NbBranches.cxx b/src/engine/NbBranches.cxx
new file mode 100644 (file)
index 0000000..b9528ae
--- /dev/null
@@ -0,0 +1,56 @@
+// Copyright (C) 2006-2020  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 "NbBranches.hxx"
+
+using namespace YACS::ENGINE;
+
+const char NbBranches::NAME_OF_NUMBER_OF_BRANCHES[]="nbBranches";
+
+void NbBranches::exInit(bool start)
+{
+    _nbOfBranches.exInit(start);
+}
+
+InputPort *NbBranches::getPort() const
+{
+    return const_cast<AnyInputPort *>(&_nbOfBranches);
+}
+
+bool NbBranches::isMultiplicitySpecified(unsigned& value) const
+{
+  if(_nbOfBranches.edIsManuallyInitialized())
+    if(_nbOfBranches.edGetNumberOfLinks()==0)
+    {
+      value=_nbOfBranches.getIntValue();
+      return true;
+    }   
+  return false;
+}
+
+void NbBranches::forceMultiplicity(unsigned value)
+{
+  _nbOfBranches.edRemoveAllLinksLinkedWithMe();
+  _nbOfBranches.edInit((int)value);
+}
+
+bool NbBranches::IsBranchPortName(const std::string& name)
+{
+  return name == NAME_OF_NUMBER_OF_BRANCHES;
+}
\ No newline at end of file
diff --git a/src/engine/NbBranches.hxx b/src/engine/NbBranches.hxx
new file mode 100644 (file)
index 0000000..5960da7
--- /dev/null
@@ -0,0 +1,46 @@
+// Copyright (C) 2006-2020  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
+//
+
+#pragma once
+
+#include "YACSlibEngineExport.hxx"
+#include "AnyInputPort.hxx"
+
+namespace YACS
+{
+  namespace ENGINE
+  {
+    class Node;
+    class YACSLIBENGINE_EXPORT NbBranches
+    {
+      public:
+        NbBranches(Node *node):_nbOfBranches(NAME_OF_NUMBER_OF_BRANCHES,node,Runtime::_tc_int) { }
+        NbBranches(const NbBranches& other, Node *node):_nbOfBranches(other._nbOfBranches,node) { }
+        void exInit(bool start);
+        InputPort *getPort() const;
+        bool isMultiplicitySpecified(unsigned& value) const;
+        void forceMultiplicity(unsigned value);
+        int getIntValue() const { return _nbOfBranches.getIntValue(); }
+        static bool IsBranchPortName(const std::string& name);
+      private:
+        AnyInputPort _nbOfBranches;
+        static const char NAME_OF_NUMBER_OF_BRANCHES[];
+    };
+  }
+}