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