]> SALOME platform Git repositories - modules/yacs.git/blob - src/engine/NbBranches.hxx
Salome HOME
Ready to unplug nbOfBranches from foreach
[modules/yacs.git] / src / engine / NbBranches.hxx
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 #pragma once
21
22 #include "YACSlibEngineExport.hxx"
23 #include "AnyInputPort.hxx"
24
25 #include <memory>
26
27 namespace YACS
28 {
29   namespace ENGINE
30   {
31     class Node;
32     class YACSLIBENGINE_EXPORT NbBranchesAbstract
33     {
34       public:
35         virtual std::unique_ptr<NbBranchesAbstract> copy(Node *node) const = 0;
36         virtual bool isMyName(const std::string& name) const = 0;
37         virtual void exInit(bool start) = 0;
38         virtual InputPort *getPort() const = 0;
39         virtual bool isMultiplicitySpecified(unsigned& value) const = 0;
40         virtual void forceMultiplicity(unsigned value) = 0;
41         virtual int getIntValue() const = 0;
42         static bool IsBranchPortName(const std::string& name);
43       protected:
44         static const char NAME_OF_NUMBER_OF_BRANCHES[];
45     };
46
47     class YACSLIBENGINE_EXPORT NbBranches : public NbBranchesAbstract
48     {
49       public:
50         NbBranches(Node *node):_nbOfBranches(NAME_OF_NUMBER_OF_BRANCHES,node,Runtime::_tc_int) { }
51         NbBranches(const NbBranches& other, Node *node):_nbOfBranches(other._nbOfBranches,node) { }
52         bool isMyName(const std::string& name) const override;
53         std::unique_ptr<NbBranchesAbstract> copy(Node *node) const override;
54         void exInit(bool start) override;
55         InputPort *getPort() const override;
56         bool isMultiplicitySpecified(unsigned& value) const override;
57         void forceMultiplicity(unsigned value) override;
58         int getIntValue() const override { return _nbOfBranches.getIntValue(); }
59       private:
60         AnyInputPort _nbOfBranches;
61     };
62
63     class YACSLIBENGINE_EXPORT NoNbBranches : public NbBranchesAbstract
64     {
65       public:
66         NoNbBranches() = default;
67         std::unique_ptr<NbBranchesAbstract> copy(Node *node) const override;
68         bool isMyName(const std::string& name) const override { return false; }
69         void exInit(bool start) override;
70         InputPort *getPort() const override;
71         bool isMultiplicitySpecified(unsigned& value) const override;
72         void forceMultiplicity(unsigned value) override;
73         int getIntValue() const override;
74     };
75   }
76 }