Salome HOME
f9ccdd5d975a72fcd1d57c798253507aa4a419fe
[modules/yacs.git] / src / evalyfx / YACSEvalYFX.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 __YACSEVALYFX_HXX__
22 #define __YACSEVALYFX_HXX__
23
24 #include "YACSEvalYFXExport.hxx"
25
26 #include <list>
27 #include <string>
28 #include <vector>
29
30 namespace YACS
31 {
32   namespace ENGINE
33   {
34     class Proc;
35   }
36 }
37
38 class YACSEvalSeqAny;
39 class YACSEvalSession;
40 class YACSEvalYFXPattern;
41 class YACSEvalInputPort;
42 class YACSEvalOutputPort;
43 class YACSEvalListOfResources;
44
45 class YACSEvalYFX
46 {
47 public:
48   YACSEVALYFX_EXPORT static YACSEvalYFX *BuildFromFile(const std::string& xmlOfScheme);
49   YACSEVALYFX_EXPORT static YACSEvalYFX *BuildFromScheme(YACS::ENGINE::Proc *scheme);
50   YACSEVALYFX_EXPORT std::list< YACSEvalInputPort * > getFreeInputPorts() const;
51   YACSEVALYFX_EXPORT std::list< YACSEvalOutputPort * > getFreeOutputPorts() const;
52   YACSEVALYFX_EXPORT void lockPortsForEvaluation(const std::list< YACSEvalOutputPort * >& outputsOfInterest);
53   YACSEVALYFX_EXPORT void unlockAll();
54   YACSEVALYFX_EXPORT bool isLocked() const;
55   YACSEVALYFX_EXPORT YACSEvalListOfResources *giveResources();
56   YACSEVALYFX_EXPORT bool run(YACSEvalSession *session, int& nbOfBranches);
57   YACSEVALYFX_EXPORT std::vector<YACSEvalSeqAny *> getResults() const;
58   //
59   YACSEVALYFX_EXPORT YACS::ENGINE::Proc *getUndergroundGeneratedGraph() const;
60   YACSEVALYFX_EXPORT ~YACSEvalYFX();
61 private:
62   YACSEvalYFX(YACS::ENGINE::Proc *scheme, bool ownScheme);
63   std::size_t checkPortsForEvaluation(const std::list< YACSEvalOutputPort * >& outputs) const;
64 private:
65   YACSEvalYFXPattern *_pattern;
66 };
67
68 #endif