Salome HOME
Bug correction EDF12462 (2)
[modules/yacs.git] / src / evalyfx / YACSEvalYFXPattern.hxx
1 // Copyright (C) 2012-2015  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 // Author : Anthony Geay (EDF R&D)
20
21 #ifndef __YACSEVALYFXPATTERN_HXX__
22 #define __YACSEVALYFXPATTERN_HXX__
23
24 #include "YACSEvalPort.hxx"
25
26 #include <vector>
27
28 #ifdef WIN32
29 #define NOMINMAX
30 #endif
31
32 namespace YACS
33 {
34   namespace ENGINE
35   {
36     class Proc;
37     class TypeCode;
38     class ForEachLoop;
39     class ComposedNode;
40     class InputPyPort;
41     class SequenceAny;
42   }
43 }
44
45 class YACSEvalYFX;
46 class YACSEvalObserver;
47 class YACSEvalListOfResources;
48 class ResourcesManager_cpp;
49 class YACSEvalYFXRunOnlyPatternInternalObserver;
50
51 class YACSEvalYFXPattern
52 {
53 public:
54   virtual ~YACSEvalYFXPattern();
55   std::vector< YACSEvalInputPort *> getFreeInputPorts() const;
56   std::vector< YACSEvalOutputPort *> getFreeOutputPorts() const;
57   static YACSEvalYFXPattern *FindPatternFrom(YACSEvalYFX *boss, YACS::ENGINE::Proc *scheme, bool ownScheme);
58   void setParallelizeStatus(bool newVal) { _parallelizeStatus=newVal; }
59   bool getParallelizeStatus() const { return _parallelizeStatus; }
60   bool isAlreadyComputedResources() const;
61   void checkNonAlreadyComputedResources() const;
62   void checkAlreadyComputedResources() const;
63   void checkLocked() const;
64   void checkNonLocked() const;
65   static void CheckNodeIsOK(YACS::ENGINE::ComposedNode *node);
66   void registerObserver(YACSEvalObserver *observer);
67   YACSEvalObserver *getObserver() const { return _observer; }
68   YACSEvalYFX *getBoss() const { return _boss; }
69   virtual void setOutPortsOfInterestForEvaluation(const std::vector<YACSEvalOutputPort *>& outputs) = 0;
70   virtual void resetOutputsOfInterest() = 0;
71   virtual void generateGraph() = 0;
72   virtual void resetGeneratedGraph() = 0;
73   virtual void assignRandomVarsInputs() = 0;
74   virtual int assignNbOfBranches() = 0;
75   virtual bool isLocked() const = 0;
76   virtual YACSEvalListOfResources *giveResources() = 0;
77   virtual YACS::ENGINE::Proc *getUndergroundGeneratedGraph() const = 0;
78   virtual std::string getStatusOfRunStr() const = 0;
79   virtual std::vector<YACSEvalSeqAny *> getResults() const = 0;
80   virtual std::vector<YACSEvalSeqAny *> getResultsInCaseOfFailure(std::vector<unsigned int>& passedIds) const = 0;
81   virtual void emitStart() const = 0;
82 public:
83   static const char DFT_PROC_NAME[];
84 protected:
85   YACSEvalYFXPattern(YACSEvalYFX *boss, YACS::ENGINE::Proc *scheme, bool ownScheme);
86   YACS::ENGINE::TypeCode *createSeqTypeCodeFrom(YACS::ENGINE::Proc *scheme, const std::string& zeType);
87   void setResources(YACSEvalListOfResources *res);
88   void resetResources();
89   YACSEvalListOfResources *getResourcesInternal() const { return _res; }
90   ResourcesManager_cpp *getCatalogInAppli() const { return _rm; }
91   static YACSEvalSeqAny *BuildValueInPort(YACS::ENGINE::InputPyPort *port);
92   static YACSEvalSeqAny *BuildValueFromEngineFrmt(YACS::ENGINE::SequenceAny *data);
93 private:
94   void cleanScheme();
95 private:
96   YACSEvalYFX *_boss;
97   bool _ownScheme;
98   bool _parallelizeStatus;
99   YACS::ENGINE::Proc *_scheme;
100   ResourcesManager_cpp *_rm;
101   YACSEvalListOfResources *_res;
102   mutable YACSEvalObserver *_observer;
103 protected:
104   std::vector< YACSEvalInputPort > _inputs;
105   std::vector< YACSEvalOutputPort > _outputs;
106 public:
107   static const char ST_OK[]; // execution goes to the end without any trouble -> results can be exploited without any problem with getResults and getResultsInCaseOfFailure.
108   static const char ST_FAILED[]; // execution has reached some failed evaluation (normal errors due to incapacity of one node to evaluate) -> results can be exploited without any problem with getResultsInCaseOfFailure
109   static const char ST_ERROR[]; // execution has encountered hard errors (SIGSEGV in a server, internal error in YACS) -> results can be exploited with getResultsInCaseOfFailure but you can't make hypothesis for other ids not in passedIds.
110 };
111
112 class YACSEvalYFXRunOnlyPattern : public YACSEvalYFXPattern
113 {
114 public:
115   YACSEvalYFXRunOnlyPattern(YACSEvalYFX *boss, YACS::ENGINE::Proc *scheme, bool ownScheme, YACS::ENGINE::ComposedNode *runNode);
116   ~YACSEvalYFXRunOnlyPattern();
117   void setOutPortsOfInterestForEvaluation(const std::vector<YACSEvalOutputPort *>& outputsOfInterest);
118   void resetOutputsOfInterest();
119   void generateGraph();
120   void resetGeneratedGraph();
121   int assignNbOfBranches();
122   void assignRandomVarsInputs();
123   bool isLocked() const;
124   YACSEvalListOfResources *giveResources();
125   YACS::ENGINE::Proc *getUndergroundGeneratedGraph() const;
126   std::string getStatusOfRunStr() const;
127   std::vector<YACSEvalSeqAny *> getResults() const;
128   std::vector<YACSEvalSeqAny *> getResultsInCaseOfFailure(std::vector<unsigned int>& passedIds) const;
129   void emitStart() const;
130   //
131   YACS::ENGINE::ForEachLoop *getUndergroundForEach() const { return _FEInGeneratedGraph; }
132   static bool IsMatching(YACS::ENGINE::Proc *scheme, YACS::ENGINE::ComposedNode *& runNode);
133 public:
134   static const char FIRST_FE_SUBNODE_NAME[];
135   static const char GATHER_NODE_NAME[];
136 private:
137   void buildInputPorts();
138   void buildOutputPorts();
139 private:
140   YACS::ENGINE::ComposedNode *_runNode;
141   std::vector<YACSEvalOutputPort *> _outputsOfInterest;
142   YACS::ENGINE::Proc *_generatedGraph;
143   YACS::ENGINE::ForEachLoop *_FEInGeneratedGraph;
144   YACSEvalYFXRunOnlyPatternInternalObserver *_obs;
145 };
146
147 #endif