Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/yacs.git] / src / genericgui / GuiExecutor.hxx
index c43096ab5412dd23148b40eec63256948d513ec6..53002f237402cb02cff7d957de307ee5c68a0687 100644 (file)
@@ -1,21 +1,22 @@
-//  Copyright (C) 2006-2008  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2012  CEA/DEN, EDF R&D
 //
-//  This library is free software; you can redistribute it and/or
-//  modify it under the terms of the GNU Lesser General Public
-//  License as published by the Free Software Foundation; either
-//  version 2.1 of the License.
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
 //
-//  This library is distributed in the hope that it will be useful,
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-//  Lesser General Public License for more details.
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
-//  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 #ifndef _GUIEXECUTOR_HXX_
 #define _GUIEXECUTOR_HXX_
 
@@ -34,6 +35,7 @@ namespace YACS
   {
     class Proc;
     class Node;
+    class DataPort;
   }
 
   namespace HMI
@@ -47,6 +49,8 @@ namespace YACS
       GuiExecutor(YACS::ENGINE::Proc* proc);
       virtual ~GuiExecutor();
 
+      void closeContext();
+
       void startResumeDataflow(bool initialize = false);
       bool checkEndOfDataflow(bool display = true);
       void killDataflow();
@@ -72,6 +76,8 @@ namespace YACS
       void removeBreakpoint(std::string breakpoint);
       void setNextStepList(std::list<std::string> nextStepList);
 
+      void setInPortValue(YACS::ENGINE::DataPort* port, std::string value);
+
       void registerStatusObservers();
       bool isRunning() const { return _isRunning; };
       bool isStopOnError() const { return _isStopOnError; }
@@ -82,6 +88,11 @@ namespace YACS
       std::string getErrorReport(YACS::ENGINE::Node* node);
       std::string getContainerLog();
       std::string getContainerLog(YACS::ENGINE::Node* node);
+      void shutdownProc();
+      void setShutdownLevel(int level){_shutdownLevel=level;}
+      int getShutdownLevel(){return _shutdownLevel;}
+      
+      YACS::ExecutorState updateSchema(std::string jobState);
 
       virtual bool event(QEvent *e);
 
@@ -101,6 +112,7 @@ namespace YACS
       bool _isRunning;
       bool _isSuspended;
       bool _isStopOnError;
+      int _shutdownLevel;
 
       std::list<std::string> _breakpointList;
       std::string _loadStateFile;