Salome HOME
Merge branch 'omu/workloadmanager'
[modules/yacs.git] / src / engine / NbBranches.cxx
1 // Copyright (C) 2006-2020  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 #include "NbBranches.hxx"
21
22 using namespace YACS::ENGINE;
23
24 const char NbBranchesAbstract::NAME_OF_NUMBER_OF_BRANCHES[]="nbBranches";
25
26 bool NbBranchesAbstract::IsBranchPortName(const std::string& name)
27 {
28   return name == NAME_OF_NUMBER_OF_BRANCHES;
29 }
30
31 std::unique_ptr<NbBranchesAbstract> NbBranches::copy(Node *node) const
32 {
33   return std::unique_ptr<NbBranchesAbstract>(new NbBranches(*this,node));
34 }
35
36 int NbBranches::getNumberOfBranches(int) const
37 {
38   return this->getIntValue();
39 }
40
41 bool NbBranches::isMyName(const std::string& name) const
42 {
43   return NbBranchesAbstract::IsBranchPortName(name);
44 }
45
46 void NbBranches::exInit(bool start)
47 {
48   _nbOfBranches.exInit(start);
49 }
50
51 InputPort *NbBranches::getPort() const
52 {
53   return const_cast<AnyInputPort *>(&_nbOfBranches);
54 }
55
56 bool NbBranches::isMultiplicitySpecified(unsigned& value) const
57 {
58   if(_nbOfBranches.edIsManuallyInitialized())
59     if(_nbOfBranches.edGetNumberOfLinks()==0)
60     {
61       value=_nbOfBranches.getIntValue();
62       return true;
63     }
64   return false;
65 }
66
67 void NbBranches::forceMultiplicity(unsigned value)
68 {
69   _nbOfBranches.edRemoveAllLinksLinkedWithMe();
70   _nbOfBranches.edInit((int)value);
71 }
72
73 std::unique_ptr<NbBranchesAbstract> NoNbBranches::copy(Node *) const
74 {
75   return std::unique_ptr<NbBranchesAbstract>(new NoNbBranches);
76 }
77
78 int NoNbBranches::getNumberOfBranches(int nbOfElems) const
79 {
80   return nbOfElems;
81 }
82
83 void NoNbBranches::exInit(bool start)
84 {
85 }
86
87 InputPort *NoNbBranches::getPort() const
88 {
89   return nullptr;
90 }
91
92 bool NoNbBranches::isMultiplicitySpecified(unsigned& value) const
93 {
94   return false;
95 }
96
97 void NoNbBranches::forceMultiplicity(unsigned value)
98 {
99   throw Exception("NoNbBranches::forceMultiplicity : impossible to be forced !");
100 }
101
102 int NoNbBranches::getIntValue() const
103 {
104   throw Exception("NoNbBranches::getIntValue : no value stored !");
105 }