Salome HOME
bf7a8e1193b8b5d23e5eec2e558117a8933b2762
[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 bool NbBranches::isMyName(const std::string& name) const
37 {
38   return NbBranchesAbstract::IsBranchPortName(name);
39 }
40
41 void NbBranches::exInit(bool start)
42 {
43   _nbOfBranches.exInit(start);
44 }
45
46 InputPort *NbBranches::getPort() const
47 {
48   return const_cast<AnyInputPort *>(&_nbOfBranches);
49 }
50
51 bool NbBranches::isMultiplicitySpecified(unsigned& value) const
52 {
53   if(_nbOfBranches.edIsManuallyInitialized())
54     if(_nbOfBranches.edGetNumberOfLinks()==0)
55     {
56       value=_nbOfBranches.getIntValue();
57       return true;
58     }   
59   return false;
60 }
61
62 void NbBranches::forceMultiplicity(unsigned value)
63 {
64   _nbOfBranches.edRemoveAllLinksLinkedWithMe();
65   _nbOfBranches.edInit((int)value);
66 }
67
68 std::unique_ptr<NbBranchesAbstract> NoNbBranches::copy(Node *) const
69 {
70   return std::unique_ptr<NbBranchesAbstract>(new NoNbBranches);
71 }
72
73 void NoNbBranches::exInit(bool start)
74 {
75 }
76
77 InputPort *NoNbBranches::getPort() const
78 {
79   return nullptr;
80 }
81
82 bool NoNbBranches::isMultiplicitySpecified(unsigned& value) const
83 {
84   return false;
85 }
86
87 void NoNbBranches::forceMultiplicity(unsigned value)
88 {
89   throw Exception("NoNbBranches::forceMultiplicity : impossible to be forced !");
90 }
91
92 int NoNbBranches::getIntValue() const
93 {
94   throw Exception("NoNbBranches::getIntValue : no value stored !");
95 }