Salome HOME
Add a generic widget for choosing resource parameters.
[modules/yacs.git] / src / engine / AbstractPoint.hxx
1 // Copyright (C) 2015-2016  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 #ifndef __ABSTRACTPOINT_HXX__
21 #define __ABSTRACTPOINT_HXX__
22
23 #include "YACSlibEngineExport.hxx"
24
25 #include <list>
26 #include <vector>
27 #include <string>
28
29 namespace YACS
30 {
31   namespace ENGINE
32   {
33     class Node;
34     class InGate;
35     class OutGate;
36     class BlocPoint;
37     class ForkBlocPoint;
38     class LinkedBlocPoint;
39     
40     class YACSLIBENGINE_EXPORT AbstractPoint
41     {
42     public:
43       AbstractPoint(AbstractPoint *father):_father(father) { }
44       AbstractPoint *getFather() const { return _father; }
45       AbstractPoint *getGodFather();
46       bool amIGod() { return getGodFather()==0; }
47       void setFather(AbstractPoint *father) { _father=father; }
48       //
49       bool isBegin();
50       bool isLast();
51       bool isSimplyLinkedBeforeAfter(BlocPoint *sop);
52       bool isSimplyLinkedAfterNullBefore(BlocPoint *sop);
53       bool isSimplyLinkedBeforeNullAfter(BlocPoint *sop);
54       //
55       LinkedBlocPoint *tryAsLink(BlocPoint *sop);
56       ForkBlocPoint *tryAsFork(BlocPoint *sop);
57       ForkBlocPoint *tryAsForkBis(BlocPoint *sop);
58       ForkBlocPoint *tryAsForkTer(BlocPoint *sop);
59       //
60       virtual Node *getFirstNode() = 0;
61       virtual Node *getLastNode() = 0;
62       virtual AbstractPoint *findPointWithNode(Node *node) = 0;
63       virtual bool contains(Node *node) = 0;
64       virtual int getNumberOfNodes() const = 0;
65       virtual int getMaxLevelOfParallelism() const = 0;
66       virtual std::string getRepr() const = 0;
67       virtual ~AbstractPoint();
68     public:
69       static bool IsGatherB4Ext(Node *node);
70       bool isSimplyLinkedAfter(BlocPoint *sop, Node *node);
71       static bool IsSimplyLinkedAfterExt(Node *node);
72       static bool IsScatterAfterExt(Node *node);
73       bool isSimplyLinkedBefore(BlocPoint *sop, Node *node);
74       static bool IsSimplyLinkedBeforeExt(Node *node);
75       static bool IsNoLinksBefore(Node *node);
76       static bool IsNoLinksAfter(Node *node);
77       static Node *GetNodeB4(Node *node);
78       static Node *GetNodeAfter(Node *node);
79       static AbstractPoint *GetDirectSonOf(AbstractPoint *refFather, AbstractPoint *sonOrLittleSon);
80       static bool IsCommonDirectSonOf(AbstractPoint *refFather, const std::list<OutGate *>& outgs, AbstractPoint *&ret);
81       static bool IsCommonDirectSonOf(AbstractPoint *refFather, const std::list<InGate *>& ings, AbstractPoint *&ret);
82     protected:
83       AbstractPoint *_father;
84     };
85   }
86 }
87
88
89 #endif