1 // Copyright (C) 2012-2016 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author : Anthony Geay (EDF R&D)
21 #ifndef __YACSEVALYFX_HXX__
22 #define __YACSEVALYFX_HXX__
24 #include "YACSEvalYFXExport.hxx"
25 #include "YACSEvalExecParams.hxx"
38 class YACSEvalObserver;
40 class YACSEvalSession;
41 class YACSEvalYFXPattern;
42 class YACSEvalInputPort;
43 class YACSEvalOutputPort;
44 class YACSEvalListOfResources;
49 YACSEVALYFX_EXPORT static YACSEvalYFX *BuildFromFile(const std::string& xmlOfScheme);
50 YACSEVALYFX_EXPORT static YACSEvalYFX *BuildFromScheme(YACS::ENGINE::Proc *scheme);
51 YACSEVALYFX_EXPORT YACSEvalExecParams *getParams() const { return &_params; }
52 YACSEVALYFX_EXPORT std::vector< YACSEvalInputPort * > getFreeInputPorts() const;
53 YACSEVALYFX_EXPORT std::vector< YACSEvalOutputPort * > getFreeOutputPorts() const;
54 YACSEVALYFX_EXPORT void lockPortsForEvaluation(const std::vector< YACSEvalInputPort * >& inputsOfInterest, const std::vector< YACSEvalOutputPort * >& outputsOfInterest);
55 YACSEVALYFX_EXPORT void unlockAll();
56 YACSEVALYFX_EXPORT bool isLocked() const;
57 YACSEVALYFX_EXPORT YACSEvalListOfResources *giveResources();
58 YACSEVALYFX_EXPORT bool run(YACSEvalSession *session, int& nbOfBranches);
59 YACSEVALYFX_EXPORT void registerObserver(YACSEvalObserver *observer);
60 YACSEVALYFX_EXPORT YACSEvalObserver *getObserver();
61 YACSEVALYFX_EXPORT std::string getErrorDetailsInCaseOfFailure() const;
62 YACSEVALYFX_EXPORT std::string getStatusOfRunStr() const;
63 YACSEVALYFX_EXPORT std::vector<YACSEvalSeqAny *> getResults() const;
64 YACSEVALYFX_EXPORT std::vector<YACSEvalSeqAny *> getResultsInCaseOfFailure(std::vector<unsigned int>& passedIds) const;
66 YACSEVALYFX_EXPORT YACS::ENGINE::Proc *getUndergroundGeneratedGraph() const;
67 YACSEVALYFX_EXPORT void setParallelizeStatus(bool newVal);
68 YACSEVALYFX_EXPORT bool getParallelizeStatus() const;
69 YACSEVALYFX_EXPORT ~YACSEvalYFX();
71 YACSEvalYFX(YACS::ENGINE::Proc *scheme, bool ownScheme);
72 void checkPortsForEvaluation(const std::vector< YACSEvalInputPort * >& inputs, const std::vector< YACSEvalOutputPort * >& outputs) const;
74 YACSEvalYFXPattern *_pattern;
75 mutable YACSEvalExecParams _params;